diff --git a/.gitignore b/.gitignore index 8e19a9be..f0264bea 100644 --- a/.gitignore +++ b/.gitignore @@ -49,4 +49,7 @@ logo-manager/package-lock.json # others /sample-gsoc-guide/ -/things-to-do/ \ No newline at end of file +/things-to-do/ + +# data backups (local safety net, not for version control) +/new-api-details-backup-*/ \ No newline at end of file diff --git a/CHANGELOG-2026.md b/CHANGELOG-2026.md new file mode 100644 index 00000000..26feaae2 --- /dev/null +++ b/CHANGELOG-2026.md @@ -0,0 +1,149 @@ +# GSoC 2026 Data Integration — Changelog + +## Data Pipeline: 4 new scripts + +### `scripts/fetch-year-data.ts` +Fetches raw org data from Google's API. Reusable for any year. +```bash +npx tsx scripts/fetch-year-data.ts --year 2026 +``` +Output: `new-api-details/yearly/google-summer-of-code-2026-organizations-raw.json` + +--- + +### `scripts/transform-year-organizations.ts` +Reads raw API JSON → updates/creates per-org JSON files → regenerates `index.json` + `metadata.json`. + +```bash +npx tsx scripts/transform-year-organizations.ts --year 2026 +``` + +What it does for **returning orgs** (156): +``` +- adds 2026 to active_years +- updates last_year to 2026 +- sets is_currently_active: true +- merges new technologies/topics (union, no deletions) +- updates contact/social from API +``` + +What it does for **new orgs** (29): +``` +- creates new JSON file with first_year: 2026, active_years: [2026] +- maps Google API fields → internal format +``` + +What it does for **orgs not in 2026** (48): +``` +- sets is_currently_active: false (nothing else changed) +``` + +`first_time` is **derived** in the index, not stored per-org: +```ts +first_time: data.first_year === YEAR +``` + +--- + +### `scripts/generate-yearly-page-from-json.ts` +Produces `new-api-details/yearly/google-summer-of-code-2026.json` from org JSON files. No DB. + +```bash +npx tsx scripts/generate-yearly-page-from-json.ts --year 2026 +``` + +Output matches `YearlyPageData` type. Projects array is empty (not yet announced). `finalized: false`. + +--- + +### `scripts/regenerate-tech-topics-from-json.ts` +Rebuilds all tech-stack, topics, and homepage JSON from org files. No DB. Years are derived dynamically from the data. + +```bash +npx tsx scripts/regenerate-tech-topics-from-json.ts +``` + +Regenerated: +- 825 tech-stack JSON files + index (all now include 2026 in `popularity_by_year`) +- 1566 topic JSON files + index (all now include 2026 in `yearlyStats`) +- `homepage.json` (updated metrics: 533 total orgs, 185 active) + +--- + +## UI fixes + +### `app/organizations/filters-sidebar.tsx` +Added 2026 to the `YEARS` filter array. +```ts +// before +const YEARS = [2025, 2024, ...] +// after +const YEARS = [2026, 2025, 2024, ...] +``` + +### `app/yearly/page.tsx` +- Added `{ year: 2026, slug: "google-summer-of-code-2026" }` to `yearlyPages` +- Updated stats: "11" years, "11,000+" projects, "2026" latest +- CTA button now links to 2026 + +### `app/yearly/[slug]/page.tsx` +Added `{ slug: "google-summer-of-code-2026" }` to `generateStaticParams`. + +### `lib/projects-page-types.ts` +Added 2026 to `getAvailableProjectYears()`. + +### `package.json` +Added npm scripts: +```json +"gsoc:fetch": "npx tsx scripts/fetch-year-data.ts", +"gsoc:transform": "npx tsx scripts/transform-year-organizations.ts", +"gsoc:yearly": "npx tsx scripts/generate-yearly-page-from-json.ts", +"gsoc:regen": "npx tsx scripts/regenerate-tech-topics-from-json.ts", +"gsoc:sync": "... all four in sequence ..." +``` + +### `.gitignore` +Added `/new-api-details-backup-*/` to ignore backup folders. + +--- + +## Backup + +`new-api-details-backup-pre2026/` — full copy of all data before any 2026 changes. Gitignored. + +--- + +## Data summary + +| Metric | Value | +|---|---| +| Total orgs in index | 533 (was 504) | +| Active in 2026 | 185 | +| Returning | 156 | +| First-time | 29 | +| Marked inactive | 48 | +| Projects | 0 (not yet announced) | +| Top language | Python (121 orgs) | +| Years covered | 11 (2016–2026) | + +--- + +## Future year workflow + +```bash +npm run gsoc:fetch -- --year 2027 +npm run gsoc:transform -- --year 2027 +npm run gsoc:yearly -- --year 2027 +npm run gsoc:regen +``` + +Then update 3 hardcoded places: +1. `app/yearly/page.tsx` — `yearlyPages` array +2. `app/yearly/[slug]/page.tsx` — `generateStaticParams` +3. `app/organizations/filters-sidebar.tsx` — `YEARS` array + +--- + +## Important: dev server + +Next.js caches JSON imports at startup. After running any script that changes JSON files, **restart the dev server** (`Ctrl+C` then `npm run dev`) for changes to appear. diff --git a/app/organizations/filters-sidebar.tsx b/app/organizations/filters-sidebar.tsx index 18b5f699..7e016909 100644 --- a/app/organizations/filters-sidebar.tsx +++ b/app/organizations/filters-sidebar.tsx @@ -23,9 +23,10 @@ interface FiltersSidebarProps { onFilterChange: (filters: FilterState) => void filters: FilterState availableTechs: Array<{ name: string; count: number }> + firstTimeCount?: number } -const YEARS = [2025, 2024, 2023, 2022, 2021, 2020, 2019, 2018, 2017, 2016, 2015, 2014, 2013, 2012] +const YEARS = [2026, 2025, 2024, 2023, 2022, 2021, 2020, 2019, 2018, 2017, 2016, 2015, 2014, 2013, 2012] const CATEGORIES = [ 'Artificial Intelligence', 'Data', @@ -49,7 +50,7 @@ const TOPICS = [ 'Database', ] -export function FiltersSidebar({ onFilterChange, filters, availableTechs }: FiltersSidebarProps) { +export function FiltersSidebar({ onFilterChange, filters, availableTechs, firstTimeCount }: FiltersSidebarProps) { const [sidebarSearch] = useState('') const [expandedSections, setExpandedSections] = useState({ @@ -225,7 +226,7 @@ export function FiltersSidebar({ onFilterChange, filters, availableTechs }: Filt onChange={toggleFirstTime} /> First-time organizations only - (14) + {firstTimeCount !== undefined && ({firstTimeCount})} diff --git a/app/organizations/organizations-client.tsx b/app/organizations/organizations-client.tsx index 7c3a2028..dc1dc0e2 100644 --- a/app/organizations/organizations-client.tsx +++ b/app/organizations/organizations-client.tsx @@ -16,9 +16,10 @@ interface OrganizationsClientProps { initialData: PaginatedResponse initialPage: number initialTechs: Array<{ name: string; count: number }> + firstTimeCount?: number } -export function OrganizationsClient({ initialData, initialPage, initialTechs }: OrganizationsClientProps) { +export function OrganizationsClient({ initialData, initialPage, initialTechs, firstTimeCount }: OrganizationsClientProps) { const router = useRouter() const searchParams = useSearchParams() const [data, setData] = useState>(initialData) @@ -27,6 +28,14 @@ export function OrganizationsClient({ initialData, initialPage, initialTechs }: const isInitialMount = useRef(true) const lastFetchParams = useRef('') const lastUrlString = useRef('') + + // Sync server-rendered data when initialData/initialPage change after navigation. + // Without this, router.push() re-renders on the server but the client keeps stale state. + useEffect(() => { + setData(initialData) + setCurrentPage(initialPage) + setIsLoading(false) + }, [initialData, initialPage]) // Memoize filters from URL using primitives to avoid unnecessary recalculations const urlFilters = useMemo(() => { @@ -207,53 +216,26 @@ export function OrganizationsClient({ initialData, initialPage, initialTechs }: } }, []) - // Handle page changes from URL - // Only fetch if page actually changed AND we're not on initial mount - useEffect(() => { - if (isInitialMount.current) { - return - } - - const page = Number(searchParams.get('page')) || 1 - if (page !== currentPage) { - setCurrentPage(page) - // Only fetch if we have dynamic filters (search or complex filters) - // Otherwise, pagination should be handled client-side with static data - const hasDynamicFilters = filters.search || - filters.yearsLogic === 'AND' || - filters.categoriesLogic === 'AND' || - filters.techsLogic === 'AND' || - filters.topicsLogic === 'AND' || - (filters.years.length > 0 && filters.categories.length > 0 && filters.techs.length > 0) - - if (hasDynamicFilters) { - fetchOrganizations(page, filters) - } - } - }, [searchParams, currentPage, filters, fetchOrganizations]) + // Page changes are handled via router.push() → server re-render → initialData sync. + // No client-side fetch needed for pagination. - // Only fetch when filters change (not on initial mount, as we have initialData) - // Only fetch if we have dynamic filters that require API (search or complex filters) + // Filters and search are handled server-side via router.push() → server re-render → initialData sync. + // Only need client-side API fetch for AND logic filters (rare edge case). useEffect(() => { if (isInitialMount.current) { return } - // Determine if we need API (same logic as server) const needsAPI = - filters.search.trim().length > 0 || filters.yearsLogic === 'AND' || filters.categoriesLogic === 'AND' || filters.techsLogic === 'AND' || - filters.topicsLogic === 'AND' || - (filters.years.length > 0 && filters.categories.length > 0 && filters.techs.length > 0 && filters.topics.length > 0) + filters.topicsLogic === 'AND' - // Only fetch if we need API, otherwise filters are handled client-side with static data if (!needsAPI) { return } - // Reset to page 1 when filters change const page = 1 setCurrentPage(page) fetchOrganizations(page, filters) @@ -341,7 +323,7 @@ export function OrganizationsClient({ initialData, initialPage, initialTechs }: {/* Sidebar - Fixed left, 280px width */} {/* Main Content - with left margin for sidebar */} diff --git a/app/organizations/page.tsx b/app/organizations/page.tsx index 88f523bb..cb545cfc 100644 --- a/app/organizations/page.tsx +++ b/app/organizations/page.tsx @@ -96,14 +96,6 @@ function shouldUseAPI(params: { techsLogic?: string; topicsLogic?: string; }): boolean { - // Always use API for search (text search requires DB) - if (params.q && params.q.trim().length > 0) { - if (process.env.NODE_ENV === 'development') { - console.log('[ORGS] Using API: search query detected'); - } - return true; - } - // Use API for complex filter logic (AND mode requires DB) if (params.yearsLogic === 'AND' || params.categoriesLogic === 'AND' || params.techsLogic === 'AND' || params.topicsLogic === 'AND') { @@ -113,26 +105,10 @@ function shouldUseAPI(params: { return true; } - // Use API if multiple filter types are combined (complex combinations) - const filterCount = [ - params.years && params.years.trim().length > 0, - params.categories && params.categories.trim().length > 0, - params.techs && params.techs.trim().length > 0, - params.topics && params.topics.trim().length > 0, - params.firstTimeOnly === 'true', - ].filter(Boolean).length; - - // If more than 2 filter types, use API for better performance - if (filterCount > 2) { - if (process.env.NODE_ENV === 'development') { - console.log('[ORGS] Using API: multiple filter types detected', filterCount); - } - return true; - } - - // Otherwise, use static JSON + // All other cases (including text search) use static JSON. + // Text search over ~500 orgs in memory is fast and includes new orgs not yet in DB. if (process.env.NODE_ENV === 'development') { - console.log('[ORGS] Using static JSON: simple filters or no filters'); + console.log('[ORGS] Using static JSON'); } return false; } @@ -204,12 +180,13 @@ async function getOrganizations(params: { ); } - // Filter organizations in memory + // Filter organizations in memory (supports text search + all filters) let filtered = indexData.organizations; - // Apply filters - if (params.years || params.categories || params.techs || params.topics || params.firstTimeOnly) { + const hasFilters = params.q || params.years || params.categories || params.techs || params.topics || params.firstTimeOnly || params.tech; + if (hasFilters) { filtered = filterOrganizations(indexData.organizations, { + query: params.q, years: params.years ? params.years.split(',').map(y => parseInt(y)).filter(n => !isNaN(n)) : undefined, categories: params.categories ? params.categories.split(',') : undefined, techs: params.techs ? params.techs.split(',') : params.tech ? [params.tech] : undefined, @@ -239,8 +216,8 @@ export default async function OrganizationsPage({ searchParams }: PageProps) { const params = await searchParams; const page = Number(params.page) || 1; - // Parallel data fetching: Orgs + Tech Stack - const [data, techStackIndex] = await Promise.all([ + // Parallel data fetching: Orgs + Tech Stack + Org index (for first-time count) + const [data, techStackIndex, orgIndex] = await Promise.all([ getOrganizations({ page, limit: 20, @@ -257,7 +234,8 @@ export default async function OrganizationsPage({ searchParams }: PageProps) { techsLogic: params.techsLogic, topicsLogic: params.topicsLogic, }), - loadTechStackIndexData() + loadTechStackIndexData(), + loadOrganizationsIndexData() ]); // Transform tech stack data for sidebar @@ -266,6 +244,10 @@ export default async function OrganizationsPage({ searchParams }: PageProps) { count: t.org_count })) || []; + const firstTimeCount = orgIndex?.organizations.filter( + (o: { first_time: boolean | null }) => o.first_time === true + ).length ?? 0; + return ( @@ -279,6 +261,7 @@ export default async function OrganizationsPage({ searchParams }: PageProps) { initialData={data} initialPage={page} initialTechs={initialTechs} + firstTimeCount={firstTimeCount} /> ); diff --git a/app/sitemap.ts b/app/sitemap.ts index a3ac2943..c0c4d0cf 100644 --- a/app/sitemap.ts +++ b/app/sitemap.ts @@ -1,130 +1,67 @@ import { MetadataRoute } from 'next' import { SITE_URL } from '@/lib/constants' -import prisma from '@/lib/prisma' +import { loadOrganizationsIndexData } from '@/lib/organizations-page-types' +import { loadTechStackIndexData } from '@/lib/tech-stack-page-types' import { loadTopicsIndexData } from '@/lib/topics-page-types' import { getAvailableProjectYears } from '@/lib/projects-page-types' /** - * Fetch all organization slugs directly from database + * All sitemap data is sourced from static JSON files — + * no database dependency. When a new year's data is added + * (via the transform + regenerate scripts), the sitemap + * picks it up automatically on the next build. */ + async function getAllOrganizationSlugs(): Promise { try { - const organizations = await prisma.organizations.findMany({ - select: { slug: true }, - orderBy: { name: 'asc' }, - }) - return organizations.map(org => org.slug) + const data = await loadOrganizationsIndexData() + if (!data) return [] + return data.organizations.map(org => org.slug) } catch (error) { - console.error('Error fetching organization slugs for sitemap:', error) - return [] // Return empty array on error to prevent sitemap generation failure + console.error('[SITEMAP] Error loading organization slugs:', error) + return [] } } -/** - * Fetch all tech stack slugs directly from database - */ async function getAllTechStackSlugs(): Promise { try { - // Get all organizations with their technologies - const organizations = await prisma.organizations.findMany({ - select: { technologies: true }, - }) - - // Extract and deduplicate technologies - const techMap = new Set() - organizations.forEach((org) => { - org.technologies.forEach((tech) => { - const slug = tech.toLowerCase().replace(/[^a-z0-9]+/g, '-') - techMap.add(slug) - }) - }) - - return Array.from(techMap) + const data = await loadTechStackIndexData() + if (!data) return [] + return data.all_techs.map(t => t.slug) } catch (error) { - console.error('Error fetching tech stack slugs for sitemap:', error) + console.error('[SITEMAP] Error loading tech stack slugs:', error) return [] } } -/** - * Get all topic slugs from static JSON data - */ async function getAllTopicSlugs(): Promise { try { const topicsData = await loadTopicsIndexData() - if (!topicsData) { - // Fallback to hardcoded list if JSON not available - return [ - 'web-development', - 'machine-learning', - 'systems-programming', - 'data-science', - 'security-privacy', - 'cloud-infrastructure', - 'mobile-development', - 'devtools', - 'graphics-multimedia', - 'databases', - 'programming-languages', - 'documentation', - ] - } + if (!topicsData) return [] return topicsData.topics.map(topic => topic.slug) } catch (error) { - if (process.env.NODE_ENV === 'development') { - console.error('[SITEMAP] Error loading topics:', error) - } + console.error('[SITEMAP] Error loading topic slugs:', error) return [] } } -/** - * Get all project IDs for project detail pages - * Fetches from database to get all unique project IDs - */ -async function getAllProjectIds(): Promise> { - try { - const projects = await prisma.projects.findMany({ - select: { - project_id: true, - org_slug: true, - }, - distinct: ['project_id'], - }) - return projects - } catch (error) { - if (process.env.NODE_ENV === 'development') { - console.error('[SITEMAP] Error fetching project IDs:', error) - } - return [] - } +function getYearlySlugs(): string[] { + const years = getAvailableProjectYears() + return years.map(y => `google-summer-of-code-${y}`) } -/** - * Sitemap Generation - * - * Currently generated at build time (no revalidate configured). - * If you add `export const revalidate = X` to this file, it becomes ISR instead of build-only. - * - * Base URL validation: - * - Ensures no trailing slash - * - Uses https protocol - * - Falls back to production URL if env not set - */ export default async function sitemap(): Promise { - // Ensure baseUrl has no trailing slash and uses https const baseUrl = SITE_URL.replace(/\/$/, '').replace(/^http:/, 'https:') - // Fetch dynamic routes in parallel - const [orgSlugs, techSlugs, topicSlugs, projectIds] = await Promise.all([ + const [orgSlugs, techSlugs, topicSlugs] = await Promise.all([ getAllOrganizationSlugs(), getAllTechStackSlugs(), getAllTopicSlugs(), - getAllProjectIds(), ]) - // Static routes explicitly listed (excluding dynamic children like /organizations/[slug]) - // These are top-level pages without dynamic parameters + const yearlySlugs = getYearlySlugs() + const projectYears = getAvailableProjectYears() + const staticRoutes = [ '', '/about', @@ -139,79 +76,49 @@ export default async function sitemap(): Promise { '/blog', ] - // Generate year-based routes (2016 to current year - 1, excluding future years) - // Only include years that have actually completed GSoC - // Using new /yearly/google-summer-of-code-YYYY format for SEO - const currentYear = new Date().getFullYear() - const lastCompletedYear = currentYear - 1 // Exclude current year and future years - const yearRoutes = [] - for (let year = 2016; year <= lastCompletedYear; year++) { - yearRoutes.push(`/yearly/google-summer-of-code-${year}`) - } - - // Generate project year routes (2016 to current year) - const projectYearRoutes = getAvailableProjectYears().map(year => `/projects/${year}`) - - // Combine all routes with appropriate priorities const routes: MetadataRoute.Sitemap = [ - // Homepage - highest priority ...staticRoutes.map((route) => ({ url: `${baseUrl}${route}`, lastModified: new Date(), changeFrequency: route === '' ? 'daily' as const : 'weekly' as const, priority: route === '' ? 1.0 : route === '/organizations' ? 0.9 : 0.8, })), - - // Organization detail pages - high priority (money pages for SEO) + ...orgSlugs.map((slug) => ({ url: `${baseUrl}/organizations/${slug}`, lastModified: new Date(), changeFrequency: 'weekly' as const, priority: 0.9, })), - - // Tech stack detail pages - high priority + ...techSlugs.map((slug) => ({ url: `${baseUrl}/tech-stack/${slug}`, lastModified: new Date(), changeFrequency: 'weekly' as const, priority: 0.85, })), - - // Topic detail pages - high priority + ...topicSlugs.map((slug) => ({ url: `${baseUrl}/topics/${slug}`, lastModified: new Date(), changeFrequency: 'weekly' as const, priority: 0.85, })), - - // Year pages - medium priority - ...yearRoutes.map((route) => ({ - url: `${baseUrl}${route}`, + + ...yearlySlugs.map((slug) => ({ + url: `${baseUrl}/yearly/${slug}`, lastModified: new Date(), changeFrequency: 'yearly' as const, priority: 0.8, })), - - // Project year pages - medium priority - ...projectYearRoutes.map((route) => ({ - url: `${baseUrl}${route}`, + + ...projectYears.map((year) => ({ + url: `${baseUrl}/projects/${year}`, lastModified: new Date(), changeFrequency: 'yearly' as const, priority: 0.75, })), - - // Project detail pages - lower priority (deep pages, many URLs) - // Deprioritized to preserve crawl budget for higher-value pages - ...projectIds.map(({ project_id, org_slug }) => ({ - url: `${baseUrl}/organizations/${org_slug}/projects/${project_id}`, - lastModified: new Date(), - changeFrequency: 'monthly' as const, - priority: 0.6, - })), ] return routes } - diff --git a/app/yearly/[slug]/page.tsx b/app/yearly/[slug]/page.tsx index e11b96f9..caa002f7 100644 --- a/app/yearly/[slug]/page.tsx +++ b/app/yearly/[slug]/page.tsx @@ -21,6 +21,7 @@ import { Header } from "@/components/header"; import { Footer } from "@/components/Footer"; import { loadYearlyPageData } from "@/lib/yearly-page-types"; import { getFullUrl } from "@/lib/constants"; +import { getAvailableProjectYears } from "@/lib/projects-page-types"; import { ExpandableOrgList, ExpandableProjectList, MentorsContributorsTable } from "./client-components"; import { StudentSlotsBarChart, @@ -32,21 +33,12 @@ import { // Static Generation - cache forever export const revalidate = false; -// Generate static params for all known yearly pages +// Derived from the single source of truth in getAvailableProjectYears(). +// Adding a year there auto-updates yearly pages, project pages, and sitemap. export async function generateStaticParams() { - // Add more years as JSON files are created - return [ - { slug: "google-summer-of-code-2025" }, - { slug: "google-summer-of-code-2024" }, - { slug: "google-summer-of-code-2023" }, - { slug: "google-summer-of-code-2022" }, - { slug: "google-summer-of-code-2021" }, - { slug: "google-summer-of-code-2020" }, - { slug: "google-summer-of-code-2019" }, - { slug: "google-summer-of-code-2018" }, - { slug: "google-summer-of-code-2017" }, - { slug: "google-summer-of-code-2016" }, - ]; + return getAvailableProjectYears().map(year => ({ + slug: `google-summer-of-code-${year}`, + })); } export async function generateMetadata({ diff --git a/app/yearly/page.tsx b/app/yearly/page.tsx index 541de3ed..410e7c22 100644 --- a/app/yearly/page.tsx +++ b/app/yearly/page.tsx @@ -18,11 +18,12 @@ export const revalidate = false; export const metadata = { title: "GSoC Yearly Stats & Trends", - description: "Explore Google Summer of Code statistics, trends, and insights by year. Historical data from 2016 to 2025.", + description: "Explore Google Summer of Code statistics, trends, and insights by year. Historical data from 2016 to 2026.", }; // Available years with their slugs const yearlyPages = [ + { year: 2026, slug: "google-summer-of-code-2026" }, { year: 2025, slug: "google-summer-of-code-2025" }, { year: 2024, slug: "google-summer-of-code-2024" }, { year: 2023, slug: "google-summer-of-code-2023" }, @@ -57,7 +58,7 @@ export default function YearlyIndexPage() { } label="Years Covered" - value="10" + value="11" /> } @@ -67,12 +68,12 @@ export default function YearlyIndexPage() { } label="Projects" - value="10,000+" + value="11,000+" /> } label="Latest Year" - value="2025" + value="2026" /> @@ -115,9 +116,9 @@ export default function YearlyIndexPage() { - + - View 2025 Stats + View 2026 Stats diff --git a/lib/organizations-page-types.ts b/lib/organizations-page-types.ts index 6abb6f1e..a3cbadae 100644 --- a/lib/organizations-page-types.ts +++ b/lib/organizations-page-types.ts @@ -192,6 +192,7 @@ export function indexDataToPaginatedResponse( export function filterOrganizations( organizations: OrganizationsIndexData['organizations'], filters: { + query?: string; years?: number[]; categories?: string[]; techs?: string[]; @@ -201,6 +202,19 @@ export function filterOrganizations( ): OrganizationsIndexData['organizations'] { let filtered = [...organizations]; + // Text search (case-insensitive match on name, description, technologies, topics) + if (filters.query && filters.query.trim().length > 0) { + const q = filters.query.toLowerCase().trim(); + filtered = filtered.filter(org => { + if (org.name.toLowerCase().includes(q)) return true; + if (org.description?.toLowerCase().includes(q)) return true; + if (org.technologies?.some(t => t.toLowerCase().includes(q))) return true; + if (org.topics?.some(t => t.toLowerCase().includes(q))) return true; + if (org.category?.toLowerCase().includes(q)) return true; + return false; + }); + } + // Years filter (OR logic - org must have participated in ANY selected year) if (filters.years && filters.years.length > 0) { filtered = filtered.filter(org => diff --git a/lib/projects-page-types.ts b/lib/projects-page-types.ts index 788ae0ed..744e6e3e 100644 --- a/lib/projects-page-types.ts +++ b/lib/projects-page-types.ts @@ -105,5 +105,5 @@ export async function loadProjectsYearData(year: number): Promise\n\nAnkiDroid lets you learn flashcards very efficiently by showing them just before you would forget. It is fully compatible with the spaced repetition software Anki (including synchronization), which is available for Windows/Mac/Linux/ChromeOS.\n\nStudy all sorts of things wherever and whenever you want. Make good use of idle times on bus trips, in supermarket queues or any other waiting situation!\n\nCreate your own flashcard decks or download free decks compiled for many languages and topics (more than 6000 available).\n\nAdd material through the desktop application Anki or directly through AnkiDroid. The application even supports adding material automatically from a dictionary!\n\n★ Key features:\n• supported flashcard contents: text, images, sounds, LaTeX & MathJax\n• spaced repetition (supermemo 2 algorithm)\n• text-to-speech integration\n• check your pronunciation\n• more than 6000 premade decks\n• progress widget\n• detailed statistics\n• syncing with AnkiWeb\n• open source", "image_url": "https://summerofcode.withgoogle.com/media/org/ankidroid/cxtovrlsuuluttgi-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ankidroid.webp", "logo_r2_url": null, @@ -12,10 +12,11 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ], "first_year": 2021, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "javascript", @@ -47,7 +48,8 @@ "year_2022": 3, "year_2023": null, "year_2024": 3, - "year_2025": 2 + "year_2025": 2, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -59,7 +61,8 @@ "year_2022": 3, "year_2023": null, "year_2024": 3, - "year_2025": 2 + "year_2025": 2, + "year_2026": null }, "total_students": 10 }, @@ -288,13 +291,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/ankidroid" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": null, "guide_url": "https://github.com/ankidroid/Anki-Android/wiki/Google-Summer-of-Code", - "ideas_url": "https://docs.google.com/document/d/1Va6IWEYcWTkK4KDtyoFxtOKzpdcYe54GdrVpuMcFvlI/edit?usp=sharing", + "ideas_url": "https://docs.google.com/document/d/1ygIJl-Tp5_wJDKkSXrCC8h5K3WUG8D4BcJa_j70F0Zo", "irc_channel": "https://discord.gg/qjzcRTx", "mailing_list": "https://groups.google.com/forum/#!forum/anki-android" }, @@ -317,6 +321,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:52.909Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/aossie.json b/new-api-details/organizations/aossie.json index 39d25a8f..0436ee05 100644 --- a/new-api-details/organizations/aossie.json +++ b/new-api-details/organizations/aossie.json @@ -3,7 +3,7 @@ "slug": "aossie", "name": "AOSSIE", "category": "End user applications", - "description": "Australian Umbrella Org for Open-Source Projects", + "description": "We are an Australian not-for-profit charity, founded in 2016, that serves as an umbrella organization for open-source projects. We believe the open-source philosophy is a resource-efficient approach to transfer knowledge, educate and innovate. \n\nWe have almost 200 repositories in 3 GitHub spaces:\n* https://github.com/orgs/AOSSIE-Org (our main space)\n* https://github.com/StabilityNexus (for our blockchain projects)\n* https://github.com/DjedAlliance (for our stablecoin projects)\n\nOur projects span a wide range of topics and themes, including: financial stability, environmental sustainability, governance, trust, decentralized communication, artificial intelligence. The common ground under all our projects is our passion for making the world a better place, by empowering people with free software than can be run with minimal dependencies.\n\nWe have a diverse group of mentors, including GSoC students from previous years who decided to become long-term contributors as well as academics with extensive experience in supervising undergraduate, M.Sc. and PhD students on theses and projects, whose results are often published and presented in the most prestigious conferences of our research fields.", "image_url": "https://summerofcode.withgoogle.com/media/org/aossie/oo1wd34pc1ytrq6a-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/aossie.webp", "logo_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/aossie.webp", @@ -17,10 +17,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "scala", @@ -39,7 +40,8 @@ "kotlin", "machine learning", "Blockchain", - "flutter" + "flutter", + "Solidity" ], "topics": [ "environment", @@ -51,7 +53,10 @@ "social science", "web", "mobile", - "backend" + "backend", + "artificial intelligence", + "communication", + "blockchain" ], "total_projects": 117, "stats": { @@ -66,7 +71,8 @@ "year_2022": 8, "year_2023": 6, "year_2024": 18, - "year_2025": 21 + "year_2025": 21, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -78,7 +84,8 @@ "year_2022": 8, "year_2023": 6, "year_2024": 18, - "year_2025": 21 + "year_2025": 21, + "year_2026": null }, "total_students": 116 }, @@ -2438,21 +2445,22 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/aossie" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": null, - "guide_url": "https://aossie.gitlab.io/pages/gsoc-details.html", - "ideas_url": "https://aossie.org/ideas", - "irc_channel": "https://discord.gg/C8wHmwtczs", + "guide_url": "https://github.com/AOSSIE-Org/Info/blob/main/GoogleSummerOfCode.md", + "ideas_url": "https://github.com/AOSSIE-Org/Info/blob/main/GSoC-Ideas/2026/index.md", + "irc_channel": "https://discord.gg/xnmAPS7zqB", "mailing_list": "http://aossie.org/#contact" }, "social": { "blog": null, "discord": "https://discord.gg/C8wHmwtczs", "facebook": null, - "github": null, + "github": "https://github.com/AOSSIE-Org", "gitlab": null, "instagram": null, "linkedin": null, @@ -2467,6 +2475,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:52.877Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/apache-datafusion.json b/new-api-details/organizations/apache-datafusion.json index 94c84521..6a5dbc89 100644 --- a/new-api-details/organizations/apache-datafusion.json +++ b/new-api-details/organizations/apache-datafusion.json @@ -13,7 +13,7 @@ ], "first_year": 2025, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "python", "rust", @@ -134,6 +134,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:52.912Z" + "generated_at": "2026-02-19T12:41:12.412Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/apache-software-foundation.json b/new-api-details/organizations/apache-software-foundation.json new file mode 100644 index 00000000..acbaf9ea --- /dev/null +++ b/new-api-details/organizations/apache-software-foundation.json @@ -0,0 +1,100 @@ +{ + "id": "new_2026_apache-software-foundation", + "slug": "apache-software-foundation", + "name": "Apache Software Foundation", + "category": "Web", + "description": "The Foundation provides an established framework for intellectual property and financial contributions that simultaneously limits contributors potential legal exposure. Through a collaborative and meritocratic development process, Apache projects deliver enterprise-grade, freely available software products that attract large communities of users. The pragmatic Apache License makes it easy for all users, commercial and individual, to deploy Apache products.", + "image_url": "https://summerofcode.withgoogle.com/media/org/apache-software-foundation/hq22fwtmvdfjnsh9-360.png", + "img_r2_url": "https://summerofcode.withgoogle.com/media/org/apache-software-foundation/hq22fwtmvdfjnsh9-360.png", + "logo_r2_url": null, + "url": "https://apache.org", + "active_years": [ + 2026 + ], + "first_year": 2026, + "last_year": 2026, + "is_currently_active": true, + "technologies": [ + "c", + "java", + "c++" + ], + "topics": [ + "big data", + "cloud", + "libraries", + "other" + ], + "total_projects": 0, + "stats": { + "avg_projects_per_appeared_year": 0, + "projects_by_year": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "students_by_year": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "total_students": 0 + }, + "years": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "contact": { + "email": null, + "guide_url": "https://community.apache.org/gsoc/", + "ideas_url": "https://s.apache.org/gsoc2026ideas", + "irc_channel": null, + "mailing_list": "http://apache.org/foundation/mailinglists.html" + }, + "social": { + "blog": null, + "discord": null, + "facebook": null, + "github": "https://github.com/apache", + "gitlab": null, + "instagram": null, + "linkedin": null, + "mastodon": null, + "medium": null, + "reddit": null, + "slack": null, + "stackoverflow": null, + "twitch": null, + "twitter": "https://twitter.com/theasf", + "youtube": null + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:46:24.131Z" + } +} \ No newline at end of file diff --git a/new-api-details/organizations/api-dash.json b/new-api-details/organizations/api-dash.json index df7960de..8d9130b4 100644 --- a/new-api-details/organizations/api-dash.json +++ b/new-api-details/organizations/api-dash.json @@ -3,31 +3,37 @@ "slug": "api-dash", "name": "API Dash", "category": "Development tools", - "description": "Next-gen Open Source AI powered API DevTool", + "description": "API Dash is a beautiful open-source cross-platform (macOS, Windows, Linux, Android & iOS) API Client built using Flutter & powered by AI which can help you easily create & customize your HTTP, GraphQL, SSE & AI API requests, visually inspect responses and generate API integration code.", "image_url": "https://summerofcode.withgoogle.com/media/org/api-dash/wgtarubdkvdp5qih-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/api-dash.webp", "logo_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/api-dash.webp", "url": "https://apidash.dev", "active_years": [ 2024, - 2025 + 2025, + 2026 ], "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "flutter", "api", "ai", "dart", - "ui/ux" + "ui/ux", + "python", + "react", + "typescript" ], "topics": [ "testing", "api", "developer tools", "automation", - "GenAI" + "GenAI", + "ai", + "Agents" ], "total_projects": 3, "stats": { @@ -42,7 +48,8 @@ "year_2022": null, "year_2023": null, "year_2024": 1, - "year_2025": 2 + "year_2025": 2, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -54,7 +61,8 @@ "year_2022": null, "year_2023": null, "year_2024": 1, - "year_2025": 2 + "year_2025": 2, + "year_2026": null }, "total_students": 3 }, @@ -144,13 +152,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/api-dash" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "ankit@apidash.dev", - "guide_url": "https://github.com/foss42/apidash/discussions/564", - "ideas_url": "https://github.com/foss42/apidash/discussions/565", + "guide_url": "https://github.com/foss42/apidash/discussions/1048", + "ideas_url": "https://github.com/foss42/apidash/discussions/1054", "irc_channel": "https://discord.com/invite/bBeSdtJ6Ue", "mailing_list": null }, @@ -158,7 +167,7 @@ "blog": "https://www.linkedin.com/company/apidash/", "discord": "https://discord.com/invite/bBeSdtJ6Ue", "facebook": null, - "github": null, + "github": "https://github.com/foss42/apidash", "gitlab": null, "instagram": null, "linkedin": null, @@ -173,6 +182,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:52.891Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/ardupilot.json b/new-api-details/organizations/ardupilot.json index de52c963..31ae6545 100644 --- a/new-api-details/organizations/ardupilot.json +++ b/new-api-details/organizations/ardupilot.json @@ -3,7 +3,7 @@ "slug": "ardupilot", "name": "ArduPilot", "category": "Science and medicine", - "description": "World's most advanced autonomous vehicle software", + "description": "ArduPilot is the world's most widely used open source flight code software for unmanned autonomous vehicles including planes, multicopters, helicopters, cars, boats, submarines, blimps, antenna trackers and much more.\n\nWritten primarily in C++, ArduPilot supports over 100 different types of autopilot hardware including the well known Pixhawk autopilot.\n\nOur team motto, \"Versatile, Trusted, Open\" reflects our team's aim to provide high quality autopilot software that reliably supports a huge variety of frames, sensors and use cases. The software is open but so is the team, always welcoming of new contributors whether they be software developers, wiki documentors, testers or users.", "image_url": "https://summerofcode.withgoogle.com/media/org/ardupilot/oveqvcxkpgkuv8wq-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ardupilot.webp", "logo_r2_url": null, @@ -17,10 +17,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -65,7 +66,8 @@ "year_2022": 4, "year_2023": 4, "year_2024": 4, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -77,7 +79,8 @@ "year_2022": 4, "year_2023": 4, "year_2024": 4, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "total_students": 33 }, @@ -826,7 +829,8 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/ardupilot" - } + }, + "year_2026": null }, "first_time": false, "contact": { @@ -840,7 +844,7 @@ "blog": "https://discuss.ardupilot.org/c/blog", "discord": "https://discord.com/channels/674039678562861068/805671364873682954", "facebook": null, - "github": null, + "github": "https://github.com/ArduPilot", "gitlab": null, "instagram": null, "linkedin": null, @@ -855,6 +859,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:52.927Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/asyncapi.json b/new-api-details/organizations/asyncapi.json index 4f51f045..03a8ead3 100644 --- a/new-api-details/organizations/asyncapi.json +++ b/new-api-details/organizations/asyncapi.json @@ -14,7 +14,7 @@ ], "first_year": 2024, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "javascript", "java", @@ -416,6 +416,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:52.938Z" + "generated_at": "2026-02-19T12:41:12.412Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/beagleboardorg.json b/new-api-details/organizations/beagleboardorg.json index f3c09ea6..b11a9fc7 100644 --- a/new-api-details/organizations/beagleboardorg.json +++ b/new-api-details/organizations/beagleboardorg.json @@ -22,7 +22,7 @@ ], "first_year": 2016, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "c", "python", @@ -1027,6 +1027,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:52.951Z" + "generated_at": "2026-02-19T12:41:12.412Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/blender-foundation.json b/new-api-details/organizations/blender-foundation.json index 171e1a87..0ba5973e 100644 --- a/new-api-details/organizations/blender-foundation.json +++ b/new-api-details/organizations/blender-foundation.json @@ -3,7 +3,7 @@ "slug": "blender-foundation", "name": "Blender Foundation", "category": "End user applications", - "description": "The Freedom to Create", + "description": "Blender is a free and open source 3D creation suite, providing individuals and small teams a complete pipeline for 3D graphics, modeling, animation and games.\n\nBlender is being made by 100s of active volunteers from all around the world; by studios and individual artists, professionals and hobbyists, scientists and students, vfx experts and animators, and so on. All of them are united by an interest to have access to a fully free/open source 3D creation pipeline. Blender Foundation supports and facilitates these goals - even employs a staff for that - but fully depends on the online community to achieve it.", "image_url": "https://summerofcode.withgoogle.com/media/org/blender-foundation/vdfgx9yyygdjjvym-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/blender-foundation.webp", "logo_r2_url": null, @@ -18,10 +18,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "c", @@ -59,7 +60,8 @@ "year_2022": 3, "year_2023": 5, "year_2024": 6, - "year_2025": 8 + "year_2025": 8, + "year_2026": null }, "students_by_year": { "year_2016": 8, @@ -71,7 +73,8 @@ "year_2022": 3, "year_2023": 5, "year_2024": 6, - "year_2025": 8 + "year_2025": 8, + "year_2026": null }, "total_students": 59 }, @@ -1293,14 +1296,15 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/blender-foundation" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "foundation@blender.org", "guide_url": "https://developer.blender.org/docs/programs/gsoc/", "ideas_url": "https://developer.blender.org/docs/programs/gsoc/ideas/", - "irc_channel": "https://blender.chat/channel/gsoc-2025", + "irc_channel": "https://blender.chat/channel/gsoc-2026", "mailing_list": "https://devtalk.blender.org/c/contributing-to-blender/summer-of-code/15" }, "social": { @@ -1322,6 +1326,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:52.964Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/boa.json b/new-api-details/organizations/boa.json new file mode 100644 index 00000000..4c4afa9c --- /dev/null +++ b/new-api-details/organizations/boa.json @@ -0,0 +1,99 @@ +{ + "id": "new_2026_boa", + "slug": "boa", + "name": "Boa", + "category": "Programming languages", + "description": "Boa is an open-source, embeddable JavaScript engine written in Rust. The project aims to provide a correct, safe, and performant implementation of the ECMAScript specification, with a strong focus on long-term maintainability and developer ergonomics.\n\nBoa is designed to be used as a library, enabling developers to embed JavaScript into Rust applications, tooling, and experimental runtimes. The project emphasizes clear internal architecture, rigorous testing, and close alignment with the evolving ECMAScript standard.\n\nDevelopment is community-driven and spans multiple areas of language runtime engineering, including parsing, bytecode compilation, virtual machine execution, garbage collection, performance optimization, and specification conformance. Boa is actively developed and used as a platform for exploring modern JavaScript engine design in a memory-safe systems programming language.\n\nIn 2026 Boa's work has been used in browsers such as Google Chrome and Node.js to implement Temporal, you can read more about this in https://boajs.dev/blog/2025/09/24/temporal-release. Boa has also been used as an implementation to help drive standards within TC39 (the standards committee behind JavaScript).", + "image_url": "https://summerofcode.withgoogle.com/media/org/boa/vhimc4zkw6j9t8wm-360.png", + "img_r2_url": "https://summerofcode.withgoogle.com/media/org/boa/vhimc4zkw6j9t8wm-360.png", + "logo_r2_url": null, + "url": "https://boajs.dev/", + "active_years": [ + 2026 + ], + "first_year": 2026, + "last_year": 2026, + "is_currently_active": true, + "technologies": [ + "javascript", + "rust" + ], + "topics": [ + "compilers", + "web", + "performance", + "interpreters" + ], + "total_projects": 0, + "stats": { + "avg_projects_per_appeared_year": 0, + "projects_by_year": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "students_by_year": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "total_students": 0 + }, + "years": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "contact": { + "email": null, + "guide_url": "https://boajs.dev/docs/contributing", + "ideas_url": "https://boajs.dev/roadmap", + "irc_channel": "https://matrix.to/#/#boa:matrix.org", + "mailing_list": null + }, + "social": { + "blog": "https://boajs.dev", + "discord": null, + "facebook": null, + "github": "https://github.com/boa-dev/boa", + "gitlab": null, + "instagram": null, + "linkedin": null, + "mastodon": null, + "medium": null, + "reddit": null, + "slack": null, + "stackoverflow": null, + "twitch": null, + "twitter": "https://bsky.app/profile/boajs.dev", + "youtube": null + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:46:24.131Z" + } +} \ No newline at end of file diff --git a/new-api-details/organizations/brl-cad.json b/new-api-details/organizations/brl-cad.json index 3e97a7c5..9ce16e51 100644 --- a/new-api-details/organizations/brl-cad.json +++ b/new-api-details/organizations/brl-cad.json @@ -3,7 +3,7 @@ "slug": "brl-cad", "name": "BRL-CAD", "category": "Media", - "description": "3D CAD & other computer-aided tech (CAx)", + "description": "This is the place to be if you love computer graphics. We do 2D/3D modeling, 3D printing, solid geometry, design, and more. Depending on the project, you have the opportunity to work with C/C++, Python, OpenGL, OpenCL, Qt, Javascript, and more... Help us develop open source computer-aided technologies (CAx)!\n\nWe operates as an umbrella organization with several CAx communities including:\n\n\n - OpenSCAD is a solid 3D modeler with a rich syntax for programmable geometry.\n - LibreCAD is a 2D modeling system specializing in blueprint-style drawings and draftings.\n - IfcOpenShell is a library for working with standard IFC building model data.\n - BRL-CAD is a solid modeling suite with conversion and advanced solid ray tracing features.\n - Manifold is a solid geometry mesh processing library.\n\n\nWe want to select at least one student for each, so feel free to ask us where to start.\n\n", "image_url": "https://summerofcode.withgoogle.com/media/org/brl-cad/4ec07aqdfrvygfed-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/brl-cad.webp", "logo_r2_url": null, @@ -18,10 +18,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -33,7 +34,8 @@ "javascript", "qt", "tcl/tk", - "scripting" + "scripting", + "c/c++" ], "topics": [ "visualization", @@ -69,7 +71,8 @@ "year_2022": 7, "year_2023": 5, "year_2024": 9, - "year_2025": 6 + "year_2025": 6, + "year_2026": null }, "students_by_year": { "year_2016": 9, @@ -81,7 +84,8 @@ "year_2022": 7, "year_2023": 5, "year_2024": 9, - "year_2025": 6 + "year_2025": 6, + "year_2026": null }, "total_students": 68 }, @@ -1506,21 +1510,22 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/brl-cad" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "devs@brlcad.org", "guide_url": "https://opencax.github.io/gsoc_checklist.html", - "ideas_url": "https://github.com/opencax/GSoC/issues?q=is%3Aissue+is%3Aopen+label%3A%22GSoC+2025%22", - "irc_channel": "https://web.libera.chat/?channel=#openscad", + "ideas_url": "https://github.com/opencax/GSoC/issues?q=is%3Aissue+is%3Aopen+label%3A%22GSoC+2026%22", + "irc_channel": "https://opencax.github.io", "mailing_list": "https://sourceforge.net/p/ifcopenshell/discussion/" }, "social": { "blog": "https://www.facebook.com/brlcad/", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/BRL-CAD/brlcad", "gitlab": null, "instagram": null, "linkedin": null, @@ -1535,6 +1540,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:52.941Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/c2si.json b/new-api-details/organizations/c2si.json index 28acd3a8..d4c524e3 100644 --- a/new-api-details/organizations/c2si.json +++ b/new-api-details/organizations/c2si.json @@ -2,24 +2,26 @@ "id": "692251ce53dd9d7326d33d60", "slug": "c2si", "name": "C2SI", - "category": "Security", - "description": "C2SI develops FOSS softwares for everyone!!!", + "category": "End user applications", + "description": "The Ceylon Computer Science Institute (C2SI) conducts research in various domains, including security, artificial intelligence, mobile applications, cloud computing, and software tools. Our research aims to create computing solutions by identifying low-cost methodologies and strategies that promote sustainability. Currently, C2SI is at a pivotal stage in its evolution, having secured high donor confidence, as evidenced by multiple foreign-funded projects. The institute focuses on developing sustainable computing solutions that leverage low-cost computing and communication technologies, particularly for developing and emerging regions worldwide. We have developed several affordable and sustainable ICT solutions, with a special focus on the needs of the developing world. These solutions are briefly described in the projects section.", "image_url": "https://summerofcode.withgoogle.com/media/org/c2si/35pwh3uirrpdctn8.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/c2si.webp", "logo_r2_url": null, "url": "https://c2si.org/", "active_years": [ - 2024 + 2024, + 2026 ], "first_year": 2024, - "last_year": 2024, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ "python", "java", "go", "node.js", - "tensorflow" + "tensorflow", + "nodejs" ], "topics": [ "security", @@ -41,7 +43,8 @@ "year_2022": null, "year_2023": null, "year_2024": 12, - "year_2025": null + "year_2025": null, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -53,7 +56,8 @@ "year_2022": null, "year_2023": null, "year_2024": 12, - "year_2025": null + "year_2025": null, + "year_2026": null }, "total_students": 12 }, @@ -317,13 +321,14 @@ ], "projects_url": "https://summerofcode.withgoogle.com/archive/2024/organizations/c2si/" }, - "year_2025": null + "year_2025": null, + "year_2026": null }, "first_time": false, "contact": { "email": "gsoc@c2si.org", - "guide_url": null, - "ideas_url": null, + "guide_url": "https://docs.google.com/document/d/e/2PACX-1vREmzfBRMW1QmehqstK9v094j1t6IvPA5qbvj8MOV7x2wQETcn-AsnhzCaOuO12ltltwBh_cpoRj7pi/pub", + "ideas_url": "https://c2si.org/gsoc/", "irc_channel": "https://join.slack.com/t/c2si-org/shared_invite/zt-2c4enytwh-ONEWumBjZC5hbUOAmBDP8A", "mailing_list": "https://groups.google.com/g/c2si-community" }, @@ -331,7 +336,7 @@ "blog": "https://blog.c2si.org", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/c2siorg", "gitlab": null, "instagram": null, "linkedin": null, @@ -346,6 +351,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:52.971Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/cbioportal-for-cancer-genomics.json b/new-api-details/organizations/cbioportal-for-cancer-genomics.json index 092ab3ad..3fb6f5ed 100644 --- a/new-api-details/organizations/cbioportal-for-cancer-genomics.json +++ b/new-api-details/organizations/cbioportal-for-cancer-genomics.json @@ -3,7 +3,7 @@ "slug": "cbioportal-for-cancer-genomics", "name": "cBioPortal for Cancer Genomics", "category": "Science and medicine", - "description": "Aid discovery in complex cancer genomics data", + "description": "The cBioPortal for Cancer Genomics is a resource designed to provide broad community access to cancer genomic data. It provides a unique user-friendly and \"biology-centric computational user interface\", with the goal of making genomic data more easily accessible to translational scientists, biologists, and clinicians. The interface was explicitly built and continues to evolve with careful usability studies involving multiple biological and clinical users, and an active and engaged user base.\n\nThe public instance of cBioPortal (https://cbioportal.org/) is one of the most popular online resources for cancer genomics data and attracts more than 3,000 unique visitors (cancer researchers and clinicians) per day. The three papers documenting the cBioPortal: Cerami et al. Cancer Discov. 2012; Gao et al. Sci. Signal. 2013; and de Bruijn et al. Cancer Res. 2023; have been cited more than 16,000, 17,000, and 800 times, respectively. There are more than 100 actively used cBioPortal instances in hospitals, universities, pharmaceutical companies, and other institutes around the globe.\n\nWe are a group of software engineers, bioinformaticians, and cancer biologists building software solutions for precision medicine for cancer patients. Our overall goal is to build infrastructure to support clinical decisions for personalized cancer treatment by utilizing “big data” of cancer genomics and patient clinical profiles. Our multi-institutional team currently has more than 30 active members, primarily from Memorial Sloan Kettering Cancer Center, the Dana-Farber Cancer Institute, Princess Margaret Cancer Centre, Children's Hospital of Philadelphia, and The Hyve, a bioinformatics company from the Netherlands.", "image_url": "https://summerofcode.withgoogle.com/media/org/cbioportal-for-cancer-genomics/fdxtjhb0urtqcyfe-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cbioportal-for-cancer-genomics.webp", "logo_r2_url": null, @@ -15,10 +15,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "javascript", @@ -57,7 +58,8 @@ "year_2022": 2, "year_2023": 6, "year_2024": 9, - "year_2025": 4 + "year_2025": 4, + "year_2026": null }, "students_by_year": { "year_2016": 5, @@ -69,7 +71,8 @@ "year_2022": 2, "year_2023": 6, "year_2024": 9, - "year_2025": 4 + "year_2025": 4, + "year_2026": null }, "total_students": 38 }, @@ -854,13 +857,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/cbioportal-for-cancer-genomics" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": null, "guide_url": "https://github.com/cBioPortal/GSoC", - "ideas_url": "https://github.com/cBioPortal/gsoc/issues?q=is%3Aissue%20state%3Aopen%20label%3AGSoC-2025", + "ideas_url": "https://github.com/cBioPortal/GSoC/issues?q=is%3Aissue%20state%3Aopen%20label%3AGSoC-2026", "irc_channel": "https://slack.cbioportal.org", "mailing_list": "https://groups.google.com/forum/#!forum/cbioportal-gsoc" }, @@ -868,7 +872,7 @@ "blog": null, "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/cBioPortal", "gitlab": null, "instagram": null, "linkedin": null, @@ -878,11 +882,11 @@ "slack": null, "stackoverflow": null, "twitch": null, - "twitter": "https://twitter.com/cbioportal", + "twitter": "https://x.com/cbioportal", "youtube": null }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.509Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/ccextractor-development.json b/new-api-details/organizations/ccextractor-development.json index 8bcac131..8f45673d 100644 --- a/new-api-details/organizations/ccextractor-development.json +++ b/new-api-details/organizations/ccextractor-development.json @@ -3,7 +3,7 @@ "slug": "ccextractor-development", "name": "CCExtractor Development", "category": "End user applications", - "description": "TV, Rust, Flutter, Linux, VR and C. In any order.", + "description": "CCExtractor Development is the creator of the de-facto captions extraction tool - CCExtractor. It is the one tool that is free, portable, open source and community managed that can take a recording from a TV show and generate an external subtitle file for it.\n\nIf you regularly watch content with subtitles you download from fan sites - you should know that the source file is most likely generated by CCExtractor. If you are a student in a university that uses subtitles for natural language study, you should know that most likely we are involved somehow.\n\nWhile we already support subtitles from North America, Europe, Australia and more, our world map is not yet complete. We are actively looking for students that want to help us fill the gaps. We also want to automate many of the processes that are currently done manually, such as achieving perfect sync, our media file management.\n\nIn addition to continuously evolve our core tool, we have a growing number of new projects: support, AI, rclone, cloud, flutter, peer-to-peer and a few more that are starting to take shape.\n\nThe best part is - students have flexibility of choosing projects from a wide range of topics & technologies and even propose their own. We provide exceptional resources for students. Read more about the perks on our website.\n\nWe’re very excited to take part in GSoC for the 9th time. Most of our past students are still involved and are active in the community, which simply goes on to show how friendly and approachable is the environment. If you want to be a part of such community and help achieve our goals, come join our Slack group or mailing list!", "image_url": "https://summerofcode.withgoogle.com/media/org/ccextractor-development/xjqt8fksfnyqyqrd-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ccextractor-development.webp", "logo_r2_url": null, @@ -18,10 +18,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "c", @@ -76,7 +77,8 @@ "year_2022": 10, "year_2023": 7, "year_2024": 8, - "year_2025": 10 + "year_2025": 10, + "year_2026": null }, "students_by_year": { "year_2016": 6, @@ -88,7 +90,8 @@ "year_2022": 10, "year_2023": 7, "year_2024": 8, - "year_2025": 10 + "year_2025": 10, + "year_2026": null }, "total_students": 70 }, @@ -1678,13 +1681,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/ccextractor-development" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "gsoc@ccextractor.org", "guide_url": "https://ccextractor.org/docs/ideas_page_for_summer_of_code_2025/#your-proposal", - "ideas_url": "https://ccextractor.org/docs/ideas_page_for_summer_of_code_2025/", + "ideas_url": "https://ccextractor.org/docs/ideas_page_for_summer_of_code_2026/", "irc_channel": "https://ccextractor.org/public/general/support/", "mailing_list": "https://groups.google.com/g/ccextractor-dev" }, @@ -1692,7 +1696,7 @@ "blog": null, "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/CCExtractor", "gitlab": null, "instagram": null, "linkedin": null, @@ -1707,6 +1711,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:52.974Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/center-for-translational-data-science.json b/new-api-details/organizations/center-for-translational-data-science.json index 4277f06d..c8583396 100644 --- a/new-api-details/organizations/center-for-translational-data-science.json +++ b/new-api-details/organizations/center-for-translational-data-science.json @@ -14,7 +14,7 @@ ], "first_year": 2022, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "python", "aws", @@ -232,6 +232,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.007Z" + "generated_at": "2026-02-19T12:41:12.412Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/ceph-foundation.json b/new-api-details/organizations/ceph-foundation.json index 3ee387e2..0644743a 100644 --- a/new-api-details/organizations/ceph-foundation.json +++ b/new-api-details/organizations/ceph-foundation.json @@ -3,7 +3,7 @@ "slug": "ceph-foundation", "name": "Ceph Foundation", "category": "Data", - "description": "The Future of Storage", + "description": "An open-source storage platform that implements storage on a single distributed computer cluster and provides a 3-in-1 interface for object-, block- and file-level storage.", "image_url": "https://summerofcode.withgoogle.com/media/org/ceph/rvqqprqtyq0rfrcc-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ceph-foundation.webp", "logo_r2_url": null, @@ -16,10 +16,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -54,7 +55,8 @@ "year_2022": 1, "year_2023": 3, "year_2024": 3, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "students_by_year": { "year_2016": 4, @@ -66,7 +68,8 @@ "year_2022": 1, "year_2023": 3, "year_2024": 3, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "total_students": 29 }, @@ -698,7 +701,8 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/ceph" - } + }, + "year_2026": null }, "first_time": false, "contact": { @@ -712,7 +716,7 @@ "blog": "https://ceph.io/en/news/blog/", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/ceph", "gitlab": null, "instagram": null, "linkedin": null, @@ -727,6 +731,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.009Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/cern-hsf.json b/new-api-details/organizations/cern-hsf.json index 6d91fc28..482cf9b3 100644 --- a/new-api-details/organizations/cern-hsf.json +++ b/new-api-details/organizations/cern-hsf.json @@ -3,7 +3,7 @@ "slug": "cern-hsf", "name": "CERN-HSF", "category": "Science and medicine", - "description": "Umbrella for Particle Physics-related projects", + "description": "CERN-HSF (High-Energy Physics Software Foundation) is the umbrella organization for high-energy physics-related projects in GSoC. The HEP Software Foundation (http://hepsoftwarefoundation.org/) facilitates the coordination of common international efforts in high-energy physics software and computing.\n\nCERN (European Organization for Nuclear Research, https://home.cern) has participated in GSoC since 2011 as the CERN-SFT group, which provides common software for CERN's experiments. In 2017, the program expanded to include many software projects from the whole field of high-energy physics. The vast majority of our GSoC projects do not require any physics knowledge.\n\nThe experiments at CERN, such as the Large Hadron Collider, the world’s largest and most powerful particle accelerator (http://home.cern/topics/large-hadron-collider) try to answer fundamental questions about the Universe. For example, what is the nature of mass? What are the elementary building blocks of the Universe? What was the early Universe like? What is the nature of dark matter and dark energy? Why is there an asymmetry between matter and antimatter? In 2012, LHC experiments announced the discovery of a new particle, the Higgs Boson, that helps explain how particles obtain mass. Also, CERN is the birthplace of the World Wide Web. Today, particle physicists are working on analyzing the data from the experiments to study the properties of the newly discovered particle and to search for new physics, such as dark matter or extra dimensions. This requires a lot of sophisticated software.\n\nThe open-source high-energy physics projects to which students can contribute during GSoC span many high-energy physics software projects: data analysis, detector and accelerator simulation, event reconstruction, data management and many others. We look forward to your contributions!", "image_url": "https://summerofcode.withgoogle.com/media/org/cern-hsf/cjus658sjzba5zhg-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cern-hsf.webp", "logo_r2_url": null, @@ -17,10 +17,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -32,7 +33,8 @@ "parallelization", "concurrency", "container orchestration", - "artificial intelligence" + "artificial intelligence", + "c/c++" ], "topics": [ "machine learning", @@ -58,7 +60,8 @@ "year_2022": 21, "year_2023": 16, "year_2024": 17, - "year_2025": 26 + "year_2025": 26, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -70,7 +73,8 @@ "year_2022": 21, "year_2023": 16, "year_2024": 17, - "year_2025": 26 + "year_2025": 26, + "year_2026": null }, "total_students": 206 }, @@ -4171,13 +4175,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/cern-hsf" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "hsf-gsoc-admin@googlegroups.com", "guide_url": "https://hepsoftwarefoundation.org/activities/gsoc.html#for-students", - "ideas_url": "https://hepsoftwarefoundation.org/gsoc/2025/summary.html", + "ideas_url": "https://hepsoftwarefoundation.org/gsoc/2026/summary.html", "irc_channel": "https://gitter.im/HSF/HSF-GSoC?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge", "mailing_list": "https://hepsoftwarefoundation.org/activities/gsoc.html" }, @@ -4185,7 +4190,7 @@ "blog": null, "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/HSF", "gitlab": null, "instagram": null, "linkedin": null, @@ -4200,6 +4205,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:52.978Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/cgal-project.json b/new-api-details/organizations/cgal-project.json index 11c63eab..328a5d2d 100644 --- a/new-api-details/organizations/cgal-project.json +++ b/new-api-details/organizations/cgal-project.json @@ -3,7 +3,7 @@ "slug": "cgal-project", "name": "CGAL Project", "category": "Science and medicine", - "description": "C++ library of computational geometry", + "description": "CGAL is a software library that offers a number of reliable geometric data structures and algorithms. CGAL components operate in 2D and 3D, and sometime in arbitrary dimensions. Examples of components include convex hulls, convex decomposition, Delaunay triangulations, Voronoi diagrams, polygonal surface mesh data-structures, mesh generation, Boolean operations, envelope computations, intersection detection, surface reconstruction, and subdivision surfaces.\n\nCGAL is used in a variety of application domains such as CAD/CAM (computer aided design and modeling), GIS (geographic information systems), geophysics, image processing, molecular biology, robotics, motion planning, and graphics.\n\nCGAL is written in C++ and rigorously adheres to the generic-programming paradigm.\n\nCGAL became an Open Source project in 2003. Most of CGAL is under the GPL v3+ license, and some core parts are under the LGPL v3+. The semi-annual releases have currently about 10,000 downloads. CGAL is commercially supported by the spin-off company GeometryFactory.", "image_url": "https://summerofcode.withgoogle.com/media/org/cgal-project/9ubuadbe0eg5xfcw-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cgal-project.webp", "logo_r2_url": null, @@ -17,10 +17,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "github", @@ -56,7 +57,8 @@ "year_2022": 6, "year_2023": 10, "year_2024": 5, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -68,7 +70,8 @@ "year_2022": 6, "year_2023": 10, "year_2024": 5, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "total_students": 53 }, @@ -1180,7 +1183,8 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/cgal-project" - } + }, + "year_2026": null }, "first_time": false, "contact": { @@ -1194,7 +1198,7 @@ "blog": null, "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/CGAL/cgal", "gitlab": null, "instagram": null, "linkedin": null, @@ -1209,6 +1213,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:52.983Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/chaoss.json b/new-api-details/organizations/chaoss.json index 9ce8982c..1434d662 100644 --- a/new-api-details/organizations/chaoss.json +++ b/new-api-details/organizations/chaoss.json @@ -18,7 +18,7 @@ ], "first_year": 2018, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "javascript", "python 3", @@ -702,6 +702,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:52.986Z" + "generated_at": "2026-02-19T12:41:12.412Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/checker-framework.json b/new-api-details/organizations/checker-framework.json index 4084ab7f..56b0b7aa 100644 --- a/new-api-details/organizations/checker-framework.json +++ b/new-api-details/organizations/checker-framework.json @@ -17,7 +17,7 @@ ], "first_year": 2017, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "java", "compilers", @@ -442,6 +442,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.012Z" + "generated_at": "2026-02-19T12:41:12.412Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/checkstyle.json b/new-api-details/organizations/checkstyle.json index b4edc11f..c044009b 100644 --- a/new-api-details/organizations/checkstyle.json +++ b/new-api-details/organizations/checkstyle.json @@ -3,7 +3,7 @@ "slug": "checkstyle", "name": "checkstyle", "category": "Programming languages", - "description": "Helps to adheres of Java coding standard", + "description": "Checkstyle is a development tool to help programmers write Java code that is easy to read and adheres to a coding standard. Our utility automates the process of checking Java code to spare humans of this boring (but important) task. This makes it ideal for projects that want to enforce a coding standard. Each and every check also forces our users who are not familiar with these standards to read them and makes them think about why these standards exist.", "image_url": "https://summerofcode.withgoogle.com/media/org/checkstyle/e8ubktvaft8eljli-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/checkstyle.webp", "logo_r2_url": null, @@ -15,10 +15,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "java", @@ -46,7 +47,8 @@ "year_2022": 1, "year_2023": 2, "year_2024": 3, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -58,7 +60,8 @@ "year_2022": 1, "year_2023": 2, "year_2024": 3, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "total_students": 20 }, @@ -506,13 +509,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/checkstyle" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "checkstyle@googlegroups.com", "guide_url": "https://github.com/checkstyle/checkstyle/blob/master/.github/GSOC.md", - "ideas_url": "https://github.com/checkstyle/checkstyle/wiki/Checkstyle-GSoC-2025-Project-Ideas", + "ideas_url": "https://github.com/checkstyle/checkstyle/wiki/Checkstyle-GSoC-2026-Project-Ideas", "irc_channel": "https://discord.gg/FsUsYC2ura", "mailing_list": "https://groups.google.com/g/checkstyle-devel" }, @@ -520,7 +524,7 @@ "blog": "https://groups.google.com/g/checkstyle-devel", "discord": "https://discord.gg/FsUsYC2ura", "facebook": null, - "github": null, + "github": "https://github.com/checkstyle", "gitlab": null, "instagram": null, "linkedin": null, @@ -535,6 +539,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.516Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/chromium.json b/new-api-details/organizations/chromium.json index 8fe9e73c..0578f720 100644 --- a/new-api-details/organizations/chromium.json +++ b/new-api-details/organizations/chromium.json @@ -17,7 +17,7 @@ ], "first_year": 2021, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "python", "javascript", @@ -1515,6 +1515,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.014Z" + "generated_at": "2026-02-19T12:41:12.412Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/circuitverseorg.json b/new-api-details/organizations/circuitverseorg.json index 97050c0b..ce6d3b75 100644 --- a/new-api-details/organizations/circuitverseorg.json +++ b/new-api-details/organizations/circuitverseorg.json @@ -3,7 +3,7 @@ "slug": "circuitverseorg", "name": "CircuitVerse.org", "category": "Science and medicine", - "description": "Build and learn logic circuits in the cloud!", + "description": "CircuitVerse is an easy to use digital logic circuit simulator which aims at providing a platform to create, share and learn digital circuits. It can run on almost any device without the need for installing any software. The platform has been designed for use by students, professionals and hobbyists alike. The vision is to develop a community around the platform that will aid students to self-learn digital logic design. The platform is currently used by several universities worldwide. Apart from the simulator, users can create, learn, collaborate and share their work. Teachers can create groups and host assignments on the platform. The platform’s impact has been more evident than ever in the Covid 19 pandemic as CircuitVerse enabled schools and colleges to move their courses online.", "image_url": "https://summerofcode.withgoogle.com/media/org/circuitverseorg/rxan5pn96f3m4yfu-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/circuitverseorg.webp", "logo_r2_url": null, @@ -15,10 +15,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2019, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "postgresql", @@ -54,7 +55,8 @@ "year_2022": 4, "year_2023": 4, "year_2024": 5, - "year_2025": 6 + "year_2025": 6, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -66,7 +68,8 @@ "year_2022": 4, "year_2023": 4, "year_2024": 5, - "year_2025": 6 + "year_2025": 6, + "year_2026": null }, "total_students": 32 }, @@ -772,21 +775,22 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/circuitverseorg" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "support@circuitverse.org", "guide_url": "https://docs.google.com/document/d/1oeYPAuqWxeC79d-R5I9uFJywQJv4ooO4obF4pwifyTY/edit", - "ideas_url": "https://github.com/CircuitVerse/CircuitVerse/wiki/GSoC'25-Project-List", + "ideas_url": "https://github.com/CircuitVerse/CircuitVerse/wiki/GSoC'26-Project-List", "irc_channel": "https://circuitverse.org/slack", - "mailing_list": "https://github.com/CircuitVerse/CircuitVerse/discussions" + "mailing_list": "https://circuitverse.org/slack" }, "social": { "blog": "https://blog.circuitverse.org/", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/circuitverse", "gitlab": null, "instagram": null, "linkedin": null, @@ -801,6 +805,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.017Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/cloudcv.json b/new-api-details/organizations/cloudcv.json index 4434a870..cc38adea 100644 --- a/new-api-details/organizations/cloudcv.json +++ b/new-api-details/organizations/cloudcv.json @@ -21,7 +21,7 @@ ], "first_year": 2016, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "python", "javascript", @@ -726,6 +726,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.024Z" + "generated_at": "2026-02-19T12:41:12.412Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/cncf.json b/new-api-details/organizations/cncf.json index 605af58e..952f9f3b 100644 --- a/new-api-details/organizations/cncf.json +++ b/new-api-details/organizations/cncf.json @@ -3,7 +3,7 @@ "slug": "cncf", "name": "CNCF", "category": "Data", - "description": "Building sustainable ecosystems for cloud native", + "description": "Cloud Native Computing Foundation (CNCF) serves as the vendor-neutral home for many of the fastest-growing open source projects, including Kubernetes, Prometheus, and Envoy.", "image_url": "https://summerofcode.withgoogle.com/media/org/cncf/jmxijrttlucfutel-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cncf.webp", "logo_r2_url": null, @@ -17,10 +17,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "prometheus", @@ -64,7 +65,8 @@ "year_2022": 16, "year_2023": 14, "year_2024": 11, - "year_2025": 11 + "year_2025": 11, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -76,7 +78,8 @@ "year_2022": 16, "year_2023": 14, "year_2024": 11, - "year_2025": 11 + "year_2025": 11, + "year_2026": null }, "total_students": 113 }, @@ -2298,13 +2301,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/cncf" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "soc@cncf.io", "guide_url": "https://github.com/cncf/mentoring", - "ideas_url": "https://github.com/cncf/mentoring/blob/main/programs/summerofcode/2025.md", + "ideas_url": "https://github.com/cncf/mentoring/blob/main/programs/summerofcode/2026.md", "irc_channel": "http://slack.cncf.io", "mailing_list": "https://github.com/cncf/mentoring/discussions" }, @@ -2312,7 +2316,7 @@ "blog": "https://www.cncf.io/newsroom/blog/", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/cncf/", "gitlab": null, "instagram": null, "linkedin": null, @@ -2327,6 +2331,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:52.991Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/criu.json b/new-api-details/organizations/criu.json index 261ec676..ec73ce40 100644 --- a/new-api-details/organizations/criu.json +++ b/new-api-details/organizations/criu.json @@ -3,7 +3,7 @@ "slug": "criu", "name": "CRIU", "category": "Operating systems", - "description": "Chekpoint/Restore for Linux tasks and containers", + "description": "CRIU (stands for Checkpoint/Restore In Userspace), is a Linux software. It can freeze a running container (or an individual application) and checkpoint its state to disk. The data saved can be used to restore the application and run it exactly as it was during the time of the freeze. Using this functionality, application or container live migration, snapshots, remote debugging, and many other things are now possible. \nCRIU is packaged for all leading Linux distributions and it is integrated wit lots of popular projects such as Docker, Podman, LXC/LXD, OpenVZ, runc, open-mpi and others", "image_url": "https://summerofcode.withgoogle.com/media/org/criu/ypjxpancpwtdf698-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/criu.webp", "logo_r2_url": null, @@ -15,10 +15,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2019, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "linux", @@ -57,7 +58,8 @@ "year_2022": 2, "year_2023": 3, "year_2024": 3, - "year_2025": 3 + "year_2025": 3, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -69,7 +71,8 @@ "year_2022": 2, "year_2023": 3, "year_2024": 3, - "year_2025": 3 + "year_2025": 3, + "year_2026": null }, "total_students": 15 }, @@ -450,7 +453,8 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/criu" - } + }, + "year_2026": null }, "first_time": false, "contact": { @@ -464,7 +468,7 @@ "blog": "https://criu.org", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/checkpoint-restore/criu", "gitlab": null, "instagram": null, "linkedin": null, @@ -479,6 +483,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:52.995Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/cuneiform-digital-library-initiative-cdli.json b/new-api-details/organizations/cuneiform-digital-library-initiative-cdli.json index f5a8d5f9..3fcc503e 100644 --- a/new-api-details/organizations/cuneiform-digital-library-initiative-cdli.json +++ b/new-api-details/organizations/cuneiform-digital-library-initiative-cdli.json @@ -3,21 +3,22 @@ "slug": "cuneiform-digital-library-initiative-cdli", "name": "Cuneiform Digital Library Initiative (CDLI)", "category": "Science and medicine", - "description": "Curating humanity's oldest written sources", - "image_url": "https://summerofcode.withgoogle.com/media/org/cuneiform-digital-library-initiative-cdli/rljrqtuzc0jxkpcp-360.png", + "description": "The Cuneiform Digital Library Initiative (CDLI) is a global collaboration of Assyriologists, museum curators, and historians working together to make the world’s earliest written records accessible online. CDLI focuses on cuneiform inscriptions dating back to the very beginning of writing around 3350 BC. Today, more than 500,000 such artifacts are held in museums and private collections worldwide, and CDLI has already digitally catalogued over 350,000 of them, helping researchers and the public explore humanity’s oldest written heritage.", + "image_url": "https://summerofcode.withgoogle.com/media/org/cuneiform-digital-library-initiative-cdli/pcifkvibocfw8hiy.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cuneiform-digital-library-initiative-cdli.webp", "logo_r2_url": null, - "url": "https://cdli.ucla.edu", + "url": "https://cdli.earth", "active_years": [ 2018, 2019, 2020, 2021, - 2022 + 2022, + 2026 ], "first_year": 2018, - "last_year": 2022, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ "python", "mariadb", @@ -51,7 +52,9 @@ "digitization", "cultural heritage", "History", - "culture" + "culture", + "data", + "assyriology" ], "total_projects": 30, "stats": { @@ -66,7 +69,8 @@ "year_2022": 7, "year_2023": null, "year_2024": null, - "year_2025": null + "year_2025": null, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -78,7 +82,8 @@ "year_2022": 7, "year_2023": null, "year_2024": null, - "year_2025": null + "year_2025": null, + "year_2026": null }, "total_students": 29 }, @@ -688,22 +693,23 @@ }, "year_2023": null, "year_2024": null, - "year_2025": null + "year_2025": null, + "year_2026": null }, "first_time": false, "contact": { - "email": "cdli+gsoc@ucla.edu", - "guide_url": null, - "ideas_url": null, + "email": "nisheal.work@gmail.com", + "guide_url": "https://gitlab.com/cdli/framework/-/wikis/Writing-a-GSoC-proposal-for-CDLI", + "ideas_url": "https://gitlab.com/cdli/framework/-/wikis/Google-Summer-of-Code-GSoC-2026-Cuneiform-Digital-Library-Initiative-(CDLI)-ideas-list", "irc_channel": "https://gitlab.com/cdli/framework/-/wikis/Join-the-Community-and-GSoC-Contact", "mailing_list": "https://docs.google.com/forms/d/1neaY7d-IGX0Hu_x5kgJpehLnlRp0yx5PqlIMoDIYKJE" }, "social": { - "blog": "https://cdli-gh.github.io/blog/index", + "blog": "https://www.linkedin.com/company/cuneiform-digital-library-initiative", "discord": null, "facebook": null, "github": null, - "gitlab": null, + "gitlab": "https://gitlab.com/cdli/framework", "instagram": null, "linkedin": null, "mastodon": null, @@ -717,6 +723,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.035Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/d-language-foundation.json b/new-api-details/organizations/d-language-foundation.json index 32e7b1aa..83b90900 100644 --- a/new-api-details/organizations/d-language-foundation.json +++ b/new-api-details/organizations/d-language-foundation.json @@ -3,7 +3,7 @@ "slug": "d-language-foundation", "name": "D Language Foundation", "category": "Programming languages", - "description": "Write fast, read fast, and run fast.", + "description": "The D Language Foundation manages the D programming language and its entire ecosystem.", "image_url": "https://summerofcode.withgoogle.com/media/org/d-language-foundation/u25qvh5ljfkkhkjj.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/d-language-foundation.webp", "logo_r2_url": null, @@ -11,10 +11,11 @@ "active_years": [ 2016, 2019, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "c++", @@ -52,7 +53,8 @@ "year_2022": null, "year_2023": null, "year_2024": null, - "year_2025": 2 + "year_2025": 2, + "year_2026": null }, "students_by_year": { "year_2016": 4, @@ -64,7 +66,8 @@ "year_2022": null, "year_2023": null, "year_2024": null, - "year_2025": 2 + "year_2025": 2, + "year_2026": null }, "total_students": 11 }, @@ -287,21 +290,22 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/d-language-foundation" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "razvan.nitu@dlang.org", "guide_url": "https://dlang.github.io/GSoC/#become-a-dlang-gsocc-contributor", - "ideas_url": "https://dlang.github.io/GSoC/", - "irc_channel": "https://discord.gg/tw2c6mcKAp", + "ideas_url": "https://dlang.github.io/GSoC/gsoc-2026/project-ideas.html", + "irc_channel": "https://dlang.slack.com", "mailing_list": "https://forum.dlang.org/" }, "social": { "blog": "https://dlang.org/blog/", "discord": "https://discord.gg/tw2c6mcKAp", "facebook": null, - "github": null, + "github": "https://github.com/dlang", "gitlab": null, "instagram": null, "linkedin": null, @@ -316,6 +320,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.036Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/dart.json b/new-api-details/organizations/dart.json index b65cc3e1..a4d9f34c 100644 --- a/new-api-details/organizations/dart.json +++ b/new-api-details/organizations/dart.json @@ -3,7 +3,7 @@ "slug": "dart", "name": "Dart", "category": "Programming languages", - "description": "Dart is a client language for apps on any platform", + "description": "The Dart language gives you a fast developer experience and works on any platform. Dart powers hot reload enabling you to make a code change and instantly see results in your running app, and compiles to ARM and x64 machine code enabling quick app startup times for mobile, desktop and the web.\n\nDart powers Flutter, Google’s UI toolkit for building beautiful, natively compiled applications for mobile, web, and desktop from a single codebase.", "image_url": "https://summerofcode.withgoogle.com/media/org/dart/hsghljw4m6popf0x-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/dart.webp", "logo_r2_url": null, @@ -14,10 +14,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2020, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "flutter", @@ -42,7 +43,8 @@ "year_2022": 3, "year_2023": 2, "year_2024": 4, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -54,7 +56,8 @@ "year_2022": 3, "year_2023": 2, "year_2024": 4, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "total_students": 21 }, @@ -533,21 +536,22 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/dart" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": null, "guide_url": "https://github.com/dart-lang/sdk/blob/main/docs/gsoc/Dart-GSoC-2025-Project-Ideas.md", - "ideas_url": "https://github.com/dart-lang/sdk/blob/main/docs/gsoc/Dart-GSoC-2025-Project-Ideas.md", + "ideas_url": "https://github.com/dart-lang/sdk/blob/main/docs/gsoc/Dart-GSoC-2026-Project-Ideas.md", "irc_channel": null, "mailing_list": "https://groups.google.com/g/dart-gsoc" }, "social": { - "blog": null, + "blog": "https://medium.com/dartlang", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/dart-lang/", "gitlab": null, "instagram": null, "linkedin": null, @@ -562,6 +566,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.039Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/data-for-the-common-good.json b/new-api-details/organizations/data-for-the-common-good.json index b8288396..bf608eae 100644 --- a/new-api-details/organizations/data-for-the-common-good.json +++ b/new-api-details/organizations/data-for-the-common-good.json @@ -3,17 +3,18 @@ "slug": "data-for-the-common-good", "name": "Data for the Common Good", "category": "Web", - "description": "Connect. Share. Discover.", + "description": "Data for the Common Good is dedicated to building communities, platforms, and ecosystems that maximize the potential of data to drive discovery and improve human health. Headquartered in the Department of Pediatrics at the University of Chicago, our team of experts works with collaborators all over the world to connect and share useful, high-quality data between institutions, groups, and countries to increase opportunities for discovery.", "image_url": "https://summerofcode.withgoogle.com/media/org/data-for-the-common-good/tk4snywy4ejlztpt-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/data-for-the-common-good.webp", "logo_r2_url": null, "url": "https://commons.cri.uchicago.edu", "active_years": [ 2024, - 2025 + 2025, + 2026 ], "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -42,7 +43,8 @@ "year_2022": null, "year_2023": null, "year_2024": 4, - "year_2025": 4 + "year_2025": 4, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -54,7 +56,8 @@ "year_2022": null, "year_2023": null, "year_2024": 4, - "year_2025": 4 + "year_2025": 4, + "year_2026": null }, "total_students": 8 }, @@ -243,13 +246,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/data-for-the-common-good" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "lgraglia@uchicago.edu", "guide_url": "https://docs.pedscommons.org/GSoC/proposal", - "ideas_url": "https://docs.pedscommons.org/GSoC/ideas", + "ideas_url": "https://chicagopcdc.github.io/GSoC/ideas", "irc_channel": null, "mailing_list": null }, @@ -257,7 +261,7 @@ "blog": null, "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/chicagopcdc", "gitlab": null, "instagram": null, "linkedin": null, @@ -272,6 +276,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.040Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/dbpedia.json b/new-api-details/organizations/dbpedia.json index 4f7d3b9a..c5f286e6 100644 --- a/new-api-details/organizations/dbpedia.json +++ b/new-api-details/organizations/dbpedia.json @@ -2,8 +2,8 @@ "id": "692251d153dd9d7326d33d8a", "slug": "dbpedia", "name": "DBpedia", - "category": "Science and medicine", - "description": "Global and Unified Access to Knowledge Graphs.", + "category": "Data", + "description": "DBpedia is a crowd-sourced community effort to extract structured information from Wikipedia and make this information available on the Web. It allows for a global and unified access to Knowledge Graphs.", "image_url": "https://summerofcode.withgoogle.com/media/org/dbpedia/cgjegpmawtu5fr6w-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/dbpedia.webp", "logo_r2_url": null, @@ -18,10 +18,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -64,7 +65,8 @@ "year_2022": 4, "year_2023": 6, "year_2024": 5, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "students_by_year": { "year_2016": 8, @@ -76,7 +78,8 @@ "year_2022": 4, "year_2023": 6, "year_2024": 5, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "total_students": 61 }, @@ -1277,13 +1280,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/dbpedia" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "dbpedia@infai.org", "guide_url": "https://docs.google.com/document/d/e/2PACX-1vQA3I-8JnxH78UOyVhVy1cpDCxwWvqs8BCN9YsR8UqOBiA-OigrSFd9SvTd2AuWdko1TSPtjip6NM65/pub", - "ideas_url": "https://forum.dbpedia.org/tag/gsoc2025-ideas", + "ideas_url": "https://forum.dbpedia.org/tag/gsoc2026-ideas", "irc_channel": "https://dbpedia.slack.com/", "mailing_list": "https://forum.dbpedia.org/" }, @@ -1291,7 +1295,7 @@ "blog": "https://www.dbpedia.org/blog/", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/dbpedia/", "gitlab": null, "instagram": null, "linkedin": null, @@ -1306,6 +1310,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.037Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/debian.json b/new-api-details/organizations/debian.json index 13d36a48..d3f7b477 100644 --- a/new-api-details/organizations/debian.json +++ b/new-api-details/organizations/debian.json @@ -3,7 +3,7 @@ "slug": "debian", "name": "Debian", "category": "Operating systems", - "description": "The Universal Operating System", + "description": "The Debian Project is an association of Free Software developers who\nvolunteer their time and effort in order to produce and maintain a completely free\noperating system Debian. Since its launch, the Debian project has grown to comprise more than 1,000 members with official developer status, alongside many more volunteers and contributors. Today, Debian encompasses over 50,000 packages of free, open source applications and documentation.", "image_url": "https://summerofcode.withgoogle.com/media/org/debian/mmld9soj4mti8bjn-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/debian.webp", "logo_r2_url": null, @@ -16,10 +16,11 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "c", @@ -71,7 +72,8 @@ "year_2022": 2, "year_2023": null, "year_2024": 7, - "year_2025": 9 + "year_2025": 9, + "year_2026": null }, "students_by_year": { "year_2016": 20, @@ -83,7 +85,8 @@ "year_2022": 2, "year_2023": null, "year_2024": 7, - "year_2025": 9 + "year_2025": 9, + "year_2026": null }, "total_students": 76 }, @@ -1617,13 +1620,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/debian" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "outreach@debian.org", "guide_url": "https://wiki.debian.org/SummerOfCode2025", - "ideas_url": "https://wiki.debian.org/SummerOfCode2025/Projects", + "ideas_url": "https://wiki.debian.org/SummerOfCode2026/Projects", "irc_channel": "https://wiki.debian.org/IRC", "mailing_list": "https://lists.debian.org/debian-outreach" }, @@ -1646,6 +1650,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.042Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/deepchem.json b/new-api-details/organizations/deepchem.json index 9854c658..d5108d6c 100644 --- a/new-api-details/organizations/deepchem.json +++ b/new-api-details/organizations/deepchem.json @@ -3,17 +3,18 @@ "slug": "deepchem", "name": "DeepChem", "category": "Science and medicine", - "description": "Democratize AI for drug discovery.", + "description": "We democratize access to AI tools for drug discovery and other scientific applications of deep learning more broadly. We also maintain a collection of scientific datasets for benchmarking and building new deep learning architectures along with an extensive open source collection of scientific machine learning tutorials. DeepChem has a strong educational component and partners with a broad range of academic and governmental institutions.", "image_url": "https://summerofcode.withgoogle.com/media/org/deepchem/ffdofoxp3ba1qqmh-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/deepchem.webp", "logo_r2_url": null, "url": "https://www.deepchem.io", "active_years": [ 2024, - 2025 + 2025, + 2026 ], "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -41,7 +42,8 @@ "year_2022": null, "year_2023": null, "year_2024": 8, - "year_2025": 6 + "year_2025": 6, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -53,7 +55,8 @@ "year_2022": null, "year_2023": null, "year_2024": 8, - "year_2025": 6 + "year_2025": 6, + "year_2026": null }, "total_students": 14 }, @@ -341,13 +344,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/deepchem" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": null, "guide_url": "https://forum.deepchem.io/t/gsoc-proposal-guidelines-2024/1102", - "ideas_url": "https://forum.deepchem.io/t/deepchem-gsoc-2025-project-ideas/1568", + "ideas_url": "https://github.com/deepchem/deepchem/discussions/4703", "irc_channel": "https://discord.gg/RYTrUY8Ssn", "mailing_list": "https://forum.deepchem.io/" }, @@ -355,7 +359,7 @@ "blog": null, "discord": "https://discord.gg/RYTrUY8Ssn", "facebook": null, - "github": null, + "github": "https://github.com/deepchem/deepchem", "gitlab": null, "instagram": null, "linkedin": null, @@ -370,6 +374,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.046Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/department-of-biomedical-informatics-emory-university.json b/new-api-details/organizations/department-of-biomedical-informatics-emory-university.json index 43d966b2..5300e539 100644 --- a/new-api-details/organizations/department-of-biomedical-informatics-emory-university.json +++ b/new-api-details/organizations/department-of-biomedical-informatics-emory-university.json @@ -17,7 +17,7 @@ ], "first_year": 2021, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "python", "java", @@ -659,6 +659,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.048Z" + "generated_at": "2026-02-19T12:41:12.412Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/django-software-foundation.json b/new-api-details/organizations/django-software-foundation.json index 18324695..cff044b6 100644 --- a/new-api-details/organizations/django-software-foundation.json +++ b/new-api-details/organizations/django-software-foundation.json @@ -3,7 +3,7 @@ "slug": "django-software-foundation", "name": "Django Software Foundation", "category": "Web", - "description": "Web framework for perfectionists with deadlines", + "description": "Django is a high-level Python Web framework originally developed at the Lawrence-Journal World. Django was designed to handle two challenges: the intensive deadlines of a newsroom and the stringent requirements of the experienced Web developers who wrote it. It lets you build high-performing, elegant Web applications quickly.", "image_url": "https://summerofcode.withgoogle.com/media/org/django-software-foundation-8o/685unxpkksrvfugu-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/django-software-foundation.webp", "logo_r2_url": null, @@ -18,10 +18,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -46,7 +47,8 @@ "year_2022": 2, "year_2023": 1, "year_2024": 4, - "year_2025": 3 + "year_2025": 3, + "year_2026": null }, "students_by_year": { "year_2016": 1, @@ -58,7 +60,8 @@ "year_2022": 2, "year_2023": 1, "year_2024": 4, - "year_2025": 3 + "year_2025": 3, + "year_2026": null }, "total_students": 19 }, @@ -468,13 +471,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/django-software-foundation-8o" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "django-developers@googlegroups.com", - "guide_url": "https://code.djangoproject.com/wiki/SummerOfCode2025", - "ideas_url": "https://code.djangoproject.com/wiki/SummerOfCode2025", + "guide_url": "https://code.djangoproject.com/wiki/SummerOfCode2026", + "ideas_url": "https://code.djangoproject.com/wiki/SummerOfCode2026", "irc_channel": "https://docs.djangoproject.com/en/dev/internals/contributing/new-contributors/", "mailing_list": "https://forum.djangoproject.com/c/internals/mentorship/10" }, @@ -482,7 +486,7 @@ "blog": "https://www.djangoproject.com/weblog/", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/django/django", "gitlab": null, "instagram": null, "linkedin": null, @@ -497,6 +501,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.055Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/dora-rs.json b/new-api-details/organizations/dora-rs.json index b5fc040d..21767482 100644 --- a/new-api-details/organizations/dora-rs.json +++ b/new-api-details/organizations/dora-rs.json @@ -3,16 +3,17 @@ "slug": "dora-rs", "name": "dora-rs", "category": "End user applications", - "description": "Simplify robotic apps with low latency & distributed dataflow", + "description": "DORA (Dataflow-Oriented Robotic Architecture) is middleware designed to streamline and simplify the creation of AI-based robotic applications. It offers low latency, composable, and distributed dataflow capabilities. Applications are modeled as directed graphs, also referred to as pipelines.", "image_url": "https://summerofcode.withgoogle.com/media/org/dora-rs-tb/u8emntrmqq6vgcih-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/dora-rs.webp", "logo_r2_url": null, "url": "https://dora-rs.ai", "active_years": [ - 2025 + 2025, + 2026 ], "first_year": 2025, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -41,7 +42,8 @@ "year_2022": null, "year_2023": null, "year_2024": null, - "year_2025": 2 + "year_2025": 2, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -53,7 +55,8 @@ "year_2022": null, "year_2023": null, "year_2024": null, - "year_2025": 2 + "year_2025": 2, + "year_2026": null }, "total_students": 2 }, @@ -111,13 +114,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/dora-rs-tb" - } + }, + "year_2026": null }, "first_time": true, "contact": { - "email": "huangyu@dora-rs.org", + "email": "bding@dora-rs.org", "guide_url": "https://github.com/dora-rs/dora/blob/main/CONTRIBUTING.md", - "ideas_url": "https://github.com/dora-rs/dora/wiki/GSoC_2025", + "ideas_url": "https://github.com/dora-rs/dora/wiki/GSoC_2026", "irc_channel": null, "mailing_list": null }, @@ -125,7 +129,7 @@ "blog": "https://x.com/bobd98846595?t=b3gA64CFMvmEF-0sIKrNsA&s=09", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/dora-rs", "gitlab": null, "instagram": null, "linkedin": null, @@ -140,6 +144,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.524Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/drupal-association.json b/new-api-details/organizations/drupal-association.json index 68d65774..b496717b 100644 --- a/new-api-details/organizations/drupal-association.json +++ b/new-api-details/organizations/drupal-association.json @@ -3,7 +3,7 @@ "slug": "drupal-association", "name": "Drupal Association", "category": "Web", - "description": "The best open source digital experience platform", + "description": "Drupal is a powerful Content Management System (CMS) and framework built on PHP, used globally by governments, universities, and businesses to build complex websites and applications, offering unmatched flexibility, security, and scalability through its modular architecture (modules and themes) and community-driven development.", "image_url": "https://summerofcode.withgoogle.com/media/org/drupal-association/kfbn4ws0uftixkho-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/drupal-association.webp", "logo_r2_url": null, @@ -17,10 +17,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "javascript", @@ -72,7 +73,8 @@ "year_2022": 3, "year_2023": 4, "year_2024": 6, - "year_2025": 7 + "year_2025": 7, + "year_2026": null }, "students_by_year": { "year_2016": 9, @@ -84,7 +86,8 @@ "year_2022": 3, "year_2023": 4, "year_2024": 6, - "year_2025": 7 + "year_2025": 7, + "year_2026": null }, "total_students": 38 }, @@ -895,13 +898,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/drupal-association" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "lechleider.matthew@gmail.com", "guide_url": "https://www.drupal.org/community/contributor-guide/reference-information/google-summer-of-code/for-gsoc-students-where-to", - "ideas_url": "https://www.drupal.org/project/gsoc", + "ideas_url": "https://www.drupal.org/project/issues/gsoc?text=2026&status=All&priorities=All&categories=All&version=All&component=All", "irc_channel": "https://www.drupal.org/community/contributor-guide/reference-information/talk/tools/slack", "mailing_list": "https://groups.drupal.org/google-summer-code" }, @@ -924,6 +928,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.057Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/eclipse-foundation.json b/new-api-details/organizations/eclipse-foundation.json index 562ad437..fa70f014 100644 --- a/new-api-details/organizations/eclipse-foundation.json +++ b/new-api-details/organizations/eclipse-foundation.json @@ -3,7 +3,7 @@ "slug": "eclipse-foundation", "name": "Eclipse Foundation", "category": "Programming languages", - "description": "The Global Open Source Foundation", + "description": "The Eclipse Foundation provides our global community of individuals & organizations with a mature, scalable, and business-friendly environment for OSS collaboration and innovation.\n\nEclipse is an open source community that's focused around key principles of transparency, openness, and vendor neutrality: the work that we do is done in a manner that can be observed by anybody with an interest; project teams welcome new ideas, and invites others to participate; and vendor neutrality ensures that no single vendor can dominate a project and that everybody plays by the same set of rules (a so-called \"level playing field\").\n\nNaturally, Eclipse projects are also all about the code. With over three hundred and\nsixty (https://projects.eclipse.org/) open source projects covering a diverse set of of\ntechnologies, there's something here for everybody. \n\nEclipse projects build technology in areas such as Internet of Things (https://projects.eclipse.org/technology-type/internet-things), Programming Languages and IDE (https://projects.eclipse.org/technology-type/language), and\nRuntimes (https://projects.eclipse.org/technology-type/runtime) like Jetty and\nEE4J (http://www.eclipse.org/ee4j) (currently known as Java EE).\n\nFor those students interested in research, we have an entire working group focused\non Science (https://projects.eclipse.org/projects/science) where researches from\nsome of the world's most prestigious labs do open source development to support\ntheir research areas.", "image_url": "https://summerofcode.withgoogle.com/media/org/eclipse-foundation/xo1ntao7atq7yjg2-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/eclipse-foundation.webp", "logo_r2_url": null, @@ -17,10 +17,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "c", @@ -76,7 +77,8 @@ "year_2022": 5, "year_2023": 6, "year_2024": 5, - "year_2025": 7 + "year_2025": 7, + "year_2026": null }, "students_by_year": { "year_2016": 11, @@ -88,7 +90,8 @@ "year_2022": 5, "year_2023": 6, "year_2024": 5, - "year_2025": 7 + "year_2025": 7, + "year_2026": null }, "total_students": 61 }, @@ -1436,13 +1439,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/eclipse-foundation" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "emo@eclipse-foundation.org", "guide_url": "https://gitlab.eclipse.org/eclipsefdn/emo-team/gsoc-at-the-ef/-/blob/main/README.md", - "ideas_url": "https://gitlab.eclipse.org/eclipsefdn/emo-team/gsoc-at-the-ef/-/issues/?sort=due_date&state=opened&label_name%5B%5D=Project%20Idea&label_name%5B%5D=GSoC%202025&first_page_size=50", + "ideas_url": "https://gitlab.eclipse.org/eclipsefdn/emo-team/gsoc-at-the-ef/-/issues/?sort=created_date&state=opened&label_name%5B%5D=GSoC%202026&first_page_size=100", "irc_channel": "https://wiki.eclipse.org/IRC", "mailing_list": "https://dev.eclipse.org/mailman/listinfo/soc-dev" }, @@ -1450,7 +1454,7 @@ "blog": "https://planet.eclipse.org", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/eclipse", "gitlab": null, "instagram": null, "linkedin": null, @@ -1465,6 +1469,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.061Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/electron.json b/new-api-details/organizations/electron.json index 8f1eb7a8..b4cea90e 100644 --- a/new-api-details/organizations/electron.json +++ b/new-api-details/organizations/electron.json @@ -15,7 +15,7 @@ ], "first_year": 2022, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "javascript", "node.js", @@ -190,6 +190,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.066Z" + "generated_at": "2026-02-19T12:41:12.412Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/erofs-filesystem.json b/new-api-details/organizations/erofs-filesystem.json new file mode 100644 index 00000000..1f2bcf7f --- /dev/null +++ b/new-api-details/organizations/erofs-filesystem.json @@ -0,0 +1,103 @@ +{ + "id": "new_2026_erofs-filesystem", + "slug": "erofs-filesystem", + "name": "EROFS filesystem", + "category": "Operating systems", + "description": "EROFS [1] is a modern, high-performance block-based immutable Linux filesystem with highly-optimized on-disk format and runtime implementation. Since it's landed upstream, it has been widely deployed to billions of devices, and addresses various target scenarios. Nowadays, almost all Linux mainstream distributions support EROFS.\n\nEROFS has become a recommended filesystem [2] for Android system partitions and has already been adopted by the majority of Android vendors. It has also become popular in the Linux container world. For example, Composefs [3] uses the EROFS format for its metadata tree. Containerd 2.1 [4] also officially includes a built-in EROFS support to boost container launch performance. gVisor now supports EROFS as well [5].\n\n[1] https://erofs.docs.kernel.org\n[2] https://source.android.com/docs/core/architecture/kernel/erofs\n[3] https://github.com/containers/composefs\n[4] https://github.com/containerd/containerd/releases/tag/v2.1.0\n[5] https://github.com/google/gvisor/pull/9486", + "image_url": "https://summerofcode.withgoogle.com/media/org/erofs-filesystem/qrkpvwkzjqmwoyau-360.png", + "img_r2_url": "https://summerofcode.withgoogle.com/media/org/erofs-filesystem/qrkpvwkzjqmwoyau-360.png", + "logo_r2_url": null, + "url": "https://erofs.docs.kernel.org", + "active_years": [ + 2026 + ], + "first_year": 2026, + "last_year": 2026, + "is_currently_active": true, + "technologies": [ + "c", + "android", + "linux kernel", + "Containerd", + "gVisor" + ], + "topics": [ + "operating system", + "containers", + "android", + "filesystems", + "agent sandbox" + ], + "total_projects": 0, + "stats": { + "avg_projects_per_appeared_year": 0, + "projects_by_year": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "students_by_year": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "total_students": 0 + }, + "years": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "contact": { + "email": null, + "guide_url": null, + "ideas_url": "https://erofs.docs.kernel.org/en/latest/roadmap.html", + "irc_channel": null, + "mailing_list": "linux-erofs@lists.ozlabs.org" + }, + "social": { + "blog": "https://erofs.docs.kernel.org", + "discord": null, + "facebook": null, + "github": null, + "gitlab": null, + "instagram": null, + "linkedin": null, + "mastodon": null, + "medium": null, + "reddit": null, + "slack": null, + "stackoverflow": null, + "twitch": null, + "twitter": null, + "youtube": null + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:46:24.131Z" + } +} \ No newline at end of file diff --git a/new-api-details/organizations/fedora-project.json b/new-api-details/organizations/fedora-project.json index 521cbd89..a128c353 100644 --- a/new-api-details/organizations/fedora-project.json +++ b/new-api-details/organizations/fedora-project.json @@ -18,7 +18,7 @@ ], "first_year": 2016, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "python", "postgresql", @@ -665,6 +665,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.132Z" + "generated_at": "2026-02-19T12:41:12.412Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/ffmpeg.json b/new-api-details/organizations/ffmpeg.json index 2cd60a6d..1a260e3b 100644 --- a/new-api-details/organizations/ffmpeg.json +++ b/new-api-details/organizations/ffmpeg.json @@ -3,7 +3,7 @@ "slug": "ffmpeg", "name": "FFmpeg", "category": "Media", - "description": "Record, convert and stream audio & video", + "description": "FFmpeg is the leading multimedia framework, able to decode, encode, transcode, mux, demux, stream, filter and play pretty much anything that humans and machines have created. It supports the most obscure ancient formats up to the cutting edge. No matter if they were designed by some standards committee, the community or a corporation. It is also highly portable: FFmpeg compiles, runs, and passes our testing infrastructure FATE across Linux, Mac OS X, Microsoft.", "image_url": "https://summerofcode.withgoogle.com/media/org/ffmpeg/9nltyc13lvn7dqn0-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ffmpeg.webp", "logo_r2_url": null, @@ -18,10 +18,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "c", @@ -56,7 +57,8 @@ "year_2022": 2, "year_2023": 3, "year_2024": 7, - "year_2025": 3 + "year_2025": 3, + "year_2026": null }, "students_by_year": { "year_2016": 7, @@ -68,7 +70,8 @@ "year_2022": 2, "year_2023": 3, "year_2024": 7, - "year_2025": 3 + "year_2025": 3, + "year_2026": null }, "total_students": 47 }, @@ -1006,13 +1009,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/ffmpeg" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "ffmpeg-devel@ffmpeg.org", "guide_url": "https://trac.ffmpeg.org/wiki/SponsoringPrograms/GSoC/2025", - "ideas_url": "https://trac.ffmpeg.org/wiki/SponsoringPrograms/GSoC/2025", + "ideas_url": "https://trac.ffmpeg.org/wiki/SponsoringPrograms/GSoC/2026", "irc_channel": "http://ffmpeg.org/contact.html#IRCChannels", "mailing_list": "http://ffmpeg.org/contact.html#MailingLists" }, @@ -1035,6 +1039,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.082Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/flare.json b/new-api-details/organizations/flare.json index f4d38b5d..54ace3e6 100644 --- a/new-api-details/organizations/flare.json +++ b/new-api-details/organizations/flare.json @@ -3,23 +3,25 @@ "slug": "flare", "name": "FLARE", "category": "Security", - "description": "Industry leading malware analysis", + "description": "The Mandiant FLARE team is a collection of about 40 reverse engineers that analyze malware in support of threat intel, incident response, and computer forensic investigations. We spend our days using disassemblers, debuggers, decompilers, and emulators to figure out what malware does and how we can contain it. We’re known for delivering training sessions that share our experience and releasing open source software that automates the boring things. If you have even a passing interest in reverse engineering or malware analysis, reach out so that we can chat!", "image_url": "https://summerofcode.withgoogle.com/media/org/flare/6so0wjs76qeewe9v-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/flare.webp", "logo_r2_url": null, - "url": "https://www.mandiant.com/", + "url": "https://cloud.google.com/security/flare", "active_years": [ 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2023, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", "ida-pro", - "Ghidra" + "Ghidra", + "Sandbox" ], "topics": [ "emulation", @@ -41,7 +43,8 @@ "year_2022": null, "year_2023": 4, "year_2024": 1, - "year_2025": 2 + "year_2025": 2, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -53,7 +56,8 @@ "year_2022": null, "year_2023": 4, "year_2024": 1, - "year_2025": 2 + "year_2025": 2, + "year_2026": null }, "total_students": 7 }, @@ -217,21 +221,22 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/flare" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "flare-gsoc-2023@mandiant.com", - "guide_url": "https://github.com/mandiant/flare-gsoc/blob/2025/doc/contributor-guidance.md", - "ideas_url": "https://github.com/mandiant/flare-gsoc/blob/2025/doc/project-ideas.md", + "guide_url": "https://github.com/mandiant/flare-gsoc/blob/2026/doc/contributor-guidance.md", + "ideas_url": "https://github.com/mandiant/flare-gsoc/blob/2026/doc/project-ideas.md", "irc_channel": null, "mailing_list": "https://github.com/mandiant/flare-gsoc/discussions" }, "social": { - "blog": "https://www.mandiant.com/resources/blog", + "blog": "https://cloud.google.com/blog/topics/threat-intelligence/", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/search?q=topic%3Agsoc-2026+org%3Amandiant&type=Repositories", "gitlab": null, "instagram": null, "linkedin": null, @@ -241,11 +246,11 @@ "slack": null, "stackoverflow": null, "twitch": null, - "twitter": "https://twitter.com/Mandiant", + "twitter": "https://x.com/Mandiant", "youtube": null }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.112Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/fortran-lang.json b/new-api-details/organizations/fortran-lang.json index b8b05075..188982c1 100644 --- a/new-api-details/organizations/fortran-lang.json +++ b/new-api-details/organizations/fortran-lang.json @@ -3,7 +3,7 @@ "slug": "fortran-lang", "name": "Fortran-lang", "category": "Programming languages", - "description": "High-performance parallel programming language", + "description": "Fortran-lang is an open-source community that develops tools and libraries for modern Fortran development. Our flagship projects include the standard library, Fortran build system and package manager, as well as the interactive compiler, LFortran. Fortran-lang also provides an inclusive and welcoming space for all Fortran enthusiasts around the world to collaborate.", "image_url": "https://summerofcode.withgoogle.com/media/org/fortran-lang/ay9se7mc6vgdwgbn-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/fortran-lang.webp", "logo_r2_url": null, @@ -13,10 +13,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2021, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -50,7 +51,8 @@ "year_2022": 5, "year_2023": 3, "year_2024": 3, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -62,7 +64,8 @@ "year_2022": 5, "year_2023": 3, "year_2024": 3, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "total_students": 21 }, @@ -505,13 +508,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/fortran-lang" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "ondrej@certik.us", "guide_url": "https://github.com/fortran-lang/webpage/wiki/GSoC-2025-Contributor-Instructions", - "ideas_url": "https://github.com/fortran-lang/webpage/wiki/GSoC-2025-Project-ideas", + "ideas_url": "https://github.com/fortran-lang/webpage/wiki/GSoC-2026-Project-ideas", "irc_channel": "https://fortran-lang.discourse.group/", "mailing_list": "https://groups.io/g/fortran-lang" }, @@ -519,7 +523,7 @@ "blog": null, "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/fortran-lang", "gitlab": null, "instagram": null, "linkedin": null, @@ -534,6 +538,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.142Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/fossasia.json b/new-api-details/organizations/fossasia.json index 65178444..73fc24da 100644 --- a/new-api-details/organizations/fossasia.json +++ b/new-api-details/organizations/fossasia.json @@ -2,8 +2,8 @@ "id": "692251d353dd9d7326d33da6", "slug": "fossasia", "name": "FOSSASIA", - "category": "Science and medicine", - "description": "Free and Open Source Software in Asia", + "category": "End user applications", + "description": "FOSSASIA is an organization developing Open Source software applications and Open Hardware together with a global community from its base in Asia. It is our goal to provide access to open technologies, science applications and knowledge that improve people's lives. We want to enable people to adapt and change technology according to their own ideas and needs and validate science and knowledge through an Open Access approach. FOSSASIA was established 2009 by Hong Phuc Dang and Mario Behling. We organize and participate in conferences, meetups and code camps. The annual FOSSASIA Summit is one of the top tech events in Asia. Other summits take place in Vietnam, Cambodia, Thailand and India. FOSSASIA also runs a number of coding programs such as Codeheat. Please join us and start contributing to our projects, participate as a coder, designer, hardware developer or event organizer.", "image_url": "https://summerofcode.withgoogle.com/media/org/fossasia-bg/rquaoyo4v86xj21l-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/fossasia.webp", "logo_r2_url": null, @@ -14,10 +14,11 @@ 2018, 2019, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -64,7 +65,8 @@ "year_2022": null, "year_2023": null, "year_2024": 5, - "year_2025": 20 + "year_2025": 20, + "year_2026": null }, "students_by_year": { "year_2016": 18, @@ -76,7 +78,8 @@ "year_2022": null, "year_2023": null, "year_2024": 5, - "year_2025": 20 + "year_2025": 20, + "year_2026": null }, "total_students": 137 }, @@ -2903,7 +2906,8 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/fossasia-bg" - } + }, + "year_2026": null }, "first_time": false, "contact": { @@ -2917,7 +2921,7 @@ "blog": "https://fossasia.org/blog", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/fossasia", "gitlab": null, "instagram": null, "linkedin": null, @@ -2932,6 +2936,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.121Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/fossology.json b/new-api-details/organizations/fossology.json index 19701560..9809c72f 100644 --- a/new-api-details/organizations/fossology.json +++ b/new-api-details/organizations/fossology.json @@ -3,7 +3,7 @@ "slug": "fossology", "name": "FOSSology", "category": "Web", - "description": "Open Source License Compliance by OSS", + "description": "FOSSology is an open source license compliance software system and toolkit. As a toolkit you can run license, copyright and export control scans from the command line. As a system, a database and web UI are provided to give you a compliance workflow. License, copyright and export scanners are tools used in the workflow.", "image_url": "https://summerofcode.withgoogle.com/media/org/fossology/bqfblnvpsqnfg5bh-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/fossology.webp", "logo_r2_url": null, @@ -16,10 +16,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "linux", @@ -34,7 +35,8 @@ "javascript", "twig", "reactjs", - "go" + "go", + "c/c++" ], "topics": [ "compliance", @@ -64,7 +66,8 @@ "year_2022": 6, "year_2023": 5, "year_2024": 7, - "year_2025": 10 + "year_2025": 10, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -76,7 +79,8 @@ "year_2022": 6, "year_2023": 5, "year_2024": 7, - "year_2025": 10 + "year_2025": 10, + "year_2026": null }, "total_students": 35 }, @@ -943,13 +947,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/fossology" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "fossology@fossology.org", "guide_url": null, - "ideas_url": "https://fossology.github.io/gsoc/docs/2025/GSoC-projects", + "ideas_url": "https://github.com/fossology/fossology/discussions/3267", "irc_channel": "https://fossology.slack.com/", "mailing_list": "fossology-devel@fossology.org" }, @@ -957,7 +962,7 @@ "blog": "https://fossology.org", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/fossology/fossology", "gitlab": null, "instagram": null, "linkedin": null, @@ -972,6 +977,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.127Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/free-and-open-source-silicon-foundation.json b/new-api-details/organizations/free-and-open-source-silicon-foundation.json index d5b538c9..cbe3d01d 100644 --- a/new-api-details/organizations/free-and-open-source-silicon-foundation.json +++ b/new-api-details/organizations/free-and-open-source-silicon-foundation.json @@ -3,7 +3,7 @@ "slug": "free-and-open-source-silicon-foundation", "name": "Free and Open Source Silicon Foundation", "category": "Other", - "description": "Working together for Free and Open Source Silicon", + "description": "The FOSSi (Free and Open Source Silicon) Foundation is a not-for-profit organization with the support the growing community of open source silicon hardware. We do this with a variety of activities and through Google Summer of Code we bring together enthusiastic mentees and outstanding projects. Under our umbrella are open source silicon hardware projects, operating systems and compilers for such projects, tools for electronic design automation and the related ecosystem.", "image_url": "https://summerofcode.withgoogle.com/media/org/free-and-open-source-silicon-foundation/aie951otsp3xucok.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/free-and-open-source-silicon-foundation.webp", "logo_r2_url": null, @@ -18,10 +18,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -70,7 +71,8 @@ "year_2022": 8, "year_2023": 5, "year_2024": 6, - "year_2025": 6 + "year_2025": 6, + "year_2026": null }, "students_by_year": { "year_2016": 3, @@ -82,7 +84,8 @@ "year_2022": 8, "year_2023": 5, "year_2024": 6, - "year_2025": 6 + "year_2025": 6, + "year_2026": null }, "total_students": 58 }, @@ -1258,21 +1261,22 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/free-and-open-source-silicon-foundation" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "gsoc@fossi-foundation.org", "guide_url": "https://www.fossi-foundation.org/gsoc", - "ideas_url": "https://fossi-foundation.org/gsoc/gsoc25-ideas", + "ideas_url": "https://fossi-foundation.org/gsoc/gsoc26-ideas", "irc_channel": "https://gitter.im/librecores/Lobby", "mailing_list": "https://lists.librecores.org/listinfo/discussion" }, "social": { - "blog": "https://fossi-foundation.org/news", + "blog": "https://mastodon.social/@fossifoundation", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/fossi-foundation", "gitlab": null, "instagram": null, "linkedin": null, @@ -1287,6 +1291,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.147Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/freecad.json b/new-api-details/organizations/freecad.json index 55c13515..07184c5b 100644 --- a/new-api-details/organizations/freecad.json +++ b/new-api-details/organizations/freecad.json @@ -3,7 +3,7 @@ "slug": "freecad", "name": "FreeCAD", "category": "End user applications", - "description": "Cross-platform 3D parametric modeler", + "description": "FreeCAD is a general-purpose parametric 3D computer-aided design (CAD) modeler and a building information modeling (BIM) software application with finite element method (FEM) support. It is intended for mechanical engineering product design but also expands to a wider range of uses around engineering, such as architecture or electrical engineering. FreeCAD is free and open-source, under the LGPL-2.0-or-later license, and available for Linux, macOS, and Windows operating systems. Users can extend the functionality of the software using the Python programming language.", "image_url": "https://summerofcode.withgoogle.com/media/org/freecad/hka287elz3d4wvzu.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/freecad.webp", "logo_r2_url": null, @@ -11,10 +11,11 @@ "active_years": [ 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2023, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -45,7 +46,8 @@ "year_2022": null, "year_2023": 4, "year_2024": 1, - "year_2025": 3 + "year_2025": 3, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -57,7 +59,8 @@ "year_2022": null, "year_2023": 4, "year_2024": 1, - "year_2025": 3 + "year_2025": 3, + "year_2026": null }, "total_students": 8 }, @@ -237,13 +240,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/freecad" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": null, "guide_url": "https://wiki.freecad.org/GSoC_Checklist", - "ideas_url": "https://wiki.freecad.org/Google_Summer_of_Code_2025", + "ideas_url": "https://wiki.freecad.org/Google_Summer_of_Code_2026", "irc_channel": "https://matrix.to/#/#FreeCAD_FreeCAD:gitter.im", "mailing_list": "https://forum.freecad.org" }, @@ -251,7 +255,7 @@ "blog": "https://blog.freecad.org/", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/freecad/freecad", "gitlab": null, "instagram": null, "linkedin": null, @@ -266,6 +270,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.151Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/freifunk.json b/new-api-details/organizations/freifunk.json index 4388d388..749c468d 100644 --- a/new-api-details/organizations/freifunk.json +++ b/new-api-details/organizations/freifunk.json @@ -21,7 +21,7 @@ ], "first_year": 2016, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "c", "lua", @@ -1551,6 +1551,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.536Z" + "generated_at": "2026-02-19T12:41:12.412Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/gambit-the-package-for-computation-in-game-theory.json b/new-api-details/organizations/gambit-the-package-for-computation-in-game-theory.json new file mode 100644 index 00000000..567f7c29 --- /dev/null +++ b/new-api-details/organizations/gambit-the-package-for-computation-in-game-theory.json @@ -0,0 +1,100 @@ +{ + "id": "new_2026_gambit-the-package-for-computation-in-game-theory", + "slug": "gambit-the-package-for-computation-in-game-theory", + "name": "Gambit: The package for computation in game theory", + "category": "Science and medicine", + "description": "Gambit is a set of software tools for doing computation on finite, noncooperative games in extensive or strategy form and a set of file formats for storing and communicating games to external tools.\n\nThe Gambit Project was founded in the mid-1980s at the California Institute of Technology and to this day is actively developed by a community of contributors, with core development led by The Alan Turing Institute as part of its project: Automated analysis of strategic interactions.", + "image_url": "https://summerofcode.withgoogle.com/media/org/gambit-the-package-for-computation-in-game-theory/09u5sma4pizmwbqt-360.png", + "img_r2_url": "https://summerofcode.withgoogle.com/media/org/gambit-the-package-for-computation-in-game-theory/09u5sma4pizmwbqt-360.png", + "logo_r2_url": null, + "url": "https://www.gambit-project.org", + "active_years": [ + 2026 + ], + "first_year": 2026, + "last_year": 2026, + "is_currently_active": true, + "technologies": [ + "python", + "c++", + "wxwidgets", + "visualization" + ], + "topics": [ + "algorithms", + "game theory", + "mathematical optimizaton" + ], + "total_projects": 0, + "stats": { + "avg_projects_per_appeared_year": 0, + "projects_by_year": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "students_by_year": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "total_students": 0 + }, + "years": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "contact": { + "email": "ted.turocy@gmail.com", + "guide_url": "https://www.gambit-project.org/gsoc_2026/", + "ideas_url": "https://www.gambit-project.org/gsoc_2026/", + "irc_channel": null, + "mailing_list": null + }, + "social": { + "blog": null, + "discord": null, + "facebook": null, + "github": "https://github.com/gambitproject/gambit/", + "gitlab": null, + "instagram": null, + "linkedin": null, + "mastodon": null, + "medium": null, + "reddit": null, + "slack": null, + "stackoverflow": null, + "twitch": null, + "twitter": "https://x.com/thegambitproj", + "youtube": null + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:46:24.131Z" + } +} \ No newline at end of file diff --git a/new-api-details/organizations/gemini-cli.json b/new-api-details/organizations/gemini-cli.json new file mode 100644 index 00000000..d02fd260 --- /dev/null +++ b/new-api-details/organizations/gemini-cli.json @@ -0,0 +1,100 @@ +{ + "id": "new_2026_gemini-cli", + "slug": "gemini-cli", + "name": "Gemini CLI", + "category": "Development tools", + "description": "The Gemini CLI team maintains the Gemini CLI OSS project in order to deliver a high-quality, state-of-the-art agent to a large, global user base. Maintainers manage a set of public and internal (Google) backlog goals, open source community contributions, and build/release infrastructure.", + "image_url": "https://summerofcode.withgoogle.com/media/org/gemini-cli/mhi8cx7tyjt91i6n-360.png", + "img_r2_url": "https://summerofcode.withgoogle.com/media/org/gemini-cli/mhi8cx7tyjt91i6n-360.png", + "logo_r2_url": null, + "url": "https://geminicli.com", + "active_years": [ + 2026 + ], + "first_year": 2026, + "last_year": 2026, + "is_currently_active": true, + "technologies": [ + "typescript", + "GenAI", + "MCP", + "Software Agent", + "A2A" + ], + "topics": [ + "developer tools", + "GenAI" + ], + "total_projects": 0, + "stats": { + "avg_projects_per_appeared_year": 0, + "projects_by_year": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "students_by_year": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "total_students": 0 + }, + "years": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "contact": { + "email": "gemini-cli-soc-2026@google.com", + "guide_url": "https://github.com/google-gemini/gemini-cli/blob/main/CONTRIBUTING.md", + "ideas_url": "https://docs.google.com/document/d/1ImMaW0msCtvbRMEArEt7sQRw3RIGRfv98FGhsTsQTBU/edit?usp=sharing", + "irc_channel": null, + "mailing_list": null + }, + "social": { + "blog": null, + "discord": null, + "facebook": null, + "github": "https://github.com/google-gemini/gemini-cli/", + "gitlab": null, + "instagram": null, + "linkedin": null, + "mastodon": null, + "medium": null, + "reddit": null, + "slack": null, + "stackoverflow": null, + "twitch": null, + "twitter": "https://x.com/geminicli", + "youtube": null + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:46:24.131Z" + } +} \ No newline at end of file diff --git a/new-api-details/organizations/genome-assembly-and-annotation.json b/new-api-details/organizations/genome-assembly-and-annotation.json index 5c88449a..77534a46 100644 --- a/new-api-details/organizations/genome-assembly-and-annotation.json +++ b/new-api-details/organizations/genome-assembly-and-annotation.json @@ -3,19 +3,20 @@ "slug": "genome-assembly-and-annotation", "name": "Genome Assembly and Annotation", "category": "Science and medicine", - "description": "Providing freely accessible genomic data", - "image_url": "https://summerofcode.withgoogle.com/media/org/genome-assembly-and-annotation/fbu2s36u7uatdgev-360.png", + "description": "EMBL-EBI is a global centre for biological data, developing and maintaining open data resources and open-source software that support life science research worldwide. Our services are used daily by researchers across academia, healthcare, and industry, and span genomics, transcriptomics, metagenomics, molecular interactions, chemistry, and functional annotation.\n\nEMBL-EBI develops and maintains a wide range of long-standing, high-impact resources, including Ensembl for genome data, the European Nucleotide Archive (ENA) for sequence data, MGnify for metagenomics analysis, and BioStudies for structured biological datasets. Together, these resources support data submission, analysis, integration, and reuse at global scale.\n\nGiven the rapid growth and increasing complexity of biological data, EMBL-EBI operates a fast-evolving software ecosystem and continuously explores new approaches to data processing, storage, distribution, and visualisation. Our codebases are open source, our data are freely available, and we actively engage with the open-source community to ensure our infrastructure remains robust, scalable, and accessible.\n\nThrough Google Summer of Code, EMBL-EBI offers contributors the opportunity to work on real-world scientific software, gaining experience in open-source development while contributing to tools and resources used by the global life science community.", + "image_url": "https://summerofcode.withgoogle.com/media/org/genome-assembly-and-annotation/ixuasrqx18soo7ml-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/genome-assembly-and-annotation.webp", "logo_r2_url": null, "url": "https://www.ebi.ac.uk/", "active_years": [ 2021, 2022, - 2023 + 2023, + 2026 ], "first_year": 2021, - "last_year": 2023, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ "python", "mysql", @@ -48,7 +49,8 @@ "year_2022": 6, "year_2023": 5, "year_2024": null, - "year_2025": null + "year_2025": null, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -60,7 +62,8 @@ "year_2022": 6, "year_2023": 5, "year_2024": null, - "year_2025": null + "year_2025": null, + "year_2026": null }, "total_students": 14 }, @@ -355,13 +358,14 @@ "projects_url": "https://summerofcode.withgoogle.com/programs/2023/organizations/genome-assembly-and-annotation" }, "year_2024": null, - "year_2025": null + "year_2025": null, + "year_2026": null }, "first_time": false, "contact": { "email": "helpdesk@ensembl.org", - "guide_url": null, - "ideas_url": null, + "guide_url": "https://www.ebi.ac.uk/about/events/events/public-event/2025/2026-google-summer-of-code/#contributor-guide", + "ideas_url": "https://www.ebi.ac.uk/about/events/events/public-event/2025/2026-google-summer-of-code/", "irc_channel": null, "mailing_list": null }, @@ -369,7 +373,7 @@ "blog": "http://www.ensembl.info", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/Ensembl", "gitlab": null, "instagram": null, "linkedin": null, @@ -379,11 +383,11 @@ "slack": null, "stackoverflow": null, "twitch": null, - "twitter": "https://twitter.com/ensembl", + "twitter": "https://x.com/emblebi", "youtube": null }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.193Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/geomscale.json b/new-api-details/organizations/geomscale.json index afcf78c6..46355043 100644 --- a/new-api-details/organizations/geomscale.json +++ b/new-api-details/organizations/geomscale.json @@ -3,7 +3,7 @@ "slug": "geomscale", "name": "GeomScale", "category": "Science and medicine", - "description": "Scalable geometric and statistical software", + "description": "GeomScale is a research and development project that delivers open source code for state-of-the-art algorithms for problems at the intersection of data science, optimization, geometric, and statistical computing. The current focus of GeomScale is on scalable algorithms for sampling from high-dimensional distributions, integration, convex optimization, and their applications. One of our ambitions is to fill the gap between theory and practice by turning state-of-the-art theoretical tools in geometry and optimization to state-of-the-art implementations. Towards this goal, we will deliver various innovative solutions in a variety of application fields, like finance, computational biology, and statistics that will extend the limits of contemporary computational tools. GeomScale aims in serving as a building block for an international, interdisciplinary, and open community in high dimensional geometrical and statistical computing. The main development is currently performed in volesti, a generic open source C++ library, with R and python interfaces (the latter is hosted in package dingo), for high-dimensional sampling, volume approximation, and copula estimation for financial modelling. In particular, the current implementation scales up to hundred or thousand dimensions, depending on the problem. To our knowledge it is the most efficient software package for sampling and volume computation to date. It is, in several cases, orders of magnitude faster compared to packages that solve the same problems. It can be used to compute challenging multivariate integrals and to approximate optimal solutions in optimization problems. It has already found important applications in systems biology by analyzing large metabolic networks (e.g., the latest human network) and in FinTech by detecting shock events and by evaluating portfolios performance in stock markets with thousands of assets. Other application areas include AI and in particular approximate weighted model integration. Recent studies has shown a potential application of volesti methods in trustworthy AI, static analysis of programs and differential privacy.", "image_url": "https://summerofcode.withgoogle.com/media/org/geomscale/ongpste986nd7t6p-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/geomscale.webp", "logo_r2_url": null, @@ -14,10 +14,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2020, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -51,7 +52,8 @@ "year_2022": 6, "year_2023": 3, "year_2024": 7, - "year_2025": 6 + "year_2025": 6, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -63,7 +65,8 @@ "year_2022": 6, "year_2023": 3, "year_2024": 7, - "year_2025": 6 + "year_2025": 6, + "year_2026": null }, "total_students": 26 }, @@ -671,13 +674,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/geomscale" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "geomscale@gmail.com", "guide_url": "https://github.com/GeomScale/gsoc25/wiki", - "ideas_url": "https://github.com/GeomScale/gsoc25/wiki/table-of-proposed-coding-projects", + "ideas_url": "https://github.com/GeomScale/gsoc26/wiki/table-of-proposed-coding-projects", "irc_channel": "https://gitter.im/GeomScale/community?utm_source=share-link&utm_medium=link&utm_campaign=share-link", "mailing_list": "https://groups.google.com/g/geomscale-gsoc" }, @@ -685,7 +689,7 @@ "blog": "https://www.linkedin.com/company/geomscale/", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/GeomScale", "gitlab": null, "instagram": null, "linkedin": null, @@ -700,6 +704,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.198Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/german-center-for-open-source-ai.json b/new-api-details/organizations/german-center-for-open-source-ai.json new file mode 100644 index 00000000..2a088b5f --- /dev/null +++ b/new-api-details/organizations/german-center-for-open-source-ai.json @@ -0,0 +1,99 @@ +{ + "id": "new_2026_german-center-for-open-source-ai", + "slug": "german-center-for-open-source-ai", + "name": "German Center for Open Source AI", + "category": "Data", + "description": "German Center for Open Source AI (GC.OS) builds open source AI software and a sovereign tech stack that is democratically run by its users.", + "image_url": "https://summerofcode.withgoogle.com/media/org/german-center-for-open-source-ai/mir4i7v7wopcc7wn-360.png", + "img_r2_url": "https://summerofcode.withgoogle.com/media/org/german-center-for-open-source-ai/mir4i7v7wopcc7wn-360.png", + "logo_r2_url": null, + "url": "https://gcos.ai/", + "active_years": [ + 2026 + ], + "first_year": 2026, + "last_year": 2026, + "is_currently_active": true, + "technologies": [ + "python", + "pytorch", + "scikit-learn" + ], + "topics": [ + "machine learning", + "time-series", + "Causal Inference" + ], + "total_projects": 0, + "stats": { + "avg_projects_per_appeared_year": 0, + "projects_by_year": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "students_by_year": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "total_students": 0 + }, + "years": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "contact": { + "email": null, + "guide_url": "https://github.com/gc-os-ai/mentoring-projects/blob/main/README.md#contributor-guides", + "ideas_url": "https://github.com/gc-os-ai/mentoring-projects/blob/main/2026/ideas_list.md", + "irc_channel": "https://discord.gg/7uKdHfdcJG", + "mailing_list": null + }, + "social": { + "blog": "https://www.linkedin.com/company/german-center-for-open-source-ai", + "discord": null, + "facebook": null, + "github": "https://github.com/gc-os-ai/.github/blob/main/profile/README.md", + "gitlab": null, + "instagram": null, + "linkedin": null, + "mastodon": null, + "medium": null, + "reddit": null, + "slack": null, + "stackoverflow": null, + "twitch": null, + "twitter": null, + "youtube": null + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:46:24.131Z" + } +} \ No newline at end of file diff --git a/new-api-details/organizations/git.json b/new-api-details/organizations/git.json index 4098b651..6df52fab 100644 --- a/new-api-details/organizations/git.json +++ b/new-api-details/organizations/git.json @@ -3,7 +3,7 @@ "slug": "git", "name": "Git", "category": "Programming languages", - "description": "Fast,Scalable,Distributed revision control system", + "description": "Git is the most widely-used revision control system in Open Source. It is a distributed system with an emphasis on speed, data integrity, and support for distributed, non-linear workflows.\n\nMany large and successful projects use Git, including the Linux Kernel, Perl, Eclipse, Gnome, KDE, Qt, Ruby on Rails, Android, PostgreSQL, Debian, and X.org.\n\nThis organization covers projects for Git itself. Other git-based software or services are not covered by this organization.", "image_url": "https://summerofcode.withgoogle.com/media/org/git/mbqqznjbaohwgq80-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/git.webp", "logo_r2_url": null, @@ -18,10 +18,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "c", @@ -48,7 +49,8 @@ "year_2022": 2, "year_2023": 2, "year_2024": 3, - "year_2025": 3 + "year_2025": 3, + "year_2026": null }, "students_by_year": { "year_2016": 1, @@ -60,7 +62,8 @@ "year_2022": 2, "year_2023": 2, "year_2024": 3, - "year_2025": 3 + "year_2025": 3, + "year_2026": null }, "total_students": 22 }, @@ -522,13 +525,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/git" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "git@vger.kernel.org", "guide_url": "https://git.github.io/General-Application-Information/", - "ideas_url": "https://git.github.io/SoC-2025-Ideas/", + "ideas_url": "https://git.github.io/SoC-2026-Ideas/", "irc_channel": "https://git-scm.com/community", "mailing_list": "https://git-scm.com/community" }, @@ -536,7 +540,7 @@ "blog": null, "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/git/git", "gitlab": null, "instagram": null, "linkedin": null, @@ -546,11 +550,11 @@ "slack": null, "stackoverflow": null, "twitch": null, - "twitter": null, + "twitter": "https://discord.gg/GRFVkzgxRd", "youtube": null }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.201Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/gitlab.json b/new-api-details/organizations/gitlab.json index 2178e24e..d03cd13f 100644 --- a/new-api-details/organizations/gitlab.json +++ b/new-api-details/organizations/gitlab.json @@ -16,7 +16,7 @@ ], "first_year": 2021, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "ruby", "golang", @@ -407,6 +407,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.206Z" + "generated_at": "2026-02-19T12:41:12.412Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/global-alliance-for-genomics-and-health.json b/new-api-details/organizations/global-alliance-for-genomics-and-health.json index c38efe47..f6d0d0f5 100644 --- a/new-api-details/organizations/global-alliance-for-genomics-and-health.json +++ b/new-api-details/organizations/global-alliance-for-genomics-and-health.json @@ -3,7 +3,7 @@ "slug": "global-alliance-for-genomics-and-health", "name": "Global Alliance for Genomics and Health", "category": "Science and medicine", - "description": "We develop genomics tools to benefit human health", + "description": "The Global Alliance for Genomics and Health (GA4GH) was formed to help accelerate the potential of genomic medicine to advance human health. It brings together over 400 leading genome institutes and centers with IT industry leaders to create global standards and tools for the secure, privacy respecting and interoperable sharing of Genomic data.", "image_url": "https://summerofcode.withgoogle.com/media/org/global-alliance-for-genomics-and-health/0bnlmihuhff098xd-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/global-alliance-for-genomics-and-health.webp", "logo_r2_url": null, @@ -17,11 +17,12 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ], "first_year": 2016, - "last_year": 2024, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ "python", "java", @@ -66,7 +67,8 @@ "year_2022": 8, "year_2023": 7, "year_2024": 5, - "year_2025": null + "year_2025": null, + "year_2026": null }, "students_by_year": { "year_2016": 3, @@ -78,7 +80,8 @@ "year_2022": 8, "year_2023": 7, "year_2024": 5, - "year_2025": null + "year_2025": null, + "year_2026": null }, "total_students": 40 }, @@ -1013,13 +1016,14 @@ ], "projects_url": "https://summerofcode.withgoogle.com/archive/2024/organizations/global-alliance-for-genomics-and-health/" }, - "year_2025": null + "year_2025": null, + "year_2026": null }, "first_time": false, "contact": { "email": "gsoc-mentors-2025@ga4gh.org", - "guide_url": null, - "ideas_url": null, + "guide_url": "https://docs.google.com/document/d/1Sje_91qcUMkRK9d_BS_8Y-c2r7cCa8h4Csy6d0-xKlQ/edit?usp=sharing", + "ideas_url": "https://docs.google.com/document/d/1SeDP5Ny7Gt42g5oY9jdN15Wx6RXtJ9dDcaPeYBvKBcE/edit?tab=t.0#heading=h.qflicizcqlm", "irc_channel": "https://docs.google.com/document/d/1G9OG8Pcd3ar77jflrSWyPYyjU80XNAwGB7zUxFFS-vA/edit?usp=sharing", "mailing_list": "https://docs.google.com/document/d/1cdrWkFMqwZ38revM3G-ROJSTeNnh-Zt2XE_DcXVxo1I/edit?usp=sharing" }, @@ -1027,7 +1031,7 @@ "blog": "https://ga4gh.org/news", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/ga4gh", "gitlab": null, "instagram": null, "linkedin": null, @@ -1042,6 +1046,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.208Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/gnome-foundation.json b/new-api-details/organizations/gnome-foundation.json index 80910b02..3f23d424 100644 --- a/new-api-details/organizations/gnome-foundation.json +++ b/new-api-details/organizations/gnome-foundation.json @@ -3,7 +3,7 @@ "slug": "gnome-foundation", "name": "GNOME Foundation", "category": "Operating systems", - "description": "A diverse and sustainable free software desktop.", + "description": "The GNOME Foundation is a non-profit organization that believes in a world where everyone is empowered by technology they can trust. We do this by building a diverse and sustainable free software personal computing ecosystem.", "image_url": "https://summerofcode.withgoogle.com/media/org/gnome-foundation/aqwqx1x6ozjnxsak-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnome-foundation.webp", "logo_r2_url": null, @@ -18,10 +18,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "c", @@ -65,7 +66,8 @@ "year_2022": 9, "year_2023": 9, "year_2024": 8, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "students_by_year": { "year_2016": 18, @@ -77,7 +79,8 @@ "year_2022": 9, "year_2023": 9, "year_2024": 8, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "total_students": 109 }, @@ -2240,13 +2243,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/gnome-foundation" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "board@gnome.org", "guide_url": "https://gsoc.gnome.org", - "ideas_url": "https://gsoc.gnome.org/2025/", + "ideas_url": "https://gsoc.gnome.org/2026/", "irc_channel": "https://handbook.gnome.org/get-in-touch.html", "mailing_list": "https://discourse.gnome.org/" }, @@ -2255,7 +2259,7 @@ "discord": null, "facebook": null, "github": null, - "gitlab": null, + "gitlab": "https://gitlab.gnome.org/", "instagram": null, "linkedin": null, "mastodon": null, @@ -2269,6 +2273,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.162Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/gnss-sdr.json b/new-api-details/organizations/gnss-sdr.json index 2eab6027..edc67360 100644 --- a/new-api-details/organizations/gnss-sdr.json +++ b/new-api-details/organizations/gnss-sdr.json @@ -21,7 +21,7 @@ ], "first_year": 2016, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "c", "c++", @@ -658,6 +658,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.166Z" + "generated_at": "2026-02-19T12:41:12.412Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/gnu-compiler-collection-gcc.json b/new-api-details/organizations/gnu-compiler-collection-gcc.json index bab043b1..5de176c2 100644 --- a/new-api-details/organizations/gnu-compiler-collection-gcc.json +++ b/new-api-details/organizations/gnu-compiler-collection-gcc.json @@ -3,7 +3,7 @@ "slug": "gnu-compiler-collection-gcc", "name": "GNU Compiler Collection (GCC)", "category": "Programming languages", - "description": "GNU compilers", + "description": "The GNU Compiler Collection (GCC) is an optimizing compiler produced by the GNU Project supporting various programming languages, hardware architectures and operating systems. It includes front-ends for C, C++, D, Objective-C, Fortran, Ada, and Go, as well as libraries for these languages (such as libgcc and libstdc++). Modula-2, Rust, Cobol, and Algol 68 front-ends are under development too. GCC includes a Static Analyzer, and supports OpenMP, OpenACC with code offloading to Nvidia and AMD GPUs.", "image_url": "https://summerofcode.withgoogle.com/media/org/gnu-compiler-collection-gcc/kpspl59nyj0hoxlr-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnu-compiler-collection-gcc.webp", "logo_r2_url": null, @@ -16,17 +16,19 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "c", "c++", "openmp", "gnu autotools", - "gnu make" + "gnu make", + "c/c++" ], "topics": [ "compilers", @@ -49,7 +51,8 @@ "year_2022": 3, "year_2023": 6, "year_2024": 7, - "year_2025": 6 + "year_2025": 6, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -61,7 +64,8 @@ "year_2022": 3, "year_2023": 6, "year_2024": 7, - "year_2025": 6 + "year_2025": 6, + "year_2026": null }, "total_students": 32 }, @@ -746,14 +750,15 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/gnu-compiler-collection-gcc" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "gcc@gcc.gnu.org", "guide_url": "https://gcc.gnu.org/wiki/SummerOfCode", "ideas_url": "https://gcc.gnu.org/wiki/SummerOfCode", - "irc_channel": "https://gcc-rust.zulipchat.com/login/", + "irc_channel": "https://gcc.gnu.org/wiki/GCConIRC", "mailing_list": "https://gcc.gnu.org/mailman/listinfo/gcc" }, "social": { @@ -775,6 +780,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.169Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/gnu-image-manipulation-program.json b/new-api-details/organizations/gnu-image-manipulation-program.json index 35aa8454..1e8dddc9 100644 --- a/new-api-details/organizations/gnu-image-manipulation-program.json +++ b/new-api-details/organizations/gnu-image-manipulation-program.json @@ -3,7 +3,7 @@ "slug": "gnu-image-manipulation-program", "name": "GNU Image Manipulation Program", "category": "End user applications", - "description": "GIMP is a cross-platform image editor", + "description": "GIMP is a cross-platform image editor available for GNU/Linux, macOS, Windows and more operating systems. It is free software, you can change its source code and distribute your changes.\n\nWhether you are a graphic designer, photographer, illustrator, or scientist, GIMP provides you with sophisticated tools to get your job done. You can further enhance your productivity with GIMP thanks to many customization options and 3rd party plugins.", "image_url": "https://summerofcode.withgoogle.com/media/org/gnu-image-manipulation-program/n73ytwpnna15tra2-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnu-image-manipulation-program.webp", "logo_r2_url": null, @@ -12,10 +12,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2022, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "c", @@ -40,7 +41,8 @@ "year_2022": 1, "year_2023": 3, "year_2024": 3, - "year_2025": 3 + "year_2025": 3, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -52,7 +54,8 @@ "year_2022": 1, "year_2023": 3, "year_2024": 3, - "year_2025": 3 + "year_2025": 3, + "year_2026": null }, "total_students": 8 }, @@ -273,7 +276,8 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/gnu-image-manipulation-program" - } + }, + "year_2026": null }, "first_time": false, "contact": { @@ -288,7 +292,7 @@ "discord": null, "facebook": null, "github": null, - "gitlab": null, + "gitlab": "https://gitlab.gnome.org/GNOME/gimp/", "instagram": null, "linkedin": null, "mastodon": null, @@ -302,6 +306,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.171Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/gnu-mailman.json b/new-api-details/organizations/gnu-mailman.json new file mode 100644 index 00000000..a2a8706b --- /dev/null +++ b/new-api-details/organizations/gnu-mailman.json @@ -0,0 +1,101 @@ +{ + "id": "new_2026_gnu-mailman", + "slug": "gnu-mailman", + "name": "GNU Mailman", + "category": "Social and communication", + "description": "The Mailman project develops the GNU Mailman mailing list manager. Our goals are RFC conformance and powerful convenient tools for subscribers, moderators, list owners, domain administrators, and site adminstrators of mailing lists.", + "image_url": "https://summerofcode.withgoogle.com/media/org/gnu-mailman/cg5sxkouo8rjtjw2-360.png", + "img_r2_url": "https://summerofcode.withgoogle.com/media/org/gnu-mailman/cg5sxkouo8rjtjw2-360.png", + "logo_r2_url": null, + "url": "https://www.list.org", + "active_years": [ + 2026 + ], + "first_year": 2026, + "last_year": 2026, + "is_currently_active": true, + "technologies": [ + "python", + "django", + "rest", + "sqlalchemy", + "zope" + ], + "topics": [ + "email", + "archives", + "list management" + ], + "total_projects": 0, + "stats": { + "avg_projects_per_appeared_year": 0, + "projects_by_year": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "students_by_year": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "total_students": 0 + }, + "years": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "contact": { + "email": null, + "guide_url": "https://wiki.list.org/DEV/Google%20Summer%20of%20Code%202022", + "ideas_url": "https://wiki.list.org/DEV/Google%20Summer%20of%20Code%202026", + "irc_channel": "https://web.libera.chat/#mailman", + "mailing_list": "mailman-developers@python.org" + }, + "social": { + "blog": null, + "discord": null, + "facebook": null, + "github": null, + "gitlab": "https://gitlab.com/mailman", + "instagram": null, + "linkedin": null, + "mastodon": null, + "medium": null, + "reddit": null, + "slack": null, + "stackoverflow": null, + "twitch": null, + "twitter": null, + "youtube": null + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:46:24.131Z" + } +} \ No newline at end of file diff --git a/new-api-details/organizations/gnu-octave.json b/new-api-details/organizations/gnu-octave.json index 8561f1f4..a189d71a 100644 --- a/new-api-details/organizations/gnu-octave.json +++ b/new-api-details/organizations/gnu-octave.json @@ -3,7 +3,7 @@ "slug": "gnu-octave", "name": "GNU Octave", "category": "Science and medicine", - "description": "Free Your Numbers", + "description": "GNU Octave is a high-level interpreted language, primarily intended for numerical computations. It provides capabilities for the numerical solution of linear and nonlinear problems and for performing other numerical experiments. It also provides extensive graphics capabilities for data visualization and manipulation. Octave is normally used through its interactive command line interface, but it can also be used to write non-interactive programs. The Octave language is quite similar to Matlab so that most programs are easily portable.\n\nOctave is continually being upgraded. Student projects may also involve developing or upgrading Octave Forge packages, which can be loaded to provide additional specialized functions that supplement those provided in Core Octave.", "image_url": "https://summerofcode.withgoogle.com/media/org/gnu-octave/0kc85jo6rl3eo2g0-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnu-octave.webp", "logo_r2_url": null, @@ -18,10 +18,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "c++", @@ -49,7 +50,8 @@ "year_2022": 3, "year_2023": 2, "year_2024": 2, - "year_2025": 2 + "year_2025": 2, + "year_2026": null }, "students_by_year": { "year_2016": 5, @@ -61,7 +63,8 @@ "year_2022": 3, "year_2023": 2, "year_2024": 2, - "year_2025": 2 + "year_2025": 2, + "year_2026": null }, "total_students": 22 }, @@ -549,13 +552,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/gnu-octave" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "octave-maintainers@gnu.org", "guide_url": "https://wiki.octave.org/Summer_of_Code_-_Getting_Started", - "ideas_url": "https://wiki.octave.org/Summer_of_Code_-_Getting_Started#Suggested_projects", + "ideas_url": "https://wiki.octave.org/wiki/index.php?title=Summer_of_Code_-_Getting_Started#Suggested_projects", "irc_channel": "https://octave.discourse.group/", "mailing_list": "https://octave.discourse.group/" }, @@ -578,6 +582,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.175Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/gnu-project.json b/new-api-details/organizations/gnu-project.json index 0c883fc7..101ebe0d 100644 --- a/new-api-details/organizations/gnu-project.json +++ b/new-api-details/organizations/gnu-project.json @@ -3,8 +3,8 @@ "slug": "gnu-project", "name": "GNU Project", "category": "Operating systems", - "description": "Development of the GNU Operating System", - "image_url": "https://summerofcode.withgoogle.com/media/org/gnu-project/pm4yf7e7gm2jjyir.png", + "description": "GNU is an operating system consisting entirely of free software, meaning it respects users’ freedom. The GNU operating system consists of GNU packages, which are programs released by the GNU Project, as well as free software released by third parties. The development of GNU made it possible to use a computer without relying on software that restricts or undermines user freedom. The GNU Project is the collective organization of maintainers and developers, webmasters, translators, and other contributors who develop and maintain more than 400 programs that together form the GNU operating system.", + "image_url": "https://summerofcode.withgoogle.com/media/org/gnu-project-av/aht1h1aunalkojoq-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnu-project.webp", "logo_r2_url": null, "url": "https://www.gnu.org", @@ -15,11 +15,12 @@ 2019, 2020, 2023, - 2024 + 2024, + 2026 ], "first_year": 2016, - "last_year": 2024, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ "c", "python", @@ -33,7 +34,8 @@ "c++", "scheme", "gcc", - "autotools" + "autotools", + "GNU" ], "topics": [ "operating systems", @@ -48,7 +50,8 @@ "toolchain", "command line", "OS", - "binary tools" + "binary tools", + "compilers" ], "total_projects": 59, "stats": { @@ -63,7 +66,8 @@ "year_2022": null, "year_2023": 7, "year_2024": 3, - "year_2025": null + "year_2025": null, + "year_2026": null }, "students_by_year": { "year_2016": 15, @@ -75,7 +79,8 @@ "year_2022": null, "year_2023": 7, "year_2024": 3, - "year_2025": null + "year_2025": null, + "year_2026": null }, "total_students": 59 }, @@ -1219,13 +1224,14 @@ ], "projects_url": "https://summerofcode.withgoogle.com/archive/2024/organizations/gnu-project/" }, - "year_2025": null + "year_2025": null, + "year_2026": null }, "first_time": false, "contact": { "email": "summer-of-code@gnu.org", - "guide_url": null, - "ideas_url": null, + "guide_url": "https://www.gnu.org/software/soc-projects/guidelines.html", + "ideas_url": "https://www.gnu.org/s/soc-projects/ideas.html", "irc_channel": null, "mailing_list": "https://lists.gnu.org/mailman/listinfo/summer-of-code/" }, @@ -1248,6 +1254,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.177Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/gnu-radio.json b/new-api-details/organizations/gnu-radio.json index 7d297d68..8cdccf47 100644 --- a/new-api-details/organizations/gnu-radio.json +++ b/new-api-details/organizations/gnu-radio.json @@ -3,7 +3,7 @@ "slug": "gnu-radio", "name": "GNU Radio", "category": "Science and medicine", - "description": "The free & open software radio ecosystem", + "description": "GNU Radio is a free & open-source software development toolkit that provides signal processing blocks to implement software radios. It can be used with readily-available low-cost external RF hardware to create software-defined radios, or without hardware in a simulation-like environment. It is widely used in research, industry, academia, government, and hobbyist environments to support both wireless communications research and real-world radio systems.\n\nIn brief, a software radio is a radio system which performs the required signal processing in software instead of using dedicated integrated circuits in hardware. The benefit is that since software can be easily replaced in the radio system, the same hardware can be used to create many kinds of radios for many different communications standards; thus, one software radio can be used for a variety of applications!\n\nYou can use GNU Radio to write applications to receive and transmit data with radio hardware, or to create entirely simulation-based applications. GNU Radio has filters, channel codes, synchronization elements, equalizers, demodulators, vocoders, decoders, and many other types of blocks which are typically found in signal processing systems. More importantly, it includes a method of connecting these blocks and then manages how data is passed from one block to another. Extending GNU Radio is also quite easy; if you find a specific block that is missing, you can quickly create and add it.\n\nGNU Radio applications can be written in either C++ or Python, while the performance-critical signal processing path is implemented in C++ using processor floating-point extensions where available. This enables the developer to implement real-time, high-throughput radio systems in a simple-to-use, rapid-application-development environment.", "image_url": "https://summerofcode.withgoogle.com/media/org/gnu-radio/v1g5y6exzlwgfulv-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnu-radio.webp", "logo_r2_url": null, @@ -18,10 +18,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -66,7 +67,8 @@ "year_2022": 1, "year_2023": 1, "year_2024": 2, - "year_2025": 4 + "year_2025": 4, + "year_2026": null }, "students_by_year": { "year_2016": 2, @@ -78,7 +80,8 @@ "year_2022": 1, "year_2023": 1, "year_2024": 2, - "year_2025": 4 + "year_2025": 4, + "year_2026": null }, "total_students": 17 }, @@ -483,13 +486,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/gnu-radio" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "info@gnuradio.org", "guide_url": "https://www.gnuradio.org/gsoc/", - "ideas_url": "https://wiki.gnuradio.org/index.php?title=GSoCIdeas", + "ideas_url": "https://wiki.gnuradio.org/index.php/GSoCIdeas", "irc_channel": "https://chat.gnuradio.org/#/welcome", "mailing_list": "https://lists.gnu.org/mailman/listinfo/discuss-gnuradio" }, @@ -497,7 +501,7 @@ "blog": "https://www.gnuradio.org/blog/", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/gnuradio/gnuradio", "gitlab": null, "instagram": null, "linkedin": null, @@ -512,6 +516,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.180Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/google-deepmind.json b/new-api-details/organizations/google-deepmind.json index 22e66359..5b6748a5 100644 --- a/new-api-details/organizations/google-deepmind.json +++ b/new-api-details/organizations/google-deepmind.json @@ -13,7 +13,7 @@ ], "first_year": 2025, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "python", "javascript", @@ -1006,6 +1006,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.217Z" + "generated_at": "2026-02-19T12:41:12.412Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/gprmax.json b/new-api-details/organizations/gprmax.json index e15baec8..19374465 100644 --- a/new-api-details/organizations/gprmax.json +++ b/new-api-details/organizations/gprmax.json @@ -3,7 +3,7 @@ "slug": "gprmax", "name": "gprMax", "category": "Science and medicine", - "description": "Simulating electromagnetic wave propagation", + "description": "gprMax is open source software that simulates electromagnetic wave propagation. It uses Yee's algorithm to solve Maxwell’s equations in 3D using the Finite-Difference Time-Domain (FDTD) method.\n\nIt is designed for simulating Ground Penetrating Radar (GPR) and is used to model electromagnetic wave propagation in fields such as engineering, geophysics, archaeology, and medicine. There are a wide range of applications from assessing infrastructure such as bridges and roads, locating buried utilities, mapping glaciers, finding anti-personnel landmines, to detecting tumours in the human body, and exploring the sub-surface of Mars and the Moon.\n\ngprMax is command-line-driven software written in Python with performance-critical parts written in Cython. It does not currently feature a graphical user interface (GUI) which allows it to be very flexible and scriptable software that can run in high-performance computing (HPC) environments, i.e. on supercomputers.\n\ngprMax can be run on either CPU or GPU. The CPU solver has been parallelised using OpenMP which enables it to run on multi-core CPUs. The GPU solver has been developed using the NVIDIA CUDA programming model. gprMax also features a Messaging Passing Interface (MPI) task farm, which can operate with CPU nodes or multiple GPUs.", "image_url": "https://summerofcode.withgoogle.com/media/org/gprmax/vm8kavyxz3csja8f-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gprmax.webp", "logo_r2_url": null, @@ -13,10 +13,11 @@ 2021, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2019, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -47,7 +48,8 @@ "year_2022": null, "year_2023": 4, "year_2024": 4, - "year_2025": 4 + "year_2025": 4, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -59,7 +61,8 @@ "year_2022": null, "year_2023": 4, "year_2024": 4, - "year_2025": 4 + "year_2025": 4, + "year_2026": null }, "total_students": 18 }, @@ -440,21 +443,22 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/gprmax" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "info@gprmax.com", "guide_url": "https://github.com/gprMax/GSoC/blob/main/project-template.md", - "ideas_url": "https://github.com/gprMax/GSoC/blob/main/project-ideas-2025.md", - "irc_channel": "https://gprmax.zulipchat.com/join/rdr3ibeupg6nz5c4eu7oo2z4/", + "ideas_url": "https://github.com/gprMax/GSoC/blob/main/project-ideas-2026.md", + "irc_channel": "https://gprmax.zulipchat.com/join/gkhcp65r3zin6rfoqdhhhbu3/", "mailing_list": "https://groups.google.com/g/gprmax" }, "social": { "blog": null, "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/gprMax/gprMax", "gitlab": null, "instagram": null, "linkedin": null, @@ -469,6 +473,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.550Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/grame.json b/new-api-details/organizations/grame.json index 2d0dde38..616912c6 100644 --- a/new-api-details/organizations/grame.json +++ b/new-api-details/organizations/grame.json @@ -3,7 +3,7 @@ "slug": "grame", "name": "GRAME", "category": "Programming languages", - "description": "Domain specific language for audio", + "description": "Faust (Functional Audio Stream) is a functional programming language for sound synthesis and audio processing with a strong focus on the design of synthesizers, musical instruments, audio effects, etc. Faust targets high-performance signal processing applications and audio plug-ins for a variety of platforms and standards.", "image_url": "https://summerofcode.withgoogle.com/media/org/grame/joff5sziiuapvits-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/grame.webp", "logo_r2_url": null, @@ -12,10 +12,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2022, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "c", @@ -44,7 +45,8 @@ "year_2022": 1, "year_2023": 2, "year_2024": 4, - "year_2025": 3 + "year_2025": 3, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -56,7 +58,8 @@ "year_2022": 1, "year_2023": 2, "year_2024": 4, - "year_2025": 3 + "year_2025": 3, + "year_2026": null }, "total_students": 10 }, @@ -290,13 +293,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/grame" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "research@grame.fr", "guide_url": "https://github.com/grame-cncm/faustideas", - "ideas_url": "https://github.com/grame-cncm/faustideas", + "ideas_url": "https://github.com/grame-cncm/faustideas/blob/master/GSOC.md", "irc_channel": "https://discord.gg/qPPcXzJdmR", "mailing_list": "https://faust.grame.fr/community/help/" }, @@ -304,7 +308,7 @@ "blog": "https://github.com/grame-cncm/faustideas", "discord": "https://discord.gg/qPPcXzJdmR", "facebook": null, - "github": null, + "github": "https://github.com/grame-cncm/faust", "gitlab": null, "instagram": null, "linkedin": null, @@ -319,6 +323,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.184Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/graphite.json b/new-api-details/organizations/graphite.json index 86b8bc7f..a09f66b1 100644 --- a/new-api-details/organizations/graphite.json +++ b/new-api-details/organizations/graphite.json @@ -3,17 +3,18 @@ "slug": "graphite", "name": "Graphite", "category": "End user applications", - "description": "Editor, graphics engine, & compiler for art/design", + "description": "Graphite is an in-development raster and vector graphics editing suite that's free and open source. It is powered by a node graph compositing engine that fuses layers with nodes, bringing a generative, procedural approach to the workflows of artists, designers, and animators ranging from students and hobbyists to creative professionals and studios.\n\nThe node-based compositing engine is built similar to a game engine. It is both a real time render pipeline and a visual programming language, complete with a custom compiler letting artists export dynamic content to other applications.\n\nOver time, Graphite intends to evolve into the \"everything app\" across every major 2D creative discipline— a versatile creation suite for graphic design, photo manipulation, digital painting, motion graphics, desktop publishing, and generative art (both procedural and AI-powered).\n\nThe five-year-old project is being rapidly developed by a global team of volunteers, composed mostly of students, who are passionate about crafting high-quality code that will transform and democratize the broader 2D creative industry.\n\nThe mission of Graphite strives to unshackle the creativity of every budding artist and seasoned professional by building the best comprehensive art and design tool that's accessible to all. Mission success will come when Graphite is an industry standard. A cohesive product vision and focus on innovation over imitation is the strategy that will make that possible.", "image_url": "https://summerofcode.withgoogle.com/media/org/graphite-labs/p5x1ehnbihaxxqoq-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/graphite.webp", "logo_r2_url": null, - "url": "https://graphite.rs", + "url": "https://graphite.art", "active_years": [ 2024, - 2025 + 2025, + 2026 ], "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "machine learning", @@ -42,7 +43,8 @@ "year_2022": null, "year_2023": null, "year_2024": 3, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -54,7 +56,8 @@ "year_2022": null, "year_2023": null, "year_2024": 3, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "total_students": 8 }, @@ -228,21 +231,22 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/graphite" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "contact@graphite.rs", - "guide_url": "https://graphite.rs/volunteer/guide/student-projects/", - "ideas_url": "https://graphite.rs/volunteer/guide/student-projects/", + "guide_url": "https://graphite.art/volunteer/guide/student-projects/", + "ideas_url": "https://graphite.art/volunteer/guide/student-projects/", "irc_channel": "https://discord.graphite.rs", "mailing_list": null }, "social": { - "blog": "https://graphite.rs/blog/graphite-internships-announcing-participation-in-gsoc-2024/", + "blog": "https://graphite.art/blog/internships-for-a-rust-graphics-engine-gsoc-2025/", "discord": "https://discord.graphite.rs", "facebook": null, - "github": null, + "github": "https://github.com/GraphiteEditor/Graphite", "gitlab": null, "instagram": null, "linkedin": null, @@ -257,6 +261,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.223Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/haiku.json b/new-api-details/organizations/haiku.json index f5213001..19974bf5 100644 --- a/new-api-details/organizations/haiku.json +++ b/new-api-details/organizations/haiku.json @@ -3,7 +3,7 @@ "slug": "haiku", "name": "Haiku", "category": "Operating systems", - "description": "Operating system that targets personal computing.", + "description": "Haiku is a fast, efficient, easy to use and lean open source operating system inspired by the BeOS that specifically targets personal computing.\n\nHaiku is not a Linux distribution, nor does it use the Linux kernel. Haiku is the spiritual successor to BeOS and it is derived from the NewOS kernel, which was authored by Travis Geiselbrecht (geist), who was formerly employed by Be Inc. — the developers of BeOS.\n\nLinux-based distributions stack up software – the Linux kernel, the X Window System, and various DEs with disparate toolkits such as GTK+ and Qt – that do not necessarily share the same guidelines and/or goals. This lack of consistency and overall vision manifests itself in increased complexity, insufficient integration, and inefficient solutions, making the use of your computer more complicated than it should actually be.\n\nInstead, Haiku has a single focus on personal computing and is driven by a unified vision for the whole OS. That, we believe, enables Haiku to provide a leaner, cleaner and more efficient system capable of providing a better user experience that is simple and uniform throughout.", "image_url": "https://summerofcode.withgoogle.com/media/org/haiku/lnrgd3agfl2kogbo-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/haiku.webp", "logo_r2_url": null, @@ -16,11 +16,12 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ], "first_year": 2017, - "last_year": 2024, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ "c++", "posix", @@ -62,7 +63,8 @@ "year_2022": 3, "year_2023": 3, "year_2024": 5, - "year_2025": null + "year_2025": null, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -74,7 +76,8 @@ "year_2022": 3, "year_2023": 3, "year_2024": 5, - "year_2025": null + "year_2025": null, + "year_2026": null }, "total_students": 24 }, @@ -610,15 +613,16 @@ ], "projects_url": "https://summerofcode.withgoogle.com/archive/2024/organizations/haiku/" }, - "year_2025": null + "year_2025": null, + "year_2026": null }, "first_time": false, "contact": { "email": "contact@haiku-inc.org", - "guide_url": null, - "ideas_url": null, + "guide_url": "https://www.haiku-os.org/community/gsoc/2026/contributors", + "ideas_url": "https://www.haiku-os.org/community/gsoc/2026/ideas", "irc_channel": "https://www.haiku-os.org/community/irc", - "mailing_list": "https://www.haiku-os.org/community/ml" + "mailing_list": "https://discuss.haiku-os.org" }, "social": { "blog": "https://www.haiku-os.org/blog/", @@ -639,6 +643,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.226Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/haskellorg.json b/new-api-details/organizations/haskellorg.json index 489a8d01..f57db216 100644 --- a/new-api-details/organizations/haskellorg.json +++ b/new-api-details/organizations/haskellorg.json @@ -3,7 +3,7 @@ "slug": "haskellorg", "name": "Haskell.org", "category": "Programming languages", - "description": "Purely functional programming language", + "description": "Haskell is an advanced, general-purpose, purely functional programming language. It has a strong, static type system with Hindley-Milner type inference.\n\nThe language natively supports lazy evaluation, and lets you track side effects in the type system. This leads to a concise and declarative style of programming, which differs quite a bit from conventional languages. By controlling side effects and working with immutable data, the programmer can avoid whole classes of bugs.\n\nHaskell generally compiles to fast, native code, but it can also be compiled to other targets like JavaScript (through GHCJS) or LLVM.\n\nIn Google Summer of Code, we attempt to improve not only the language, but the whole ecosystem. This includes (aside from the language itself):\n\n- Compilers\n- Commonly used libraries\n- Commonly used applications written in Haskell\n- Profilers, debuggers and other tools\n- Package managers and infrastructure\n\nWe have compiled an ideas list together with long-time Haskell users, compiler contributors and researchers, and as such we believe these are important projects for the industry and academia both.", "image_url": "https://summerofcode.withgoogle.com/media/org/haskellorg/ivy7hfguqhoz8onp-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/haskellorg.webp", "logo_r2_url": null, @@ -15,10 +15,11 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ], "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "haskell", @@ -56,7 +57,8 @@ "year_2022": 10, "year_2023": null, "year_2024": 4, - "year_2025": 4 + "year_2025": 4, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -68,7 +70,8 @@ "year_2022": 10, "year_2023": null, "year_2024": 4, - "year_2025": 4 + "year_2025": 4, + "year_2026": null }, "total_students": 68 }, @@ -1410,7 +1413,8 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/haskellorg" - } + }, + "year_2026": null }, "first_time": false, "contact": { @@ -1424,7 +1428,7 @@ "blog": "https://summer.haskell.org/news.html", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/haskell/", "gitlab": null, "instagram": null, "linkedin": null, @@ -1439,6 +1443,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.231Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/humanai.json b/new-api-details/organizations/humanai.json index 2e479444..a3203553 100644 --- a/new-api-details/organizations/humanai.json +++ b/new-api-details/organizations/humanai.json @@ -3,17 +3,18 @@ "slug": "humanai", "name": "HumanAI", "category": "Media", - "description": "AI for the Arts and the Humanities", + "description": "Machine learning and Artificial Intelligence techniques can be broadly applicable and transferable across many domains. The goals of HumanAI projects are to grow the open-source community in machine learning for the domains of the Arts, Social Sciences and Humanities in addressing various important societal challenges and introducing and transferring the knowledge and tools of machine learning across these disciplines.", "image_url": "https://summerofcode.withgoogle.com/media/org/humanai/n5oaqivpu4hu4alm-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/humanai.webp", "logo_r2_url": null, "url": "http://humanai.foundation", "active_years": [ 2024, - 2025 + 2025, + 2026 ], "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -42,7 +43,8 @@ "year_2022": null, "year_2023": null, "year_2024": 11, - "year_2025": 15 + "year_2025": 15, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -54,7 +56,8 @@ "year_2022": null, "year_2023": null, "year_2024": 11, - "year_2025": 15 + "year_2025": 15, + "year_2026": null }, "total_students": 22 }, @@ -568,21 +571,22 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/humanai" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": null, "guide_url": null, - "ideas_url": "https://humanai.foundation/", + "ideas_url": "https://humanai.foundation/activities/gsoc2026.html", "irc_channel": "https://app.gitter.im/#/room/#humanai-foundation:gitter.im", - "mailing_list": "https://simba3.web.cern.ch/simba3/SelfSubscription.aspx?groupName=humanai-announce" + "mailing_list": "human-ai@cern.ch" }, "social": { "blog": "http://humanai.foundation", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/humanai-foundation", "gitlab": null, "instagram": null, "linkedin": null, @@ -597,6 +601,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.240Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/incf.json b/new-api-details/organizations/incf.json index ef2cb01d..bbbefa89 100644 --- a/new-api-details/organizations/incf.json +++ b/new-api-details/organizations/incf.json @@ -3,7 +3,7 @@ "slug": "incf", "name": "INCF", "category": "Science and medicine", - "description": "An open & FAIR neuroscience standards organization", + "description": "The International Neuroinformatics Coordinating Facility (INCF; www.incf.org) is an international organization launched in 2005, following a proposal from the Global Science Forum of the OECD. \n\nINCF was established to facilitate and promote the sharing of data and computing resources in the international neuroscience community. A larger objective of INCF is to help develop scalable, portable, and extensible applications that can be used by neuroscience laboratories worldwide. \n\nThe mission of INCF is to make neuroscience FAIR (Findable, Accessible, Interoperable and Reusable) by sharing and integrating neuroscience data and knowledge worldwide. We foster scientific community collaboration to develop standards for data sharing, analysis modeling and simulation in order to catalyze insights into brain function in health and disease.\n\nINCF activities are open to all who can contribute to neuroinformatics at the international level. We have a global community of neuroscience researchers working on new and improved tools for all of neuroscience – enabling other researchers to make more and faster discoveries, and improving our understanding of the brain.", "image_url": "https://summerofcode.withgoogle.com/media/org/incf/gnryoa8kunjogh9a-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/incf.webp", "logo_r2_url": null, @@ -18,10 +18,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -65,7 +66,8 @@ "year_2022": 35, "year_2023": 22, "year_2024": 27, - "year_2025": 27 + "year_2025": 27, + "year_2026": null }, "students_by_year": { "year_2016": 12, @@ -77,7 +79,8 @@ "year_2022": 35, "year_2023": 22, "year_2024": 27, - "year_2025": 27 + "year_2025": 27, + "year_2026": null }, "total_students": 204 }, @@ -4219,13 +4222,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/incf" - } + }, + "year_2026": null }, "first_time": false, "contact": { - "email": "mathew@incf.org", + "email": "gsoc@incf.org", "guide_url": "https://docs.google.com/document/d/16H8MlUl_0EbhL1IC4ddRZKYeMAd9JtAHCuxY5piZOGc/", - "ideas_url": "https://docs.google.com/document/d/1T7U4nYFbVbZuIUw_2bB89YASj-ra26hRNtG2a20Gjlw/edit?tab=t.0", + "ideas_url": "https://docs.google.com/document/d/1XkelmTUV8zMtg99GsZhbYvPoyUG5uzEIWji7IXj0M4k/edit?tab=t.0", "irc_channel": "https://neurostars.org/", "mailing_list": "https://lists.incf.org/listinfo/neuroinfo" }, @@ -4233,7 +4237,7 @@ "blog": "https://www.incf.org/blogs-list", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/INCF", "gitlab": null, "instagram": null, "linkedin": null, @@ -4248,6 +4252,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.244Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/index.json b/new-api-details/organizations/index.json index 2bc26f39..d60c7391 100644 --- a/new-api-details/organizations/index.json +++ b/new-api-details/organizations/index.json @@ -1,7 +1,7 @@ { "slug": "organizations-index", - "published_at": "2026-01-25T15:28:52.854Z", - "total": 504, + "published_at": "2026-02-19T13:46:24.131Z", + "total": 522, "organizations": [ { "id": "692251ca53dd9d7326d33d37", @@ -42,7 +42,7 @@ "slug": "52north-spatial-information-research-gmbh", "name": "52°North Spatial Information Research GmbH", "category": "Science and medicine", - "description": "Innovative ideas & technologies in geoinformatics", + "description": "52°North is an open source initiative in the field of geoinformatics. Core topics of our activities are for example sensor web, web-based geoprocessing and earth observation.", "image_url": "https://summerofcode.withgoogle.com/media/org/52north-spatial-information-research-gmbh/gzamo2sqfwcmcobt-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/52north-spatial-information-research-gmbh.webp", "logo_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/52north-spatial-information-research-gmbh.webp", @@ -57,10 +57,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "javascript", @@ -103,243 +104,13 @@ "total_projects": 25, "first_time": false }, - { - "id": "692251cb53dd9d7326d33d39", - "slug": "aflplusplus", - "name": "AFLplusplus", - "category": "Security", - "description": "State of the art fuzzing for better security", - "image_url": "https://summerofcode.withgoogle.com/media/org/aflplusplus/dw8yelaswljerorz-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/aflplusplus.webp", - "logo_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/aflplusplus.webp", - "url": "https://aflplus.plus", - "active_years": [ - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 - ], - "first_year": 2020, - "last_year": 2025, - "is_currently_active": true, - "technologies": [ - "c", - "c++", - "llvm", - "fuzzing", - "qemu", - "sanitizers", - "rust", - "instrumentation" - ], - "topics": [ - "bug finding", - "fuzzing", - "software testing", - "secure development", - "instrumentation", - "ci" - ], - "total_projects": 10, - "first_time": false - }, - { - "id": "692251cb53dd9d7326d33d3a", - "slug": "aossie", - "name": "AOSSIE", - "category": "End user applications", - "description": "Australian Umbrella Org for Open-Source Projects", - "image_url": "https://summerofcode.withgoogle.com/media/org/aossie/oo1wd34pc1ytrq6a-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/aossie.webp", - "logo_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/aossie.webp", - "url": "https://www.aossie.org", - "active_years": [ - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 - ], - "first_year": 2017, - "last_year": 2025, - "is_currently_active": true, - "technologies": [ - "scala", - "android/ios", - "html", - "css", - "javascript", - "automated reasoning", - "xcode", - "isabelle proof assistant", - "browser extension", - "android", - "ios", - "python", - "swift", - "kotlin", - "machine learning", - "Blockchain", - "flutter" - ], - "topics": [ - "environment", - "electronic voting", - "natural language processing", - "logic", - "philosophy", - "machine learning", - "social science", - "web", - "mobile", - "backend" - ], - "total_projects": 117, - "first_time": false - }, - { - "id": "692251cb53dd9d7326d33d3b", - "slug": "aossie-the-australian-national-universitys-open-source-software-innovation-and-education", - "name": "AOSSIE - The Australian National University's Open-Source Software Innovation and Education", - "category": "Science and medicine", - "description": "Research-Intensive Open-Source Projects at Australia's Leading University", - "image_url": "https://lh3.googleusercontent.com/XfzAMWazpWFv5aKpdEt9P6PMkHbX4Hz5LFbxdwNWnBiheiQKPYcUlbneEYs7ipnGdYTxnly9g6XCOF9jHm5lF2LxJxLYH0UJ", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/aossie-the-australian-national-universitys-open-source-software-innovation-and-education.webp", - "logo_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/aossie-the-australian-national-universitys-open-source-software-innovation-and-education.webp", - "url": "https://cecs.anu.edu.au/current-students/student-opportunities/google-summer-code-anu", - "active_years": [ - 2016 - ], - "first_year": 2016, - "last_year": 2016, - "is_currently_active": false, - "technologies": [ - "python", - "postgresql", - "llvm", - "scala", - "lisp" - ], - "topics": [ - "privacy", - "health", - "logic", - "live programming", - "data analysis" - ], - "total_projects": 6, - "first_time": false - }, - { - "id": "692251cb53dd9d7326d33d3c", - "slug": "api-client-tools-at-google", - "name": "API Client Tools at Google", - "category": "Programming languages", - "description": "Industry-leading user experiences for networked APIs.", - "image_url": "https://lh3.googleusercontent.com/Wz1qKokD67uvVuu1FCoNqyl7dmYk19VC0UzGdQS1heA8QlzKQpzgJZ_DAD1g691sAQ7T_njEX_gP1ZnolJa0KytP6t1_Fds", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/api-client-tools-at-google.webp", - "logo_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/api-client-tools-at-google.webp", - "url": "https://googleapis.github.io", - "active_years": [ - 2019 - ], - "first_year": 2019, - "last_year": 2019, - "is_currently_active": false, - "technologies": [ - "rest", - "openapi", - "grpc", - "protocol buffers", - "rpc" - ], - "topics": [ - "automation", - "apis", - "code generation", - "api description" - ], - "total_projects": 1, - "first_time": false - }, - { - "id": "692251cb53dd9d7326d33d3d", - "slug": "api-dash", - "name": "API Dash", - "category": "Development tools", - "description": "Next-gen Open Source AI powered API DevTool", - "image_url": "https://summerofcode.withgoogle.com/media/org/api-dash/wgtarubdkvdp5qih-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/api-dash.webp", - "logo_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/api-dash.webp", - "url": "https://apidash.dev", - "active_years": [ - 2024, - 2025 - ], - "first_year": 2024, - "last_year": 2025, - "is_currently_active": true, - "technologies": [ - "flutter", - "api", - "ai", - "dart", - "ui/ux" - ], - "topics": [ - "testing", - "api", - "developer tools", - "automation", - "GenAI" - ], - "total_projects": 3, - "first_time": false - }, - { - "id": "692251cb53dd9d7326d33d3e", - "slug": "ascend", - "name": "ASCEND", - "category": "Science and medicine", - "description": "Equation-solving software for engineering system modelling", - "image_url": "https://lh3.googleusercontent.com/iCNS56WgOul5y7CrKGsNa3fZb93np1DLHvOJVD0UyfL2f1cXzPMOGBaKz-Lf9M9iJCHq2LgqzuqiyoKR3x48SiiEGCQFBQ", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ascend.webp", - "logo_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ascend.webp", - "url": "http://ascend4.org/", - "active_years": [ - 2016 - ], - "first_year": 2016, - "last_year": 2016, - "is_currently_active": false, - "technologies": [ - "c", - "python", - "c++" - ], - "topics": [ - "engineering", - "simulation", - "system modelling", - "mathematical software", - "solver" - ], - "total_projects": 3, - "first_time": false - }, { "id": "692251cb53dd9d7326d33d3f", "slug": "aboutcode", "name": "AboutCode", "category": "Security", - "description": "Scan code for origin, license and vulnerabilities", - "image_url": "https://summerofcode.withgoogle.com/media/org/aboutcode/pmcafargc6wvl1ck-360.png", + "description": "AboutCode.org is a community of open source developers who are trying to make open source easier to use by providing open source tools to discover, identify and track open source components (aka. Software Composition Analysis – SCA). This includes tools, data and standards for code origin, FOSS licenses and security vulnerabilities.", + "image_url": "https://summerofcode.withgoogle.com/media/org/aboutcode/v8yhhmpej4djujai-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/aboutcode.webp", "logo_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/aboutcode.webp", "url": "https://aboutcode.org", @@ -351,10 +122,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -443,7 +215,7 @@ "slug": "accord-project", "name": "Accord Project", "category": "Programming languages", - "description": "Open source software for smart legal contracts", + "description": "Accord Project champions the importance of contract text alongside computer-code when automating contracts. This is often referred to as Computable Contracts or Smart Legal Contracts.\n\nThe Accord Project is a non-profit, collaborative, initiative developing an ecosystem and open source tools for computational contracts. The community includes participants from law firms, technology companies, universities, government and private individuals.\n\nToday, the community maintains a technology neutral foundation for smart legal contracts, based on the union of legal text with a machine readable data model, and machine executable logic. This definition of a smart legal contract is recognised across the industry, including by statutory and standards bodies. \n\nAccord Project is a top-level Linux Foundation project.", "image_url": "https://summerofcode.withgoogle.com/media/org/accord-project/1q3vpch01xpsriu9-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/accord-project.webp", "logo_r2_url": null, @@ -452,10 +224,11 @@ 2020, 2021, 2024, - 2025 + 2025, + 2026 ], "first_year": 2020, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "javascript", @@ -526,21 +299,103 @@ "first_time": false }, { - "id": "692251cb53dd9d7326d33d43", - "slug": "alaska", - "name": "Alaska", - "category": "Science and medicine", - "description": "Many Traditions, One Alaska", - "image_url": "https://summerofcode.withgoogle.com/media/org/alaska/uuu8lxevgc3jof9c.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/alaska.webp", - "logo_r2_url": null, - "url": "https://www.uaa.alaska.edu/research", + "id": "692251cb53dd9d7326d33d39", + "slug": "aflplusplus", + "name": "AFLplusplus", + "category": "Security", + "description": "We are dedicated to provide the most effective fuzzing frameworks. Our work includes AFL++, the most effective and flexible fuzzer, and libafl, a library to build your own fuzzer with the most modern techniques and technologies.", + "image_url": "https://summerofcode.withgoogle.com/media/org/aflplusplus/dw8yelaswljerorz-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/aflplusplus.webp", + "logo_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/aflplusplus.webp", + "url": "https://aflplus.plus", "active_years": [ + 2020, + 2021, + 2022, + 2023, 2024, - 2025 + 2025, + 2026 ], - "first_year": 2024, - "last_year": 2025, + "first_year": 2020, + "last_year": 2026, + "is_currently_active": true, + "technologies": [ + "c", + "c++", + "llvm", + "fuzzing", + "qemu", + "sanitizers", + "rust", + "instrumentation" + ], + "topics": [ + "bug finding", + "fuzzing", + "software testing", + "secure development", + "instrumentation", + "ci" + ], + "total_projects": 10, + "first_time": false + }, + { + "id": "692251ed53dd9d7326d33f07", + "slug": "aimacode", + "name": "aimacode", + "category": "Programming languages", + "description": "Code for the book \"Artificial Intelligence: A Modern Approach\"", + "image_url": "https://lh3.googleusercontent.com/1czpR5YOvFFyaQmLr6y0uEN4jBKMaXZlKoWN64JsMjkaC5ySGpMoBiu3IO4xYrgNJLxEUO3aiFA_YStmVF5B9YDlSnK-Ol8", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/aimacode.webp", + "logo_r2_url": null, + "url": "https://github.com/aimacode", + "active_years": [ + 2016, + 2017, + 2018, + 2019 + ], + "first_year": 2016, + "last_year": 2019, + "is_currently_active": false, + "technologies": [ + "python", + "javascript", + "java", + "machine learning", + "artificial intelligence", + "jupyter", + "ai", + "python 3" + ], + "topics": [ + "education", + "artificial intelligence", + "machine learning", + "open education" + ], + "total_projects": 16, + "first_time": false + }, + { + "id": "692251cb53dd9d7326d33d43", + "slug": "alaska", + "name": "Alaska", + "category": "Science and medicine", + "description": "Alaska Project Ideas are mentored by the researchers and collaborators of the University of Alaska and supported by other open-source entities in Alaska, such as Alaska Dev Alliance.\n\nWe aim to represent the open-source ecosystem of the 49th state, Alaska. Anchorage, the largest city in Alaska, has a vibrant open-source community. Through this GSoC initiative, industrial experts who are part of the Alaska Developer Alliance and faculty and researchers from the University of Alaska Anchorage (UAA) and the University of Alaska Fairbanks (UAF) join hands to provide a perfect mentoring experience for interested contributors globally. We offer a glimpse of this northern state and its tech landscape to the Lower 48 and the outside world through this open-source remote summer coding program organized and funded by Google. Our projects focus on healthcare, climate science, polar science, and other research fields critical to the Circumpolar North and the rest of the world.", + "image_url": "https://summerofcode.withgoogle.com/media/org/alaska/uuu8lxevgc3jof9c.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/alaska.webp", + "logo_r2_url": null, + "url": "https://www.uaa.alaska.edu/research", + "active_years": [ + 2024, + 2025, + 2026 + ], + "first_year": 2024, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -685,7 +540,7 @@ "slug": "ankidroid", "name": "AnkiDroid", "category": "End user applications", - "description": "AnkiDroid makes remembering things easy", + "description": "Memorize anything with AnkiDroid!\n\nAnkiDroid lets you learn flashcards very efficiently by showing them just before you would forget. It is fully compatible with the spaced repetition software Anki (including synchronization), which is available for Windows/Mac/Linux/ChromeOS.\n\nStudy all sorts of things wherever and whenever you want. Make good use of idle times on bus trips, in supermarket queues or any other waiting situation!\n\nCreate your own flashcard decks or download free decks compiled for many languages and topics (more than 6000 available).\n\nAdd material through the desktop application Anki or directly through AnkiDroid. The application even supports adding material automatically from a dictionary!\n\n★ Key features:\n• supported flashcard contents: text, images, sounds, LaTeX & MathJax\n• spaced repetition (supermemo 2 algorithm)\n• text-to-speech integration\n• check your pronunciation\n• more than 6000 premade decks\n• progress widget\n• detailed statistics\n• syncing with AnkiWeb\n• open source", "image_url": "https://summerofcode.withgoogle.com/media/org/ankidroid/cxtovrlsuuluttgi-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ankidroid.webp", "logo_r2_url": null, @@ -694,10 +549,11 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ], "first_year": 2021, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "javascript", @@ -719,6 +575,102 @@ "total_projects": 10, "first_time": false }, + { + "id": "692251cb53dd9d7326d33d3a", + "slug": "aossie", + "name": "AOSSIE", + "category": "End user applications", + "description": "We are an Australian not-for-profit charity, founded in 2016, that serves as an umbrella organization for open-source projects. We believe the open-source philosophy is a resource-efficient approach to transfer knowledge, educate and innovate. \n\nWe have almost 200 repositories in 3 GitHub spaces:\n* https://github.com/orgs/AOSSIE-Org (our main space)\n* https://github.com/StabilityNexus (for our blockchain projects)\n* https://github.com/DjedAlliance (for our stablecoin projects)\n\nOur projects span a wide range of topics and themes, including: financial stability, environmental sustainability, governance, trust, decentralized communication, artificial intelligence. The common ground under all our projects is our passion for making the world a better place, by empowering people with free software than can be run with minimal dependencies.\n\nWe have a diverse group of mentors, including GSoC students from previous years who decided to become long-term contributors as well as academics with extensive experience in supervising undergraduate, M.Sc. and PhD students on theses and projects, whose results are often published and presented in the most prestigious conferences of our research fields.", + "image_url": "https://summerofcode.withgoogle.com/media/org/aossie/oo1wd34pc1ytrq6a-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/aossie.webp", + "logo_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/aossie.webp", + "url": "https://www.aossie.org", + "active_years": [ + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ], + "first_year": 2017, + "last_year": 2026, + "is_currently_active": true, + "technologies": [ + "scala", + "android/ios", + "html", + "css", + "javascript", + "automated reasoning", + "xcode", + "isabelle proof assistant", + "browser extension", + "android", + "ios", + "python", + "swift", + "kotlin", + "machine learning", + "Blockchain", + "flutter", + "Solidity" + ], + "topics": [ + "environment", + "electronic voting", + "natural language processing", + "logic", + "philosophy", + "machine learning", + "social science", + "web", + "mobile", + "backend", + "artificial intelligence", + "communication", + "blockchain" + ], + "total_projects": 117, + "first_time": false + }, + { + "id": "692251cb53dd9d7326d33d3b", + "slug": "aossie-the-australian-national-universitys-open-source-software-innovation-and-education", + "name": "AOSSIE - The Australian National University's Open-Source Software Innovation and Education", + "category": "Science and medicine", + "description": "Research-Intensive Open-Source Projects at Australia's Leading University", + "image_url": "https://lh3.googleusercontent.com/XfzAMWazpWFv5aKpdEt9P6PMkHbX4Hz5LFbxdwNWnBiheiQKPYcUlbneEYs7ipnGdYTxnly9g6XCOF9jHm5lF2LxJxLYH0UJ", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/aossie-the-australian-national-universitys-open-source-software-innovation-and-education.webp", + "logo_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/aossie-the-australian-national-universitys-open-source-software-innovation-and-education.webp", + "url": "https://cecs.anu.edu.au/current-students/student-opportunities/google-summer-code-anu", + "active_years": [ + 2016 + ], + "first_year": 2016, + "last_year": 2016, + "is_currently_active": false, + "technologies": [ + "python", + "postgresql", + "llvm", + "scala", + "lisp" + ], + "topics": [ + "privacy", + "health", + "logic", + "live programming", + "data analysis" + ], + "total_projects": 6, + "first_time": false + }, { "id": "692251cc53dd9d7326d33d48", "slug": "apache-datafusion", @@ -734,7 +686,7 @@ ], "first_year": 2025, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "python", "rust", @@ -747,6 +699,36 @@ "OLAP" ], "total_projects": 2, + "first_time": false + }, + { + "id": "new_2026_apache-software-foundation", + "slug": "apache-software-foundation", + "name": "Apache Software Foundation", + "category": "Web", + "description": "The Foundation provides an established framework for intellectual property and financial contributions that simultaneously limits contributors potential legal exposure. Through a collaborative and meritocratic development process, Apache projects deliver enterprise-grade, freely available software products that attract large communities of users. The pragmatic Apache License makes it easy for all users, commercial and individual, to deploy Apache products.", + "image_url": "https://summerofcode.withgoogle.com/media/org/apache-software-foundation/hq22fwtmvdfjnsh9-360.png", + "img_r2_url": "https://summerofcode.withgoogle.com/media/org/apache-software-foundation/hq22fwtmvdfjnsh9-360.png", + "logo_r2_url": null, + "url": "https://apache.org", + "active_years": [ + 2026 + ], + "first_year": 2026, + "last_year": 2026, + "is_currently_active": true, + "technologies": [ + "c", + "java", + "c++" + ], + "topics": [ + "big data", + "cloud", + "libraries", + "other" + ], + "total_projects": 0, "first_time": true }, { @@ -850,57 +832,203 @@ "first_time": false }, { - "id": "692251cc53dd9d7326d33d4b", - "slug": "archc", - "name": "ArchC", + "id": "692251cb53dd9d7326d33d3c", + "slug": "api-client-tools-at-google", + "name": "API Client Tools at Google", "category": "Programming languages", - "description": "ArchC is an Architecture Description Language", - "image_url": "https://lh3.googleusercontent.com/oT-xsIDhzuq_vQS6xdoI75pOBRrPXuSOR7XZRP4M3fKHop4kdHn6NtO397Jq6wccVTfqpkdbNhcVMN90-n2Tskp4P7lrvg", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/archc.webp", - "logo_r2_url": null, - "url": "http://www.archc.org", + "description": "Industry-leading user experiences for networked APIs.", + "image_url": "https://lh3.googleusercontent.com/Wz1qKokD67uvVuu1FCoNqyl7dmYk19VC0UzGdQS1heA8QlzKQpzgJZ_DAD1g691sAQ7T_njEX_gP1ZnolJa0KytP6t1_Fds", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/api-client-tools-at-google.webp", + "logo_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/api-client-tools-at-google.webp", + "url": "https://googleapis.github.io", "active_years": [ - 2016 + 2019 ], - "first_year": 2016, - "last_year": 2016, + "first_year": 2019, + "last_year": 2019, "is_currently_active": false, "technologies": [ - "python", - "c++", - "archc" + "rest", + "openapi", + "grpc", + "protocol buffers", + "rpc" ], "topics": [ - "computer architecture", - "processor design", - "simulators" + "automation", + "apis", + "code generation", + "api description" ], - "total_projects": 2, + "total_projects": 1, "first_time": false }, { - "id": "692251cc53dd9d7326d33d4c", - "slug": "ardupilot", - "name": "ArduPilot", - "category": "Science and medicine", - "description": "World's most advanced autonomous vehicle software", - "image_url": "https://summerofcode.withgoogle.com/media/org/ardupilot/oveqvcxkpgkuv8wq-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ardupilot.webp", - "logo_r2_url": null, - "url": "https://ardupilot.org/", + "id": "692251cb53dd9d7326d33d3d", + "slug": "api-dash", + "name": "API Dash", + "category": "Development tools", + "description": "API Dash is a beautiful open-source cross-platform (macOS, Windows, Linux, Android & iOS) API Client built using Flutter & powered by AI which can help you easily create & customize your HTTP, GraphQL, SSE & AI API requests, visually inspect responses and generate API integration code.", + "image_url": "https://summerofcode.withgoogle.com/media/org/api-dash/wgtarubdkvdp5qih-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/api-dash.webp", + "logo_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/api-dash.webp", + "url": "https://apidash.dev", "active_years": [ - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, 2024, - 2025 + 2025, + 2026 ], - "first_year": 2017, - "last_year": 2025, + "first_year": 2024, + "last_year": 2026, + "is_currently_active": true, + "technologies": [ + "flutter", + "api", + "ai", + "dart", + "ui/ux", + "python", + "react", + "typescript" + ], + "topics": [ + "testing", + "api", + "developer tools", + "automation", + "GenAI", + "ai", + "Agents" + ], + "total_projects": 3, + "first_time": false + }, + { + "id": "692251ed53dd9d7326d33f08", + "slug": "appleseed", + "name": "appleseed", + "category": "Media", + "description": "A modern open source rendering engine for animation and visual effects", + "image_url": "https://lh3.googleusercontent.com/fsKtYgvjsvcdf4l6Uscn9CACN6kGKEyuWCWZwl_GqZF3ZhS10gsfHpEMhwqBJEa0FOF-eJD8JWFALd1hi8LNSLAmHKHQe8Y", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/appleseed.webp", + "logo_r2_url": null, + "url": "https://appleseedhq.net/", + "active_years": [ + 2017, + 2018, + 2019, + 2020 + ], + "first_year": 2017, + "last_year": 2020, + "is_currently_active": false, + "technologies": [ + "python", + "c++", + "qt", + "c", + "opengl", + "c++11" + ], + "topics": [ + "3d", + "rendering", + "computer graphics", + "animation", + "vfx", + "mathematics", + "graphics", + "physics", + "high performance", + "simulation", + "image synthesis" + ], + "total_projects": 11, + "first_time": false + }, + { + "id": "692251cc53dd9d7326d33d4b", + "slug": "archc", + "name": "ArchC", + "category": "Programming languages", + "description": "ArchC is an Architecture Description Language", + "image_url": "https://lh3.googleusercontent.com/oT-xsIDhzuq_vQS6xdoI75pOBRrPXuSOR7XZRP4M3fKHop4kdHn6NtO397Jq6wccVTfqpkdbNhcVMN90-n2Tskp4P7lrvg", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/archc.webp", + "logo_r2_url": null, + "url": "http://www.archc.org", + "active_years": [ + 2016 + ], + "first_year": 2016, + "last_year": 2016, + "is_currently_active": false, + "technologies": [ + "python", + "c++", + "archc" + ], + "topics": [ + "computer architecture", + "processor design", + "simulators" + ], + "total_projects": 2, + "first_time": false + }, + { + "id": "692251cc53dd9d7326d33d4d", + "slug": "arduino", + "name": "Arduino", + "category": "Programming languages", + "description": "Open source electronic prototyping platform", + "image_url": "https://lh3.googleusercontent.com/2Xt9LJ2SMdLr1UqznmcpMfH_7u5F14XBU02NOdNKe0HyxUmQquo3WYBHW6UQoYCxBIaxTYc3v7_4nlL4QMrvxVKRFyJEUg", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/arduino.webp", + "logo_r2_url": null, + "url": "https://arduino.cc", + "active_years": [ + 2020 + ], + "first_year": 2020, + "last_year": 2020, + "is_currently_active": false, + "technologies": [ + "c", + "c++", + "golang", + "arduino" + ], + "topics": [ + "robotics", + "interactivity", + "electronics" + ], + "total_projects": 2, + "first_time": false + }, + { + "id": "692251cc53dd9d7326d33d4c", + "slug": "ardupilot", + "name": "ArduPilot", + "category": "Science and medicine", + "description": "ArduPilot is the world's most widely used open source flight code software for unmanned autonomous vehicles including planes, multicopters, helicopters, cars, boats, submarines, blimps, antenna trackers and much more.\n\nWritten primarily in C++, ArduPilot supports over 100 different types of autopilot hardware including the well known Pixhawk autopilot.\n\nOur team motto, \"Versatile, Trusted, Open\" reflects our team's aim to provide high quality autopilot software that reliably supports a huge variety of frames, sensors and use cases. The software is open but so is the team, always welcoming of new contributors whether they be software developers, wiki documentors, testers or users.", + "image_url": "https://summerofcode.withgoogle.com/media/org/ardupilot/oveqvcxkpgkuv8wq-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ardupilot.webp", + "logo_r2_url": null, + "url": "https://ardupilot.org/", + "active_years": [ + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ], + "first_year": 2017, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -936,33 +1064,34 @@ "first_time": false }, { - "id": "692251cc53dd9d7326d33d4d", - "slug": "arduino", - "name": "Arduino", - "category": "Programming languages", - "description": "Open source electronic prototyping platform", - "image_url": "https://lh3.googleusercontent.com/2Xt9LJ2SMdLr1UqznmcpMfH_7u5F14XBU02NOdNKe0HyxUmQquo3WYBHW6UQoYCxBIaxTYc3v7_4nlL4QMrvxVKRFyJEUg", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/arduino.webp", - "logo_r2_url": null, - "url": "https://arduino.cc", + "id": "692251cb53dd9d7326d33d3e", + "slug": "ascend", + "name": "ASCEND", + "category": "Science and medicine", + "description": "Equation-solving software for engineering system modelling", + "image_url": "https://lh3.googleusercontent.com/iCNS56WgOul5y7CrKGsNa3fZb93np1DLHvOJVD0UyfL2f1cXzPMOGBaKz-Lf9M9iJCHq2LgqzuqiyoKR3x48SiiEGCQFBQ", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ascend.webp", + "logo_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ascend.webp", + "url": "http://ascend4.org/", "active_years": [ - 2020 + 2016 ], - "first_year": 2020, - "last_year": 2020, + "first_year": 2016, + "last_year": 2016, "is_currently_active": false, "technologies": [ "c", - "c++", - "golang", - "arduino" + "python", + "c++" ], "topics": [ - "robotics", - "interactivity", - "electronics" + "engineering", + "simulation", + "system modelling", + "mathematical software", + "solver" ], - "total_projects": 2, + "total_projects": 3, "first_time": false }, { @@ -981,7 +1110,7 @@ ], "first_year": 2024, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "javascript", "java", @@ -1035,67 +1164,6 @@ "total_projects": 3, "first_time": false }, - { - "id": "692251cc53dd9d7326d33d50", - "slug": "brl-cad", - "name": "BRL-CAD", - "category": "Media", - "description": "3D CAD & other computer-aided tech (CAx)", - "image_url": "https://summerofcode.withgoogle.com/media/org/brl-cad/4ec07aqdfrvygfed-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/brl-cad.webp", - "logo_r2_url": null, - "url": "https://opencax.github.io/", - "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 - ], - "first_year": 2016, - "last_year": 2025, - "is_currently_active": true, - "technologies": [ - "python", - "c", - "c++", - "opengl", - "opencl", - "tcl", - "javascript", - "qt", - "tcl/tk", - "scripting" - ], - "topics": [ - "visualization", - "geometry", - "cad", - "3d", - "ray tracing", - "graphics user interface", - "software visualization", - "performance", - "2d/3d graphics", - "solid geometry", - "cad/cam/cae", - "data visualization", - "3d cad geometry", - "solid modeling", - "real-time computer graphics", - "high performance computing", - "high-performance computing", - "conversion standards", - "deep neural net rendering" - ], - "total_projects": 73, - "first_time": false - }, { "id": "692251cd53dd9d7326d33d51", "slug": "babel", @@ -1185,7 +1253,7 @@ ], "first_year": 2016, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "c", "python", @@ -1492,7 +1560,7 @@ "slug": "blender-foundation", "name": "Blender Foundation", "category": "End user applications", - "description": "The Freedom to Create", + "description": "Blender is a free and open source 3D creation suite, providing individuals and small teams a complete pipeline for 3D graphics, modeling, animation and games.\n\nBlender is being made by 100s of active volunteers from all around the world; by studios and individual artists, professionals and hobbyists, scientists and students, vfx experts and animators, and so on. All of them are united by an interest to have access to a fully free/open source 3D creation pipeline. Blender Foundation supports and facilitates these goals - even employs a staff for that - but fully depends on the online community to achieve it.", "image_url": "https://summerofcode.withgoogle.com/media/org/blender-foundation/vdfgx9yyygdjjvym-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/blender-foundation.webp", "logo_r2_url": null, @@ -1507,10 +1575,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "c", @@ -1539,17 +1608,46 @@ "first_time": false }, { - "id": "692251cd53dd9d7326d33d5c", - "slug": "boost-c-libraries", - "name": "Boost C++ Libraries", + "id": "new_2026_boa", + "slug": "boa", + "name": "Boa", "category": "Programming languages", - "description": "Boost provides free peer-reviewed portable C++ source libraries", - "image_url": "https://lh3.googleusercontent.com/L2nkbvYerHZT6hivm4I6ErU8MhfH9SXbPE2nqP73bnFwaXm9-KM2wdQAT1jMerAsdjszft_OTFSI8H5KMxOEXC3prbP2IDWilNDoqqOilVk", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/boost-c-libraries.webp", + "description": "Boa is an open-source, embeddable JavaScript engine written in Rust. The project aims to provide a correct, safe, and performant implementation of the ECMAScript specification, with a strong focus on long-term maintainability and developer ergonomics.\n\nBoa is designed to be used as a library, enabling developers to embed JavaScript into Rust applications, tooling, and experimental runtimes. The project emphasizes clear internal architecture, rigorous testing, and close alignment with the evolving ECMAScript standard.\n\nDevelopment is community-driven and spans multiple areas of language runtime engineering, including parsing, bytecode compilation, virtual machine execution, garbage collection, performance optimization, and specification conformance. Boa is actively developed and used as a platform for exploring modern JavaScript engine design in a memory-safe systems programming language.\n\nIn 2026 Boa's work has been used in browsers such as Google Chrome and Node.js to implement Temporal, you can read more about this in https://boajs.dev/blog/2025/09/24/temporal-release. Boa has also been used as an implementation to help drive standards within TC39 (the standards committee behind JavaScript).", + "image_url": "https://summerofcode.withgoogle.com/media/org/boa/vhimc4zkw6j9t8wm-360.png", + "img_r2_url": "https://summerofcode.withgoogle.com/media/org/boa/vhimc4zkw6j9t8wm-360.png", "logo_r2_url": null, - "url": "https://www.boost.org/", + "url": "https://boajs.dev/", "active_years": [ - 2017, + 2026 + ], + "first_year": 2026, + "last_year": 2026, + "is_currently_active": true, + "technologies": [ + "javascript", + "rust" + ], + "topics": [ + "compilers", + "web", + "performance", + "interpreters" + ], + "total_projects": 0, + "first_time": true + }, + { + "id": "692251cd53dd9d7326d33d5c", + "slug": "boost-c-libraries", + "name": "Boost C++ Libraries", + "category": "Programming languages", + "description": "Boost provides free peer-reviewed portable C++ source libraries", + "image_url": "https://lh3.googleusercontent.com/L2nkbvYerHZT6hivm4I6ErU8MhfH9SXbPE2nqP73bnFwaXm9-KM2wdQAT1jMerAsdjszft_OTFSI8H5KMxOEXC3prbP2IDWilNDoqqOilVk", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/boost-c-libraries.webp", + "logo_r2_url": null, + "url": "https://www.boost.org/", + "active_years": [ + 2017, 2018, 2019, 2020, @@ -1618,6 +1716,69 @@ "total_projects": 8, "first_time": false }, + { + "id": "692251cc53dd9d7326d33d50", + "slug": "brl-cad", + "name": "BRL-CAD", + "category": "Media", + "description": "This is the place to be if you love computer graphics. We do 2D/3D modeling, 3D printing, solid geometry, design, and more. Depending on the project, you have the opportunity to work with C/C++, Python, OpenGL, OpenCL, Qt, Javascript, and more... Help us develop open source computer-aided technologies (CAx)!\n\nWe operates as an umbrella organization with several CAx communities including:\n\n\n - OpenSCAD is a solid 3D modeler with a rich syntax for programmable geometry.\n - LibreCAD is a 2D modeling system specializing in blueprint-style drawings and draftings.\n - IfcOpenShell is a library for working with standard IFC building model data.\n - BRL-CAD is a solid modeling suite with conversion and advanced solid ray tracing features.\n - Manifold is a solid geometry mesh processing library.\n\n\nWe want to select at least one student for each, so feel free to ask us where to start.\n\n", + "image_url": "https://summerofcode.withgoogle.com/media/org/brl-cad/4ec07aqdfrvygfed-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/brl-cad.webp", + "logo_r2_url": null, + "url": "https://opencax.github.io/", + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ], + "first_year": 2016, + "last_year": 2026, + "is_currently_active": true, + "technologies": [ + "python", + "c", + "c++", + "opengl", + "opencl", + "tcl", + "javascript", + "qt", + "tcl/tk", + "scripting", + "c/c++" + ], + "topics": [ + "visualization", + "geometry", + "cad", + "3d", + "ray tracing", + "graphics user interface", + "software visualization", + "performance", + "2d/3d graphics", + "solid geometry", + "cad/cam/cae", + "data visualization", + "3d cad geometry", + "solid modeling", + "real-time computer graphics", + "high performance computing", + "high-performance computing", + "conversion standards", + "deep neural net rendering" + ], + "total_projects": 73, + "first_time": false + }, { "id": "692251cd53dd9d7326d33d5e", "slug": "buildmlearn", @@ -1684,24 +1845,26 @@ "id": "692251ce53dd9d7326d33d60", "slug": "c2si", "name": "C2SI", - "category": "Security", - "description": "C2SI develops FOSS softwares for everyone!!!", + "category": "End user applications", + "description": "The Ceylon Computer Science Institute (C2SI) conducts research in various domains, including security, artificial intelligence, mobile applications, cloud computing, and software tools. Our research aims to create computing solutions by identifying low-cost methodologies and strategies that promote sustainability. Currently, C2SI is at a pivotal stage in its evolution, having secured high donor confidence, as evidenced by multiple foreign-funded projects. The institute focuses on developing sustainable computing solutions that leverage low-cost computing and communication technologies, particularly for developing and emerging regions worldwide. We have developed several affordable and sustainable ICT solutions, with a special focus on the needs of the developing world. These solutions are briefly described in the projects section.", "image_url": "https://summerofcode.withgoogle.com/media/org/c2si/35pwh3uirrpdctn8.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/c2si.webp", "logo_r2_url": null, "url": "https://c2si.org/", "active_years": [ - 2024 + 2024, + 2026 ], "first_year": 2024, - "last_year": 2024, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ "python", "java", "go", "node.js", - "tensorflow" + "tensorflow", + "nodejs" ], "topics": [ "security", @@ -1714,658 +1877,113 @@ "first_time": false }, { - "id": "692251ce53dd9d7326d33d61", - "slug": "castor", - "name": "CASTOR", - "category": "Programming languages", - "description": "Trustworthy software intensive systems for critical functions.", - "image_url": "https://lh3.googleusercontent.com/oj63z5DyuNFvVEKOI4hyX9UFI6IkKOKZ9l2EbD4-zUMSx6GkJRcc5Jeyv0uYf4-OWJG4alDEYg_KSAPCKrEX2jLNCcHTWhuC1Zkv3LuIuRqYHQ", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/castor.webp", + "id": "692251cf53dd9d7326d33d6f", + "slug": "cadasta", + "name": "Cadasta", + "category": "End user applications", + "description": "Transforming the way land & resource rights are documented, managed and stored.", + "image_url": "https://lh3.googleusercontent.com/YGfrXJkJlSLrcsPG3bgmjIiRXthOVmkiGr5r4X2P6ehPEX3zKktgYwuScAcAtZJzjBOURAIEL3xSoVho00Oc7jmWDRbYaGE", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cadasta.webp", "logo_r2_url": null, - "url": "https://www.castor.kth.se/", + "url": "http://cadasta.org/", "active_years": [ - 2021 + 2017 ], - "first_year": 2021, - "last_year": 2021, + "first_year": 2017, + "last_year": 2017, "is_currently_active": false, "technologies": [ - "java", - "scala", - "bytecode" + "python", + "django", + "javasc", + "javascript" ], "topics": [ - "testing", - "software analysis", - "optimization", - "development", - "automated program repair" + "web", + "geospatial", + "mapping", + "land rights", + "geo" ], - "total_projects": 2, + "total_projects": 1, "first_time": false }, { - "id": "692251ce53dd9d7326d33d62", - "slug": "cbmiuthsc", - "name": "CBMI@UTHSC", + "id": "692251ed53dd9d7326d33f0a", + "slug": "camicroscope", + "name": "caMicroscope", "category": "Science and medicine", - "description": "We develop Biomedical and Clinical informatics applications", - "image_url": "https://lh3.googleusercontent.com/UDjaIURrpVtpk7YnU7UdD7cJ12YQR7V1FP-g7QfxhuqwAB3aV4xRIixeKgR3OATLMVJwndX6r2ANXdiUsNJJS7NxvVs5tk0", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cbmiuthsc.webp", + "description": "Toolkit for cancer imaging research", + "image_url": "https://summerofcode.withgoogle.com/media/org/camicroscope/gnuvwzgnlt6gpjwy-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/camicroscope.webp", "logo_r2_url": null, - "url": "https://cbmi.lab.uthsc.edu/people-2/people/", + "url": "https://camicroscope.github.io", "active_years": [ - 2019 + 2020, + 2021, + 2023, + 2024 ], - "first_year": 2019, - "last_year": 2019, + "first_year": 2020, + "last_year": 2024, "is_currently_active": false, "technologies": [ "python", "javascript", - "flask", + "java", "tensorflow", - "reactjs" + "medical imaging", + "mongodb", + "opencv", + "node.js" ], "topics": [ + "cloud", + "distributed systems", + "science and medicine", + "precision medicine", + "data integration", "machine learning", - "deep learning", - "web applications", - "sepsis prediction", - "sepsis detection" + "data visualization", + "image analysis", + "AI/ML", + "microscopy", + "dicom pathology" ], - "total_projects": 3, + "total_projects": 13, "first_time": false }, { - "id": "692251ce53dd9d7326d33d63", - "slug": "ccextractor-development", - "name": "CCExtractor Development", - "category": "End user applications", - "description": "TV, Rust, Flutter, Linux, VR and C. In any order.", - "image_url": "https://summerofcode.withgoogle.com/media/org/ccextractor-development/xjqt8fksfnyqyqrd-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ccextractor-development.webp", + "id": "692251cf53dd9d7326d33d70", + "slug": "canadian-centre-for-computational-genomics", + "name": "Canadian Centre for Computational Genomics", + "category": "Science and medicine", + "description": "Analytical solutions for Next-Generation Sequencing data", + "image_url": "https://lh3.googleusercontent.com/hXX62uOn8pUlexFTn2Er3l4zM9wSRNIQlIBIzMVDUKcvzO1q_3nxncfItwGxYsKSVOVzR1n0zoZ4JpDGPGlHJQi00q8YVsU", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/canadian-centre-for-computational-genomics.webp", "logo_r2_url": null, - "url": "https://www.ccextractor.org", + "url": "http://computationalgenomics.ca/", "active_years": [ 2016, - 2017, 2018, 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2020 ], "first_year": 2016, - "last_year": 2025, - "is_currently_active": true, + "last_year": 2020, + "is_currently_active": false, "technologies": [ - "c", - "linux", - "video", - "ffmpeg", - "subtitles", "python", - "raspberry pi", - "visual studio", - "node.js", - "arduino", - "c#", "javascript", - "cloud", - "ai", - "rust", - "flutter", - "ml" - ], - "topics": [ - "database", - "video", - "subtitles", - "media analysis", - "decoder", - "media", - "television", - "movies", - "accesibility", - "language", - "ai", - "vision", - "accessibility", - "tv", - "linux", - "bittorrent", - "mobile", - "peer to peer", - "vr" - ], - "total_projects": 80, - "first_time": false - }, - { - "id": "692251ce53dd9d7326d33d64", - "slug": "cern-sft", - "name": "CERN SFT", - "category": "Science and medicine", - "description": "The SFT is part of CERN (European Organization for Nuclear Research).", - "image_url": "https://lh3.googleusercontent.com/AJ5vehB5HP9EcHW2Im9tCNJCgeDHWwACiK6kwWiP_JimlFx1hP4uwATxJwG5auOhaUI8LvjhIukd3X2kDpETu7K3RvSgLuM", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cern-sft.webp", - "logo_r2_url": null, - "url": "http://ep-dep-sft.web.cern.ch/", - "active_years": [ - 2016 - ], - "first_year": 2016, - "last_year": 2016, - "is_currently_active": false, - "technologies": [ - "python", - "javascript", - "c++", - "clang" - ], - "topics": [ - "machine learning", - "cloud", - "numerical and data analysis software", - "simulation software" - ], - "total_projects": 10, - "first_time": false - }, - { - "id": "692251ce53dd9d7326d33d65", - "slug": "cern-hsf", - "name": "CERN-HSF", - "category": "Science and medicine", - "description": "Umbrella for Particle Physics-related projects", - "image_url": "https://summerofcode.withgoogle.com/media/org/cern-hsf/cjus658sjzba5zhg-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cern-hsf.webp", - "logo_r2_url": null, - "url": "http://hepsoftwarefoundation.org/activities/gsoc.html", - "active_years": [ - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 - ], - "first_year": 2017, - "last_year": 2025, - "is_currently_active": true, - "technologies": [ - "python", - "c", - "c++", - "machine learning", - "data analysis", - "parallel algorithms", - "parallelization", - "concurrency", - "container orchestration", - "artificial intelligence" - ], - "topics": [ - "machine learning", - "big data", - "physics", - "particle physics", - "high-energy physics", - "performance optimization", - "algorithmics", - "big data science", - "Performance Optimisation" - ], - "total_projects": 214, - "first_time": false - }, - { - "id": "692251ce53dd9d7326d33d66", - "slug": "cgal-project", - "name": "CGAL Project", - "category": "Science and medicine", - "description": "C++ library of computational geometry", - "image_url": "https://summerofcode.withgoogle.com/media/org/cgal-project/9ubuadbe0eg5xfcw-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cgal-project.webp", - "logo_r2_url": null, - "url": "https://www.cgal.org", - "active_years": [ - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 - ], - "first_year": 2017, - "last_year": 2025, - "is_currently_active": true, - "technologies": [ - "github", - "c++", - "git", - "python", - "swig", - "qt", - "c" - ], - "topics": [ - "computational geometry", - "mesh processing", - "arrangement", - "geometry processing", - "triangulaton", - "geometry", - "webhook", - "point set processing", - "triangulation", - "computation geometry" - ], - "total_projects": 58, - "first_time": false - }, - { - "id": "692251ce53dd9d7326d33d67", - "slug": "chaoss", - "name": "CHAOSS", - "category": "Data", - "description": "Community Health Analytics Open Source Software", - "image_url": "https://summerofcode.withgoogle.com/media/org/chaoss/omnpzqtoqzjmesi7-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/chaoss.webp", - "logo_r2_url": null, - "url": "https://chaoss.community", - "active_years": [ - 2018, - 2019, - 2020, - 2021, - 2022, - 2025 - ], - "first_year": 2018, - "last_year": 2025, - "is_currently_active": true, - "technologies": [ - "javascript", - "python 3", - "python", - "mysql", - "jupyter", - "elasicsearch", - "elasticsearch", - "kibana", - "elk", - "vue", - "nltk", - "fossology", - "postgresql", - "machine learning", - "airflow", - "metrics" - ], - "topics": [ - "visualization", - "machine learning", - "data visualization", - "metrics", - "health", - "community", - "sustainability", - "analytics", - "community health", - "dependencies", - "diversity and inclusion", - "Diversity Equity and Inclusion", - "open source software metrics", - "software sustainability", - "community building", - "security and software bill of materials" - ], - "total_projects": 29, - "first_time": false - }, - { - "id": "692251ce53dd9d7326d33d68", - "slug": "chips-alliance", - "name": "CHIPS Alliance", - "category": "Programming languages", - "description": "Open source IP, tools & standards for ASIC/FPGA", - "image_url": "https://summerofcode.withgoogle.com/media/org/chips-alliance/6tfmap6dqunmfu0f-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/chips-alliance.webp", - "logo_r2_url": null, - "url": "https://chipsalliance.org/", - "active_years": [ - 2022, - 2023, - 2024 - ], - "first_year": 2022, - "last_year": 2024, - "is_currently_active": false, - "technologies": [ - "fpga", - "chisel", - "risc-v", - "systemverilog", - "ASIC" - ], - "topics": [ - "soc", - "IP cores", - "ASIC design", - "HDL", - "chiplets" - ], - "total_projects": 12, - "first_time": false - }, - { - "id": "692251ce53dd9d7326d33d69", - "slug": "clips-university-of-antwerp", - "name": "CLiPS, University of Antwerp", - "category": "Data", - "description": "Computational Psycholinguistics", - "image_url": "https://lh3.googleusercontent.com/mFF4t3hpgbKBiyg5vaoj4FYXmKP-MfXQxeql6TJh_7Y4zJiT_rEWhs5phw8Hkchf5nmXDMC7VzQ0y5Da-X2s363V8DoOntVD", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/clips-university-of-antwerp.webp", - "logo_r2_url": null, - "url": "https://www.uantwerpen.be/en/research-groups/clips", - "active_years": [ - 2017, - 2018, - 2019 - ], - "first_year": 2017, - "last_year": 2019, - "is_currently_active": false, - "technologies": [ - "python", - "javascript", - "machine learning", - "mongodb" - ], - "topics": [ - "text analytics", - "machine learning", - "computational linguistics", - "artificial intelligence", - "data mining", - "natural language processing", - "text generation" - ], - "total_projects": 10, - "first_time": false - }, - { - "id": "692251ce53dd9d7326d33d6a", - "slug": "cmu-sphinx", - "name": "CMU Sphinx", - "category": "Media", - "description": "Fast, Accurate, Flexible Open Source Speech Recognition", - "image_url": "https://lh3.googleusercontent.com/_vu_qb7x-5e-HEFLBfIEDvYIVrZoePvwECpa2n5RAJqTUIeOt_vrF8-i9wdz6z-owZ7ikHDuv2ab_BhAjWFUAuS3ogWhNQ", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cmu-sphinx.webp", - "logo_r2_url": null, - "url": "http://cmusphinx.sourceforge.net/", - "active_years": [ - 2017 - ], - "first_year": 2017, - "last_year": 2017, - "is_currently_active": false, - "technologies": [ - "c", - "python", - "javascript", - "cross-platform", - "hidden markov models" - ], - "topics": [ - "education", - "real time", - "user interface", - "speech recognition", - "pronunciation" - ], - "total_projects": 11, - "first_time": false - }, - { - "id": "692251cf53dd9d7326d33d6b", - "slug": "cncf", - "name": "CNCF", - "category": "Data", - "description": "Building sustainable ecosystems for cloud native", - "image_url": "https://summerofcode.withgoogle.com/media/org/cncf/jmxijrttlucfutel-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cncf.webp", - "logo_r2_url": null, - "url": "https://cncf.io", - "active_years": [ - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 - ], - "first_year": 2017, - "last_year": 2025, - "is_currently_active": true, - "technologies": [ - "prometheus", - "go", - "kubernetes", - "fluentd", - "grpc", - "golang", - "docker", - "rust", - "cloud", - "service mesh", - "OpenTelemetry", - "envoy" - ], - "topics": [ - "monitoring", - "cloud", - "tracing", - "logging", - "cloud native", - "container", - "containers", - "web", - "devops", - "kubernetes", - "service mesh", - "cloud computing", - "observability" - ], - "total_projects": 113, - "first_time": false - }, - { - "id": "692251cf53dd9d7326d33d6c", - "slug": "criu", - "name": "CRIU", - "category": "Operating systems", - "description": "Chekpoint/Restore for Linux tasks and containers", - "image_url": "https://summerofcode.withgoogle.com/media/org/criu/ypjxpancpwtdf698-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/criu.webp", - "logo_r2_url": null, - "url": "https://criu.org", - "active_years": [ - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 - ], - "first_year": 2019, - "last_year": 2025, - "is_currently_active": true, - "technologies": [ - "linux", - "docker", - "containers", - "kernel", - "c", - "assembly", - "python", - "linux kernel", - "go" - ], - "topics": [ - "cloud", - "save/restore", - "load-balancing", - "zero-downtime", - "migration", - "live migration", - "snapshots", - "operating systems", - "containers", - "checkpoint-restore", - "Checkpoint/Restore" - ], - "total_projects": 18, - "first_time": false - }, - { - "id": "692251cf53dd9d7326d33d6d", - "slug": "cvat", - "name": "CVAT", - "category": "Web", - "description": "Computer Vision Data Annotation Platform for AI", - "image_url": "https://summerofcode.withgoogle.com/media/org/cvat/mqacwujl7ascwcsu.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cvat.webp", - "logo_r2_url": null, - "url": "https://www.cvat.ai", - "active_years": [ - 2024 - ], - "first_year": 2024, - "last_year": 2024, - "is_currently_active": false, - "technologies": [ - "python", - "django", - "react", - "kubernetes", - "typescript" - ], - "topics": [ - "machine learning", - "computer vision", - "ai", - "deep learning", - "data" - ], - "total_projects": 2, - "first_time": false - }, - { - "id": "692251cf53dd9d7326d33d6e", - "slug": "cvxpy", - "name": "CVXPY", - "category": "Other", - "description": "CVXPY is a Python-embedded modeling language for convex optimization problems.", - "image_url": "https://lh3.googleusercontent.com/PKHrxxpKa9NMAQlmnpIgVLcxA7ftVdcgBMNhphDBiE4FNv5KXCCemvNhG4u64oR6SYj3Uezl4vxOuTZyHlkZc_2msDjx0A", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cvxpy.webp", - "logo_r2_url": null, - "url": "http://www.cvxpy.org/", - "active_years": [ - 2016 - ], - "first_year": 2016, - "last_year": 2016, - "is_currently_active": false, - "technologies": [ - "python" - ], - "topics": [ - "optimization", - "dsl", - "convex optimization" - ], - "total_projects": 1, - "first_time": false - }, - { - "id": "692251cf53dd9d7326d33d6f", - "slug": "cadasta", - "name": "Cadasta", - "category": "End user applications", - "description": "Transforming the way land & resource rights are documented, managed and stored.", - "image_url": "https://lh3.googleusercontent.com/YGfrXJkJlSLrcsPG3bgmjIiRXthOVmkiGr5r4X2P6ehPEX3zKktgYwuScAcAtZJzjBOURAIEL3xSoVho00Oc7jmWDRbYaGE", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cadasta.webp", - "logo_r2_url": null, - "url": "http://cadasta.org/", - "active_years": [ - 2017 - ], - "first_year": 2017, - "last_year": 2017, - "is_currently_active": false, - "technologies": [ - "python", - "django", - "javasc", - "javascript" - ], - "topics": [ - "web", - "geospatial", - "mapping", - "land rights", - "geo" - ], - "total_projects": 1, - "first_time": false - }, - { - "id": "692251cf53dd9d7326d33d70", - "slug": "canadian-centre-for-computational-genomics", - "name": "Canadian Centre for Computational Genomics", - "category": "Science and medicine", - "description": "Analytical solutions for Next-Generation Sequencing data", - "image_url": "https://lh3.googleusercontent.com/hXX62uOn8pUlexFTn2Er3l4zM9wSRNIQlIBIzMVDUKcvzO1q_3nxncfItwGxYsKSVOVzR1n0zoZ4JpDGPGlHJQi00q8YVsU", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/canadian-centre-for-computational-genomics.webp", - "logo_r2_url": null, - "url": "http://computationalgenomics.ca/", - "active_years": [ - 2016, - 2018, - 2019, - 2020 - ], - "first_year": 2016, - "last_year": 2020, - "is_currently_active": false, - "technologies": [ - "python", - "javascript", - "sql", - "git", - "r-project", - "perl", - "r", - "bash", - "awk", - "react", - "node.js" + "sql", + "git", + "r-project", + "perl", + "r", + "bash", + "awk", + "react", + "node.js" ], "topics": [ "visualization", @@ -2453,6 +2071,189 @@ "total_projects": 22, "first_time": false }, + { + "id": "692251ce53dd9d7326d33d61", + "slug": "castor", + "name": "CASTOR", + "category": "Programming languages", + "description": "Trustworthy software intensive systems for critical functions.", + "image_url": "https://lh3.googleusercontent.com/oj63z5DyuNFvVEKOI4hyX9UFI6IkKOKZ9l2EbD4-zUMSx6GkJRcc5Jeyv0uYf4-OWJG4alDEYg_KSAPCKrEX2jLNCcHTWhuC1Zkv3LuIuRqYHQ", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/castor.webp", + "logo_r2_url": null, + "url": "https://www.castor.kth.se/", + "active_years": [ + 2021 + ], + "first_year": 2021, + "last_year": 2021, + "is_currently_active": false, + "technologies": [ + "java", + "scala", + "bytecode" + ], + "topics": [ + "testing", + "software analysis", + "optimization", + "development", + "automated program repair" + ], + "total_projects": 2, + "first_time": false + }, + { + "id": "692251ed53dd9d7326d33f09", + "slug": "cbioportal-for-cancer-genomics", + "name": "cBioPortal for Cancer Genomics", + "category": "Science and medicine", + "description": "The cBioPortal for Cancer Genomics is a resource designed to provide broad community access to cancer genomic data. It provides a unique user-friendly and \"biology-centric computational user interface\", with the goal of making genomic data more easily accessible to translational scientists, biologists, and clinicians. The interface was explicitly built and continues to evolve with careful usability studies involving multiple biological and clinical users, and an active and engaged user base.\n\nThe public instance of cBioPortal (https://cbioportal.org/) is one of the most popular online resources for cancer genomics data and attracts more than 3,000 unique visitors (cancer researchers and clinicians) per day. The three papers documenting the cBioPortal: Cerami et al. Cancer Discov. 2012; Gao et al. Sci. Signal. 2013; and de Bruijn et al. Cancer Res. 2023; have been cited more than 16,000, 17,000, and 800 times, respectively. There are more than 100 actively used cBioPortal instances in hospitals, universities, pharmaceutical companies, and other institutes around the globe.\n\nWe are a group of software engineers, bioinformaticians, and cancer biologists building software solutions for precision medicine for cancer patients. Our overall goal is to build infrastructure to support clinical decisions for personalized cancer treatment by utilizing “big data” of cancer genomics and patient clinical profiles. Our multi-institutional team currently has more than 30 active members, primarily from Memorial Sloan Kettering Cancer Center, the Dana-Farber Cancer Institute, Princess Margaret Cancer Centre, Children's Hospital of Philadelphia, and The Hyve, a bioinformatics company from the Netherlands.", + "image_url": "https://summerofcode.withgoogle.com/media/org/cbioportal-for-cancer-genomics/fdxtjhb0urtqcyfe-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cbioportal-for-cancer-genomics.webp", + "logo_r2_url": null, + "url": "https://www.cbioportal.org/", + "active_years": [ + 2016, + 2017, + 2019, + 2022, + 2023, + 2024, + 2025, + 2026 + ], + "first_year": 2016, + "last_year": 2026, + "is_currently_active": true, + "technologies": [ + "javascript", + "java", + "web", + "html", + "big data", + "web services", + "reactjs", + "database", + "web apps", + "mysql", + "react", + "typescript" + ], + "topics": [ + "genomics", + "cancer", + "bioinformatics", + "biology", + "precision medicine", + "big data", + "data visualization", + "cancer research" + ], + "total_projects": 38, + "first_time": false + }, + { + "id": "692251ce53dd9d7326d33d62", + "slug": "cbmiuthsc", + "name": "CBMI@UTHSC", + "category": "Science and medicine", + "description": "We develop Biomedical and Clinical informatics applications", + "image_url": "https://lh3.googleusercontent.com/UDjaIURrpVtpk7YnU7UdD7cJ12YQR7V1FP-g7QfxhuqwAB3aV4xRIixeKgR3OATLMVJwndX6r2ANXdiUsNJJS7NxvVs5tk0", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cbmiuthsc.webp", + "logo_r2_url": null, + "url": "https://cbmi.lab.uthsc.edu/people-2/people/", + "active_years": [ + 2019 + ], + "first_year": 2019, + "last_year": 2019, + "is_currently_active": false, + "technologies": [ + "python", + "javascript", + "flask", + "tensorflow", + "reactjs" + ], + "topics": [ + "machine learning", + "deep learning", + "web applications", + "sepsis prediction", + "sepsis detection" + ], + "total_projects": 3, + "first_time": false + }, + { + "id": "692251ce53dd9d7326d33d63", + "slug": "ccextractor-development", + "name": "CCExtractor Development", + "category": "End user applications", + "description": "CCExtractor Development is the creator of the de-facto captions extraction tool - CCExtractor. It is the one tool that is free, portable, open source and community managed that can take a recording from a TV show and generate an external subtitle file for it.\n\nIf you regularly watch content with subtitles you download from fan sites - you should know that the source file is most likely generated by CCExtractor. If you are a student in a university that uses subtitles for natural language study, you should know that most likely we are involved somehow.\n\nWhile we already support subtitles from North America, Europe, Australia and more, our world map is not yet complete. We are actively looking for students that want to help us fill the gaps. We also want to automate many of the processes that are currently done manually, such as achieving perfect sync, our media file management.\n\nIn addition to continuously evolve our core tool, we have a growing number of new projects: support, AI, rclone, cloud, flutter, peer-to-peer and a few more that are starting to take shape.\n\nThe best part is - students have flexibility of choosing projects from a wide range of topics & technologies and even propose their own. We provide exceptional resources for students. Read more about the perks on our website.\n\nWe’re very excited to take part in GSoC for the 9th time. Most of our past students are still involved and are active in the community, which simply goes on to show how friendly and approachable is the environment. If you want to be a part of such community and help achieve our goals, come join our Slack group or mailing list!", + "image_url": "https://summerofcode.withgoogle.com/media/org/ccextractor-development/xjqt8fksfnyqyqrd-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ccextractor-development.webp", + "logo_r2_url": null, + "url": "https://www.ccextractor.org", + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ], + "first_year": 2016, + "last_year": 2026, + "is_currently_active": true, + "technologies": [ + "c", + "linux", + "video", + "ffmpeg", + "subtitles", + "python", + "raspberry pi", + "visual studio", + "node.js", + "arduino", + "c#", + "javascript", + "cloud", + "ai", + "rust", + "flutter", + "ml" + ], + "topics": [ + "database", + "video", + "subtitles", + "media analysis", + "decoder", + "media", + "television", + "movies", + "accesibility", + "language", + "ai", + "vision", + "accessibility", + "tv", + "linux", + "bittorrent", + "mobile", + "peer to peer", + "vr" + ], + "total_projects": 80, + "first_time": false + }, { "id": "692251cf53dd9d7326d33d73", "slug": "celluloid", @@ -2558,7 +2359,7 @@ ], "first_year": 2022, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "python", "aws", @@ -2586,7 +2387,7 @@ "slug": "ceph-foundation", "name": "Ceph Foundation", "category": "Data", - "description": "The Future of Storage", + "description": "An open-source storage platform that implements storage on a single distributed computer cluster and provides a 3-in-1 interface for object-, block- and file-level storage.", "image_url": "https://summerofcode.withgoogle.com/media/org/ceph/rvqqprqtyq0rfrcc-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ceph-foundation.webp", "logo_r2_url": null, @@ -2599,10 +2400,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -2627,6 +2429,198 @@ "total_projects": 31, "first_time": false }, + { + "id": "692251ce53dd9d7326d33d64", + "slug": "cern-sft", + "name": "CERN SFT", + "category": "Science and medicine", + "description": "The SFT is part of CERN (European Organization for Nuclear Research).", + "image_url": "https://lh3.googleusercontent.com/AJ5vehB5HP9EcHW2Im9tCNJCgeDHWwACiK6kwWiP_JimlFx1hP4uwATxJwG5auOhaUI8LvjhIukd3X2kDpETu7K3RvSgLuM", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cern-sft.webp", + "logo_r2_url": null, + "url": "http://ep-dep-sft.web.cern.ch/", + "active_years": [ + 2016 + ], + "first_year": 2016, + "last_year": 2016, + "is_currently_active": false, + "technologies": [ + "python", + "javascript", + "c++", + "clang" + ], + "topics": [ + "machine learning", + "cloud", + "numerical and data analysis software", + "simulation software" + ], + "total_projects": 10, + "first_time": false + }, + { + "id": "692251ce53dd9d7326d33d65", + "slug": "cern-hsf", + "name": "CERN-HSF", + "category": "Science and medicine", + "description": "CERN-HSF (High-Energy Physics Software Foundation) is the umbrella organization for high-energy physics-related projects in GSoC. The HEP Software Foundation (http://hepsoftwarefoundation.org/) facilitates the coordination of common international efforts in high-energy physics software and computing.\n\nCERN (European Organization for Nuclear Research, https://home.cern) has participated in GSoC since 2011 as the CERN-SFT group, which provides common software for CERN's experiments. In 2017, the program expanded to include many software projects from the whole field of high-energy physics. The vast majority of our GSoC projects do not require any physics knowledge.\n\nThe experiments at CERN, such as the Large Hadron Collider, the world’s largest and most powerful particle accelerator (http://home.cern/topics/large-hadron-collider) try to answer fundamental questions about the Universe. For example, what is the nature of mass? What are the elementary building blocks of the Universe? What was the early Universe like? What is the nature of dark matter and dark energy? Why is there an asymmetry between matter and antimatter? In 2012, LHC experiments announced the discovery of a new particle, the Higgs Boson, that helps explain how particles obtain mass. Also, CERN is the birthplace of the World Wide Web. Today, particle physicists are working on analyzing the data from the experiments to study the properties of the newly discovered particle and to search for new physics, such as dark matter or extra dimensions. This requires a lot of sophisticated software.\n\nThe open-source high-energy physics projects to which students can contribute during GSoC span many high-energy physics software projects: data analysis, detector and accelerator simulation, event reconstruction, data management and many others. We look forward to your contributions!", + "image_url": "https://summerofcode.withgoogle.com/media/org/cern-hsf/cjus658sjzba5zhg-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cern-hsf.webp", + "logo_r2_url": null, + "url": "http://hepsoftwarefoundation.org/activities/gsoc.html", + "active_years": [ + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ], + "first_year": 2017, + "last_year": 2026, + "is_currently_active": true, + "technologies": [ + "python", + "c", + "c++", + "machine learning", + "data analysis", + "parallel algorithms", + "parallelization", + "concurrency", + "container orchestration", + "artificial intelligence", + "c/c++" + ], + "topics": [ + "machine learning", + "big data", + "physics", + "particle physics", + "high-energy physics", + "performance optimization", + "algorithmics", + "big data science", + "Performance Optimisation" + ], + "total_projects": 214, + "first_time": false + }, + { + "id": "692251ce53dd9d7326d33d66", + "slug": "cgal-project", + "name": "CGAL Project", + "category": "Science and medicine", + "description": "CGAL is a software library that offers a number of reliable geometric data structures and algorithms. CGAL components operate in 2D and 3D, and sometime in arbitrary dimensions. Examples of components include convex hulls, convex decomposition, Delaunay triangulations, Voronoi diagrams, polygonal surface mesh data-structures, mesh generation, Boolean operations, envelope computations, intersection detection, surface reconstruction, and subdivision surfaces.\n\nCGAL is used in a variety of application domains such as CAD/CAM (computer aided design and modeling), GIS (geographic information systems), geophysics, image processing, molecular biology, robotics, motion planning, and graphics.\n\nCGAL is written in C++ and rigorously adheres to the generic-programming paradigm.\n\nCGAL became an Open Source project in 2003. Most of CGAL is under the GPL v3+ license, and some core parts are under the LGPL v3+. The semi-annual releases have currently about 10,000 downloads. CGAL is commercially supported by the spin-off company GeometryFactory.", + "image_url": "https://summerofcode.withgoogle.com/media/org/cgal-project/9ubuadbe0eg5xfcw-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cgal-project.webp", + "logo_r2_url": null, + "url": "https://www.cgal.org", + "active_years": [ + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ], + "first_year": 2017, + "last_year": 2026, + "is_currently_active": true, + "technologies": [ + "github", + "c++", + "git", + "python", + "swig", + "qt", + "c" + ], + "topics": [ + "computational geometry", + "mesh processing", + "arrangement", + "geometry processing", + "triangulaton", + "geometry", + "webhook", + "point set processing", + "triangulation", + "computation geometry" + ], + "total_projects": 58, + "first_time": false + }, + { + "id": "692251ce53dd9d7326d33d67", + "slug": "chaoss", + "name": "CHAOSS", + "category": "Data", + "description": "Community Health Analytics Open Source Software", + "image_url": "https://summerofcode.withgoogle.com/media/org/chaoss/omnpzqtoqzjmesi7-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/chaoss.webp", + "logo_r2_url": null, + "url": "https://chaoss.community", + "active_years": [ + 2018, + 2019, + 2020, + 2021, + 2022, + 2025 + ], + "first_year": 2018, + "last_year": 2025, + "is_currently_active": false, + "technologies": [ + "javascript", + "python 3", + "python", + "mysql", + "jupyter", + "elasicsearch", + "elasticsearch", + "kibana", + "elk", + "vue", + "nltk", + "fossology", + "postgresql", + "machine learning", + "airflow", + "metrics" + ], + "topics": [ + "visualization", + "machine learning", + "data visualization", + "metrics", + "health", + "community", + "sustainability", + "analytics", + "community health", + "dependencies", + "diversity and inclusion", + "Diversity Equity and Inclusion", + "open source software metrics", + "software sustainability", + "community building", + "security and software bill of materials" + ], + "total_projects": 29, + "first_time": false + }, { "id": "692251cf53dd9d7326d33d77", "slug": "chapel", @@ -2683,7 +2677,7 @@ ], "first_year": 2017, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "java", "compilers", @@ -2700,7 +2694,81 @@ "programming languages", "type systems" ], - "total_projects": 17, + "total_projects": 17, + "first_time": false + }, + { + "id": "692251ed53dd9d7326d33f0b", + "slug": "checkstyle", + "name": "checkstyle", + "category": "Programming languages", + "description": "Checkstyle is a development tool to help programmers write Java code that is easy to read and adheres to a coding standard. Our utility automates the process of checking Java code to spare humans of this boring (but important) task. This makes it ideal for projects that want to enforce a coding standard. Each and every check also forces our users who are not familiar with these standards to read them and makes them think about why these standards exist.", + "image_url": "https://summerofcode.withgoogle.com/media/org/checkstyle/e8ubktvaft8eljli-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/checkstyle.webp", + "logo_r2_url": null, + "url": "https://checkstyle.org", + "active_years": [ + 2017, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ], + "first_year": 2017, + "last_year": 2026, + "is_currently_active": true, + "technologies": [ + "java", + "antlr", + "xpath", + "artificial-intelligence" + ], + "topics": [ + "static code analysis", + "code review tool", + "coding standards", + "coding conventions", + "artificial-intelligence" + ], + "total_projects": 21, + "first_time": false + }, + { + "id": "692251ce53dd9d7326d33d68", + "slug": "chips-alliance", + "name": "CHIPS Alliance", + "category": "Programming languages", + "description": "Open source IP, tools & standards for ASIC/FPGA", + "image_url": "https://summerofcode.withgoogle.com/media/org/chips-alliance/6tfmap6dqunmfu0f-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/chips-alliance.webp", + "logo_r2_url": null, + "url": "https://chipsalliance.org/", + "active_years": [ + 2022, + 2023, + 2024 + ], + "first_year": 2022, + "last_year": 2024, + "is_currently_active": false, + "technologies": [ + "fpga", + "chisel", + "risc-v", + "systemverilog", + "ASIC" + ], + "topics": [ + "soc", + "IP cores", + "ASIC design", + "HDL", + "chiplets" + ], + "total_projects": 12, "first_time": false }, { @@ -2722,7 +2790,7 @@ ], "first_year": 2021, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "python", "javascript", @@ -2774,7 +2842,7 @@ "slug": "circuitverseorg", "name": "CircuitVerse.org", "category": "Science and medicine", - "description": "Build and learn logic circuits in the cloud!", + "description": "CircuitVerse is an easy to use digital logic circuit simulator which aims at providing a platform to create, share and learn digital circuits. It can run on almost any device without the need for installing any software. The platform has been designed for use by students, professionals and hobbyists alike. The vision is to develop a community around the platform that will aid students to self-learn digital logic design. The platform is currently used by several universities worldwide. Apart from the simulator, users can create, learn, collaborate and share their work. Teachers can create groups and host assignments on the platform. The platform’s impact has been more evident than ever in the Covid 19 pandemic as CircuitVerse enabled schools and colleges to move their courses online.", "image_url": "https://summerofcode.withgoogle.com/media/org/circuitverseorg/rxan5pn96f3m4yfu-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/circuitverseorg.webp", "logo_r2_url": null, @@ -2786,10 +2854,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2019, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "postgresql", @@ -2925,6 +2994,42 @@ "total_projects": 7, "first_time": false }, + { + "id": "692251ce53dd9d7326d33d69", + "slug": "clips-university-of-antwerp", + "name": "CLiPS, University of Antwerp", + "category": "Data", + "description": "Computational Psycholinguistics", + "image_url": "https://lh3.googleusercontent.com/mFF4t3hpgbKBiyg5vaoj4FYXmKP-MfXQxeql6TJh_7Y4zJiT_rEWhs5phw8Hkchf5nmXDMC7VzQ0y5Da-X2s363V8DoOntVD", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/clips-university-of-antwerp.webp", + "logo_r2_url": null, + "url": "https://www.uantwerpen.be/en/research-groups/clips", + "active_years": [ + 2017, + 2018, + 2019 + ], + "first_year": 2017, + "last_year": 2019, + "is_currently_active": false, + "technologies": [ + "python", + "javascript", + "machine learning", + "mongodb" + ], + "topics": [ + "text analytics", + "machine learning", + "computational linguistics", + "artificial intelligence", + "data mining", + "natural language processing", + "text generation" + ], + "total_projects": 10, + "first_time": false + }, { "id": "692251d053dd9d7326d33d7f", "slug": "clojure", @@ -2981,7 +3086,7 @@ ], "first_year": 2016, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "python", "javascript", @@ -3020,6 +3125,139 @@ "total_projects": 28, "first_time": false }, + { + "id": "692251ce53dd9d7326d33d6a", + "slug": "cmu-sphinx", + "name": "CMU Sphinx", + "category": "Media", + "description": "Fast, Accurate, Flexible Open Source Speech Recognition", + "image_url": "https://lh3.googleusercontent.com/_vu_qb7x-5e-HEFLBfIEDvYIVrZoePvwECpa2n5RAJqTUIeOt_vrF8-i9wdz6z-owZ7ikHDuv2ab_BhAjWFUAuS3ogWhNQ", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cmu-sphinx.webp", + "logo_r2_url": null, + "url": "http://cmusphinx.sourceforge.net/", + "active_years": [ + 2017 + ], + "first_year": 2017, + "last_year": 2017, + "is_currently_active": false, + "technologies": [ + "c", + "python", + "javascript", + "cross-platform", + "hidden markov models" + ], + "topics": [ + "education", + "real time", + "user interface", + "speech recognition", + "pronunciation" + ], + "total_projects": 11, + "first_time": false + }, + { + "id": "692251cf53dd9d7326d33d6b", + "slug": "cncf", + "name": "CNCF", + "category": "Data", + "description": "Cloud Native Computing Foundation (CNCF) serves as the vendor-neutral home for many of the fastest-growing open source projects, including Kubernetes, Prometheus, and Envoy.", + "image_url": "https://summerofcode.withgoogle.com/media/org/cncf/jmxijrttlucfutel-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cncf.webp", + "logo_r2_url": null, + "url": "https://cncf.io", + "active_years": [ + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ], + "first_year": 2017, + "last_year": 2026, + "is_currently_active": true, + "technologies": [ + "prometheus", + "go", + "kubernetes", + "fluentd", + "grpc", + "golang", + "docker", + "rust", + "cloud", + "service mesh", + "OpenTelemetry", + "envoy" + ], + "topics": [ + "monitoring", + "cloud", + "tracing", + "logging", + "cloud native", + "container", + "containers", + "web", + "devops", + "kubernetes", + "service mesh", + "cloud computing", + "observability" + ], + "total_projects": 113, + "first_time": false + }, + { + "id": "692251ed53dd9d7326d33f0c", + "slug": "coala", + "name": "coala", + "category": "Programming languages", + "description": "Linting and Fixing Code for All Languages", + "image_url": "https://lh3.googleusercontent.com/0PqG5lb1LsnualMXfs468WjitwnUq_jx1wefb_QF6EgC8c7LOp4DYPODanM12sQM1f7RlV4vXHaucZ8ZJ8PyiBdlE5kR8s5gQxUSsm_WoxYf", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/coala.webp", + "logo_r2_url": null, + "url": "https://coala.io", + "active_years": [ + 2017, + 2018, + 2019, + 2021 + ], + "first_year": 2017, + "last_year": 2021, + "is_currently_active": false, + "technologies": [ + "python", + "django", + "python 3", + "antlr", + "emberjs", + "reactjs", + "java", + "haskell", + "docker", + "angularjs" + ], + "topics": [ + "code analysis", + "devops", + "chatops", + "language server", + "dependency management", + "static code analysis", + "chat" + ], + "total_projects": 37, + "first_time": false + }, { "id": "692251d053dd9d7326d33d81", "slug": "cockpit-project", @@ -3238,6 +3476,46 @@ "total_projects": 4, "first_time": false }, + { + "id": "692251ed53dd9d7326d33f0d", + "slug": "coreboot", + "name": "coreboot", + "category": "Operating systems", + "description": "Fast, secure and flexible BIOS firmware", + "image_url": "https://summerofcode.withgoogle.com/media/org/coreboot/aq8ne4b9ot7xq8rz-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/coreboot.webp", + "logo_r2_url": null, + "url": "https://coreboot.org", + "active_years": [ + 2016, + 2019, + 2020, + 2022, + 2023 + ], + "first_year": 2016, + "last_year": 2023, + "is_currently_active": false, + "technologies": [ + "c", + "assembly", + "open hardware", + "assembler", + "arm", + "x86" + ], + "topics": [ + "hardware", + "embedded systems", + "real time", + "drivers", + "firmware", + "boot loader", + "BIOS" + ], + "total_projects": 11, + "first_time": false + }, { "id": "692251d153dd9d7326d33d87", "slug": "creative-commons", @@ -3247,36 +3525,86 @@ "image_url": "https://summerofcode.withgoogle.com/media/org/creative-commons/jvj0y3czaagpnhvz-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/creative-commons.webp", "logo_r2_url": null, - "url": "https://opensource.creativecommons.org/", + "url": "https://opensource.creativecommons.org/", + "active_years": [ + 2019, + 2020, + 2023, + 2024 + ], + "first_year": 2019, + "last_year": 2024, + "is_currently_active": false, + "technologies": [ + "python", + "postgresql", + "javascript", + "elasticsearch", + "wordpress", + "django", + "vue.js", + "php", + "css" + ], + "topics": [ + "web", + "nonprofit", + "copyleft", + "creative commons", + "legal", + "nonprofits" + ], + "total_projects": 14, + "first_time": false + }, + { + "id": "692251cf53dd9d7326d33d6c", + "slug": "criu", + "name": "CRIU", + "category": "Operating systems", + "description": "CRIU (stands for Checkpoint/Restore In Userspace), is a Linux software. It can freeze a running container (or an individual application) and checkpoint its state to disk. The data saved can be used to restore the application and run it exactly as it was during the time of the freeze. Using this functionality, application or container live migration, snapshots, remote debugging, and many other things are now possible. \nCRIU is packaged for all leading Linux distributions and it is integrated wit lots of popular projects such as Docker, Podman, LXC/LXD, OpenVZ, runc, open-mpi and others", + "image_url": "https://summerofcode.withgoogle.com/media/org/criu/ypjxpancpwtdf698-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/criu.webp", + "logo_r2_url": null, + "url": "https://criu.org", "active_years": [ 2019, 2020, + 2021, + 2022, 2023, - 2024 + 2024, + 2025, + 2026 ], "first_year": 2019, - "last_year": 2024, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ + "linux", + "docker", + "containers", + "kernel", + "c", + "assembly", "python", - "postgresql", - "javascript", - "elasticsearch", - "wordpress", - "django", - "vue.js", - "php", - "css" + "linux kernel", + "go" ], "topics": [ - "web", - "nonprofit", - "copyleft", - "creative commons", - "legal", - "nonprofits" + "cloud", + "save/restore", + "load-balancing", + "zero-downtime", + "migration", + "live migration", + "snapshots", + "operating systems", + "containers", + "checkpoint-restore", + "Checkpoint/Restore" ], - "total_projects": 14, + "total_projects": 18, "first_time": false }, { @@ -3284,21 +3612,22 @@ "slug": "cuneiform-digital-library-initiative-cdli", "name": "Cuneiform Digital Library Initiative (CDLI)", "category": "Science and medicine", - "description": "Curating humanity's oldest written sources", - "image_url": "https://summerofcode.withgoogle.com/media/org/cuneiform-digital-library-initiative-cdli/rljrqtuzc0jxkpcp-360.png", + "description": "The Cuneiform Digital Library Initiative (CDLI) is a global collaboration of Assyriologists, museum curators, and historians working together to make the world’s earliest written records accessible online. CDLI focuses on cuneiform inscriptions dating back to the very beginning of writing around 3350 BC. Today, more than 500,000 such artifacts are held in museums and private collections worldwide, and CDLI has already digitally catalogued over 350,000 of them, helping researchers and the public explore humanity’s oldest written heritage.", + "image_url": "https://summerofcode.withgoogle.com/media/org/cuneiform-digital-library-initiative-cdli/pcifkvibocfw8hiy.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cuneiform-digital-library-initiative-cdli.webp", "logo_r2_url": null, - "url": "https://cdli.ucla.edu", + "url": "https://cdli.earth", "active_years": [ 2018, 2019, 2020, 2021, - 2022 + 2022, + 2026 ], "first_year": 2018, - "last_year": 2022, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ "python", "mariadb", @@ -3332,17 +3661,79 @@ "digitization", "cultural heritage", "History", - "culture" + "culture", + "data", + "assyriology" ], "total_projects": 30, "first_time": false }, + { + "id": "692251cf53dd9d7326d33d6d", + "slug": "cvat", + "name": "CVAT", + "category": "Web", + "description": "Computer Vision Data Annotation Platform for AI", + "image_url": "https://summerofcode.withgoogle.com/media/org/cvat/mqacwujl7ascwcsu.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cvat.webp", + "logo_r2_url": null, + "url": "https://www.cvat.ai", + "active_years": [ + 2024 + ], + "first_year": 2024, + "last_year": 2024, + "is_currently_active": false, + "technologies": [ + "python", + "django", + "react", + "kubernetes", + "typescript" + ], + "topics": [ + "machine learning", + "computer vision", + "ai", + "deep learning", + "data" + ], + "total_projects": 2, + "first_time": false + }, + { + "id": "692251cf53dd9d7326d33d6e", + "slug": "cvxpy", + "name": "CVXPY", + "category": "Other", + "description": "CVXPY is a Python-embedded modeling language for convex optimization problems.", + "image_url": "https://lh3.googleusercontent.com/PKHrxxpKa9NMAQlmnpIgVLcxA7ftVdcgBMNhphDBiE4FNv5KXCCemvNhG4u64oR6SYj3Uezl4vxOuTZyHlkZc_2msDjx0A", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cvxpy.webp", + "logo_r2_url": null, + "url": "http://www.cvxpy.org/", + "active_years": [ + 2016 + ], + "first_year": 2016, + "last_year": 2016, + "is_currently_active": false, + "technologies": [ + "python" + ], + "topics": [ + "optimization", + "dsl", + "convex optimization" + ], + "total_projects": 1, + "first_time": false + }, { "id": "692251d153dd9d7326d33d89", "slug": "d-language-foundation", "name": "D Language Foundation", "category": "Programming languages", - "description": "Write fast, read fast, and run fast.", + "description": "The D Language Foundation manages the D programming language and its entire ecosystem.", "image_url": "https://summerofcode.withgoogle.com/media/org/d-language-foundation/u25qvh5ljfkkhkjj.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/d-language-foundation.webp", "logo_r2_url": null, @@ -3350,10 +3741,11 @@ "active_years": [ 2016, 2019, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "c++", @@ -3381,68 +3773,12 @@ "total_projects": 11, "first_time": false }, - { - "id": "692251d153dd9d7326d33d8a", - "slug": "dbpedia", - "name": "DBpedia", - "category": "Science and medicine", - "description": "Global and Unified Access to Knowledge Graphs.", - "image_url": "https://summerofcode.withgoogle.com/media/org/dbpedia/cgjegpmawtu5fr6w-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/dbpedia.webp", - "logo_r2_url": null, - "url": "https://www.dbpedia.org/", - "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 - ], - "first_year": 2016, - "last_year": 2025, - "is_currently_active": true, - "technologies": [ - "python", - "java", - "scala", - "rdf", - "nosql", - "graph", - "sparql", - "javascript", - "apache spark", - "skala" - ], - "topics": [ - "big data", - "data science", - "natural language processing", - "semantic web", - "knowledge extraction", - "knowledge graph", - "data analytics", - "data extraction", - "linked data", - "ontologies", - "wikipedia", - "knowledge graphs", - "machine learning", - "largelanguagemodel" - ], - "total_projects": 61, - "first_time": false - }, { "id": "692251d153dd9d7326d33d8b", "slug": "dart", "name": "Dart", "category": "Programming languages", - "description": "Dart is a client language for apps on any platform", + "description": "The Dart language gives you a fast developer experience and works on any platform. Dart powers hot reload enabling you to make a code change and instantly see results in your running app, and compiles to ARM and x64 machine code enabling quick app startup times for mobile, desktop and the web.\n\nDart powers Flutter, Google’s UI toolkit for building beautiful, natively compiled applications for mobile, web, and desktop from a single codebase.", "image_url": "https://summerofcode.withgoogle.com/media/org/dart/hsghljw4m6popf0x-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/dart.webp", "logo_r2_url": null, @@ -3453,10 +3789,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2020, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "flutter", @@ -3476,17 +3813,18 @@ "slug": "data-for-the-common-good", "name": "Data for the Common Good", "category": "Web", - "description": "Connect. Share. Discover.", + "description": "Data for the Common Good is dedicated to building communities, platforms, and ecosystems that maximize the potential of data to drive discovery and improve human health. Headquartered in the Department of Pediatrics at the University of Chicago, our team of experts works with collaborators all over the world to connect and share useful, high-quality data between institutions, groups, and countries to increase opportunities for discovery.", "image_url": "https://summerofcode.withgoogle.com/media/org/data-for-the-common-good/tk4snywy4ejlztpt-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/data-for-the-common-good.webp", "logo_r2_url": null, "url": "https://commons.cri.uchicago.edu", "active_years": [ 2024, - 2025 + 2025, + 2026 ], "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -3537,12 +3875,69 @@ "total_projects": 1, "first_time": false }, + { + "id": "692251d153dd9d7326d33d8a", + "slug": "dbpedia", + "name": "DBpedia", + "category": "Data", + "description": "DBpedia is a crowd-sourced community effort to extract structured information from Wikipedia and make this information available on the Web. It allows for a global and unified access to Knowledge Graphs.", + "image_url": "https://summerofcode.withgoogle.com/media/org/dbpedia/cgjegpmawtu5fr6w-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/dbpedia.webp", + "logo_r2_url": null, + "url": "https://www.dbpedia.org/", + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ], + "first_year": 2016, + "last_year": 2026, + "is_currently_active": true, + "technologies": [ + "python", + "java", + "scala", + "rdf", + "nosql", + "graph", + "sparql", + "javascript", + "apache spark", + "skala" + ], + "topics": [ + "big data", + "data science", + "natural language processing", + "semantic web", + "knowledge extraction", + "knowledge graph", + "data analytics", + "data extraction", + "linked data", + "ontologies", + "wikipedia", + "knowledge graphs", + "machine learning", + "largelanguagemodel" + ], + "total_projects": 61, + "first_time": false + }, { "id": "692251d153dd9d7326d33d8e", "slug": "debian", "name": "Debian", "category": "Operating systems", - "description": "The Universal Operating System", + "description": "The Debian Project is an association of Free Software developers who\nvolunteer their time and effort in order to produce and maintain a completely free\noperating system Debian. Since its launch, the Debian project has grown to comprise more than 1,000 members with official developer status, alongside many more volunteers and contributors. Today, Debian encompasses over 50,000 packages of free, open source applications and documentation.", "image_url": "https://summerofcode.withgoogle.com/media/org/debian/mmld9soj4mti8bjn-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/debian.webp", "logo_r2_url": null, @@ -3555,10 +3950,11 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "c", @@ -3605,17 +4001,18 @@ "slug": "deepchem", "name": "DeepChem", "category": "Science and medicine", - "description": "Democratize AI for drug discovery.", + "description": "We democratize access to AI tools for drug discovery and other scientific applications of deep learning more broadly. We also maintain a collection of scientific datasets for benchmarking and building new deep learning architectures along with an extensive open source collection of scientific machine learning tutorials. DeepChem has a strong educational component and partners with a broad range of academic and governmental institutions.", "image_url": "https://summerofcode.withgoogle.com/media/org/deepchem/ffdofoxp3ba1qqmh-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/deepchem.webp", "logo_r2_url": null, "url": "https://www.deepchem.io", "active_years": [ 2024, - 2025 + 2025, + 2026 ], "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -3683,7 +4080,7 @@ ], "first_year": 2021, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "python", "java", @@ -3871,7 +4268,7 @@ "slug": "django-software-foundation", "name": "Django Software Foundation", "category": "Web", - "description": "Web framework for perfectionists with deadlines", + "description": "Django is a high-level Python Web framework originally developed at the Lawrence-Journal World. Django was designed to handle two challenges: the intensive deadlines of a newsroom and the stringent requirements of the experienced Web developers who wrote it. It lets you build high-performing, elegant Web applications quickly.", "image_url": "https://summerofcode.withgoogle.com/media/org/django-software-foundation-8o/685unxpkksrvfugu-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/django-software-foundation.webp", "logo_r2_url": null, @@ -3886,10 +4283,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -3901,7 +4299,41 @@ "web applications", "python" ], - "total_projects": 19, + "total_projects": 19, + "first_time": false + }, + { + "id": "692251ee53dd9d7326d33f0e", + "slug": "dora-rs", + "name": "dora-rs", + "category": "End user applications", + "description": "DORA (Dataflow-Oriented Robotic Architecture) is middleware designed to streamline and simplify the creation of AI-based robotic applications. It offers low latency, composable, and distributed dataflow capabilities. Applications are modeled as directed graphs, also referred to as pipelines.", + "image_url": "https://summerofcode.withgoogle.com/media/org/dora-rs-tb/u8emntrmqq6vgcih-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/dora-rs.webp", + "logo_r2_url": null, + "url": "https://dora-rs.ai", + "active_years": [ + 2025, + 2026 + ], + "first_year": 2025, + "last_year": 2026, + "is_currently_active": true, + "technologies": [ + "python", + "ros", + "c++", + "rust", + "Autonomous drive" + ], + "topics": [ + "middleware", + "Embodied AI", + "Python Robotics", + "Autonomous Drive", + "Robot Dataflow" + ], + "total_projects": 2, "first_time": false }, { @@ -3909,7 +4341,7 @@ "slug": "drupal-association", "name": "Drupal Association", "category": "Web", - "description": "The best open source digital experience platform", + "description": "Drupal is a powerful Content Management System (CMS) and framework built on PHP, used globally by governments, universities, and businesses to build complex websites and applications, offering unmatched flexibility, security, and scalability through its modular architecture (modules and themes) and community-driven development.", "image_url": "https://summerofcode.withgoogle.com/media/org/drupal-association/kfbn4ws0uftixkho-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/drupal-association.webp", "logo_r2_url": null, @@ -3923,10 +4355,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "javascript", @@ -4015,7 +4448,7 @@ "slug": "eclipse-foundation", "name": "Eclipse Foundation", "category": "Programming languages", - "description": "The Global Open Source Foundation", + "description": "The Eclipse Foundation provides our global community of individuals & organizations with a mature, scalable, and business-friendly environment for OSS collaboration and innovation.\n\nEclipse is an open source community that's focused around key principles of transparency, openness, and vendor neutrality: the work that we do is done in a manner that can be observed by anybody with an interest; project teams welcome new ideas, and invites others to participate; and vendor neutrality ensures that no single vendor can dominate a project and that everybody plays by the same set of rules (a so-called \"level playing field\").\n\nNaturally, Eclipse projects are also all about the code. With over three hundred and\nsixty (https://projects.eclipse.org/) open source projects covering a diverse set of of\ntechnologies, there's something here for everybody. \n\nEclipse projects build technology in areas such as Internet of Things (https://projects.eclipse.org/technology-type/internet-things), Programming Languages and IDE (https://projects.eclipse.org/technology-type/language), and\nRuntimes (https://projects.eclipse.org/technology-type/runtime) like Jetty and\nEE4J (http://www.eclipse.org/ee4j) (currently known as Java EE).\n\nFor those students interested in research, we have an entire working group focused\non Science (https://projects.eclipse.org/projects/science) where researches from\nsome of the world's most prestigious labs do open source development to support\ntheir research areas.", "image_url": "https://summerofcode.withgoogle.com/media/org/eclipse-foundation/xo1ntao7atq7yjg2-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/eclipse-foundation.webp", "logo_r2_url": null, @@ -4029,10 +4462,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "c", @@ -4171,7 +4605,7 @@ ], "first_year": 2022, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "javascript", "node.js", @@ -4342,308 +4776,96 @@ "first_time": false }, { - "id": "692251d353dd9d7326d33da2", - "slug": "eta", - "name": "Eta", - "category": "Programming languages", - "description": "Eta is a dialect of Haskell on the Java Virtual Machine.", - "image_url": "https://lh3.googleusercontent.com/CWx2uyJZ-z2_-0wcJhdTznrSu9d08LqOnoE19wp7OESJ0nj-Vhc0QbqXIp6nXU8lICP39AWtl3wGB-bsrToxqMPclT_uxCo", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/eta.webp", - "logo_r2_url": null, - "url": "https://eta-lang.org/", - "active_years": [ - 2018 - ], - "first_year": 2018, - "last_year": 2018, - "is_currently_active": false, - "technologies": [ - "java", - "haskell", - "jvm" - ], - "topics": [ - "compilers", - "programming-tools", - "functional-programming", - "runtime systems" - ], - "total_projects": 2, - "first_time": false - }, - { - "id": "692251d353dd9d7326d33da3", - "slug": "ffmpeg", - "name": "FFmpeg", - "category": "Media", - "description": "Record, convert and stream audio & video", - "image_url": "https://summerofcode.withgoogle.com/media/org/ffmpeg/9nltyc13lvn7dqn0-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ffmpeg.webp", + "id": "new_2026_erofs-filesystem", + "slug": "erofs-filesystem", + "name": "EROFS filesystem", + "category": "Operating systems", + "description": "EROFS [1] is a modern, high-performance block-based immutable Linux filesystem with highly-optimized on-disk format and runtime implementation. Since it's landed upstream, it has been widely deployed to billions of devices, and addresses various target scenarios. Nowadays, almost all Linux mainstream distributions support EROFS.\n\nEROFS has become a recommended filesystem [2] for Android system partitions and has already been adopted by the majority of Android vendors. It has also become popular in the Linux container world. For example, Composefs [3] uses the EROFS format for its metadata tree. Containerd 2.1 [4] also officially includes a built-in EROFS support to boost container launch performance. gVisor now supports EROFS as well [5].\n\n[1] https://erofs.docs.kernel.org\n[2] https://source.android.com/docs/core/architecture/kernel/erofs\n[3] https://github.com/containers/composefs\n[4] https://github.com/containerd/containerd/releases/tag/v2.1.0\n[5] https://github.com/google/gvisor/pull/9486", + "image_url": "https://summerofcode.withgoogle.com/media/org/erofs-filesystem/qrkpvwkzjqmwoyau-360.png", + "img_r2_url": "https://summerofcode.withgoogle.com/media/org/erofs-filesystem/qrkpvwkzjqmwoyau-360.png", "logo_r2_url": null, - "url": "https://ffmpeg.org/", + "url": "https://erofs.docs.kernel.org", "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2026 ], - "first_year": 2016, - "last_year": 2025, + "first_year": 2026, + "last_year": 2026, "is_currently_active": true, "technologies": [ "c", - "git", - "asm", - "assembly", - "assembler", - "c99" - ], - "topics": [ - "audio", - "video", - "multimedia", - "image", - "compression", - "filter", - "compressio", - "subtitles", - "image processing", - "images" - ], - "total_projects": 49, - "first_time": false - }, - { - "id": "692251d353dd9d7326d33da4", - "slug": "flare", - "name": "FLARE", - "category": "Security", - "description": "Industry leading malware analysis", - "image_url": "https://summerofcode.withgoogle.com/media/org/flare/6so0wjs76qeewe9v-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/flare.webp", - "logo_r2_url": null, - "url": "https://www.mandiant.com/", - "active_years": [ - 2023, - 2024, - 2025 - ], - "first_year": 2023, - "last_year": 2025, - "is_currently_active": true, - "technologies": [ - "python", - "ida-pro", - "Ghidra" - ], - "topics": [ - "emulation", - "disassembly", - "decompilation", - "malware-analysis", - "reverse-engineering" - ], - "total_projects": 7, - "first_time": false - }, - { - "id": "692251d353dd9d7326d33da5", - "slug": "fosdem", - "name": "FOSDEM", - "category": "Programming languages", - "description": "The organization that handles all aspects of the FOSDEM conference", - "image_url": "https://lh3.googleusercontent.com/WGA5vsI5s6wgv73iYJG8DD4Q6orAln6Q7N5mMv0vG-Rtun9JgRaFq2evxGkb23WbcofNtrj5MogvVtzDou2VfAzpvctWZ0k", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/fosdem.webp", - "logo_r2_url": null, - "url": "https://fosdem.org", - "active_years": [ - 2016, - 2017, - 2019 - ], - "first_year": 2016, - "last_year": 2019, - "is_currently_active": false, - "technologies": [ - "postgresql", - "ruby on rails", - "git", - "html", - "css", - "javascript", - "grafana", - "voctomix", - "influxdb" - ], - "topics": [ - "web", - "programming languages", - "programming tools", - "ruby", - "programming", - "rails", - "web development", - "conference", - "rails application", - "video processing" - ], - "total_projects": 4, - "first_time": false - }, - { - "id": "692251d353dd9d7326d33da6", - "slug": "fossasia", - "name": "FOSSASIA", - "category": "Science and medicine", - "description": "Free and Open Source Software in Asia", - "image_url": "https://summerofcode.withgoogle.com/media/org/fossasia-bg/rquaoyo4v86xj21l-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/fossasia.webp", - "logo_r2_url": null, - "url": "https://fossasia.org", - "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2024, - 2025 - ], - "first_year": 2016, - "last_year": 2025, - "is_currently_active": true, - "technologies": [ - "python", - "javascript", "android", - "java", - "json api", - "php", - "artificial intelligence", - "c", - "reactjs", - "django" + "linux kernel", + "Containerd", + "gVisor" ], "topics": [ - "web", - "graphics", - "mobile", - "fashiontech", - "json", - "machine learning", - "artificial intelligence", - "cloud", - "event management", - "web development", - "personal assistants", - "open science", - "search", - "voice assistants", - "hardware", - "event solutions", + "operating system", + "containers", "android", - "firmware" + "filesystems", + "agent sandbox" ], - "total_projects": 140, - "first_time": false + "total_projects": 0, + "first_time": true }, { - "id": "692251d353dd9d7326d33da7", - "slug": "fossology", - "name": "FOSSology", - "category": "Web", - "description": "Open Source License Compliance by OSS", - "image_url": "https://summerofcode.withgoogle.com/media/org/fossology/bqfblnvpsqnfg5bh-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/fossology.webp", + "id": "692251d353dd9d7326d33da2", + "slug": "eta", + "name": "Eta", + "category": "Programming languages", + "description": "Eta is a dialect of Haskell on the Java Virtual Machine.", + "image_url": "https://lh3.googleusercontent.com/CWx2uyJZ-z2_-0wcJhdTznrSu9d08LqOnoE19wp7OESJ0nj-Vhc0QbqXIp6nXU8lICP39AWtl3wGB-bsrToxqMPclT_uxCo", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/eta.webp", "logo_r2_url": null, - "url": "https://fossology.org", + "url": "https://eta-lang.org/", "active_years": [ - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2018 ], "first_year": 2018, - "last_year": 2025, - "is_currently_active": true, + "last_year": 2018, + "is_currently_active": false, "technologies": [ - "linux", - "postgresql", - "c", - "c++", - "php", - "lamp", - "jquery", - "bash", - "python", - "javascript", - "twig", - "reactjs", - "go" + "java", + "haskell", + "jvm" ], "topics": [ - "compliance", - "open source", - "licensing", - "spdx", - "license compliance", - "license-scan", - "oss licensing", - "oss compliance", - "oss licencing", - "license management", - "automation", - "nlp", - "compliance automation" + "compilers", + "programming-tools", + "functional-programming", + "runtime systems" ], - "total_projects": 42, + "total_projects": 2, "first_time": false }, { - "id": "692251d353dd9d7326d33da8", - "slug": "frrouting", - "name": "FRRouting", - "category": "Other", - "description": "Routing suite including BGP, IS-IS, LDP, OSPF, PIM", - "image_url": "https://summerofcode.withgoogle.com/media/org/frrouting/wvsrcdtt2anax9ej-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/frrouting.webp", + "id": "692251ee53dd9d7326d33f0f", + "slug": "eunomia-bpf", + "name": "eunomia-bpf", + "category": "Operating systems", + "description": "Unleash eBPF Potential with our tools and runtimes", + "image_url": "https://summerofcode.withgoogle.com/media/org/eunomia-bpf/xnyotwpqgsmqh6xf.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/eunomia-bpf.webp", "logo_r2_url": null, - "url": "https://frrouting.org/", + "url": "https://eunomia.dev/", "active_years": [ - 2020, - 2021, - 2022 + 2024 ], - "first_year": 2020, - "last_year": 2022, + "first_year": 2024, + "last_year": 2024, "is_currently_active": false, "technologies": [ - "c", "linux", - "lua", - "networking", - "linux kernel", - "routing" + "llvm", + "ebpf", + "webassembly" ], "topics": [ - "networking", - "software defined networking", - "linux", - "performance", - "systems programming", - "routing", - "systems" + "cloud", + "OS", + "runtime" ], - "total_projects": 3, + "total_projects": 2, "first_time": false }, { @@ -4666,7 +4888,7 @@ ], "first_year": 2016, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "python", "postgresql", @@ -4715,529 +4937,404 @@ "first_time": false }, { - "id": "692251d353dd9d7326d33daa", - "slug": "flashrom", - "name": "Flashrom", - "category": "Operating systems", - "description": "Reading, writing, verifying, erasing flash chips", - "image_url": "https://summerofcode.withgoogle.com/media/org/flashrom/lbs8lwrrtukrpznk-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/flashrom.webp", - "logo_r2_url": null, - "url": "https://www.flashrom.org/", - "active_years": [ - 2022 - ], - "first_year": 2022, - "last_year": 2022, - "is_currently_active": false, - "technologies": [ - "c", - "x86", - "bios", - "rom", - "spi" - ], - "topics": [ - "hardware", - "drivers", - "firmware", - "flash chips", - "low level programming" - ], - "total_projects": 1, - "first_time": false - }, - { - "id": "692251d353dd9d7326d33dab", - "slug": "forschungszentrum-jülich", - "name": "Forschungszentrum Jülich", - "category": "Science and medicine", - "description": "Shaping change: open source for Big Science", - "image_url": "https://summerofcode.withgoogle.com/media/org/forschungszentrum-julich/lpw2snlqeq5bopxq-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/forschungszentrum-jülich.webp", - "logo_r2_url": null, - "url": "https://fz-juelich.de/en", - "active_years": [ - 2022 - ], - "first_year": 2022, - "last_year": 2022, - "is_currently_active": false, - "technologies": [ - "python", - "mpi", - "high performance computing", - "pytorch", - "gpu" - ], - "topics": [ - "neuroscience", - "data analytics", - "astrophysics", - "data-intensive science", - "earth-system monitoring" - ], - "total_projects": 4, - "first_time": false - }, - { - "id": "692251d353dd9d7326d33dac", - "slug": "fortran-lang", - "name": "Fortran-lang", - "category": "Programming languages", - "description": "High-performance parallel programming language", - "image_url": "https://summerofcode.withgoogle.com/media/org/fortran-lang/ay9se7mc6vgdwgbn-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/fortran-lang.webp", + "id": "692251d353dd9d7326d33da3", + "slug": "ffmpeg", + "name": "FFmpeg", + "category": "Media", + "description": "FFmpeg is the leading multimedia framework, able to decode, encode, transcode, mux, demux, stream, filter and play pretty much anything that humans and machines have created. It supports the most obscure ancient formats up to the cutting edge. No matter if they were designed by some standards committee, the community or a corporation. It is also highly portable: FFmpeg compiles, runs, and passes our testing infrastructure FATE across Linux, Mac OS X, Microsoft.", + "image_url": "https://summerofcode.withgoogle.com/media/org/ffmpeg/9nltyc13lvn7dqn0-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ffmpeg.webp", "logo_r2_url": null, - "url": "https://fortran-lang.org", + "url": "https://ffmpeg.org/", "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ], - "first_year": 2021, - "last_year": 2025, + "first_year": 2016, + "last_year": 2026, "is_currently_active": true, "technologies": [ - "python", "c", - "c++", - "llvm", - "compiler", - "fortran" - ], - "topics": [ - "science", - "engineering", - "numerical computing", - "libraries", - "high-performance computing", - "compilers", - "programming languages", - "build systems", - "Fortran" - ], - "total_projects": 21, - "first_time": false - }, - { - "id": "692251d353dd9d7326d33dad", - "slug": "framenet-brasil-ufjf", - "name": "FrameNet Brasil (UFJF)", - "category": "Data", - "description": "Natural Language Understanding with structured computational semantics", - "image_url": "https://lh3.googleusercontent.com/4LNL-fV4t3l6MZAA2g-OKLB1hn_lhNlLvf11ppHHRlpt5gEDFhfHFNO1vTa1rvysdir88AjTFzg09XaXPP2V-rar-HgWpP-VF4Qxv-X_iPtn", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/framenet-brasil-ufjf.webp", - "logo_r2_url": null, - "url": "http://www.ufjf.br/framenetbr-eng/", - "active_years": [ - 2019, - 2020, - 2021 - ], - "first_year": 2019, - "last_year": 2021, - "is_currently_active": false, - "technologies": [ - "python", - "mysql", - "javascript", - "php" + "git", + "asm", + "assembly", + "assembler", + "c99" ], "topics": [ - "natural language processing", + "audio", + "video", + "multimedia", + "image", + "compression", + "filter", + "compressio", + "subtitles", "image processing", - "multimodality", - "natural language understanding", - "machine translation", - "video processing", - "multilinguality", - "multimodal communication" - ], - "total_projects": 5, - "first_time": false - }, - { - "id": "692251d353dd9d7326d33dae", - "slug": "free-uk-genealogy", - "name": "Free UK Genealogy", - "category": "Data", - "description": "Human transcription of family history data", - "image_url": "https://lh3.googleusercontent.com/VehPukOZevZhe7ahADaiK4mK4tdSqt3JFldLgnPoWzQGuIqrm8O6E30scj04LI7KTqd474SWMzj3wMeCQOsJxMNA6r25HgI", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/free-uk-genealogy.webp", - "logo_r2_url": null, - "url": "http://www.freeukgenealogy.org.uk", - "active_years": [ - 2018 - ], - "first_year": 2018, - "last_year": 2018, - "is_currently_active": false, - "technologies": [ - "python", - "mysql", - "mongodb", - "ruby on rails", - "css", - "html" - ], - "topics": [ - "web apps", - "machine learning", - "open data", - "ai", - "ui/ux" + "images" ], - "total_projects": 2, + "total_projects": 49, "first_time": false }, { - "id": "692251d453dd9d7326d33daf", - "slug": "free-and-open-source-silicon-foundation", - "name": "Free and Open Source Silicon Foundation", - "category": "Other", - "description": "Working together for Free and Open Source Silicon", - "image_url": "https://summerofcode.withgoogle.com/media/org/free-and-open-source-silicon-foundation/aie951otsp3xucok.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/free-and-open-source-silicon-foundation.webp", + "id": "692251d353dd9d7326d33da4", + "slug": "flare", + "name": "FLARE", + "category": "Security", + "description": "The Mandiant FLARE team is a collection of about 40 reverse engineers that analyze malware in support of threat intel, incident response, and computer forensic investigations. We spend our days using disassemblers, debuggers, decompilers, and emulators to figure out what malware does and how we can contain it. We’re known for delivering training sessions that share our experience and releasing open source software that automates the boring things. If you have even a passing interest in reverse engineering or malware analysis, reach out so that we can chat!", + "image_url": "https://summerofcode.withgoogle.com/media/org/flare/6so0wjs76qeewe9v-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/flare.webp", "logo_r2_url": null, - "url": "https://www.fossi-foundation.org", + "url": "https://cloud.google.com/security/flare", "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, 2023, 2024, - 2025 + 2025, + 2026 ], - "first_year": 2016, - "last_year": 2025, + "first_year": 2023, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", - "javascript", - "fpga", - "compiler", - "open hardware", - "c", - "verilog", - "vhdl", - "chisel", - "synthesis", - "risc-v", - "web development", - "jenkins", - "c++" + "ida-pro", + "Ghidra", + "Sandbox" ], "topics": [ - "compilers", - "debug", - "embedded systems", - "eda tools", - "digital design", - "web", - "hardware", - "open hardware", - "debugging", - "web community", - "web services", - "simulation", - "electronic design tools", - "fpga", - "silicon", - "eda" + "emulation", + "disassembly", + "decompilation", + "malware-analysis", + "reverse-engineering" ], - "total_projects": 60, + "total_projects": 7, "first_time": false }, { - "id": "692251d453dd9d7326d33db0", - "slug": "freecad", - "name": "FreeCAD", - "category": "End user applications", - "description": "Cross-platform 3D parametric modeler", - "image_url": "https://summerofcode.withgoogle.com/media/org/freecad/hka287elz3d4wvzu.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/freecad.webp", + "id": "692251d353dd9d7326d33daa", + "slug": "flashrom", + "name": "Flashrom", + "category": "Operating systems", + "description": "Reading, writing, verifying, erasing flash chips", + "image_url": "https://summerofcode.withgoogle.com/media/org/flashrom/lbs8lwrrtukrpznk-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/flashrom.webp", "logo_r2_url": null, - "url": "https://freecad.org", + "url": "https://www.flashrom.org/", "active_years": [ - 2023, - 2024, - 2025 + 2022 ], - "first_year": 2023, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2022, + "last_year": 2022, + "is_currently_active": false, "technologies": [ - "python", - "c++", - "qt", - "OpenCASCADE", - "OpenInventor" + "c", + "x86", + "bios", + "rom", + "spi" ], "topics": [ - "engineering", - "graphics", - "cad", - "architecture", - "CAM", - "3d", - "BIM" + "hardware", + "drivers", + "firmware", + "flash chips", + "low level programming" ], - "total_projects": 8, + "total_projects": 1, "first_time": false }, { - "id": "692251d453dd9d7326d33db1", - "slug": "freetype", - "name": "FreeType", - "category": "Programming languages", - "description": "FreeType is a software library to render fonts.", - "image_url": "https://summerofcode.withgoogle.com/media/org/freetype/bbbcwzgimhkwpcvx-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/freetype.webp", + "id": "692251d353dd9d7326d33dab", + "slug": "forschungszentrum-jülich", + "name": "Forschungszentrum Jülich", + "category": "Science and medicine", + "description": "Shaping change: open source for Big Science", + "image_url": "https://summerofcode.withgoogle.com/media/org/forschungszentrum-julich/lpw2snlqeq5bopxq-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/forschungszentrum-jülich.webp", "logo_r2_url": null, - "url": "https://freetype.org", + "url": "https://fz-juelich.de/en", "active_years": [ - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024 + 2022 ], - "first_year": 2017, - "last_year": 2024, + "first_year": 2022, + "last_year": 2022, "is_currently_active": false, "technologies": [ - "c", - "fonts", - "opentype", - "library", "python", - "gnu make", - "gnu autotools", - "autotools", - "meson" + "mpi", + "high performance computing", + "pytorch", + "gpu" ], "topics": [ - "graphics", - "rendering", - "fonts", - "opentype", - "truetype", - "library" + "neuroscience", + "data analytics", + "astrophysics", + "data-intensive science", + "earth-system monitoring" ], - "total_projects": 17, + "total_projects": 4, "first_time": false }, { - "id": "692251d453dd9d7326d33db2", - "slug": "frescobaldi", - "name": "Frescobaldi", - "category": "End user applications", - "description": "Edit music scores with GNU LilyPond.", - "image_url": "https://lh3.googleusercontent.com/IRUCAU_NRRzhF33TmMt5o1k7eDlbSlcyfF59CwLJABUgeFMCXGAbRmVtozRAHmQu4xtz9T2H8Y0J2m1dJZlSpj7gHlWfU_sp", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/frescobaldi.webp", + "id": "692251d353dd9d7326d33dac", + "slug": "fortran-lang", + "name": "Fortran-lang", + "category": "Programming languages", + "description": "Fortran-lang is an open-source community that develops tools and libraries for modern Fortran development. Our flagship projects include the standard library, Fortran build system and package manager, as well as the interactive compiler, LFortran. Fortran-lang also provides an inclusive and welcoming space for all Fortran enthusiasts around the world to collaborate.", + "image_url": "https://summerofcode.withgoogle.com/media/org/fortran-lang/ay9se7mc6vgdwgbn-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/fortran-lang.webp", "logo_r2_url": null, - "url": "http://frescobaldi.org", + "url": "https://fortran-lang.org", "active_years": [ - 2017 + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ], - "first_year": 2017, - "last_year": 2017, - "is_currently_active": false, + "first_year": 2021, + "last_year": 2026, + "is_currently_active": true, "technologies": [ "python", - "pyqt" + "c", + "c++", + "llvm", + "compiler", + "fortran" ], "topics": [ - "music engraving" + "science", + "engineering", + "numerical computing", + "libraries", + "high-performance computing", + "compilers", + "programming languages", + "build systems", + "Fortran" ], - "total_projects": 2, + "total_projects": 21, "first_time": false }, { - "id": "692251d453dd9d7326d33db3", - "slug": "gcp-scanner", - "name": "GCP Scanner", - "category": "Security", - "description": "Security scanning tool for Google Cloud", - "image_url": "https://summerofcode.withgoogle.com/media/org/gcp-scanner/llfil1bsqmtp4cyj-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gcp-scanner.webp", + "id": "692251d353dd9d7326d33da5", + "slug": "fosdem", + "name": "FOSDEM", + "category": "Programming languages", + "description": "The organization that handles all aspects of the FOSDEM conference", + "image_url": "https://lh3.googleusercontent.com/WGA5vsI5s6wgv73iYJG8DD4Q6orAln6Q7N5mMv0vG-Rtun9JgRaFq2evxGkb23WbcofNtrj5MogvVtzDou2VfAzpvctWZ0k", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/fosdem.webp", "logo_r2_url": null, - "url": "https://github.com/google/gcp_scanner/wiki/Google-Summer-of-Code-2023", + "url": "https://fosdem.org", "active_years": [ - 2023 + 2016, + 2017, + 2019 ], - "first_year": 2023, - "last_year": 2023, + "first_year": 2016, + "last_year": 2019, "is_currently_active": false, "technologies": [ - "python", - "google cloud" + "postgresql", + "ruby on rails", + "git", + "html", + "css", + "javascript", + "grafana", + "voctomix", + "influxdb" ], "topics": [ - "security", - "automation", - "scanning", - "google cloud" + "web", + "programming languages", + "programming tools", + "ruby", + "programming", + "rails", + "web development", + "conference", + "rails application", + "video processing" ], - "total_projects": 3, + "total_projects": 4, "first_time": false }, { - "id": "692251d453dd9d7326d33db4", - "slug": "gdevelop", - "name": "GDevelop", - "category": "Programming languages", - "description": "The cross-platform game engine designed for everyone.", - "image_url": "https://lh3.googleusercontent.com/f4WpusIovGhvkq0URnquenWBfSMC62lLjEC3s8wsXI4b2sK-mVRT9JlP7AdIjSWuZV54HCcUX-sU2LWIubZPURUmrU6cfA", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gdevelop.webp", + "id": "692251d353dd9d7326d33da6", + "slug": "fossasia", + "name": "FOSSASIA", + "category": "End user applications", + "description": "FOSSASIA is an organization developing Open Source software applications and Open Hardware together with a global community from its base in Asia. It is our goal to provide access to open technologies, science applications and knowledge that improve people's lives. We want to enable people to adapt and change technology according to their own ideas and needs and validate science and knowledge through an Open Access approach. FOSSASIA was established 2009 by Hong Phuc Dang and Mario Behling. We organize and participate in conferences, meetups and code camps. The annual FOSSASIA Summit is one of the top tech events in Asia. Other summits take place in Vietnam, Cambodia, Thailand and India. FOSSASIA also runs a number of coding programs such as Codeheat. Please join us and start contributing to our projects, participate as a coder, designer, hardware developer or event organizer.", + "image_url": "https://summerofcode.withgoogle.com/media/org/fossasia-bg/rquaoyo4v86xj21l-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/fossasia.webp", "logo_r2_url": null, - "url": "https://gdevelop-app.com", + "url": "https://fossasia.org", "active_years": [ - 2020 + 2016, + 2017, + 2018, + 2019, + 2024, + 2025, + 2026 ], - "first_year": 2020, - "last_year": 2020, - "is_currently_active": false, + "first_year": 2016, + "last_year": 2026, + "is_currently_active": true, "technologies": [ + "python", "javascript", + "android", + "java", + "json api", + "php", + "artificial intelligence", "c", - "c++", - "react", - "web development", - "game development" + "reactjs", + "django" ], "topics": [ - "compilers", "web", "graphics", - "web applications", - "gaming" + "mobile", + "fashiontech", + "json", + "machine learning", + "artificial intelligence", + "cloud", + "event management", + "web development", + "personal assistants", + "open science", + "search", + "voice assistants", + "hardware", + "event solutions", + "android", + "firmware" ], - "total_projects": 2, + "total_projects": 140, "first_time": false }, { - "id": "692251d453dd9d7326d33db5", - "slug": "genivi-alliance", - "name": "GENIVI Alliance", - "category": "Other", - "description": "Developing open software for IVI and the connected car.", - "image_url": "https://lh3.googleusercontent.com/ZIkVBgPt74PhZquMA2JwS3soJhYecxQCw9vd2pb1rbM2CTCITvcRvswGS9mb0atbWMAE4id3lijxh8H5mfUf4OMMHE_-Fio", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/genivi-alliance.webp", + "id": "692251d353dd9d7326d33da7", + "slug": "fossology", + "name": "FOSSology", + "category": "Web", + "description": "FOSSology is an open source license compliance software system and toolkit. As a toolkit you can run license, copyright and export control scans from the command line. As a system, a database and web UI are provided to give you a compliance workflow. License, copyright and export scanners are tools used in the workflow.", + "image_url": "https://summerofcode.withgoogle.com/media/org/fossology/bqfblnvpsqnfg5bh-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/fossology.webp", "logo_r2_url": null, - "url": "https://www.genivi.org", + "url": "https://fossology.org", "active_years": [ - 2017, 2018, - 2019 + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ], - "first_year": 2017, - "last_year": 2019, - "is_currently_active": false, + "first_year": 2018, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "c", "linux", + "postgresql", + "c", "c++", - "qt", - "yocto", - "java", - "embedded", - "automotive", - "some/ip" + "php", + "lamp", + "jquery", + "bash", + "python", + "javascript", + "twig", + "reactjs", + "go", + "c/c++" ], "topics": [ - "embedded systems", - "embedded", - "automotive", - "cars", - "automobile", - "diagnostics", - "functional safety", - "middleware", - "graphics", - "communication", - "bigdata" + "compliance", + "open source", + "licensing", + "spdx", + "license compliance", + "license-scan", + "oss licensing", + "oss compliance", + "oss licencing", + "license management", + "automation", + "nlp", + "compliance automation" ], - "total_projects": 3, + "total_projects": 42, "first_time": false }, { - "id": "692251d453dd9d7326d33db6", - "slug": "gnome-foundation", - "name": "GNOME Foundation", - "category": "Operating systems", - "description": "A diverse and sustainable free software desktop.", - "image_url": "https://summerofcode.withgoogle.com/media/org/gnome-foundation/aqwqx1x6ozjnxsak-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnome-foundation.webp", + "id": "692251d353dd9d7326d33dad", + "slug": "framenet-brasil-ufjf", + "name": "FrameNet Brasil (UFJF)", + "category": "Data", + "description": "Natural Language Understanding with structured computational semantics", + "image_url": "https://lh3.googleusercontent.com/4LNL-fV4t3l6MZAA2g-OKLB1hn_lhNlLvf11ppHHRlpt5gEDFhfHFNO1vTa1rvysdir88AjTFzg09XaXPP2V-rar-HgWpP-VF4Qxv-X_iPtn", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/framenet-brasil-ufjf.webp", "logo_r2_url": null, - "url": "https://gnome.org", + "url": "http://www.ufjf.br/framenetbr-eng/", "active_years": [ - 2016, - 2017, - 2018, 2019, 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2021 ], - "first_year": 2016, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2019, + "last_year": 2021, + "is_currently_active": false, "technologies": [ - "c", "python", + "mysql", "javascript", - "gtk+", - "gobject", - "rust", - "gtk", - "vala", - "linux", - "Flatpak" + "php" ], "topics": [ - "desktop applications", - "desktop environment", - "desktop", - "applications", - "operating system", - "end user applications", - "design", - "end user application", - "application", - "games", - "productivity", - "operating systems", - "graphics", - "open source", - "apps" + "natural language processing", + "image processing", + "multimodality", + "natural language understanding", + "machine translation", + "video processing", + "multilinguality", + "multimodal communication" ], - "total_projects": 115, + "total_projects": 5, "first_time": false }, { - "id": "692251d453dd9d7326d33db7", - "slug": "gnss-sdr", - "name": "GNSS-SDR", - "category": "Science and medicine", - "description": "An open source GNSS software-defined receiver", - "image_url": "https://summerofcode.withgoogle.com/media/org/gnss-sdr/vaciksjfho8cec2g-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnss-sdr.webp", + "id": "692251d453dd9d7326d33daf", + "slug": "free-and-open-source-silicon-foundation", + "name": "Free and Open Source Silicon Foundation", + "category": "Other", + "description": "The FOSSi (Free and Open Source Silicon) Foundation is a not-for-profit organization with the support the growing community of open source silicon hardware. We do this with a variety of activities and through Google Summer of Code we bring together enthusiastic mentees and outstanding projects. Under our umbrella are open source silicon hardware projects, operating systems and compilers for such projects, tools for electronic design automation and the related ecosystem.", + "image_url": "https://summerofcode.withgoogle.com/media/org/free-and-open-source-silicon-foundation/aie951otsp3xucok.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/free-and-open-source-silicon-foundation.webp", "logo_r2_url": null, - "url": "https://gnss-sdr.org/", + "url": "https://www.fossi-foundation.org", "active_years": [ 2016, 2017, @@ -5246,163 +5343,183 @@ 2020, 2021, 2022, + 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ + "python", + "javascript", + "fpga", + "compiler", + "open hardware", "c", - "c++", - "c++11", - "c++14", - "gnss", - "c++17", - "sdr", - "c++ libraries c++11 c++14 c++17 c++20", - "c++20" + "verilog", + "vhdl", + "chisel", + "synthesis", + "risc-v", + "web development", + "jenkins", + "c++" ], "topics": [ - "geolocation", - "navigation", - "software defined radio", - "communications", - "gnss", - "communications engineering", - "digital signal processing", - "signal processing", - "geospatial" + "compilers", + "debug", + "embedded systems", + "eda tools", + "digital design", + "web", + "hardware", + "open hardware", + "debugging", + "web community", + "web services", + "simulation", + "electronic design tools", + "fpga", + "silicon", + "eda" ], - "total_projects": 28, + "total_projects": 60, "first_time": false }, { - "id": "692251d453dd9d7326d33db8", - "slug": "gnu-compiler-collection-gcc", - "name": "GNU Compiler Collection (GCC)", - "category": "Programming languages", - "description": "GNU compilers", - "image_url": "https://summerofcode.withgoogle.com/media/org/gnu-compiler-collection-gcc/kpspl59nyj0hoxlr-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnu-compiler-collection-gcc.webp", + "id": "692251d353dd9d7326d33dae", + "slug": "free-uk-genealogy", + "name": "Free UK Genealogy", + "category": "Data", + "description": "Human transcription of family history data", + "image_url": "https://lh3.googleusercontent.com/VehPukOZevZhe7ahADaiK4mK4tdSqt3JFldLgnPoWzQGuIqrm8O6E30scj04LI7KTqd474SWMzj3wMeCQOsJxMNA6r25HgI", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/free-uk-genealogy.webp", "logo_r2_url": null, - "url": "https://gcc.gnu.org/", + "url": "http://www.freeukgenealogy.org.uk", "active_years": [ - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2018 ], "first_year": 2018, - "last_year": 2025, - "is_currently_active": true, + "last_year": 2018, + "is_currently_active": false, "technologies": [ - "c", - "c++", - "openmp", - "gnu autotools", - "gnu make" + "python", + "mysql", + "mongodb", + "ruby on rails", + "css", + "html" ], "topics": [ - "compilers", - "toolchain", - "openmp", - "developer tools", - "rust", - "link time optimization" + "web apps", + "machine learning", + "open data", + "ai", + "ui/ux" ], - "total_projects": 34, + "total_projects": 2, "first_time": false }, { - "id": "692251d453dd9d7326d33db9", - "slug": "gnu-image-manipulation-program", - "name": "GNU Image Manipulation Program", + "id": "692251d453dd9d7326d33db0", + "slug": "freecad", + "name": "FreeCAD", "category": "End user applications", - "description": "GIMP is a cross-platform image editor", - "image_url": "https://summerofcode.withgoogle.com/media/org/gnu-image-manipulation-program/n73ytwpnna15tra2-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnu-image-manipulation-program.webp", + "description": "FreeCAD is a general-purpose parametric 3D computer-aided design (CAD) modeler and a building information modeling (BIM) software application with finite element method (FEM) support. It is intended for mechanical engineering product design but also expands to a wider range of uses around engineering, such as architecture or electrical engineering. FreeCAD is free and open-source, under the LGPL-2.0-or-later license, and available for Linux, macOS, and Windows operating systems. Users can extend the functionality of the software using the Python programming language.", + "image_url": "https://summerofcode.withgoogle.com/media/org/freecad/hka287elz3d4wvzu.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/freecad.webp", "logo_r2_url": null, - "url": "https://www.gimp.org/", + "url": "https://freecad.org", "active_years": [ - 2022, 2023, 2024, - 2025 + 2025, + 2026 ], - "first_year": 2022, - "last_year": 2025, + "first_year": 2023, + "last_year": 2026, "is_currently_active": true, "technologies": [ - "c", - "GEGL" + "python", + "c++", + "qt", + "OpenCASCADE", + "OpenInventor" ], "topics": [ + "engineering", "graphics", - "design", - "photography", - "illustration" + "cad", + "architecture", + "CAM", + "3d", + "BIM" ], - "total_projects": 10, + "total_projects": 8, "first_time": false }, { - "id": "692251d453dd9d7326d33dba", - "slug": "gnu-mailman-project", - "name": "GNU Mailman Project", - "category": "Social and communication", - "description": "GNU Mailman is a mailing list manager popular in open source projects.", - "image_url": "https://lh3.googleusercontent.com/8gOOwiVhQkzFSsRJb_BSDvA2qAkWZg2hQmakhdflDM130XndULaRDHLDkO08mP9djMmO-zFRAzxy09lrNdP4bwbCYG7IjVm5ovN5SB52etU", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnu-mailman-project.webp", + "id": "692251d453dd9d7326d33db1", + "slug": "freetype", + "name": "FreeType", + "category": "Programming languages", + "description": "FreeType is a software library to render fonts.", + "image_url": "https://summerofcode.withgoogle.com/media/org/freetype/bbbcwzgimhkwpcvx-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/freetype.webp", "logo_r2_url": null, - "url": "https://wiki.list.org/DEV/", + "url": "https://freetype.org", "active_years": [ - 2016, + 2017, + 2018, 2019, - 2021 + 2020, + 2021, + 2022, + 2023, + 2024 ], - "first_year": 2016, - "last_year": 2021, + "first_year": 2017, + "last_year": 2024, "is_currently_active": false, "technologies": [ + "c", + "fonts", + "opentype", + "library", "python", - "django", - "email", - "python 3", - "rest", - "restful api", - "sqlalchemy" + "gnu make", + "gnu autotools", + "autotools", + "meson" ], "topics": [ - "communication", - "mailing lists", - "email", - "web", - "mail" + "graphics", + "rendering", + "fonts", + "opentype", + "truetype", + "library" ], - "total_projects": 4, + "total_projects": 17, "first_time": false }, { - "id": "692251d453dd9d7326d33dbb", - "slug": "gnu-octave", - "name": "GNU Octave", - "category": "Science and medicine", - "description": "Free Your Numbers", - "image_url": "https://summerofcode.withgoogle.com/media/org/gnu-octave/0kc85jo6rl3eo2g0-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnu-octave.webp", + "id": "692251ee53dd9d7326d33f10", + "slug": "freifunk", + "name": "freifunk", + "category": "Operating systems", + "description": "Free and open wireless networks", + "image_url": "https://summerofcode.withgoogle.com/media/org/freifunk/bpcbaeecusvfzbzk-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/freifunk.webp", "logo_r2_url": null, - "url": "https://www.octave.org", + "url": "https://freifunk.net/en", "active_years": [ 2016, 2017, 2018, 2019, - 2020, 2021, 2022, 2023, @@ -5411,297 +5528,294 @@ ], "first_year": 2016, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ + "c", + "lua", + "openwrt", + "olsr", + "batman", + "javascript", + "shell script", + "html", + "css", + "lede/openwrt", + "python", + "ruby", + "shell", "c++", - "hg" + "json", + "rust", + "gnu/linux" ], "topics": [ - "mathematics", - "numerical computation", - "data processing", - "matlab", - "numerical and data analysis software", - "scientific computing", - "numerical methods" + "monitoring", + "user interface", + "wifi", + "mesh", + "routing protocols", + "wireless", + "routing", + "firmware development", + "embedded systems", + "network", + "web applications", + "software-defined networking", + "web apps", + "software defined networking", + "wireless communications", + "open hardware", + "wireless networks", + "decentralized", + "federation", + "security" ], - "total_projects": 23, + "total_projects": 74, "first_time": false }, { - "id": "692251d453dd9d7326d33dbc", - "slug": "gnu-project", - "name": "GNU Project", - "category": "Operating systems", - "description": "Development of the GNU Operating System", - "image_url": "https://summerofcode.withgoogle.com/media/org/gnu-project/pm4yf7e7gm2jjyir.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnu-project.webp", + "id": "692251d453dd9d7326d33db2", + "slug": "frescobaldi", + "name": "Frescobaldi", + "category": "End user applications", + "description": "Edit music scores with GNU LilyPond.", + "image_url": "https://lh3.googleusercontent.com/IRUCAU_NRRzhF33TmMt5o1k7eDlbSlcyfF59CwLJABUgeFMCXGAbRmVtozRAHmQu4xtz9T2H8Y0J2m1dJZlSpj7gHlWfU_sp", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/frescobaldi.webp", "logo_r2_url": null, - "url": "https://www.gnu.org", + "url": "http://frescobaldi.org", + "active_years": [ + 2017 + ], + "first_year": 2017, + "last_year": 2017, + "is_currently_active": false, + "technologies": [ + "python", + "pyqt" + ], + "topics": [ + "music engraving" + ], + "total_projects": 2, + "first_time": false + }, + { + "id": "692251d353dd9d7326d33da8", + "slug": "frrouting", + "name": "FRRouting", + "category": "Other", + "description": "Routing suite including BGP, IS-IS, LDP, OSPF, PIM", + "image_url": "https://summerofcode.withgoogle.com/media/org/frrouting/wvsrcdtt2anax9ej-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/frrouting.webp", + "logo_r2_url": null, + "url": "https://frrouting.org/", "active_years": [ - 2016, - 2017, - 2018, - 2019, 2020, - 2023, - 2024 + 2021, + 2022 ], - "first_year": 2016, - "last_year": 2024, + "first_year": 2020, + "last_year": 2022, "is_currently_active": false, "technologies": [ "c", - "python", - "posix", - "lisp", - "eiffel", - "guile", - "operating systems", - "javascript", - "android", - "c++", - "scheme", - "gcc", - "autotools" + "linux", + "lua", + "networking", + "linux kernel", + "routing" ], "topics": [ - "operating systems", - "free software", - "operating system", - "gnu", - "package managers", - "astronomy", - "reverse engineering", - "http", - "tools", - "toolchain", - "command line", - "OS", - "binary tools" + "networking", + "software defined networking", + "linux", + "performance", + "systems programming", + "routing", + "systems" ], - "total_projects": 59, + "total_projects": 3, "first_time": false }, { - "id": "692251d553dd9d7326d33dbd", - "slug": "gnu-radio", - "name": "GNU Radio", + "id": "692251d553dd9d7326d33dc1", + "slug": "gambit-software-tools-for-game-theory", + "name": "Gambit - Software Tools for Game Theory", "category": "Science and medicine", - "description": "The free & open software radio ecosystem", - "image_url": "https://summerofcode.withgoogle.com/media/org/gnu-radio/v1g5y6exzlwgfulv-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnu-radio.webp", + "description": "Software for Analysis of Game Theory Models", + "image_url": "https://lh3.googleusercontent.com/faDGKAqKtiNxDPDEDv1SmKHfv4f8712lvmDDwsKs51EQKYRTUuL7b3SP4Dta-446C57hBoRZg1yYAz-PNLM7b3OUT_C6Np4", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gambit-software-tools-for-game-theory.webp", "logo_r2_url": null, - "url": "https://www.gnuradio.org", + "url": "http://www.gambit-project.org/", "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2016 ], "first_year": 2016, - "last_year": 2025, - "is_currently_active": true, + "last_year": 2016, + "is_currently_active": false, "technologies": [ - "python", - "c++", - "dsp", - "software radio", - "rf", - "software defined radio", - "qt", - "simd", - "android" + "javascript" ], "topics": [ - "signal processing", - "software defined radio", - "cognitive radio", - "spectrum analysis", - "information theory", - "gui", - "wireless communication", - "radar", - "real-time", - "dsp", - "communications engineering", - "cybersecurity", - "digital signal processing", - "software radio", - "wireless communications", - "communication", - "Software-Defined Radio" + "graphics", + "academic projects", + "game theory" ], - "total_projects": 18, + "total_projects": 3, "first_time": false }, { - "id": "692251d553dd9d7326d33dbe", - "slug": "gpac", - "name": "GPAC", - "category": "Media", - "description": "C multimedia framework", - "image_url": "https://lh3.googleusercontent.com/d3oNDfuyytm6SKBXs4Hg1T9_c1-9H5gyMKsvJYT9Uk4KczL3IQvT7eomOu-XMqyNZeGfyqTic6tAsHT_yQCaoo3-p2V3dWWH", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gpac.webp", + "id": "new_2026_gambit-the-package-for-computation-in-game-theory", + "slug": "gambit-the-package-for-computation-in-game-theory", + "name": "Gambit: The package for computation in game theory", + "category": "Science and medicine", + "description": "Gambit is a set of software tools for doing computation on finite, noncooperative games in extensive or strategy form and a set of file formats for storing and communicating games to external tools.\n\nThe Gambit Project was founded in the mid-1980s at the California Institute of Technology and to this day is actively developed by a community of contributors, with core development led by The Alan Turing Institute as part of its project: Automated analysis of strategic interactions.", + "image_url": "https://summerofcode.withgoogle.com/media/org/gambit-the-package-for-computation-in-game-theory/09u5sma4pizmwbqt-360.png", + "img_r2_url": "https://summerofcode.withgoogle.com/media/org/gambit-the-package-for-computation-in-game-theory/09u5sma4pizmwbqt-360.png", "logo_r2_url": null, - "url": "http://gpac.io", + "url": "https://www.gambit-project.org", "active_years": [ - 2016, - 2020 + 2026 ], - "first_year": 2016, - "last_year": 2020, - "is_currently_active": false, + "first_year": 2026, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "javascript", + "python", "c++", - "mp4", - "dash", - "mp4box", - "c", - "opengl" + "wxwidgets", + "visualization" ], "topics": [ - "research", - "streaming", - "multimedia", - "industry", - "playback", - "rendering", - "packaging", - "interactivity" + "algorithms", + "game theory", + "mathematical optimizaton" ], - "total_projects": 1, - "first_time": false + "total_projects": 0, + "first_time": true }, { - "id": "692251d553dd9d7326d33dbf", - "slug": "grame", - "name": "GRAME", - "category": "Programming languages", - "description": "Domain specific language for audio", - "image_url": "https://summerofcode.withgoogle.com/media/org/grame/joff5sziiuapvits-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/grame.webp", + "id": "692251d553dd9d7326d33dc2", + "slug": "ganeti", + "name": "Ganeti", + "category": "Other", + "description": "Cluster virtual server management software", + "image_url": "https://lh3.googleusercontent.com/XlNb_Sabp2jyqUFTPwsSRUKRCErZZs__auwuotRQc8FLDQ0z6nWvTsYt5G9FB2h1G1e71PC0Tnb_-pE15uoGQPaKPyjh6VgG", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ganeti.webp", "logo_r2_url": null, - "url": "https://faust.grame.fr", + "url": "http://www.ganeti.org", "active_years": [ - 2022, - 2023, - 2024, - 2025 + 2016 ], - "first_year": 2022, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2016, + "last_year": 2016, + "is_currently_active": false, "technologies": [ - "c", "python", - "javascript", - "c++", - "typescript", - "rust" + "xen", + "haskell", + "kvm", + "virtualization" ], "topics": [ - "audio", - "compiler", - "digital signal processing", - "function programming language" + "virtualization", + "automation" ], - "total_projects": 10, + "total_projects": 1, "first_time": false }, { - "id": "692251d553dd9d7326d33dc0", - "slug": "grr-rapid-response", - "name": "GRR Rapid Response", + "id": "692251d453dd9d7326d33db3", + "slug": "gcp-scanner", + "name": "GCP Scanner", "category": "Security", - "description": "GRR Rapid Response is an incident response framework for remote live forensics.", - "image_url": "https://lh3.googleusercontent.com/9oAVm1kVBef_gKU4Cc0dJkkOZAnIEUdnP5oGij12Up5NBoA--ZrEOiqBt7QevgibIUqxFgK_OFehxfSqInwoHTWniY_s3GwPlFgoAPgqZwP_1w", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/grr-rapid-response.webp", + "description": "Security scanning tool for Google Cloud", + "image_url": "https://summerofcode.withgoogle.com/media/org/gcp-scanner/llfil1bsqmtp4cyj-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gcp-scanner.webp", "logo_r2_url": null, - "url": "https://github.com/google/grr", + "url": "https://github.com/google/gcp_scanner/wiki/Google-Summer-of-Code-2023", "active_years": [ - 2021 + 2023 ], - "first_year": 2021, - "last_year": 2021, + "first_year": 2023, + "last_year": 2023, "is_currently_active": false, "technologies": [ - "python 3", - "angular", - "typescript", - "materialui", - "backend" + "python", + "google cloud" ], "topics": [ - "computer security", - "digital forensics" + "security", + "automation", + "scanning", + "google cloud" ], - "total_projects": 0, + "total_projects": 3, "first_time": false }, { - "id": "692251d553dd9d7326d33dc1", - "slug": "gambit-software-tools-for-game-theory", - "name": "Gambit - Software Tools for Game Theory", - "category": "Science and medicine", - "description": "Software for Analysis of Game Theory Models", - "image_url": "https://lh3.googleusercontent.com/faDGKAqKtiNxDPDEDv1SmKHfv4f8712lvmDDwsKs51EQKYRTUuL7b3SP4Dta-446C57hBoRZg1yYAz-PNLM7b3OUT_C6Np4", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gambit-software-tools-for-game-theory.webp", + "id": "692251d453dd9d7326d33db4", + "slug": "gdevelop", + "name": "GDevelop", + "category": "Programming languages", + "description": "The cross-platform game engine designed for everyone.", + "image_url": "https://lh3.googleusercontent.com/f4WpusIovGhvkq0URnquenWBfSMC62lLjEC3s8wsXI4b2sK-mVRT9JlP7AdIjSWuZV54HCcUX-sU2LWIubZPURUmrU6cfA", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gdevelop.webp", "logo_r2_url": null, - "url": "http://www.gambit-project.org/", + "url": "https://gdevelop-app.com", "active_years": [ - 2016 + 2020 ], - "first_year": 2016, - "last_year": 2016, + "first_year": 2020, + "last_year": 2020, "is_currently_active": false, "technologies": [ - "javascript" + "javascript", + "c", + "c++", + "react", + "web development", + "game development" ], "topics": [ + "compilers", + "web", "graphics", - "academic projects", - "game theory" + "web applications", + "gaming" ], - "total_projects": 3, + "total_projects": 2, "first_time": false }, { - "id": "692251d553dd9d7326d33dc2", - "slug": "ganeti", - "name": "Ganeti", - "category": "Other", - "description": "Cluster virtual server management software", - "image_url": "https://lh3.googleusercontent.com/XlNb_Sabp2jyqUFTPwsSRUKRCErZZs__auwuotRQc8FLDQ0z6nWvTsYt5G9FB2h1G1e71PC0Tnb_-pE15uoGQPaKPyjh6VgG", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ganeti.webp", + "id": "new_2026_gemini-cli", + "slug": "gemini-cli", + "name": "Gemini CLI", + "category": "Development tools", + "description": "The Gemini CLI team maintains the Gemini CLI OSS project in order to deliver a high-quality, state-of-the-art agent to a large, global user base. Maintainers manage a set of public and internal (Google) backlog goals, open source community contributions, and build/release infrastructure.", + "image_url": "https://summerofcode.withgoogle.com/media/org/gemini-cli/mhi8cx7tyjt91i6n-360.png", + "img_r2_url": "https://summerofcode.withgoogle.com/media/org/gemini-cli/mhi8cx7tyjt91i6n-360.png", "logo_r2_url": null, - "url": "http://www.ganeti.org", + "url": "https://geminicli.com", "active_years": [ - 2016 + 2026 ], - "first_year": 2016, - "last_year": 2016, - "is_currently_active": false, + "first_year": 2026, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "python", - "xen", - "haskell", - "kvm", - "virtualization" + "typescript", + "GenAI", + "MCP", + "Software Agent", + "A2A" ], "topics": [ - "virtualization", - "automation" + "developer tools", + "GenAI" ], - "total_projects": 1, - "first_time": false + "total_projects": 0, + "first_time": true }, { "id": "692251d553dd9d7326d33dc3", @@ -5744,24 +5858,70 @@ "total_projects": 12, "first_time": false }, + { + "id": "692251d453dd9d7326d33db5", + "slug": "genivi-alliance", + "name": "GENIVI Alliance", + "category": "Other", + "description": "Developing open software for IVI and the connected car.", + "image_url": "https://lh3.googleusercontent.com/ZIkVBgPt74PhZquMA2JwS3soJhYecxQCw9vd2pb1rbM2CTCITvcRvswGS9mb0atbWMAE4id3lijxh8H5mfUf4OMMHE_-Fio", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/genivi-alliance.webp", + "logo_r2_url": null, + "url": "https://www.genivi.org", + "active_years": [ + 2017, + 2018, + 2019 + ], + "first_year": 2017, + "last_year": 2019, + "is_currently_active": false, + "technologies": [ + "c", + "linux", + "c++", + "qt", + "yocto", + "java", + "embedded", + "automotive", + "some/ip" + ], + "topics": [ + "embedded systems", + "embedded", + "automotive", + "cars", + "automobile", + "diagnostics", + "functional safety", + "middleware", + "graphics", + "communication", + "bigdata" + ], + "total_projects": 3, + "first_time": false + }, { "id": "692251d553dd9d7326d33dc4", "slug": "genome-assembly-and-annotation", "name": "Genome Assembly and Annotation", "category": "Science and medicine", - "description": "Providing freely accessible genomic data", - "image_url": "https://summerofcode.withgoogle.com/media/org/genome-assembly-and-annotation/fbu2s36u7uatdgev-360.png", + "description": "EMBL-EBI is a global centre for biological data, developing and maintaining open data resources and open-source software that support life science research worldwide. Our services are used daily by researchers across academia, healthcare, and industry, and span genomics, transcriptomics, metagenomics, molecular interactions, chemistry, and functional annotation.\n\nEMBL-EBI develops and maintains a wide range of long-standing, high-impact resources, including Ensembl for genome data, the European Nucleotide Archive (ENA) for sequence data, MGnify for metagenomics analysis, and BioStudies for structured biological datasets. Together, these resources support data submission, analysis, integration, and reuse at global scale.\n\nGiven the rapid growth and increasing complexity of biological data, EMBL-EBI operates a fast-evolving software ecosystem and continuously explores new approaches to data processing, storage, distribution, and visualisation. Our codebases are open source, our data are freely available, and we actively engage with the open-source community to ensure our infrastructure remains robust, scalable, and accessible.\n\nThrough Google Summer of Code, EMBL-EBI offers contributors the opportunity to work on real-world scientific software, gaining experience in open-source development while contributing to tools and resources used by the global life science community.", + "image_url": "https://summerofcode.withgoogle.com/media/org/genome-assembly-and-annotation/ixuasrqx18soo7ml-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/genome-assembly-and-annotation.webp", "logo_r2_url": null, "url": "https://www.ebi.ac.uk/", "active_years": [ 2021, 2022, - 2023 + 2023, + 2026 ], "first_year": 2021, - "last_year": 2023, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ "python", "mysql", @@ -5843,7 +6003,7 @@ "slug": "geomscale", "name": "GeomScale", "category": "Science and medicine", - "description": "Scalable geometric and statistical software", + "description": "GeomScale is a research and development project that delivers open source code for state-of-the-art algorithms for problems at the intersection of data science, optimization, geometric, and statistical computing. The current focus of GeomScale is on scalable algorithms for sampling from high-dimensional distributions, integration, convex optimization, and their applications. One of our ambitions is to fill the gap between theory and practice by turning state-of-the-art theoretical tools in geometry and optimization to state-of-the-art implementations. Towards this goal, we will deliver various innovative solutions in a variety of application fields, like finance, computational biology, and statistics that will extend the limits of contemporary computational tools. GeomScale aims in serving as a building block for an international, interdisciplinary, and open community in high dimensional geometrical and statistical computing. The main development is currently performed in volesti, a generic open source C++ library, with R and python interfaces (the latter is hosted in package dingo), for high-dimensional sampling, volume approximation, and copula estimation for financial modelling. In particular, the current implementation scales up to hundred or thousand dimensions, depending on the problem. To our knowledge it is the most efficient software package for sampling and volume computation to date. It is, in several cases, orders of magnitude faster compared to packages that solve the same problems. It can be used to compute challenging multivariate integrals and to approximate optimal solutions in optimization problems. It has already found important applications in systems biology by analyzing large metabolic networks (e.g., the latest human network) and in FinTech by detecting shock events and by evaluating portfolios performance in stock markets with thousands of assets. Other application areas include AI and in particular approximate weighted model integration. Recent studies has shown a potential application of volesti methods in trustworthy AI, static analysis of programs and differential privacy.", "image_url": "https://summerofcode.withgoogle.com/media/org/geomscale/ongpste986nd7t6p-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/geomscale.webp", "logo_r2_url": null, @@ -5854,10 +6014,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2020, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -5881,12 +6042,41 @@ "total_projects": 30, "first_time": false }, + { + "id": "new_2026_german-center-for-open-source-ai", + "slug": "german-center-for-open-source-ai", + "name": "German Center for Open Source AI", + "category": "Data", + "description": "German Center for Open Source AI (GC.OS) builds open source AI software and a sovereign tech stack that is democratically run by its users.", + "image_url": "https://summerofcode.withgoogle.com/media/org/german-center-for-open-source-ai/mir4i7v7wopcc7wn-360.png", + "img_r2_url": "https://summerofcode.withgoogle.com/media/org/german-center-for-open-source-ai/mir4i7v7wopcc7wn-360.png", + "logo_r2_url": null, + "url": "https://gcos.ai/", + "active_years": [ + 2026 + ], + "first_year": 2026, + "last_year": 2026, + "is_currently_active": true, + "technologies": [ + "python", + "pytorch", + "scikit-learn" + ], + "topics": [ + "machine learning", + "time-series", + "Causal Inference" + ], + "total_projects": 0, + "first_time": true + }, { "id": "692251d553dd9d7326d33dc7", "slug": "git", "name": "Git", "category": "Programming languages", - "description": "Fast,Scalable,Distributed revision control system", + "description": "Git is the most widely-used revision control system in Open Source. It is a distributed system with an emphasis on speed, data integrity, and support for distributed, non-linear workflows.\n\nMany large and successful projects use Git, including the Linux Kernel, Perl, Eclipse, Gnome, KDE, Qt, Ruby on Rails, Android, PostgreSQL, Debian, and X.org.\n\nThis organization covers projects for Git itself. Other git-based software or services are not covered by this organization.", "image_url": "https://summerofcode.withgoogle.com/media/org/git/mbqqznjbaohwgq80-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/git.webp", "logo_r2_url": null, @@ -5901,10 +6091,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "c", @@ -5971,7 +6162,7 @@ ], "first_year": 2021, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "ruby", "golang", @@ -5998,7 +6189,7 @@ "slug": "global-alliance-for-genomics-and-health", "name": "Global Alliance for Genomics and Health", "category": "Science and medicine", - "description": "We develop genomics tools to benefit human health", + "description": "The Global Alliance for Genomics and Health (GA4GH) was formed to help accelerate the potential of genomic medicine to advance human health. It brings together over 400 leading genome institutes and centers with IT industry leaders to create global standards and tools for the secure, privacy respecting and interoperable sharing of Genomic data.", "image_url": "https://summerofcode.withgoogle.com/media/org/global-alliance-for-genomics-and-health/0bnlmihuhff098xd-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/global-alliance-for-genomics-and-health.webp", "logo_r2_url": null, @@ -6012,11 +6203,12 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ], "first_year": 2016, - "last_year": 2024, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ "python", "java", @@ -6052,689 +6244,569 @@ "first_time": false }, { - "id": "692251d653dd9d7326d33dcb", - "slug": "gnutls", - "name": "GnuTLS", - "category": "Programming languages", - "description": "C library implementing TLS and DTLS", - "image_url": "https://summerofcode.withgoogle.com/media/org/gnutls/xl8zg8hb6elbg1j4.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnutls.webp", - "logo_r2_url": null, - "url": "https://gitlab.com/gnutls/gnutls", - "active_years": [ - 2023 - ], - "first_year": 2023, - "last_year": 2023, - "is_currently_active": false, - "technologies": [ - "c", - "Cryptography", - "TLS" - ], - "topics": [ - "security", - "cryptography", - "TLS", - "DTLS" - ], - "total_projects": 2, - "first_time": false - }, - { - "id": "692251d653dd9d7326d33dcc", - "slug": "godot-engine", - "name": "Godot Engine", - "category": "End user applications", - "description": "Multi-platform 2D and 3D game engine", - "image_url": "https://summerofcode.withgoogle.com/media/org/godot-engine/cggtfgpsfjd23pf0-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/godot-engine.webp", + "id": "692251d453dd9d7326d33db6", + "slug": "gnome-foundation", + "name": "GNOME Foundation", + "category": "Operating systems", + "description": "The GNOME Foundation is a non-profit organization that believes in a world where everyone is empowered by technology they can trust. We do this by building a diverse and sustainable free software personal computing ecosystem.", + "image_url": "https://summerofcode.withgoogle.com/media/org/gnome-foundation/aqwqx1x6ozjnxsak-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnome-foundation.webp", "logo_r2_url": null, - "url": "https://godotengine.org", + "url": "https://gnome.org", "active_years": [ + 2016, + 2017, 2018, 2019, 2020, 2021, - 2022 - ], - "first_year": 2018, - "last_year": 2022, - "is_currently_active": false, - "technologies": [ - "opengl", - "github", - "c++", - "cpp", - "crossplatform", - "gdscript", - "c", - "vulkan", - "c/c+", - "webassembly" - ], - "topics": [ - "virtual reality", - "rendering", - "game engine", - "gaming", - "game development", - "graphics", - "real time", - "cross-platform", - "game engines", - "programming" - ], - "total_projects": 27, - "first_time": false - }, - { - "id": "692251d653dd9d7326d33dcd", - "slug": "google-deepmind", - "name": "Google DeepMind", - "category": "Artificial Intelligence", - "description": "Google DeepMind's open-source projects", - "image_url": "https://summerofcode.withgoogle.com/media/org/google-deepmind-sq/cmdhldmexaj4kpms-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/google-deepmind.webp", - "logo_r2_url": null, - "url": "https://github.com/google-deepmind", - "active_years": [ - 2025 + 2022, + 2023, + 2024, + 2025, + 2026 ], - "first_year": 2025, - "last_year": 2025, + "first_year": 2016, + "last_year": 2026, "is_currently_active": true, "technologies": [ + "c", "python", "javascript", - "typescript", - "Jax", - "Gemma" - ], - "topics": [ - "python", - "Jax", - "AI,", - "Gemma" - ], - "total_projects": 45, - "first_time": true - }, - { - "id": "692251d653dd9d7326d33dce", - "slug": "google-fhir-sdk", - "name": "Google FHIR SDK", - "category": "Science and medicine", - "description": "This work is a partnership between Google, WHO, Ona and other health partners", - "image_url": "https://lh3.googleusercontent.com/wpJ-8b9DbHG_b8H-9PyvvDsnzFQ7_QJ1Z9YFHzFFI3VQSZp1RBRC_vbLEiS-h3KlpsuwBUnrxPi-w5p0knrGBZfMjTvj1XRgrxEUmUEG4dM", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/google-fhir-sdk.webp", - "logo_r2_url": null, - "url": "https://github.com/google/android-fhir", - "active_years": [ - 2021 - ], - "first_year": 2021, - "last_year": 2021, - "is_currently_active": false, - "technologies": [ - "android", - "kotlin", - "sqlite", - "fhir", - "materialui" + "gtk+", + "gobject", + "rust", + "gtk", + "vala", + "linux", + "Flatpak" ], - "topics": [ - "global health", - "ai", - "gis", - "precision health", - "enteprise analytics" + "topics": [ + "desktop applications", + "desktop environment", + "desktop", + "applications", + "operating system", + "end user applications", + "design", + "end user application", + "application", + "games", + "productivity", + "operating systems", + "graphics", + "open source", + "apps" ], - "total_projects": 5, + "total_projects": 115, "first_time": false }, { - "id": "692251d653dd9d7326d33dcf", - "slug": "graphql-foundation", - "name": "GraphQL Foundation", - "category": "Data", - "description": "GraphQL is a fast and efficient query language for APIs.", - "image_url": "https://lh3.googleusercontent.com/bz8lK4PHeuxEVW7wfn9vGjOsHJ5DMdOAVeafZ1yo0kro-tTYJgKPriLO6DtgybXnNQ6uUjaKBBVHZXH7rg6cvsrnJU4nnlw", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/graphql-foundation.webp", + "id": "692251d453dd9d7326d33db7", + "slug": "gnss-sdr", + "name": "GNSS-SDR", + "category": "Science and medicine", + "description": "An open source GNSS software-defined receiver", + "image_url": "https://summerofcode.withgoogle.com/media/org/gnss-sdr/vaciksjfho8cec2g-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnss-sdr.webp", "logo_r2_url": null, - "url": "https://graphql.org", + "url": "https://gnss-sdr.org/", "active_years": [ - 2020 + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2024, + 2025 ], - "first_year": 2020, - "last_year": 2020, + "first_year": 2016, + "last_year": 2025, "is_currently_active": false, "technologies": [ - "javascript", - "react", - "node.js", - "graphql" + "c", + "c++", + "c++11", + "c++14", + "gnss", + "c++17", + "sdr", + "c++ libraries c++11 c++14 c++17 c++20", + "c++20" ], "topics": [ - "api", - "data and databases", - "graphql" + "geolocation", + "navigation", + "software defined radio", + "communications", + "gnss", + "communications engineering", + "digital signal processing", + "signal processing", + "geospatial" ], - "total_projects": 2, + "total_projects": 28, "first_time": false }, { - "id": "692251d653dd9d7326d33dd0", - "slug": "graphite", - "name": "Graphite", - "category": "End user applications", - "description": "Editor, graphics engine, & compiler for art/design", - "image_url": "https://summerofcode.withgoogle.com/media/org/graphite-labs/p5x1ehnbihaxxqoq-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/graphite.webp", + "id": "692251d453dd9d7326d33db8", + "slug": "gnu-compiler-collection-gcc", + "name": "GNU Compiler Collection (GCC)", + "category": "Programming languages", + "description": "The GNU Compiler Collection (GCC) is an optimizing compiler produced by the GNU Project supporting various programming languages, hardware architectures and operating systems. It includes front-ends for C, C++, D, Objective-C, Fortran, Ada, and Go, as well as libraries for these languages (such as libgcc and libstdc++). Modula-2, Rust, Cobol, and Algol 68 front-ends are under development too. GCC includes a Static Analyzer, and supports OpenMP, OpenACC with code offloading to Nvidia and AMD GPUs.", + "image_url": "https://summerofcode.withgoogle.com/media/org/gnu-compiler-collection-gcc/kpspl59nyj0hoxlr-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnu-compiler-collection-gcc.webp", "logo_r2_url": null, - "url": "https://graphite.rs", + "url": "https://gcc.gnu.org/", "active_years": [ + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, 2024, - 2025 + 2025, + 2026 ], - "first_year": 2024, - "last_year": 2025, + "first_year": 2018, + "last_year": 2026, "is_currently_active": true, "technologies": [ - "machine learning", - "rust", - "vulkan", - "ai", - "webgpu" + "c", + "c++", + "openmp", + "gnu autotools", + "gnu make", + "c/c++" ], "topics": [ "compilers", - "programming languages", - "graphics", - "computational geometry", - "fonts" + "toolchain", + "openmp", + "developer tools", + "rust", + "link time optimization" ], - "total_projects": 8, + "total_projects": 34, "first_time": false }, { - "id": "692251d653dd9d7326d33dd1", - "slug": "green-navigation", - "name": "Green Navigation", - "category": "Other", - "description": "Energy efficient routing for electric vehicles", - "image_url": "https://lh3.googleusercontent.com/DcEeK4T4tzqj9U6hsm4k-Bsd9H5mrDPo7VOZ4zAXRVQN0I6LwXfkyMEMbADgjTcmW57pEk3rkVzHjDcWlJuMu6RBRS8fSp4", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/green-navigation.webp", + "id": "692251d453dd9d7326d33db9", + "slug": "gnu-image-manipulation-program", + "name": "GNU Image Manipulation Program", + "category": "End user applications", + "description": "GIMP is a cross-platform image editor available for GNU/Linux, macOS, Windows and more operating systems. It is free software, you can change its source code and distribute your changes.\n\nWhether you are a graphic designer, photographer, illustrator, or scientist, GIMP provides you with sophisticated tools to get your job done. You can further enhance your productivity with GIMP thanks to many customization options and 3rd party plugins.", + "image_url": "https://summerofcode.withgoogle.com/media/org/gnu-image-manipulation-program/n73ytwpnna15tra2-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnu-image-manipulation-program.webp", "logo_r2_url": null, - "url": "http://greennav.io", + "url": "https://www.gimp.org/", "active_years": [ - 2016, - 2017 + 2022, + 2023, + 2024, + 2025, + 2026 ], - "first_year": 2016, - "last_year": 2017, - "is_currently_active": false, + "first_year": 2022, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "postgresql", - "javascript", - "go", - "polymer", - "electromobility", - "java", - "react", - "tensorflow", - "apache spark" + "c", + "GEGL" ], "topics": [ - "database", - "web applications", - "routing", - "mobile", - "algorithm prototyping/visualization", - "web", - "machine learning", - "eletric mobility" + "graphics", + "design", + "photography", + "illustration" ], - "total_projects": 8, + "total_projects": 10, "first_time": false }, { - "id": "692251d653dd9d7326d33dd2", - "slug": "haiku", - "name": "Haiku", - "category": "Operating systems", - "description": "Operating system that targets personal computing.", - "image_url": "https://summerofcode.withgoogle.com/media/org/haiku/lnrgd3agfl2kogbo-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/haiku.webp", + "id": "new_2026_gnu-mailman", + "slug": "gnu-mailman", + "name": "GNU Mailman", + "category": "Social and communication", + "description": "The Mailman project develops the GNU Mailman mailing list manager. Our goals are RFC conformance and powerful convenient tools for subscribers, moderators, list owners, domain administrators, and site adminstrators of mailing lists.", + "image_url": "https://summerofcode.withgoogle.com/media/org/gnu-mailman/cg5sxkouo8rjtjw2-360.png", + "img_r2_url": "https://summerofcode.withgoogle.com/media/org/gnu-mailman/cg5sxkouo8rjtjw2-360.png", "logo_r2_url": null, - "url": "https://www.haiku-os.org", + "url": "https://www.list.org", "active_years": [ - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024 + 2026 ], - "first_year": 2017, - "last_year": 2024, - "is_currently_active": false, + "first_year": 2026, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "c++", - "posix", - "ffmpeg", - "bsd unix", - "webkit", - "arm", - "x86", - "unix", - "virtualization" + "python", + "django", + "rest", + "sqlalchemy", + "zope" ], "topics": [ - "frameworks", - "kernel", - "operating system", - "desktop integration", - "user interface", - "desktop", - "graphics", - "network", - "media", - "drivers", - "filesystems", - "virtualization", - "filesystem", - "web", - "gui" + "email", + "archives", + "list management" ], - "total_projects": 26, - "first_time": false + "total_projects": 0, + "first_time": true }, { - "id": "692251d653dd9d7326d33dd3", - "slug": "halide", - "name": "Halide", - "category": "Programming languages", - "description": "A language for fast, portable computation on images and tensors", - "image_url": "https://lh3.googleusercontent.com/d_WqjV9BKPD1voyOi9cHsmvcso0g7ZrM64byWVK6aMdgg70uYwoknk0xbSkZodrPfyYEsTduI5-6jcBLiJeMxC5t2r8A4wKsa_MIeXGOqAkF", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/halide.webp", + "id": "692251d453dd9d7326d33dba", + "slug": "gnu-mailman-project", + "name": "GNU Mailman Project", + "category": "Social and communication", + "description": "GNU Mailman is a mailing list manager popular in open source projects.", + "image_url": "https://lh3.googleusercontent.com/8gOOwiVhQkzFSsRJb_BSDvA2qAkWZg2hQmakhdflDM130XndULaRDHLDkO08mP9djMmO-zFRAzxy09lrNdP4bwbCYG7IjVm5ovN5SB52etU", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnu-mailman-project.webp", "logo_r2_url": null, - "url": "https://halide-lang.org", + "url": "https://wiki.list.org/DEV/", "active_years": [ + 2016, + 2019, 2021 ], - "first_year": 2021, + "first_year": 2016, "last_year": 2021, "is_currently_active": false, "technologies": [ - "llvm", - "c++" - ], - "topics": [ - "compilers", - "computer vision", - "graphics", - "high-performance computing" + "python", + "django", + "email", + "python 3", + "rest", + "restful api", + "sqlalchemy" ], - "total_projects": 2, + "topics": [ + "communication", + "mailing lists", + "email", + "web", + "mail" + ], + "total_projects": 4, "first_time": false }, { - "id": "692251d653dd9d7326d33dd4", - "slug": "haskellorg", - "name": "Haskell.org", - "category": "Programming languages", - "description": "Purely functional programming language", - "image_url": "https://summerofcode.withgoogle.com/media/org/haskellorg/ivy7hfguqhoz8onp-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/haskellorg.webp", + "id": "692251d453dd9d7326d33dbb", + "slug": "gnu-octave", + "name": "GNU Octave", + "category": "Science and medicine", + "description": "GNU Octave is a high-level interpreted language, primarily intended for numerical computations. It provides capabilities for the numerical solution of linear and nonlinear problems and for performing other numerical experiments. It also provides extensive graphics capabilities for data visualization and manipulation. Octave is normally used through its interactive command line interface, but it can also be used to write non-interactive programs. The Octave language is quite similar to Matlab so that most programs are easily portable.\n\nOctave is continually being upgraded. Student projects may also involve developing or upgrading Octave Forge packages, which can be loaded to provide additional specialized functions that supplement those provided in Core Octave.", + "image_url": "https://summerofcode.withgoogle.com/media/org/gnu-octave/0kc85jo6rl3eo2g0-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnu-octave.webp", "logo_r2_url": null, - "url": "https://haskell.org/", + "url": "https://www.octave.org", "active_years": [ + 2016, + 2017, 2018, 2019, 2020, 2021, 2022, + 2023, 2024, - 2025 + 2025, + 2026 ], - "first_year": 2018, - "last_year": 2025, + "first_year": 2016, + "last_year": 2026, "is_currently_active": true, "technologies": [ - "haskell", - "ghc", - "cabal", - "codeworld", - "servant", - "compiler" - ], - "topics": [ - "programming languages", - "functional-programming", - "education", - "compilers", - "haskell", - "functional programming", - "build tools", - "#compilers", - "#programming-tools", - "#functional-programming", - "#programming-languages", - "#education", - "programming tools" - ], - "total_projects": 70, - "first_time": false - }, - { - "id": "692251d653dd9d7326d33dd5", - "slug": "hazelcast", - "name": "Hazelcast", - "category": "Data", - "description": "In-Memory Computing Platform", - "image_url": "https://lh3.googleusercontent.com/r7ugemZ2fI22B5_6ngzQdhgYlXyv3B8xcTHwE9vTcnxWoIAvOei-dxIoS6R6ksClFX0O1jHknEbyEK89hpVFAhbT6mddZ-0", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/hazelcast.webp", - "logo_r2_url": null, - "url": "https://www.hazelcast.org/", - "active_years": [ - 2020 - ], - "first_year": 2020, - "last_year": 2020, - "is_currently_active": false, - "technologies": [ - "java", - "distributed systems" + "c++", + "hg" ], "topics": [ - "in memory data grid", - "data streaming", - "stream processing" + "mathematics", + "numerical computation", + "data processing", + "matlab", + "numerical and data analysis software", + "scientific computing", + "numerical methods" ], - "total_projects": 2, + "total_projects": 23, "first_time": false }, { - "id": "692251d653dd9d7326d33dd6", - "slug": "health-information-systems-programme", - "name": "Health Information Systems Programme", - "category": "Web", - "description": "Health information system which is being used by 47 countries across world.", - "image_url": "https://lh3.googleusercontent.com/oRe9kPz3kcPnjQlpTvT92A3v3oUoT5_Z_oN_4SYqOmIGPekKT168KZqu2XupxcLScPEiNBIiAmxL4ko-3tYFu6uWuV0A8k0Y", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/health-information-systems-programme.webp", + "id": "692251d453dd9d7326d33dbc", + "slug": "gnu-project", + "name": "GNU Project", + "category": "Operating systems", + "description": "GNU is an operating system consisting entirely of free software, meaning it respects users’ freedom. The GNU operating system consists of GNU packages, which are programs released by the GNU Project, as well as free software released by third parties. The development of GNU made it possible to use a computer without relying on software that restricts or undermines user freedom. The GNU Project is the collective organization of maintainers and developers, webmasters, translators, and other contributors who develop and maintain more than 400 programs that together form the GNU operating system.", + "image_url": "https://summerofcode.withgoogle.com/media/org/gnu-project-av/aht1h1aunalkojoq-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnu-project.webp", "logo_r2_url": null, - "url": "https://www.dhis2.org/", + "url": "https://www.gnu.org", "active_years": [ - 2016 + 2016, + 2017, + 2018, + 2019, + 2020, + 2023, + 2024, + 2026 ], "first_year": 2016, - "last_year": 2016, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ + "c", + "python", + "posix", + "lisp", + "eiffel", + "guile", + "operating systems", "javascript", "android", - "java", - "gradle", - "reactjs" + "c++", + "scheme", + "gcc", + "autotools", + "GNU" ], "topics": [ - "gis", - "mobile", - "data processing", - "e-health", - "global health and development" + "operating systems", + "free software", + "operating system", + "gnu", + "package managers", + "astronomy", + "reverse engineering", + "http", + "tools", + "toolchain", + "command line", + "OS", + "binary tools", + "compilers" ], - "total_projects": 6, + "total_projects": 59, "first_time": false }, { - "id": "692251d653dd9d7326d33dd7", - "slug": "homebrew", - "name": "Homebrew", - "category": "Programming languages", - "description": "The Missing Package Manager for macOS (or Linux)", - "image_url": "https://summerofcode.withgoogle.com/media/org/homebrew/9enfivj2ibae26ot-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/homebrew.webp", + "id": "692251d553dd9d7326d33dbd", + "slug": "gnu-radio", + "name": "GNU Radio", + "category": "Science and medicine", + "description": "GNU Radio is a free & open-source software development toolkit that provides signal processing blocks to implement software radios. It can be used with readily-available low-cost external RF hardware to create software-defined radios, or without hardware in a simulation-like environment. It is widely used in research, industry, academia, government, and hobbyist environments to support both wireless communications research and real-world radio systems.\n\nIn brief, a software radio is a radio system which performs the required signal processing in software instead of using dedicated integrated circuits in hardware. The benefit is that since software can be easily replaced in the radio system, the same hardware can be used to create many kinds of radios for many different communications standards; thus, one software radio can be used for a variety of applications!\n\nYou can use GNU Radio to write applications to receive and transmit data with radio hardware, or to create entirely simulation-based applications. GNU Radio has filters, channel codes, synchronization elements, equalizers, demodulators, vocoders, decoders, and many other types of blocks which are typically found in signal processing systems. More importantly, it includes a method of connecting these blocks and then manages how data is passed from one block to another. Extending GNU Radio is also quite easy; if you find a specific block that is missing, you can quickly create and add it.\n\nGNU Radio applications can be written in either C++ or Python, while the performance-critical signal processing path is implemented in C++ using processor floating-point extensions where available. This enables the developer to implement real-time, high-throughput radio systems in a simple-to-use, rapid-application-development environment.", + "image_url": "https://summerofcode.withgoogle.com/media/org/gnu-radio/v1g5y6exzlwgfulv-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnu-radio.webp", "logo_r2_url": null, - "url": "https://brew.sh", + "url": "https://www.gnuradio.org", "active_years": [ 2016, 2017, 2018, + 2019, 2020, - 2022 + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ], "first_year": 2016, - "last_year": 2022, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "ruby", - "git", - "osx", - "github", - "bash", - "macos", - "rspec", - "linux" + "python", + "c++", + "dsp", + "software radio", + "rf", + "software defined radio", + "qt", + "simd", + "android" ], "topics": [ - "package system", - "homebrew", - "development tools", - "package management", - "distribution", - "package managers", - "macos", - "terminal applications", - "github", - "linux", - "package manager" + "signal processing", + "software defined radio", + "cognitive radio", + "spectrum analysis", + "information theory", + "gui", + "wireless communication", + "radar", + "real-time", + "dsp", + "communications engineering", + "cybersecurity", + "digital signal processing", + "software radio", + "wireless communications", + "communication", + "Software-Defined Radio" ], - "total_projects": 11, + "total_projects": 18, "first_time": false }, { - "id": "692251d753dd9d7326d33dd8", - "slug": "humanai", - "name": "HumanAI", - "category": "Media", - "description": "AI for the Arts and the Humanities", - "image_url": "https://summerofcode.withgoogle.com/media/org/humanai/n5oaqivpu4hu4alm-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/humanai.webp", + "id": "692251d653dd9d7326d33dcb", + "slug": "gnutls", + "name": "GnuTLS", + "category": "Programming languages", + "description": "C library implementing TLS and DTLS", + "image_url": "https://summerofcode.withgoogle.com/media/org/gnutls/xl8zg8hb6elbg1j4.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnutls.webp", "logo_r2_url": null, - "url": "http://humanai.foundation", + "url": "https://gitlab.com/gnutls/gnutls", "active_years": [ - 2024, - 2025 + 2023 ], - "first_year": 2024, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2023, + "last_year": 2023, + "is_currently_active": false, "technologies": [ - "python", - "machine learning", - "c++", - "data analysis", - "artificial intelligence" + "c", + "Cryptography", + "TLS" ], "topics": [ - "machine learning", - "artificial intelligence", - "ai", - "Arts", - "Humanities" + "security", + "cryptography", + "TLS", + "DTLS" ], - "total_projects": 26, + "total_projects": 2, "first_time": false }, { - "id": "692251d753dd9d7326d33dd9", - "slug": "hydra-ecosystem", - "name": "Hydra Ecosystem", - "category": "Web", - "description": "Automate REST APIs. Build next generation API clients.", - "image_url": "https://lh3.googleusercontent.com/MqXE4XsYgTwqizedqCRdtcKRH87GYtNAPkfbw0Q5ATFYDB9S3szHr4A4QmSxZHp7KfPm6AKx6hCRsXsBUU6yGqpuhK6l3_lVTWGKcTczBXLS", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/hydra-ecosystem.webp", + "id": "692251d653dd9d7326d33dcc", + "slug": "godot-engine", + "name": "Godot Engine", + "category": "End user applications", + "description": "Multi-platform 2D and 3D game engine", + "image_url": "https://summerofcode.withgoogle.com/media/org/godot-engine/cggtfgpsfjd23pf0-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/godot-engine.webp", "logo_r2_url": null, - "url": "https://www.hydraecosystem.org/", + "url": "https://godotengine.org", "active_years": [ 2018, 2019, 2020, - 2021 + 2021, + 2022 ], "first_year": 2018, - "last_year": 2021, + "last_year": 2022, "is_currently_active": false, "technologies": [ - "python", - "flask", - "rdf", - "hydra", - "json/json-ld", - "javascript", - "redis", - "sql", - "rest", - "apis", - "postgresql", - "docker" + "opengl", + "github", + "c++", + "cpp", + "crossplatform", + "gdscript", + "c", + "vulkan", + "c/c+", + "webassembly" ], "topics": [ - "database", - "apis", - "semantic web", - "functional-programming", - "knowledge graph", - "web", - "api", - "hydra", - "docker", - "web development", - "http", - "rest apis", - "web services", - "linked data", - "knowledge graphs" + "virtual reality", + "rendering", + "game engine", + "gaming", + "game development", + "graphics", + "real time", + "cross-platform", + "game engines", + "programming" ], - "total_projects": 8, + "total_projects": 27, "first_time": false }, { - "id": "692251d753dd9d7326d33dda", - "slug": "incf", - "name": "INCF", - "category": "Science and medicine", - "description": "An open & FAIR neuroscience standards organization", - "image_url": "https://summerofcode.withgoogle.com/media/org/incf/gnryoa8kunjogh9a-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/incf.webp", + "id": "692251d653dd9d7326d33dcd", + "slug": "google-deepmind", + "name": "Google DeepMind", + "category": "Artificial Intelligence", + "description": "Google DeepMind's open-source projects", + "image_url": "https://summerofcode.withgoogle.com/media/org/google-deepmind-sq/cmdhldmexaj4kpms-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/google-deepmind.webp", "logo_r2_url": null, - "url": "https://www.incf.org", + "url": "https://github.com/google-deepmind", "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, 2025 ], - "first_year": 2016, + "first_year": 2025, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "python", "javascript", - "java", - "c++", - "gpu", - "xml", - "c", - "cuda", - "jupyter", - "tensorflow" + "typescript", + "Jax", + "Gemma" ], "topics": [ - "visualization", - "big data", - "data science", - "simulation", - "neuroscience", - "science", - "bio/neuro image processing", - "brain modeling", - "brain simulation", - "brain imaging", - "brain modelling", - "data visualization", - "neuroimage processing", - "neuroimaging", - "machine learning" + "python", + "Jax", + "AI,", + "Gemma" ], - "total_projects": 211, + "total_projects": 45, "first_time": false }, { - "id": "692251d753dd9d7326d33ddb", - "slug": "ioos", - "name": "IOOS", + "id": "692251d653dd9d7326d33dce", + "slug": "google-fhir-sdk", + "name": "Google FHIR SDK", "category": "Science and medicine", - "description": "Our eyes on the ocean, coasts, and Great Lakes", - "image_url": "https://summerofcode.withgoogle.com/media/org/ioos/oe7caipkhwnizoyr-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ioos.webp", + "description": "This work is a partnership between Google, WHO, Ona and other health partners", + "image_url": "https://lh3.googleusercontent.com/wpJ-8b9DbHG_b8H-9PyvvDsnzFQ7_QJ1Z9YFHzFFI3VQSZp1RBRC_vbLEiS-h3KlpsuwBUnrxPi-w5p0knrGBZfMjTvj1XRgrxEUmUEG4dM", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/google-fhir-sdk.webp", "logo_r2_url": null, - "url": "https://ioos.noaa.gov/", + "url": "https://github.com/google/android-fhir", "active_years": [ - 2021, - 2022, - 2024, - 2025 + 2021 ], "first_year": 2021, - "last_year": 2025, - "is_currently_active": true, + "last_year": 2021, + "is_currently_active": false, "technologies": [ - "python", - "big data science", - "ocean technology", - "ocean science", - "java", - "r", - "Zarr", - "NetCDF" + "android", + "kotlin", + "sqlite", + "fhir", + "materialui" ], "topics": [ - "open data", - "data science", - "earth sciences", - "data discovery", - "open science", - "data management", - "Oceanography", - "Marine Biodiversity" + "global health", + "ai", + "gis", + "precision health", + "enteprise analytics" ], - "total_projects": 22, + "total_projects": 5, "first_time": false }, { - "id": "692251d753dd9d7326d33ddc", - "slug": "inclusive-design-institute", - "name": "Inclusive Design Institute", - "category": "End user applications", - "description": "The IDI addresses the challenge of designing ICT to work for all potential users", - "image_url": "https://lh3.googleusercontent.com/XTprn0SsGg4WcXZU0UXeJZ_qSqBCnQ0rZ-TayCndjJoRMVdpddcOTsTeR3SDr0od8Qxo4xzCmqCe4qA-h1HAi_3deWfhzRiN", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/inclusive-design-institute.webp", + "id": "692251d553dd9d7326d33dbe", + "slug": "gpac", + "name": "GPAC", + "category": "Media", + "description": "C multimedia framework", + "image_url": "https://lh3.googleusercontent.com/d3oNDfuyytm6SKBXs4Hg1T9_c1-9H5gyMKsvJYT9Uk4KczL3IQvT7eomOu-XMqyNZeGfyqTic6tAsHT_yQCaoo3-p2V3dWWH", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gpac.webp", "logo_r2_url": null, - "url": "https://inclusivedesign.ca", + "url": "http://gpac.io", "active_years": [ 2016, - 2018, 2020 ], "first_year": 2016, @@ -6742,325 +6814,324 @@ "is_currently_active": false, "technologies": [ "javascript", - "html5", - "node.js", - "css", - "jquery", - "html", - "php" + "c++", + "mp4", + "dash", + "mp4box", + "c", + "opengl" ], "topics": [ - "web", - "web applications", - "accessibility", - "inclusivity", - "web development", - "inclusion" + "research", + "streaming", + "multimedia", + "industry", + "playback", + "rendering", + "packaging", + "interactivity" + ], + "total_projects": 1, + "first_time": false + }, + { + "id": "692251ee53dd9d7326d33f13", + "slug": "gprmax", + "name": "gprMax", + "category": "Science and medicine", + "description": "gprMax is open source software that simulates electromagnetic wave propagation. It uses Yee's algorithm to solve Maxwell’s equations in 3D using the Finite-Difference Time-Domain (FDTD) method.\n\nIt is designed for simulating Ground Penetrating Radar (GPR) and is used to model electromagnetic wave propagation in fields such as engineering, geophysics, archaeology, and medicine. There are a wide range of applications from assessing infrastructure such as bridges and roads, locating buried utilities, mapping glaciers, finding anti-personnel landmines, to detecting tumours in the human body, and exploring the sub-surface of Mars and the Moon.\n\ngprMax is command-line-driven software written in Python with performance-critical parts written in Cython. It does not currently feature a graphical user interface (GUI) which allows it to be very flexible and scriptable software that can run in high-performance computing (HPC) environments, i.e. on supercomputers.\n\ngprMax can be run on either CPU or GPU. The CPU solver has been parallelised using OpenMP which enables it to run on multi-core CPUs. The GPU solver has been developed using the NVIDIA CUDA programming model. gprMax also features a Messaging Passing Interface (MPI) task farm, which can operate with CPU nodes or multiple GPUs.", + "image_url": "https://summerofcode.withgoogle.com/media/org/gprmax/vm8kavyxz3csja8f-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gprmax.webp", + "logo_r2_url": null, + "url": "https://www.gprmax.com", + "active_years": [ + 2019, + 2021, + 2023, + 2024, + 2025, + 2026 + ], + "first_year": 2019, + "last_year": 2026, + "is_currently_active": true, + "technologies": [ + "python", + "cython", + "cuda", + "openmp", + "mpi", + "opencl" ], - "total_projects": 11, + "topics": [ + "science", + "engineering", + "geophysics", + "electromagnetics", + "ground penetrating radar", + "optimisation" + ], + "total_projects": 18, "first_time": false }, { - "id": "692251d753dd9d7326d33ddd", - "slug": "indic-project", - "name": "Indic Project", - "category": "End user applications", - "description": "Improving Information Infrastructure and Access to Knowledge in Indian languages", - "image_url": "https://lh3.googleusercontent.com/41lr-V9spcB3VXUJbJ1u5varaaApPQSsEPNYBJHM0RcnSJKMbWrrGNUxdQFMD43_2IKLFQAYn2SzJmgz3vzUv_KSlWE3TiFi", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/indic-project.webp", + "id": "692251d553dd9d7326d33dbf", + "slug": "grame", + "name": "GRAME", + "category": "Programming languages", + "description": "Faust (Functional Audio Stream) is a functional programming language for sound synthesis and audio processing with a strong focus on the design of synthesizers, musical instruments, audio effects, etc. Faust targets high-performance signal processing applications and audio plug-ins for a variety of platforms and standards.", + "image_url": "https://summerofcode.withgoogle.com/media/org/grame/joff5sziiuapvits-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/grame.webp", "logo_r2_url": null, - "url": "http://indicproject.org", + "url": "https://faust.grame.fr", "active_years": [ - 2016 + 2022, + 2023, + 2024, + 2025, + 2026 ], - "first_year": 2016, - "last_year": 2016, - "is_currently_active": false, + "first_year": 2022, + "last_year": 2026, + "is_currently_active": true, "technologies": [ + "c", "python", "javascript", - "android", - "ruby on rails", - "c++" + "c++", + "typescript", + "rust" ], "topics": [ - "natural language processing", - "language techology", - "input methods" + "audio", + "compiler", + "digital signal processing", + "function programming language" ], - "total_projects": 7, + "total_projects": 10, "first_time": false }, { - "id": "692251d753dd9d7326d33dde", - "slug": "inkscape", - "name": "Inkscape", + "id": "692251d653dd9d7326d33dd0", + "slug": "graphite", + "name": "Graphite", "category": "End user applications", - "description": "Draw freely!", - "image_url": "https://summerofcode.withgoogle.com/media/org/inkscape/qiomrjtmocpmomjf-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/inkscape.webp", + "description": "Graphite is an in-development raster and vector graphics editing suite that's free and open source. It is powered by a node graph compositing engine that fuses layers with nodes, bringing a generative, procedural approach to the workflows of artists, designers, and animators ranging from students and hobbyists to creative professionals and studios.\n\nThe node-based compositing engine is built similar to a game engine. It is both a real time render pipeline and a visual programming language, complete with a custom compiler letting artists export dynamic content to other applications.\n\nOver time, Graphite intends to evolve into the \"everything app\" across every major 2D creative discipline— a versatile creation suite for graphic design, photo manipulation, digital painting, motion graphics, desktop publishing, and generative art (both procedural and AI-powered).\n\nThe five-year-old project is being rapidly developed by a global team of volunteers, composed mostly of students, who are passionate about crafting high-quality code that will transform and democratize the broader 2D creative industry.\n\nThe mission of Graphite strives to unshackle the creativity of every budding artist and seasoned professional by building the best comprehensive art and design tool that's accessible to all. Mission success will come when Graphite is an industry standard. A cohesive product vision and focus on innovation over imitation is the strategy that will make that possible.", + "image_url": "https://summerofcode.withgoogle.com/media/org/graphite-labs/p5x1ehnbihaxxqoq-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/graphite.webp", "logo_r2_url": null, - "url": "https://inkscape.org", + "url": "https://graphite.art", "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, 2024, - 2025 + 2025, + 2026 ], - "first_year": 2016, - "last_year": 2025, + "first_year": 2024, + "last_year": 2026, "is_currently_active": true, "technologies": [ - "python", - "c++", - "css", - "svg", - "gtk+", - "c++11", - "gtk", - "c", - "python 3" + "machine learning", + "rust", + "vulkan", + "ai", + "webgpu" ], "topics": [ - "web", + "compilers", + "programming languages", "graphics", - "geometry", - "standards", - "vector graphics", - "design" + "computational geometry", + "fonts" ], - "total_projects": 27, + "total_projects": 8, "first_time": false }, { - "id": "692251d753dd9d7326d33ddf", - "slug": "inria-foundation", - "name": "Inria Foundation", - "category": "Science and medicine", - "description": "SOFA is an efficient simulation engine for research in medical simulation.", - "image_url": "https://lh3.googleusercontent.com/WNKjpoMWeQuBHnHS8Yi3sORVKFSRGg4OlTtL7cUX4lXsFJkACbH82ZF0L9jHVvkFYG3n3JXk3mvPtbhEuJIEo8JpDgeUaSoX", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/inria-foundation.webp", + "id": "692251d653dd9d7326d33dcf", + "slug": "graphql-foundation", + "name": "GraphQL Foundation", + "category": "Data", + "description": "GraphQL is a fast and efficient query language for APIs.", + "image_url": "https://lh3.googleusercontent.com/bz8lK4PHeuxEVW7wfn9vGjOsHJ5DMdOAVeafZ1yo0kro-tTYJgKPriLO6DtgybXnNQ6uUjaKBBVHZXH7rg6cvsrnJU4nnlw", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/graphql-foundation.webp", "logo_r2_url": null, - "url": "https://www.sofa-framework.org/", + "url": "https://graphql.org", "active_years": [ - 2018 + 2020 ], - "first_year": 2018, - "last_year": 2018, + "first_year": 2020, + "last_year": 2020, "is_currently_active": false, "technologies": [ - "c", - "c++", - "qt", - "asm", - "webassembly", - "communication protocol" + "javascript", + "react", + "node.js", + "graphql" ], "topics": [ - "real-time", - "scientific computing", - "physics", - "medical simulation", - "medical research" + "api", + "data and databases", + "graphql" ], "total_projects": 2, "first_time": false }, { - "id": "692251d753dd9d7326d33de0", - "slug": "institut-für-angewandte-informatik-infai-ev", - "name": "Institut für Angewandte Informatik (InfAI) e.V.", - "category": "Media", - "description": "Putting scientific research into practice.", - "image_url": "https://lh3.googleusercontent.com/Y79uFbhGMoSQzQEEqzsDDaVpr-W86qL1Lyu4icc0eFr7FrZ79ccIe8KPeVA3Jr70_E6lfzOABKAJ-44IMeHhswgIesoFRmM_", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/institut-für-angewandte-informatik-infai-ev.webp", + "id": "692251d653dd9d7326d33dd1", + "slug": "green-navigation", + "name": "Green Navigation", + "category": "Other", + "description": "Energy efficient routing for electric vehicles", + "image_url": "https://lh3.googleusercontent.com/DcEeK4T4tzqj9U6hsm4k-Bsd9H5mrDPo7VOZ4zAXRVQN0I6LwXfkyMEMbADgjTcmW57pEk3rkVzHjDcWlJuMu6RBRS8fSp4", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/green-navigation.webp", "logo_r2_url": null, - "url": "https://infai.org", + "url": "http://greennav.io", "active_years": [ - 2019 + 2016, + 2017 ], - "first_year": 2019, - "last_year": 2019, + "first_year": 2016, + "last_year": 2017, "is_currently_active": false, "technologies": [ + "postgresql", "javascript", + "go", + "polymer", + "electromobility", "java", - "a-frame", - "neo4j", - "htc vive" + "react", + "tensorflow", + "apache spark" ], "topics": [ - "virtual reality", - "software quality", - "visualization", - "software analytics", - "web" + "database", + "web applications", + "routing", + "mobile", + "algorithm prototyping/visualization", + "web", + "machine learning", + "eletric mobility" ], - "total_projects": 1, + "total_projects": 8, "first_time": false }, { - "id": "692251d753dd9d7326d33de1", - "slug": "institute-for-artificial-intelligence", - "name": "Institute for Artificial Intelligence", - "category": "Science and medicine", - "description": "Research in Artificial Intelligence for Autonomous Mobile Robots", - "image_url": "https://lh3.googleusercontent.com/N4GIct5zS7Z4dZ0WlHZpvFBoJNHYR3OBNcrMKz7uHTXAAbfLheqdFjqUSZJqCLnoJU5JRpbw3tpIkk85BwNI-phsNJKezF4", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/institute-for-artificial-intelligence.webp", + "id": "692251ee53dd9d7326d33f11", + "slug": "grpc", + "name": "gRPC", + "category": "Infrastructure and cloud", + "description": "A high performance, open-source universal RPC framework", + "image_url": "https://lh3.googleusercontent.com/PodIa074YoVZQnSBOUczwt9ubSMoI6wuHOHILt4batJpSJzp1K9rq3y6xleifWLBgcI9SmtkBEZsA7_Ag6vckvQG672e2Q", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/grpc.webp", "logo_r2_url": null, - "url": "http://ai.uni-bremen.de/", + "url": "https://grpc.io", "active_years": [ - 2017, + 2016, 2018 ], - "first_year": 2017, + "first_year": 2016, "last_year": 2018, "is_currently_active": false, "technologies": [ - "python", - "ros", - "c++", - "lisp", - "prolog", - "unreal engine" + "distributed systems", + "networking", + "micro-services", + "scalability", + "http/2", + "cloud", + "microservices", + "grpc" ], "topics": [ - "machine learning", - "artificial intelligence", - "robotics", - "knowledge representation", - "robot perception", - "simulation", - "perception", - "unreal engine" + "cloud", + "micro services", + "full stack web and mobile", + "distributed systems", + "apis", + "middleware", + "communications", + "microservices", + "infrastructure", + "distributed networks" ], - "total_projects": 11, + "total_projects": 3, "first_time": false }, { - "id": "692251d753dd9d7326d33de2", - "slug": "intel-video-and-audio-for-linux", - "name": "Intel Video and Audio for Linux", - "category": "Media", - "description": "We enable Linux Audio and Video for Intel", - "image_url": "https://summerofcode.withgoogle.com/media/org/intel-video-and-audio-for-linux/u8hffydro4hyexxd-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/intel-video-and-audio-for-linux.webp", + "id": "692251d553dd9d7326d33dc0", + "slug": "grr-rapid-response", + "name": "GRR Rapid Response", + "category": "Security", + "description": "GRR Rapid Response is an incident response framework for remote live forensics.", + "image_url": "https://lh3.googleusercontent.com/9oAVm1kVBef_gKU4Cc0dJkkOZAnIEUdnP5oGij12Up5NBoA--ZrEOiqBt7QevgibIUqxFgK_OFehxfSqInwoHTWniY_s3GwPlFgoAPgqZwP_1w", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/grr-rapid-response.webp", "logo_r2_url": null, - "url": "https://01.org/linuxmedia", + "url": "https://github.com/google/grr", "active_years": [ - 2017, - 2018, - 2019, - 2020, - 2021, - 2022 + 2021 ], - "first_year": 2017, - "last_year": 2022, + "first_year": 2021, + "last_year": 2021, "is_currently_active": false, "technologies": [ - "video", - "decode", - "encode", - "vpp", - "multimedia", - "c", - "hardware acceleration", - "codecs", - "va-api", - "audio", - "gstreamer", - "ffmpeg", - "sound open firmware", - "libxcam", - "vaapi", - "c++", - "opengl", - "Codec", - "Media", - "Imaging" + "python 3", + "angular", + "typescript", + "materialui", + "backend" ], "topics": [ - "camera", - "video", - "accelerated media", - "compress", - "encoding", - "video encode", - "video decode", - "hardware accelerated media processing", - "video post processing", - "video apis", - "video processing", - "audio firmware", - "video framework", - "video decoding/encoding", - "360 stereo video", - "opensource audio firmware", - "ffmpeg neuronetwork", - "graphics / video / audio / virtual reality", - "media", - "imaging", - "Codec" + "computer security", + "digital forensics" ], - "total_projects": 12, + "total_projects": 0, "first_time": false }, { - "id": "692251d753dd9d7326d33de3", - "slug": "intermine", - "name": "InterMine", - "category": "Science and medicine", - "description": "Integrating biological data sources, making it easy to query and analyse data", - "image_url": "https://lh3.googleusercontent.com/nLqUlbCti7mF0bhmRLoB-4bZAICge6ScN_DbYRSz75qSIhEe0heDD-CSwZtKLjYBVYc_lphqiVku5vrZ5z4cXNejC9KZjOE", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/intermine.webp", + "id": "692251ee53dd9d7326d33f12", + "slug": "gvisor", + "name": "gVisor", + "category": "Operating systems", + "description": "An application kernel for containers that provides efficient defense-in-depth", + "image_url": "https://lh3.googleusercontent.com/67i_33JFM4ih5X_j_67THr9VDba9TlPP7HYDEI5Z9pOzhMot95CBMb9ygcqFryQe-urdXKPGbDqvgDGBUXz1mAaVHN7D555ffcCjekKGx5ny", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gvisor.webp", "logo_r2_url": null, - "url": "http://intermine.org/", + "url": "http://gvisor.dev", "active_years": [ - 2018, - 2019 + 2021 ], - "first_year": 2018, - "last_year": 2019, + "first_year": 2021, + "last_year": 2021, "is_currently_active": false, "technologies": [ - "python", - "postgresql", - "javascript", - "java", - "clojure", - "r" + "linux", + "c", + "c++", + "golang", + "posix" ], "topics": [ - "open science", - "genomics", - "bioinformatics", - "data science", - "biology", - "web", - "data visualisation" + "virtualization", + "sandbox", + "kernel", + "containers" ], - "total_projects": 12, + "total_projects": 1, "first_time": false }, { - "id": "692251d753dd9d7326d33de4", - "slug": "international-catrobat-association", - "name": "International Catrobat Association", - "category": "Programming languages", - "description": "Free visual coding apps for computational thinking", - "image_url": "https://summerofcode.withgoogle.com/media/org/international-catrobat-association/dfkxzmsqlkyvwi2o-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/international-catrobat-association.webp", + "id": "692251d653dd9d7326d33dd2", + "slug": "haiku", + "name": "Haiku", + "category": "Operating systems", + "description": "Haiku is a fast, efficient, easy to use and lean open source operating system inspired by the BeOS that specifically targets personal computing.\n\nHaiku is not a Linux distribution, nor does it use the Linux kernel. Haiku is the spiritual successor to BeOS and it is derived from the NewOS kernel, which was authored by Travis Geiselbrecht (geist), who was formerly employed by Be Inc. — the developers of BeOS.\n\nLinux-based distributions stack up software – the Linux kernel, the X Window System, and various DEs with disparate toolkits such as GTK+ and Qt – that do not necessarily share the same guidelines and/or goals. This lack of consistency and overall vision manifests itself in increased complexity, insufficient integration, and inefficient solutions, making the use of your computer more complicated than it should actually be.\n\nInstead, Haiku has a single focus on personal computing and is driven by a unified vision for the whole OS. That, we believe, enables Haiku to provide a leaner, cleaner and more efficient system capable of providing a better user experience that is simple and uniform throughout.", + "image_url": "https://summerofcode.withgoogle.com/media/org/haiku/lnrgd3agfl2kogbo-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/haiku.webp", "logo_r2_url": null, - "url": "https://www.catrobat.org", + "url": "https://www.haiku-os.org", "active_years": [ - 2016, 2017, 2018, 2019, @@ -7069,480 +7140,487 @@ 2022, 2023, 2024, - 2025 + 2026 ], - "first_year": 2016, - "last_year": 2025, + "first_year": 2017, + "last_year": 2026, "is_currently_active": true, "technologies": [ - "javascript", - "android", - "java", - "html5", - "web", - "ios", - "espresso", - "swift", - "symfony", - "php", - "kotlin", - "flutter" + "c++", + "posix", + "ffmpeg", + "bsd unix", + "webkit", + "arm", + "x86", + "unix", + "virtualization" ], "topics": [ - "education", - "robotics", - "programming tools", - "web applications", - "scratch", - "app development", - "programming language", + "frameworks", + "kernel", + "operating system", + "desktop integration", + "user interface", + "desktop", + "graphics", + "network", + "media", + "drivers", + "filesystems", + "virtualization", + "filesystem", "web", - "visual programming", - "gaming", - "creativity tools", - "mobile programming", - "game engines" + "gui" ], - "total_projects": 84, + "total_projects": 26, "first_time": false }, { - "id": "692251d753dd9d7326d33de5", - "slug": "internet-archive", - "name": "Internet Archive", - "category": "Science and medicine", - "description": "Universal Access to All Knowledge", - "image_url": "https://summerofcode.withgoogle.com/media/org/internet-archive/uzbgzbb9tvp81c2i.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/internet-archive.webp", + "id": "692251d653dd9d7326d33dd3", + "slug": "halide", + "name": "Halide", + "category": "Programming languages", + "description": "A language for fast, portable computation on images and tensors", + "image_url": "https://lh3.googleusercontent.com/d_WqjV9BKPD1voyOi9cHsmvcso0g7ZrM64byWVK6aMdgg70uYwoknk0xbSkZodrPfyYEsTduI5-6jcBLiJeMxC5t2r8A4wKsa_MIeXGOqAkF", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/halide.webp", "logo_r2_url": null, - "url": "http://archive.org", + "url": "https://halide-lang.org", "active_years": [ - 2017, - 2018, - 2019, - 2020, - 2021, - 2023, - 2024, - 2025 + 2021 ], - "first_year": 2017, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2021, + "last_year": 2021, + "is_currently_active": false, "technologies": [ - "python", - "javascript", - "pthon", - "node.js", - "php", - "elasticsearch", - "golang", - "hadoop", - "go" + "llvm", + "c++" ], "topics": [ - "web archiving", - "non-profit", - "web extensions", - "voice apps", - "library", - "archive", - "web archives", - "books", - "web archving", - "archiving", - "media" + "compilers", + "computer vision", + "graphics", + "high-performance computing" ], - "total_projects": 26, + "total_projects": 2, "first_time": false }, { - "id": "692251d853dd9d7326d33de6", - "slug": "internet-health-report", - "name": "Internet Health Report", - "category": "Science and medicine", - "description": "Monitoring the Internet", - "image_url": "https://summerofcode.withgoogle.com/media/org/internet-health-report/lifcnmh2qkq9cl5o-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/internet-health-report.webp", + "id": "692251d653dd9d7326d33dd4", + "slug": "haskellorg", + "name": "Haskell.org", + "category": "Programming languages", + "description": "Haskell is an advanced, general-purpose, purely functional programming language. It has a strong, static type system with Hindley-Milner type inference.\n\nThe language natively supports lazy evaluation, and lets you track side effects in the type system. This leads to a concise and declarative style of programming, which differs quite a bit from conventional languages. By controlling side effects and working with immutable data, the programmer can avoid whole classes of bugs.\n\nHaskell generally compiles to fast, native code, but it can also be compiled to other targets like JavaScript (through GHCJS) or LLVM.\n\nIn Google Summer of Code, we attempt to improve not only the language, but the whole ecosystem. This includes (aside from the language itself):\n\n- Compilers\n- Commonly used libraries\n- Commonly used applications written in Haskell\n- Profilers, debuggers and other tools\n- Package managers and infrastructure\n\nWe have compiled an ideas list together with long-time Haskell users, compiler contributors and researchers, and as such we believe these are important projects for the industry and academia both.", + "image_url": "https://summerofcode.withgoogle.com/media/org/haskellorg/ivy7hfguqhoz8onp-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/haskellorg.webp", "logo_r2_url": null, - "url": "https://ihr.iijlab.net", + "url": "https://haskell.org/", "active_years": [ + 2018, + 2019, + 2020, + 2021, 2022, - 2023, 2024, - 2025 + 2025, + 2026 ], - "first_year": 2022, - "last_year": 2025, + "first_year": 2018, + "last_year": 2026, "is_currently_active": true, "technologies": [ - "python", - "javascript", - "apache kafka", - "VueJS" + "haskell", + "ghc", + "cabal", + "codeworld", + "servant", + "compiler" ], "topics": [ - "networking", - "routing", - "communication", - "internet", - "data analytics" + "programming languages", + "functional-programming", + "education", + "compilers", + "haskell", + "functional programming", + "build tools", + "#compilers", + "#programming-tools", + "#functional-programming", + "#programming-languages", + "#education", + "programming tools" ], - "total_projects": 15, + "total_projects": 70, "first_time": false }, { - "id": "692251d853dd9d7326d33de7", - "slug": "internet-systems-consortium", - "name": "Internet Systems Consortium", - "category": "Other", - "description": "We support the infrastructure of the Internet with Open Source", - "image_url": "https://lh3.googleusercontent.com/t4JetnWDV6gtqVJnb3C32_US8_31ZDGKBkkFido8yFFSApN01eMe-SrIAF9ZDvU6bZ2Pc7mLlP7VeTRQWv7i3IqfB9Hm6nc", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/internet-systems-consortium.webp", + "id": "692251d653dd9d7326d33dd5", + "slug": "hazelcast", + "name": "Hazelcast", + "category": "Data", + "description": "In-Memory Computing Platform", + "image_url": "https://lh3.googleusercontent.com/r7ugemZ2fI22B5_6ngzQdhgYlXyv3B8xcTHwE9vTcnxWoIAvOei-dxIoS6R6ksClFX0O1jHknEbyEK89hpVFAhbT6mddZ-0", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/hazelcast.webp", "logo_r2_url": null, - "url": "https://isc.org", + "url": "https://www.hazelcast.org/", "active_years": [ - 2018, - 2019 + 2020 ], - "first_year": 2018, - "last_year": 2019, + "first_year": 2020, + "last_year": 2020, "is_currently_active": false, "technologies": [ - "mysql", - "c", - "c++", - "rest", - "dhcp", - "cassandra", - "python", - "javascript", - "c99" + "java", + "distributed systems" ], "topics": [ - "networking", - "infrastructure", - "ipv6", - "stateful", - "internet", - "dhcp", - "dns" + "in memory data grid", + "data streaming", + "stream processing" ], - "total_projects": 3, + "total_projects": 2, "first_time": false }, { - "id": "692251d853dd9d7326d33de8", - "slug": "invesalius", - "name": "Invesalius", - "category": "Science and medicine", - "description": "3D Medical visualization and neuronavigation tool", - "image_url": "https://summerofcode.withgoogle.com/media/org/invesalius/ktlk8dmldhfmlyb2-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/invesalius.webp", + "id": "692251d653dd9d7326d33dd6", + "slug": "health-information-systems-programme", + "name": "Health Information Systems Programme", + "category": "Web", + "description": "Health information system which is being used by 47 countries across world.", + "image_url": "https://lh3.googleusercontent.com/oRe9kPz3kcPnjQlpTvT92A3v3oUoT5_Z_oN_4SYqOmIGPekKT168KZqu2XupxcLScPEiNBIiAmxL4ko-3tYFu6uWuV0A8k0Y", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/health-information-systems-programme.webp", "logo_r2_url": null, - "url": "https://invesalius.github.io/", + "url": "https://www.dhis2.org/", "active_years": [ - 2023, - 2024, - 2025 + 2016 ], - "first_year": 2023, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2016, + "last_year": 2016, + "is_currently_active": false, "technologies": [ - "python", - "cython", - "numpy", - "dicom", - "Vtk" + "javascript", + "android", + "java", + "gradle", + "reactjs" ], "topics": [ - "ehealth", - "medical imaging", - "3D Reconstruction", - "3d printing", - "Neuronavigation" + "gis", + "mobile", + "data processing", + "e-health", + "global health and development" ], - "total_projects": 13, + "total_projects": 6, "first_time": false }, { - "id": "692251d853dd9d7326d33de9", - "slug": "ivy-lets-unifyai", - "name": "Ivy (lets-unify.ai)", - "category": "Data", - "description": "All of AI, at your Fingertips.", - "image_url": "https://summerofcode.withgoogle.com/media/org/ivy-lets-unifyai/zlfatiyvgun6ec6e-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ivy-lets-unifyai.webp", + "id": "692251d653dd9d7326d33dd7", + "slug": "homebrew", + "name": "Homebrew", + "category": "Programming languages", + "description": "The Missing Package Manager for macOS (or Linux)", + "image_url": "https://summerofcode.withgoogle.com/media/org/homebrew/9enfivj2ibae26ot-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/homebrew.webp", "logo_r2_url": null, - "url": "https://lets-unify.ai", + "url": "https://brew.sh", "active_years": [ - 2023 + 2016, + 2017, + 2018, + 2020, + 2022 ], - "first_year": 2023, - "last_year": 2023, + "first_year": 2016, + "last_year": 2022, "is_currently_active": false, "technologies": [ - "python", - "cython", - "tensorflow", - "pytorch", - "Jax" + "ruby", + "git", + "osx", + "github", + "bash", + "macos", + "rspec", + "linux" ], "topics": [ - "machine learning", - "artificial intelligence", - "computation graph", - "code conversion", - "unified API" + "package system", + "homebrew", + "development tools", + "package management", + "distribution", + "package managers", + "macos", + "terminal applications", + "github", + "linux", + "package manager" ], - "total_projects": 3, + "total_projects": 11, "first_time": false }, { - "id": "692251d853dd9d7326d33dea", - "slug": "jax-and-keras", - "name": "JAX and Keras", - "category": "Artificial Intelligence", - "description": "Python libraries for large-scale machine learning", - "image_url": "https://summerofcode.withgoogle.com/media/org/jax-and-keras/7czut6i8nmxbyzkp-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jax-and-keras.webp", + "id": "692251d753dd9d7326d33dd8", + "slug": "humanai", + "name": "HumanAI", + "category": "Media", + "description": "Machine learning and Artificial Intelligence techniques can be broadly applicable and transferable across many domains. The goals of HumanAI projects are to grow the open-source community in machine learning for the domains of the Arts, Social Sciences and Humanities in addressing various important societal challenges and introducing and transferring the knowledge and tools of machine learning across these disciplines.", + "image_url": "https://summerofcode.withgoogle.com/media/org/humanai/n5oaqivpu4hu4alm-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/humanai.webp", "logo_r2_url": null, - "url": "https://docs.jax.dev/", + "url": "http://humanai.foundation", "active_years": [ - 2025 + 2024, + 2025, + 2026 ], - "first_year": 2025, - "last_year": 2025, + "first_year": 2024, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", "machine learning", - "ai" + "c++", + "data analysis", + "artificial intelligence" ], "topics": [ "machine learning", - "Jax", - "keras", - "PYTHON LIBRARY" + "artificial intelligence", + "ai", + "Arts", + "Humanities" ], - "total_projects": 4, - "first_time": true + "total_projects": 26, + "first_time": false }, { - "id": "692251d853dd9d7326d33deb", - "slug": "jboss-community", - "name": "JBoss Community", - "category": "Data", - "description": "Community of projects around JBoss Middleware", - "image_url": "https://summerofcode.withgoogle.com/media/org/jboss-community/vno1fifehc0i6aa6-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jboss-community.webp", + "id": "692251d753dd9d7326d33dd9", + "slug": "hydra-ecosystem", + "name": "Hydra Ecosystem", + "category": "Web", + "description": "Automate REST APIs. Build next generation API clients.", + "image_url": "https://lh3.googleusercontent.com/MqXE4XsYgTwqizedqCRdtcKRH87GYtNAPkfbw0Q5ATFYDB9S3szHr4A4QmSxZHp7KfPm6AKx6hCRsXsBUU6yGqpuhK6l3_lVTWGKcTczBXLS", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/hydra-ecosystem.webp", "logo_r2_url": null, - "url": "http://www.jboss.org/", + "url": "https://www.hydraecosystem.org/", "active_years": [ - 2016, - 2017, 2018, 2019, 2020, - 2021, - 2022 - ], - "first_year": 2016, - "last_year": 2022, - "is_currently_active": false, - "technologies": [ - "android", - "java", - "ide", - "asciidoctor", - "aerogear", - "kubernetes", - "mobil", - "ios", - "opentracing", - "apache kafka", - "react", - "golang", - "node.js", - "rust" + 2021 + ], + "first_year": 2018, + "last_year": 2021, + "is_currently_active": false, + "technologies": [ + "python", + "flask", + "rdf", + "hydra", + "json/json-ld", + "javascript", + "redis", + "sql", + "rest", + "apis", + "postgresql", + "docker" ], "topics": [ - "testing", - "monitoring", - "mobile", - "eclipse", - "enterprise applications", - "enterprise application", - "openshift", - "cloud", - "mobile development", - "javaee", - "microservices", "database", - "kubernetes", - "codeuino", - "programming languages and development tools", - "aerogear", - "machine learning", - "iot", - "messaging", - "cfc" + "apis", + "semantic web", + "functional-programming", + "knowledge graph", + "web", + "api", + "hydra", + "docker", + "web development", + "http", + "rest apis", + "web services", + "linked data", + "knowledge graphs" ], - "total_projects": 52, + "total_projects": 8, "first_time": false }, { - "id": "692251d853dd9d7326d33dec", - "slug": "jgrapht", - "name": "JGraphT", - "category": "Programming languages", - "description": "Java library that provides graph data-structures and algorithms.", - "image_url": "https://lh3.googleusercontent.com/1auQDZb--CkyO61mmkOnmovUxWAqFi_PnYXg3l__I-ok0uhmXhtc8zaYJ848c2pvhl3WhzPFXCWtJmJ7hF_ezSWoU1wa2OMM", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jgrapht.webp", + "id": "692251ee53dd9d7326d33f14", + "slug": "illumosorg", + "name": "illumos.org", + "category": "Operating systems", + "description": "Open Source successor of OpenSolaris", + "image_url": "https://lh3.googleusercontent.com/2LrctGY6XCtdGS2LOqG1NiguqpMf52KyJWQHkEIBc1we3NM2GYoQUyEZZDFKH-6iN5bX0zBlVOb9WPTHm-OYE7VsilFdlQ", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/illumosorg.webp", "logo_r2_url": null, - "url": "http://jgrapht.org/", + "url": "http://illumos.org", "active_years": [ - 2018 + 2017 ], - "first_year": 2018, - "last_year": 2018, + "first_year": 2017, + "last_year": 2017, "is_currently_active": false, "technologies": [ - "java" + "unix", + "dtrace", + "illumos", + "openzfs", + "zfs" ], "topics": [ - "mathematics", - "algorithms", - "data structures", - "network analysis", - "graphs" + "virtualization", + "networking", + "kernel", + "drivers", + "storage" ], - "total_projects": 2, + "total_projects": 0, "first_time": false }, { - "id": "692251d853dd9d7326d33ded", - "slug": "jsk-robotics-laboratory-the-university-of-tokyo", - "name": "JSK Robotics Laboratory / The University of Tokyo", + "id": "692251d753dd9d7326d33dda", + "slug": "incf", + "name": "INCF", "category": "Science and medicine", - "description": "JSK is focusing on the fundamental functions & systems for intelligent robots", - "image_url": "https://lh3.googleusercontent.com/V4f6Ny9M9DvdfuMAgmU_c1SHVpdy5ZK1KuTU9mL-2Y_xF2UgLZzXXilamzydEwVKYsfku91UpC2fKvPdOSh0aIFLrA1u_w", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jsk-robotics-laboratory-the-university-of-tokyo.webp", + "description": "The International Neuroinformatics Coordinating Facility (INCF; www.incf.org) is an international organization launched in 2005, following a proposal from the Global Science Forum of the OECD. \n\nINCF was established to facilitate and promote the sharing of data and computing resources in the international neuroscience community. A larger objective of INCF is to help develop scalable, portable, and extensible applications that can be used by neuroscience laboratories worldwide. \n\nThe mission of INCF is to make neuroscience FAIR (Findable, Accessible, Interoperable and Reusable) by sharing and integrating neuroscience data and knowledge worldwide. We foster scientific community collaboration to develop standards for data sharing, analysis modeling and simulation in order to catalyze insights into brain function in health and disease.\n\nINCF activities are open to all who can contribute to neuroinformatics at the international level. We have a global community of neuroscience researchers working on new and improved tools for all of neuroscience – enabling other researchers to make more and faster discoveries, and improving our understanding of the brain.", + "image_url": "https://summerofcode.withgoogle.com/media/org/incf/gnryoa8kunjogh9a-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/incf.webp", "logo_r2_url": null, - "url": "http://www.jsk.t.u-tokyo.ac.jp/", + "url": "https://www.incf.org", "active_years": [ 2016, 2017, 2018, - 2019 + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ], "first_year": 2016, - "last_year": 2019, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "ros", - "euslisp", - "openhrp", - "openrtm", - "lisp", - "prolog" + "python", + "javascript", + "java", + "c++", + "gpu", + "xml", + "c", + "cuda", + "jupyter", + "tensorflow" ], "topics": [ - "robotics", - "artificial intelligence", - "ros" + "visualization", + "big data", + "data science", + "simulation", + "neuroscience", + "science", + "bio/neuro image processing", + "brain modeling", + "brain simulation", + "brain imaging", + "brain modelling", + "data visualization", + "neuroimage processing", + "neuroimaging", + "machine learning" ], - "total_projects": 4, + "total_projects": 211, "first_time": false }, { - "id": "692251d853dd9d7326d33dee", - "slug": "json-schema", - "name": "JSON Schema", - "category": "Data", - "description": "We enable the reliable use of JSON data format.", - "image_url": "https://summerofcode.withgoogle.com/media/org/json-schema/d3qfjxegxnlrfysi.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/json-schema.webp", + "id": "692251d753dd9d7326d33ddc", + "slug": "inclusive-design-institute", + "name": "Inclusive Design Institute", + "category": "End user applications", + "description": "The IDI addresses the challenge of designing ICT to work for all potential users", + "image_url": "https://lh3.googleusercontent.com/XTprn0SsGg4WcXZU0UXeJZ_qSqBCnQ0rZ-TayCndjJoRMVdpddcOTsTeR3SDr0od8Qxo4xzCmqCe4qA-h1HAi_3deWfhzRiN", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/inclusive-design-institute.webp", "logo_r2_url": null, - "url": "https://json-schema.org/", + "url": "https://inclusivedesign.ca", "active_years": [ - 2024, - 2025 + 2016, + 2018, + 2020 ], - "first_year": 2024, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2016, + "last_year": 2020, + "is_currently_active": false, "technologies": [ - "python", "javascript", - "typescript", - ".net", - "JSON Schema" + "html5", + "node.js", + "css", + "jquery", + "html", + "php" ], "topics": [ "web", - "apis", - "standards", - "data validation", - "developer tooling" + "web applications", + "accessibility", + "inclusivity", + "web development", + "inclusion" ], - "total_projects": 14, + "total_projects": 11, "first_time": false }, { - "id": "692251d853dd9d7326d33def", - "slug": "jabref-ev", - "name": "JabRef e.V.", - "category": "Science and medicine", - "description": "Stay on top of your Literature", - "image_url": "https://summerofcode.withgoogle.com/media/org/jabref-ev/ylevworrwqf9bw9g-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jabref-ev.webp", + "id": "692251d753dd9d7326d33ddd", + "slug": "indic-project", + "name": "Indic Project", + "category": "End user applications", + "description": "Improving Information Infrastructure and Access to Knowledge in Indian languages", + "image_url": "https://lh3.googleusercontent.com/41lr-V9spcB3VXUJbJ1u5varaaApPQSsEPNYBJHM0RcnSJKMbWrrGNUxdQFMD43_2IKLFQAYn2SzJmgz3vzUv_KSlWE3TiFi", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/indic-project.webp", "logo_r2_url": null, - "url": "https://www.jabref.org/", + "url": "http://indicproject.org", "active_years": [ - 2019, - 2021, - 2022, - 2024, - 2025 + 2016 ], - "first_year": 2019, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2016, + "last_year": 2016, + "is_currently_active": false, "technologies": [ - "java", - "javafx", - "latex", - "typescript", - "bibtex", - "ai" + "python", + "javascript", + "android", + "ruby on rails", + "c++" ], "topics": [ - "academia", - "reference manager", - "bibtex", - "pdf", - "science", - "library", - "literature", - "latex", - "bibliography" + "natural language processing", + "language techology", + "input methods" ], - "total_projects": 11, + "total_projects": 7, "first_time": false }, { - "id": "692251d853dd9d7326d33df0", - "slug": "jderobot", - "name": "JdeRobot", - "category": "Other", - "description": "Toolkit for developing Robotics applications", - "image_url": "https://summerofcode.withgoogle.com/media/org/jderobot/xwu8zkcagffmlqdj-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jderobot.webp", + "id": "692251d753dd9d7326d33dde", + "slug": "inkscape", + "name": "Inkscape", + "category": "End user applications", + "description": "Draw freely!", + "image_url": "https://summerofcode.withgoogle.com/media/org/inkscape/qiomrjtmocpmomjf-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/inkscape.webp", "logo_r2_url": null, - "url": "http://jderobot.github.io", + "url": "https://inkscape.org", "active_years": [ + 2016, 2017, 2018, 2019, @@ -7553,1149 +7631,1205 @@ 2024, 2025 ], - "first_year": 2017, + "first_year": 2016, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "python", - "c", "c++", - "ros", - "gazebo", - "opencv", - "tensorflow" + "css", + "svg", + "gtk+", + "c++11", + "gtk", + "c", + "python 3" ], "topics": [ - "robotics", - "computer vision", - "teaching", - "robot simulator", - "education", - "developer tools", - "artificial intelligence" + "web", + "graphics", + "geometry", + "standards", + "vector graphics", + "design" ], - "total_projects": 48, + "total_projects": 27, "first_time": false }, { - "id": "692251d853dd9d7326d33df1", - "slug": "jenkins", - "name": "Jenkins", - "category": "Programming languages", - "description": "Jenkins, build great things at any scale", - "image_url": "https://summerofcode.withgoogle.com/media/org/jenkins-wp/7qlgfron9nyj194y-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jenkins.webp", + "id": "692251d753dd9d7326d33ddf", + "slug": "inria-foundation", + "name": "Inria Foundation", + "category": "Science and medicine", + "description": "SOFA is an efficient simulation engine for research in medical simulation.", + "image_url": "https://lh3.googleusercontent.com/WNKjpoMWeQuBHnHS8Yi3sORVKFSRGg4OlTtL7cUX4lXsFJkACbH82ZF0L9jHVvkFYG3n3JXk3mvPtbhEuJIEo8JpDgeUaSoX", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/inria-foundation.webp", "logo_r2_url": null, - "url": "https://jenkins.io", + "url": "https://www.sofa-framework.org/", "active_years": [ - 2016, - 2018, - 2019, - 2020, - 2022, - 2023, - 2024, - 2025 + 2018 ], - "first_year": 2016, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2018, + "last_year": 2018, + "is_currently_active": false, "technologies": [ - "java", - "groovy", - "html", - "jenkins", - "css", - "javascript", - "machine learning", - "docker", - "kubernetes", - "go" + "c", + "c++", + "qt", + "asm", + "webassembly", + "communication protocol" ], "topics": [ - "automation", - "continuous integration", - "continuous delivery", - "java", - "development", - "development tools", - "devops", - "developer tools" + "real-time", + "scientific computing", + "physics", + "medical simulation", + "medical research" ], - "total_projects": 33, + "total_projects": 2, "first_time": false }, { - "id": "692251d853dd9d7326d33df2", - "slug": "jenkins-x", - "name": "Jenkins X", - "category": "Infrastructure and cloud", - "description": "Accelerate Your Continuous Delivery on Kubernetes", - "image_url": "https://summerofcode.withgoogle.com/media/org/jenkins-x/jjkyxgzeyje2m2hr-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jenkins-x.webp", + "id": "692251d753dd9d7326d33de0", + "slug": "institut-für-angewandte-informatik-infai-ev", + "name": "Institut für Angewandte Informatik (InfAI) e.V.", + "category": "Media", + "description": "Putting scientific research into practice.", + "image_url": "https://lh3.googleusercontent.com/Y79uFbhGMoSQzQEEqzsDDaVpr-W86qL1Lyu4icc0eFr7FrZ79ccIe8KPeVA3Jr70_E6lfzOABKAJ-44IMeHhswgIesoFRmM_", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/institut-für-angewandte-informatik-infai-ev.webp", "logo_r2_url": null, - "url": "https://jenkins-x.io/", + "url": "https://infai.org", "active_years": [ - 2022 + 2019 ], - "first_year": 2022, - "last_year": 2022, + "first_year": 2019, + "last_year": 2019, "is_currently_active": false, "technologies": [ - "golang", - "kubernetes", - "gitops" + "javascript", + "java", + "a-frame", + "neo4j", + "htc vive" ], "topics": [ - "cloud", - "CI/CD" + "virtual reality", + "software quality", + "visualization", + "software analytics", + "web" ], - "total_projects": 2, + "total_projects": 1, "first_time": false }, { - "id": "692251d853dd9d7326d33df3", - "slug": "jina-ai", - "name": "Jina AI", - "category": "Data", - "description": "Multimodal AI from the community, for everyone", - "image_url": "https://summerofcode.withgoogle.com/media/org/jina-ai-sb/fzfhdw1ifhstruln-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jina-ai.webp", + "id": "692251d753dd9d7326d33de1", + "slug": "institute-for-artificial-intelligence", + "name": "Institute for Artificial Intelligence", + "category": "Science and medicine", + "description": "Research in Artificial Intelligence for Autonomous Mobile Robots", + "image_url": "https://lh3.googleusercontent.com/N4GIct5zS7Z4dZ0WlHZpvFBoJNHYR3OBNcrMKz7uHTXAAbfLheqdFjqUSZJqCLnoJU5JRpbw3tpIkk85BwNI-phsNJKezF4", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/institute-for-artificial-intelligence.webp", "logo_r2_url": null, - "url": "https://jina.ai/", + "url": "http://ai.uni-bremen.de/", "active_years": [ - 2023 + 2017, + 2018 ], - "first_year": 2023, - "last_year": 2023, + "first_year": 2017, + "last_year": 2018, "is_currently_active": false, "technologies": [ "python", - "machine learning", - "microservices", - "data science", - "Multimodel AI" + "ros", + "c++", + "lisp", + "prolog", + "unreal engine" ], "topics": [ - "cloud native", - "neural search", - "generative AI", - "Python MLOps Framework", - "Mulitmodel Data" + "machine learning", + "artificial intelligence", + "robotics", + "knowledge representation", + "robot perception", + "simulation", + "perception", + "unreal engine" ], - "total_projects": 1, + "total_projects": 11, "first_time": false }, { - "id": "692251d953dd9d7326d33df4", - "slug": "jitsi", - "name": "Jitsi", + "id": "692251d753dd9d7326d33de2", + "slug": "intel-video-and-audio-for-linux", + "name": "Intel Video and Audio for Linux", "category": "Media", - "description": "State-of-the-art video conferencing", - "image_url": "https://summerofcode.withgoogle.com/media/org/jitsi/p3456ygkk7vdq0or-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jitsi.webp", + "description": "We enable Linux Audio and Video for Intel", + "image_url": "https://summerofcode.withgoogle.com/media/org/intel-video-and-audio-for-linux/u8hffydro4hyexxd-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/intel-video-and-audio-for-linux.webp", + "logo_r2_url": null, + "url": "https://01.org/linuxmedia", + "active_years": [ + 2017, + 2018, + 2019, + 2020, + 2021, + 2022 + ], + "first_year": 2017, + "last_year": 2022, + "is_currently_active": false, + "technologies": [ + "video", + "decode", + "encode", + "vpp", + "multimedia", + "c", + "hardware acceleration", + "codecs", + "va-api", + "audio", + "gstreamer", + "ffmpeg", + "sound open firmware", + "libxcam", + "vaapi", + "c++", + "opengl", + "Codec", + "Media", + "Imaging" + ], + "topics": [ + "camera", + "video", + "accelerated media", + "compress", + "encoding", + "video encode", + "video decode", + "hardware accelerated media processing", + "video post processing", + "video apis", + "video processing", + "audio firmware", + "video framework", + "video decoding/encoding", + "360 stereo video", + "opensource audio firmware", + "ffmpeg neuronetwork", + "graphics / video / audio / virtual reality", + "media", + "imaging", + "Codec" + ], + "total_projects": 12, + "first_time": false + }, + { + "id": "692251d753dd9d7326d33de3", + "slug": "intermine", + "name": "InterMine", + "category": "Science and medicine", + "description": "Integrating biological data sources, making it easy to query and analyse data", + "image_url": "https://lh3.googleusercontent.com/nLqUlbCti7mF0bhmRLoB-4bZAICge6ScN_DbYRSz75qSIhEe0heDD-CSwZtKLjYBVYc_lphqiVku5vrZ5z4cXNejC9KZjOE", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/intermine.webp", "logo_r2_url": null, - "url": "https://jitsi.org", + "url": "http://intermine.org/", "active_years": [ - 2017, 2018, - 2022, - 2024, - 2025 + 2019 ], - "first_year": 2017, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2018, + "last_year": 2019, + "is_currently_active": false, "technologies": [ + "python", + "postgresql", "javascript", "java", - "xmpp", - "webrtc", - "sip", - "react", - "react native", - "kotlin" + "clojure", + "r" ], "topics": [ - "real time", - "multimedia", + "open science", + "genomics", + "bioinformatics", + "data science", + "biology", "web", - "networking", - "real time communications", - "video conferencing", - "WebRTC", - "video" + "data visualisation" ], - "total_projects": 21, + "total_projects": 12, "first_time": false }, { - "id": "692251d953dd9d7326d33df5", - "slug": "joomla", - "name": "Joomla!", - "category": "End user applications", - "description": "The flexible platform empowering website creators.", - "image_url": "https://summerofcode.withgoogle.com/media/org/joomla/dwntn9vfd52jkr9z.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/joomla.webp", + "id": "692251d753dd9d7326d33de4", + "slug": "international-catrobat-association", + "name": "International Catrobat Association", + "category": "Programming languages", + "description": "Computational thinking for all with free visual coding apps\nThe Catrobat project develops useful frameworks to create games, animations, or apps easily within a short time. This set of mobile creativity tools for smartphones is inspired by the well-known Scratch framework by the Lifelong Kindergarten Group at the MIT Media Lab. The motivation behind the project is that programming is an important cultural technique on the same level as mathematics and physics, from a practical as well as from a philosophical point of view. Our aim thus is to popularize the skills needed to program from an early age in a fun and engaging way that will facilitate the spread of its adoption among young people all over the world.\n\nOur awarded Android app “Pocket Code” is currently the most famous outcome of the project. Without the need for any further devices, users have the possibility to create their first program directly on their mobile device in just a few steps using visual \"Bricks\". Pocket Code supports all common device sensors, provides special \"Bricks\" for different robotic devices (Lego Mindstorms, Robotix Phiro, etc.) as well as for hardware devices such as the Arduino board or the Raspberry Pi, and of course offers elements of programming languages such as variables, if-statements, concurrency, etc. We also work on \"Pocket Code\" for iOS and on a large number of extensions. That’s why developers of different fields help us to keep our products up-to-date to meet the current needs of our users.\n\nMotivated by prizes (such as the Lovie Award, the Austrian National Innovation Award or the Re-Imagine Education Award) and being featured by different programs (like Google Play for Education or code.org), our team is working on many different subprojects and extensions. Over 870 developers already contributed to our project on different topics such as app development, web technologies, graphics, usability, internationalization, or design.", + "image_url": "https://summerofcode.withgoogle.com/media/org/international-catrobat-association/dfkxzmsqlkyvwi2o-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/international-catrobat-association.webp", "logo_r2_url": null, - "url": "https://www.joomla.org/", + "url": "https://www.catrobat.org", "active_years": [ 2016, 2017, 2018, 2019, + 2020, 2021, 2022, - 2025 + 2023, + 2024, + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "javascript", - "html", + "android", + "java", + "html5", + "web", + "ios", + "espresso", + "swift", + "symfony", "php", - "css", - "jquery", - "mysql", - "html5/css3", - "cms" + "kotlin", + "flutter", + "python" ], "topics": [ - "web", - "cms", - "object-oriented", - "mvc", - "web application", - "web development", + "education", + "robotics", + "programming tools", "web applications", - "programming languages" + "scratch", + "app development", + "programming language", + "web", + "visual programming", + "gaming", + "creativity tools", + "mobile programming", + "game engines" ], - "total_projects": 36, + "total_projects": 84, "first_time": false }, { - "id": "692251d953dd9d7326d33df6", - "slug": "joplin", - "name": "Joplin", - "category": "End user applications", - "description": "The secure note taking application", - "image_url": "https://summerofcode.withgoogle.com/media/org/joplin/0b4z6iftngd1afrp-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/joplin.webp", + "id": "692251d753dd9d7326d33de5", + "slug": "internet-archive", + "name": "Internet Archive", + "category": "Science and medicine", + "description": "The Internet Archive is a non-profit digital library.\n\nWe are the home of the Wayback Machine.", + "image_url": "https://summerofcode.withgoogle.com/media/org/internet-archive/uzbgzbb9tvp81c2i.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/internet-archive.webp", "logo_r2_url": null, - "url": "https://github.com/laurent22/joplin", + "url": "http://archive.org", "active_years": [ + 2017, + 2018, + 2019, 2020, 2021, - 2022, - 2024 + 2023, + 2024, + 2025, + 2026 ], - "first_year": 2020, - "last_year": 2024, - "is_currently_active": false, + "first_year": 2017, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "react", - "node.js", - "react native", - "electron", - "terminal-kit", + "python", "javascript", - "typescript", - "React-Native" + "pthon", + "node.js", + "php", + "elasticsearch", + "golang", + "hadoop", + "go" ], "topics": [ - "cross-platform", - "encryption", - "notes", - "synchronisation", - "sharing", - "database", - "search", - "note-taking", - "office", - "security", - "AI/ML" + "web archiving", + "non-profit", + "web extensions", + "voice apps", + "library", + "archive", + "web archives", + "books", + "web archving", + "archiving", + "media" ], - "total_projects": 17, + "total_projects": 26, "first_time": false }, { - "id": "692251d953dd9d7326d33df7", - "slug": "k-9-mail", - "name": "K-9 Mail", - "category": "End user applications", - "description": "K-9 Mail – Advanced Email for Android", - "image_url": "https://lh3.googleusercontent.com/krjdwXw2oDdYr4CiiHmacAQfX7YwdVbKxXofGWXcb5BljoNWIV0Z2OJz3HvKkPMktuU3EY3dWbhQ7ulqQiDGPyVj_WjJQ-HH", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/k-9-mail.webp", + "id": "692251d853dd9d7326d33de6", + "slug": "internet-health-report", + "name": "Internet Health Report", + "category": "Science and medicine", + "description": "Monitoring the Internet", + "image_url": "https://summerofcode.withgoogle.com/media/org/internet-health-report/lifcnmh2qkq9cl5o-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/internet-health-report.webp", "logo_r2_url": null, - "url": "https://github.com/k9mail/k-9", + "url": "https://ihr.iijlab.net", "active_years": [ - 2017 + 2022, + 2023, + 2024, + 2025 ], - "first_year": 2017, - "last_year": 2017, + "first_year": 2022, + "last_year": 2025, "is_currently_active": false, "technologies": [ - "android", - "java" + "python", + "javascript", + "apache kafka", + "VueJS" ], "topics": [ - "email", - "communication" + "networking", + "routing", + "communication", + "internet", + "data analytics" ], - "total_projects": 2, + "total_projects": 15, "first_time": false }, { - "id": "692251d953dd9d7326d33df8", - "slug": "kde-community", - "name": "KDE Community", - "category": "End user applications", - "description": "Control your digital life", - "image_url": "https://summerofcode.withgoogle.com/media/org/kde-community/1mbnnsqwd2ejcmy8-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kde-community.webp", + "id": "692251d853dd9d7326d33de7", + "slug": "internet-systems-consortium", + "name": "Internet Systems Consortium", + "category": "Other", + "description": "We support the infrastructure of the Internet with Open Source", + "image_url": "https://lh3.googleusercontent.com/t4JetnWDV6gtqVJnb3C32_US8_31ZDGKBkkFido8yFFSApN01eMe-SrIAF9ZDvU6bZ2Pc7mLlP7VeTRQWv7i3IqfB9Hm6nc", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/internet-systems-consortium.webp", "logo_r2_url": null, - "url": "https://kde.org/", + "url": "https://isc.org", "active_years": [ - 2016, - 2017, 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2019 ], - "first_year": 2016, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2018, + "last_year": 2019, + "is_currently_active": false, "technologies": [ - "c++", - "qt", - "cmake", - "php", - "qt5", + "mysql", "c", - "qml", - "opencv", - "opengl", - "data structures" + "c++", + "rest", + "dhcp", + "cassandra", + "python", + "javascript", + "c99" ], "topics": [ - "education", - "wiki", - "graphics", - "mobile", - "desktop applications", - "science", - "desktop", - "communication", - "desktop application", - "applications", - "desktop environment", - "privacy", - "deskstop", - "vr", - "art" + "networking", + "infrastructure", + "ipv6", + "stateful", + "internet", + "dhcp", + "dns" ], - "total_projects": 167, + "total_projects": 3, "first_time": false }, { - "id": "692251d953dd9d7326d33df9", - "slug": "knime", - "name": "KNIME", - "category": "Data", - "description": "Open for Innovation", - "image_url": "https://lh3.googleusercontent.com/iH0Kbp7-kU_YMY4NSPqhkc8PTJn5BVK3g6o92I7lkcVDNyqB4sWgVd8GKzKPCAak4nlrpUrT6cY73BQl_TfzbbyCcAGGCaY", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/knime.webp", + "id": "692251d853dd9d7326d33de8", + "slug": "invesalius", + "name": "Invesalius", + "category": "Science and medicine", + "description": "InVesalius is an Open Source organization that works developing free software for reconstruction of computed tomography and magnetic resonance images. The software is mainly used for rapid prototyping, teaching, forensics, and in the medical field. It is possible to use it on the Microsoft Windows, GNU/Linux and Apple Mac OS X platforms. \n\nInVesalius main software started began their development on 2001 by Centro de Tecnologia da Informação Renato Archer (CTI), in Brazil, later it was released under GNU license and more practitioners joins the organization to improve their development.\n\nAt that time, there was no medical image software in Portuguese that fulfilled the Brazilian hospitals and clinics needs. Therefore, InVesalius came as a proposal of development with the aim to be a medical software image analysis with null acquisition cost, capability of execution on low-cost personal computers and the\ncapability of execution on different operating systems and act as a platform to encourage the use and development of medical images in Brazil.", + "image_url": "https://summerofcode.withgoogle.com/media/org/invesalius/ktlk8dmldhfmlyb2-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/invesalius.webp", "logo_r2_url": null, - "url": "https://knime.com", + "url": "https://invesalius.github.io/", "active_years": [ - 2019 + 2023, + 2024, + 2025, + 2026 ], - "first_year": 2019, - "last_year": 2019, - "is_currently_active": false, + "first_year": 2023, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "javascript", - "java", - "tensorflow" + "python", + "cython", + "numpy", + "dicom", + "Vtk" ], "topics": [ - "machine learning", - "data science", - "deep learning", - "image processing", - "data analytics" + "ehealth", + "medical imaging", + "3D Reconstruction", + "3d printing", + "Neuronavigation" ], - "total_projects": 2, + "total_projects": 13, "first_time": false }, { - "id": "692251d953dd9d7326d33dfa", - "slug": "kapitan", - "name": "Kapitan", - "category": "Programming languages", - "description": "Templated configuration management for Kubernetes, Terraform and other things", - "image_url": "https://lh3.googleusercontent.com/zircNwClG3cGy7dWVs4jsWn1-wjodnztl3mBi-n6jPXGmME1cz6uFSQFmPrdthHI97lbraFMOeE9K8p6S-tooPbFcyauDpaX", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kapitan.webp", + "id": "692251d753dd9d7326d33ddb", + "slug": "ioos", + "name": "IOOS", + "category": "Science and medicine", + "description": "U.S. IOOS is a national and regional partnership working to provide ocean, coastal and Great Lakes observations, data, tools, and forecasts to improve safety, enhance the economy, and protect our environment. Our primary purpose is to provide free and open data about the state of our oceans and Great Lakes to our users. These data are fundamental to understanding the health of our marine ecosystems, to monitor the climate signal as captured in oceanographic conditions, and to provide predictions about the future state of our oceans and coasts.", + "image_url": "https://summerofcode.withgoogle.com/media/org/ioos/oe7caipkhwnizoyr-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ioos.webp", "logo_r2_url": null, - "url": "https://kapitan.dev/", + "url": "https://ioos.noaa.gov/", "active_years": [ - 2019, - 2020 + 2021, + 2022, + 2024, + 2025, + 2026 ], - "first_year": 2019, - "last_year": 2020, - "is_currently_active": false, + "first_year": 2021, + "last_year": 2026, + "is_currently_active": true, "technologies": [ "python", - "kubernetes", - "jsonnet", - "jinja2", - "terraform", - "python 3" + "big data science", + "ocean technology", + "ocean science", + "java", + "r", + "Zarr", + "NetCDF" ], "topics": [ - "cloud", - "kubernetes", - "programming languages", - "great developer tooling" + "open data", + "data science", + "earth sciences", + "data discovery", + "open science", + "data management", + "Oceanography", + "Marine Biodiversity" ], - "total_projects": 2, + "total_projects": 22, "first_time": false }, { - "id": "692251d953dd9d7326d33dfb", - "slug": "kart-project", - "name": "Kart Project", + "id": "692251d853dd9d7326d33de9", + "slug": "ivy-lets-unifyai", + "name": "Ivy (lets-unify.ai)", "category": "Data", - "description": "Distributed version-control for geospatial data", - "image_url": "https://summerofcode.withgoogle.com/media/org/kart-project/mtb71mb4pzybzrp5-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kart-project.webp", + "description": "All of AI, at your Fingertips.", + "image_url": "https://summerofcode.withgoogle.com/media/org/ivy-lets-unifyai/zlfatiyvgun6ec6e-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ivy-lets-unifyai.webp", "logo_r2_url": null, - "url": "https://kartproject.org", + "url": "https://lets-unify.ai", "active_years": [ - 2022 + 2023 ], - "first_year": 2022, - "last_year": 2022, + "first_year": 2023, + "last_year": 2023, "is_currently_active": false, "technologies": [ "python", - "c++", - "git", - "gis" + "cython", + "tensorflow", + "pytorch", + "Jax" ], "topics": [ - "version control", - "gis", - "data", - "point clouds", - "spatial" + "machine learning", + "artificial intelligence", + "computation graph", + "code conversion", + "unified API" ], - "total_projects": 1, + "total_projects": 3, "first_time": false }, { - "id": "692251d953dd9d7326d33dfc", - "slug": "keploy", - "name": "Keploy", - "category": "Programming languages", - "description": "Unit, API test generation agent using AI & EBPF", - "image_url": "https://summerofcode.withgoogle.com/media/org/keploy/txoec8qr8fyegtmv-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/keploy.webp", + "id": "692251d853dd9d7326d33def", + "slug": "jabref-ev", + "name": "JabRef e.V.", + "category": "Science and medicine", + "description": "JabRef is one of the most widely used citation and reference management tools. It helps students and researchers to stay on top of their literature by assisting at every step of a research project: collecting and organizing literature sources, discovering the latest research, citing references in LaTeX and other text editors, and sharing interesting papers with collaborators.\n\nJabRef is open-source and cross-platform. It is written in Java using JavaFX as the user interface technology. It is licensed under the MIT license.\n\nSince 2020 JabRef is maintained by the non-profit organization JabRef e.V.", + "image_url": "https://summerofcode.withgoogle.com/media/org/jabref-ev/ylevworrwqf9bw9g-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jabref-ev.webp", "logo_r2_url": null, - "url": "https://keploy.io", + "url": "https://www.jabref.org/", "active_years": [ - 2023, + 2019, + 2021, + 2022, 2024, - 2025 + 2025, + 2026 ], - "first_year": 2023, - "last_year": 2025, + "first_year": 2019, + "last_year": 2026, "is_currently_active": true, "technologies": [ "java", - "golang", - "node.js", - "MERN", - "epbf", - "python", + "javafx", + "latex", + "typescript", + "bibtex", "ai" ], "topics": [ - "API Testing", - "No code platform", - "Dev Tool", - "Functional Testing", - "Mock and Stubs Generation", - "AI/ML", - "AI Testing Agent" + "academia", + "reference manager", + "bibtex", + "pdf", + "science", + "library", + "literature", + "latex", + "bibliography" ], "total_projects": 11, "first_time": false }, { - "id": "692251d953dd9d7326d33dfd", - "slug": "keptn", - "name": "Keptn", - "category": "Infrastructure and cloud", - "description": "Event-driven orchestration of cloud-native apps", - "image_url": "https://summerofcode.withgoogle.com/media/org/keptn/ey8vcewiadqdgplv-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/keptn.webp", + "id": "692251d853dd9d7326d33dea", + "slug": "jax-and-keras", + "name": "JAX and Keras", + "category": "Artificial Intelligence", + "description": "Python libraries for large-scale machine learning", + "image_url": "https://summerofcode.withgoogle.com/media/org/jax-and-keras/7czut6i8nmxbyzkp-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jax-and-keras.webp", "logo_r2_url": null, - "url": "https://keptn.sh/", + "url": "https://docs.jax.dev/", "active_years": [ - 2022 + 2025 ], - "first_year": 2022, - "last_year": 2022, + "first_year": 2025, + "last_year": 2025, "is_currently_active": false, "technologies": [ - "golang", - "kubernetes", - "angular", - "Helm" + "python", + "machine learning", + "ai" ], "topics": [ - "cloud", - "devops", - "sre", - "CloudNative", - "Operations" + "machine learning", + "Jax", + "keras", + "PYTHON LIBRARY" ], - "total_projects": 3, + "total_projects": 4, "first_time": false }, { - "id": "692251d953dd9d7326d33dfe", - "slug": "kiwix", - "name": "Kiwix", - "category": "End user applications", - "description": "Internet content available offline.", - "image_url": "https://summerofcode.withgoogle.com/media/org/kiwix/b6zuffwiyoulh0ku-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kiwix.webp", + "id": "692251d853dd9d7326d33deb", + "slug": "jboss-community", + "name": "JBoss Community", + "category": "Web", + "description": "JBoss Community is a community of open source projects. The community hosts a diverse set of projects that are written in various programming languages. The primary language is Java, however there are also projects that are written in Go, Rust, Ruby, PHP, Node and other languages.\n\nProject categories range from application servers, microservices, IOT, cloud technologies, web frameworks et cetera", + "image_url": "https://summerofcode.withgoogle.com/media/org/jboss-community/vno1fifehc0i6aa6-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jboss-community.webp", "logo_r2_url": null, - "url": "https://www.kiwix.org", + "url": "http://www.jboss.org/", "active_years": [ + 2016, + 2017, 2018, 2019, 2020, 2021, - 2023, - 2024, - 2025 + 2022, + 2026 ], - "first_year": 2018, - "last_year": 2025, + "first_year": 2016, + "last_year": 2026, "is_currently_active": true, "technologies": [ - "python", "android", "java", - "c++", - "qt", - "javascript", - "c", + "ide", + "asciidoctor", + "aerogear", + "kubernetes", + "mobil", + "ios", + "opentracing", + "apache kafka", + "react", + "golang", "node.js", - "python 3", - "kotlin", - "typescript", - "perl", - "vue.js" + "rust", + "cloud" ], "topics": [ - "offline", - "android", - "offline access", - "browser", - "compression" + "testing", + "monitoring", + "mobile", + "eclipse", + "enterprise applications", + "enterprise application", + "openshift", + "cloud", + "mobile development", + "javaee", + "microservices", + "database", + "kubernetes", + "codeuino", + "programming languages and development tools", + "aerogear", + "machine learning", + "iot", + "messaging", + "cfc", + "artificial intelligence" ], - "total_projects": 18, + "total_projects": 52, "first_time": false }, { - "id": "692251d953dd9d7326d33dff", - "slug": "kodi", - "name": "Kodi", - "category": "End user applications", - "description": "The ultimate entertainment center", - "image_url": "https://summerofcode.withgoogle.com/media/org/kodi/drlohv8g8h6wfxvo-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kodi.webp", + "id": "692251d853dd9d7326d33df0", + "slug": "jderobot", + "name": "JdeRobot", + "category": "Other", + "description": "Robotics applications are typically distributed, made up of a collection of concurrent asynchronous components which communicate using some middleware (ROS messages, DDS...). Building robotics applications is a complex task. Integrating existing nodes or libraries that provide already solved functionality, and using several tools may increase the software robustness and shorten the development time. JdeRobot provides several tools, libraries and reusable nodes. They have been written in C++, Python or JavaScript.\n\nOur community mainly works on four development areas:\n1.- Education in Robotics\n* RoboticsAcademy (https://jderobot.github.io/RoboticsAcademy/): a ROS-based framework to learn robotics and computer vision with drones, autonomous cars.... It is a collection of Python programmed exercises for engineering students. \n* Unibotics: a web based framework for teaching robotics.\n\n2.- Robot Programming Tools\t\n* VisualCircuit (https://jderobot.github.io/VisualCircuit/) for robot programming with connected blocks, as in electronic circuits, in a visual way\n* VisualStates for robot programming with Finite State Machines in a visual way\n* WebSim2D robot simulator with web technologies\n\n3.- MachineLearning in Robotics\n* DeepLearningSuite: neural networks for robot control. It includes the BehaviorMetrics tool for assessment of neural networks for autonomous driving\n* RL-Studio: Robotic library for the training of Reinforcement Learning algorithms\n* DetectionMetrics tool for evaluation of visual detection neural networks and algorithms\n\n4.- FPGAs in Robotics\n* FPGA-robotics (https://github.com/JdeRobot/FPGA-robotics): programming robots with reconfigurable computing (FPGAs) using open tools as IceStudio and Symbiflow. Verilog-based reusable blocks for robotics applications.\n* NeuralFPGA: running deeplearning networks on FPGAs", + "image_url": "https://summerofcode.withgoogle.com/media/org/jderobot/xwu8zkcagffmlqdj-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jderobot.webp", "logo_r2_url": null, - "url": "https://kodi.tv", + "url": "http://jderobot.github.io", "active_years": [ 2017, 2018, 2019, 2020, 2021, - 2022 + 2022, + 2023, + 2024, + 2025, + 2026 ], "first_year": 2017, - "last_year": 2022, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ "python", - "xml", - "c++11", - "git", - "drupal", - "mysql", "c", "c++", - "github", - "ffmpeg", - "sqlite", - "opengl" + "ros", + "gazebo", + "opencv", + "tensorflow" ], "topics": [ - "audio", - "media center", - "video player", - "media management", - "video", - "home theater", - "games", - "media", - "tv" + "robotics", + "computer vision", + "teaching", + "robot simulator", + "education", + "developer tools", + "artificial intelligence" ], - "total_projects": 12, + "total_projects": 48, "first_time": false }, { - "id": "692251d953dd9d7326d33e00", - "slug": "kolibrios-project-team", - "name": "KolibriOS Project Team", - "category": "Operating systems", - "description": "A tiny and fast operating system in fasm", - "image_url": "https://summerofcode.withgoogle.com/media/org/kolibrios-project-team/mrtxpzuxixjqff62-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kolibrios-project-team.webp", + "id": "692251d853dd9d7326d33df1", + "slug": "jenkins", + "name": "Jenkins", + "category": "Programming languages", + "description": "Short description:\n\nJenkins is a popular open source automation server which is used for building, testing, CI/CD, deployment and many other use-cases. Our motto is \"Build great things at any scale\".\n\nLong description:\n\nJenkins, originally founded in 2006 as \"Hudson\", is one of the leading automation servers. Jenkins' motto is \"Build great things at any scale\". Using an extensible, plugin-based architecture, developers have created hundreds of plugins to adapt Jenkins to a multitude of build, test, and deployment automation workloads. As Jenkins is open-source, MIT License is used for most of the components.\n\nThis year we invite potential GSoC contributors to join the Jenkins community and to work together to improve Jenkins. We have many strategic project ideas which are important to potentially hundreds of thousands of Jenkins users.\n\nThe project has over 600 active contributors working on Jenkins core, plugins, website, project infrastructure, localization activities, etc. In total we have more than 2,000 components including plugins, libraries, and various utilities. The main languages in the project are Java, Groovy and JavaScript, but we also have components written in other languages (Go, C/C++, C#, etc.). Jenkins project includes multiple sub-projects (including Configuration-as-Code, Infrastructure and Remoting) and special interest groups. These entities participate in GSoC as a part of the Jenkins project.\n\nThe Jenkins project is a part of Continuous Delivery Foundation (CDF).", + "image_url": "https://summerofcode.withgoogle.com/media/org/jenkins-wp/7qlgfron9nyj194y-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jenkins.webp", "logo_r2_url": null, - "url": "https://kolibrios.org", + "url": "https://jenkins.io", "active_years": [ 2016, - 2024 + 2018, + 2019, + 2020, + 2022, + 2023, + 2024, + 2025, + 2026 ], "first_year": 2016, - "last_year": 2024, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "fasm", - "flat assembler", - "x86 assembly", - "i386", - "i586", - "c", - "assembly", - "asm", - "pci" + "java", + "groovy", + "html", + "jenkins", + "css", + "javascript", + "machine learning", + "docker", + "kubernetes", + "go" ], "topics": [ - "operating systems", - "hardware", - "desktop", - "drivers", - "lowlevel", - "kernel", - "operating system", - "OS", - "low-level" + "automation", + "continuous integration", + "continuous delivery", + "java", + "development", + "development tools", + "devops", + "developer tools" ], - "total_projects": 6, + "total_projects": 33, "first_time": false }, { - "id": "692251da53dd9d7326d33e01", - "slug": "kornia", - "name": "Kornia", - "category": "Programming languages", - "description": "Advancing Computer Vision & Spatial AI, Openly", - "image_url": "https://summerofcode.withgoogle.com/media/org/kornia/p4e366l478clqvvg-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kornia.webp", + "id": "692251d853dd9d7326d33df2", + "slug": "jenkins-x", + "name": "Jenkins X", + "category": "Infrastructure and cloud", + "description": "Accelerate Your Continuous Delivery on Kubernetes", + "image_url": "https://summerofcode.withgoogle.com/media/org/jenkins-x/jjkyxgzeyje2m2hr-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jenkins-x.webp", "logo_r2_url": null, - "url": "https://docs.rs/kornia", + "url": "https://jenkins-x.io/", "active_years": [ - 2025 + 2022 ], - "first_year": 2025, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2022, + "last_year": 2022, + "is_currently_active": false, "technologies": [ - "cuda", - "rust", - "deep learning", - "data science", - "Spatial AI" + "golang", + "kubernetes", + "gitops" ], "topics": [ - "machine learning", - "artificial intelligence", - "robotics", - "computer vision", - "3D Geometry" + "cloud", + "CI/CD" ], "total_projects": 2, - "first_time": true + "first_time": false }, { - "id": "692251da53dd9d7326d33e02", - "slug": "kotlin-foundation", - "name": "Kotlin Foundation", + "id": "692251d853dd9d7326d33dec", + "slug": "jgrapht", + "name": "JGraphT", "category": "Programming languages", - "description": "Advance the Kotlin programming language", - "image_url": "https://summerofcode.withgoogle.com/media/org/kotlin-foundation/2wyghqyy8nvvl4cq-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kotlin-foundation.webp", + "description": "Java library that provides graph data-structures and algorithms.", + "image_url": "https://lh3.googleusercontent.com/1auQDZb--CkyO61mmkOnmovUxWAqFi_PnYXg3l__I-ok0uhmXhtc8zaYJ848c2pvhl3WhzPFXCWtJmJ7hF_ezSWoU1wa2OMM", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jgrapht.webp", "logo_r2_url": null, - "url": "https://kotlinfoundation.org/", + "url": "http://jgrapht.org/", "active_years": [ - 2023, - 2024, - 2025 + 2018 ], - "first_year": 2023, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2018, + "last_year": 2018, + "is_currently_active": false, "technologies": [ - "gradle", - "kotlin", - "jvm", - "Parsers & Compilers", - "Multiplatform" + "java" ], "topics": [ - "compilers", - "programming languages", - "software development", - "libraries", - "Programming & Build Tools" + "mathematics", + "algorithms", + "data structures", + "network analysis", + "graphs" ], - "total_projects": 16, + "total_projects": 2, "first_time": false }, { - "id": "692251da53dd9d7326d33e03", - "slug": "kubevirt", - "name": "KubeVirt", - "category": "Infrastructure and cloud", - "description": "Building a virtualization API for Kubernetes", - "image_url": "https://summerofcode.withgoogle.com/media/org/kubevirt/pqdi8ojm0atxoo1s-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kubevirt.webp", + "id": "692251d853dd9d7326d33df3", + "slug": "jina-ai", + "name": "Jina AI", + "category": "Data", + "description": "Multimodal AI from the community, for everyone", + "image_url": "https://summerofcode.withgoogle.com/media/org/jina-ai-sb/fzfhdw1ifhstruln-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jina-ai.webp", "logo_r2_url": null, - "url": "https://kubevirt.io", + "url": "https://jina.ai/", "active_years": [ - 2023, - 2024, - 2025 + 2023 ], "first_year": 2023, - "last_year": 2025, - "is_currently_active": true, + "last_year": 2023, + "is_currently_active": false, "technologies": [ - "golang", - "grpc" + "python", + "machine learning", + "microservices", + "data science", + "Multimodel AI" ], "topics": [ - "virtualization", - "containers", - "kubernetes" + "cloud native", + "neural search", + "generative AI", + "Python MLOps Framework", + "Mulitmodel Data" ], - "total_projects": 4, + "total_projects": 1, "first_time": false }, { - "id": "692251da53dd9d7326d33e04", - "slug": "kubeflow", - "name": "Kubeflow", - "category": "Infrastructure and cloud", - "description": "The Machine Learning Toolkit for Kubernetes (AI)", - "image_url": "https://summerofcode.withgoogle.com/media/org/kubeflow/uqphmd1y7opxpjim-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kubeflow.webp", + "id": "692251d953dd9d7326d33df4", + "slug": "jitsi", + "name": "Jitsi", + "category": "Media", + "description": "Jitsi is a set of Open Source projects which empower users to deploy secure, scalable and easy to use video conferencing platforms with state-of-the-art video quality and features.", + "image_url": "https://summerofcode.withgoogle.com/media/org/jitsi/p3456ygkk7vdq0or-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jitsi.webp", "logo_r2_url": null, - "url": "https://kubeflow.org", + "url": "https://jitsi.org", "active_years": [ - 2020, + 2017, + 2018, + 2022, 2024, - 2025 + 2025, + 2026 ], - "first_year": 2020, - "last_year": 2025, + "first_year": 2017, + "last_year": 2026, "is_currently_active": true, "technologies": [ - "python", - "tensorflow", - "kubernetes", - "jupyter notebook", - "kustomize", - "go", - "typescript", - "YAML" + "javascript", + "java", + "xmpp", + "webrtc", + "sip", + "react", + "react native", + "kotlin" ], "topics": [ - "machine learning", - "cloud", - "infrastructure", - "kubernetes", - "AI/ML", - "generative AI" + "real time", + "multimedia", + "web", + "networking", + "real time communications", + "video conferencing", + "WebRTC", + "video" ], "total_projects": 21, "first_time": false }, { - "id": "692251da53dd9d7326d33e05", - "slug": "lappis", - "name": "LAPPIS", - "category": "Security", - "description": "Social Participation to Reach Millions", - "image_url": "https://summerofcode.withgoogle.com/media/org/lappis/o9wx8njgmzlcug4n-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/lappis.webp", + "id": "692251d953dd9d7326d33df5", + "slug": "joomla", + "name": "Joomla!", + "category": "End user applications", + "description": "The Joomla CMS is a PHP based application that powers about 2.2% of the web, 3.5% of all CMS based websites, as well as many intranets. Joomla has been downloaded over 119 Million times: https://downloads.joomla.org/\n\nThe Joomla project has hundreds of contributors, organized in a set of working groups and teams, and a leadership group. These are coordinated by the [Departments](https://volunteers.joomla.org/departments/ \"Joomla Departments\").\n\nJoomla is a community driven FOSS project developed and maintained by an international community encompassing over 150 countries. Joomla is used by millions of websites and web applications ranging from the hobbyist, professional web developer, to large enterprises, for both the World Wide Web and intranets.\n\nJoomla is available in 76 languages with an active and dedicated translation team\nhttps://community.joomla.org/translations/joomla-3-translations.html\n\n\nThe Joomla Project is a community effort which strives to engage contributors from diverse backgrounds and varying interests and skills in building and supporting great software together. The [mission, vision and values](https://www.joomla.org/about-joomla/the-project/mission-vision-and-values.html \"Joomla Mission vision and values\") of the Joomla Project reflect this.\n\nThe official umbrella organisation is Open Source Matters (OSM), the not for profit organization that manages financial and legal issues for the Joomla Project. A team of experienced people drawn from many areas of the project will manage the 2025 GSoC project for Joomla.", + "image_url": "https://summerofcode.withgoogle.com/media/org/joomla/dwntn9vfd52jkr9z.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/joomla.webp", "logo_r2_url": null, - "url": "https://www.lappis.rocks", + "url": "https://www.joomla.org/", "active_years": [ - 2024 + 2016, + 2017, + 2018, + 2019, + 2021, + 2022, + 2025, + 2026 ], - "first_year": 2024, - "last_year": 2024, - "is_currently_active": false, + "first_year": 2016, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "python", - "machine learning", - "ruby on rails", - "jupyter hub" + "javascript", + "html", + "php", + "css", + "jquery", + "mysql", + "html5/css3", + "cms", + "ai" ], "topics": [ + "web", + "cms", + "object-oriented", + "mvc", + "web application", "web development", - "devops", - "innovation", - "Social participation", - "mentoring" + "web applications", + "programming languages" ], - "total_projects": 4, + "total_projects": 36, "first_time": false }, { - "id": "692251da53dd9d7326d33e06", - "slug": "leap-encryption-access-project", - "name": "LEAP Encryption Access Project", + "id": "692251d953dd9d7326d33df6", + "slug": "joplin", + "name": "Joplin", "category": "End user applications", - "description": "Privacy should not be a priviledge", - "image_url": "https://summerofcode.withgoogle.com/media/org/leap-encryption-access-project/rd167bcc545zvv8w-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/leap-encryption-access-project.webp", + "description": "Joplin is a note-taking app designed with strong security and privacy in mind. It features end-to-end encryption (E2EE), ensuring the notes remain protected during synchronization. Users can store notes locally or sync them via trusted services like Nextcloud, Dropbox, or self-hosted servers, retaining full data ownership.\n\nAdditionally Joplin can manage a large number of notes that can be organised using notebooks or tags, thus making it suitable to manage a knowledge base. The notes can be searched using simple or advanced queries.\n\nThe application can be customised using plugins and themes, and you can also easily create your own. It is available for Windows, Linux, macOS, Android and iOS.", + "image_url": "https://summerofcode.withgoogle.com/media/org/joplin/0b4z6iftngd1afrp-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/joplin.webp", "logo_r2_url": null, - "url": "https://leap.se", + "url": "https://github.com/laurent22/joplin", "active_years": [ - 2018, - 2022 + 2020, + 2021, + 2022, + 2024, + 2026 ], - "first_year": 2018, - "last_year": 2022, - "is_currently_active": false, + "first_year": 2020, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "python", + "react", + "node.js", + "react native", + "electron", + "terminal-kit", "javascript", - "twisted", - "openvpn", - "gnupg", - "java", - "golang", - "qt5", - "docker", - "ansible" + "typescript", + "React-Native" ], "topics": [ - "mail", - "vpn", + "cross-platform", "encryption", - "e2e", - "privacy", - "Circumvention" + "notes", + "synchronisation", + "sharing", + "database", + "search", + "note-taking", + "office", + "security", + "AI/ML" ], - "total_projects": 2, + "total_projects": 17, "first_time": false }, { - "id": "692251da53dd9d7326d33e07", - "slug": "llvm-compiler-infrastructure", - "name": "LLVM Compiler Infrastructure", - "category": "Programming languages", - "description": "LLVM Compiler Infrastructure", - "image_url": "https://summerofcode.withgoogle.com/media/org/llvm-compiler-infrastructure/ize6lrlftlvdxtqe-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/llvm-compiler-infrastructure.webp", + "id": "692251ee53dd9d7326d33f15", + "slug": "jquery-foundation", + "name": "jQuery Foundation", + "category": "Web", + "description": "jQuery Foundation - home of jQuery, Dojo and many other JavaScript libraries", + "image_url": "https://lh3.googleusercontent.com/3y_twCisHNday397Rh2bgpt0BMwEATMtgr6MxmhH_mT_HT_mqCKRULvmYK7FJLar9czJhWnh_LRCk3_vguTf9LkXMDUcsEQ", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jquery-foundation.webp", "logo_r2_url": null, - "url": "http://www.llvm.org", + "url": "https://jquery.org/", "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2016 ], "first_year": 2016, - "last_year": 2025, - "is_currently_active": true, - "technologies": [ - "c", - "llvm", - "c++", - "clang", - "mlir" - ], - "topics": [ - "optimization", - "static code analysis", - "compiler", - "backend", - "frontend", - "compilers", - "compiler api", - "code analysis", - "programming languages and development tools", - "debuggers", - "development tools", - "libraries" + "last_year": 2016, + "is_currently_active": false, + "technologies": [ + "javascript", + "html5", + "css", + "jquery" ], - "total_projects": 122, + "topics": [ + "unit testing", + "software testing", + "framework development", + "user interface components", + "event handling" + ], + "total_projects": 7, "first_time": false }, { - "id": "692251da53dd9d7326d33e08", - "slug": "lablua", - "name": "LabLua", - "category": "Operating systems", - "description": "Programming Language Research with emphasis on Lua", - "image_url": "https://summerofcode.withgoogle.com/media/org/lablua/thpyrwywpx4z6p6s.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/lablua.webp", + "id": "692251d853dd9d7326d33ded", + "slug": "jsk-robotics-laboratory-the-university-of-tokyo", + "name": "JSK Robotics Laboratory / The University of Tokyo", + "category": "Science and medicine", + "description": "JSK is focusing on the fundamental functions & systems for intelligent robots", + "image_url": "https://lh3.googleusercontent.com/V4f6Ny9M9DvdfuMAgmU_c1SHVpdy5ZK1KuTU9mL-2Y_xF2UgLZzXXilamzydEwVKYsfku91UpC2fKvPdOSh0aIFLrA1u_w", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jsk-robotics-laboratory-the-university-of-tokyo.webp", "logo_r2_url": null, - "url": "http://www.lua.inf.puc-rio.br", + "url": "http://www.jsk.t.u-tokyo.ac.jp/", "active_years": [ 2016, 2017, 2018, - 2019, - 2020, - 2021, - 2024, - 2025 + 2019 ], "first_year": 2016, - "last_year": 2025, - "is_currently_active": true, + "last_year": 2019, + "is_currently_active": false, "technologies": [ - "lua", - "céu", - "elasticsearch", - "luarocks", - "netbsd", - "lunatik", - "pallene", - "kernel" + "ros", + "euslisp", + "openhrp", + "openrtm", + "lisp", + "prolog" ], "topics": [ - "operating systems", - "programming languages", - "distributed systems", - "scripting", - "scripting languages", - "reactive programming", - "kernel scripting", - "compilers", - "reactive languages", - "statically-typed languages" + "robotics", + "artificial intelligence", + "ros" ], - "total_projects": 43, + "total_projects": 4, "first_time": false }, { - "id": "692251da53dd9d7326d33e09", - "slug": "learning-equality", - "name": "Learning Equality", - "category": "End user applications", - "description": "Building equity in education to transform lives", - "image_url": "https://summerofcode.withgoogle.com/media/org/learning-equality/iptmmzjiktknrg9p-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/learning-equality.webp", + "id": "692251d853dd9d7326d33dee", + "slug": "json-schema", + "name": "JSON Schema", + "category": "Data", + "description": "JSON Schema is a vocabulary that allows you to annotate and validate JSON documents \n\nWe are a community JSON Schema enthusiast dedicated to maintain, evolve and promote the JSON Schema specification. The Community consists of individuals, community members, tooling builders, schema designers, researchers, and representatives from companies and organizations who use or are considering using JSON Schema.", + "image_url": "https://summerofcode.withgoogle.com/media/org/json-schema/d3qfjxegxnlrfysi.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/json-schema.webp", "logo_r2_url": null, - "url": "https://learningequality.org/", + "url": "https://json-schema.org/", "active_years": [ - 2021, - 2022, - 2023, 2024, - 2025 + 2025, + 2026 ], - "first_year": 2021, - "last_year": 2025, + "first_year": 2024, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", "javascript", - "django", - "vue.js" + "typescript", + ".net", + "JSON Schema" ], "topics": [ - "education", - "distributed databases", - "offline", - "learning" + "web", + "apis", + "standards", + "data validation", + "developer tooling" ], - "total_projects": 16, + "total_projects": 14, "first_time": false }, { - "id": "692251da53dd9d7326d33e0a", - "slug": "libre-space-foundation", - "name": "Libre Space Foundation", - "category": "Science and medicine", - "description": "Open-source software and hardware technologies for space", - "image_url": "https://lh3.googleusercontent.com/yKTJiijknIgJKL-5LXojkyi-tOdVdrZW1ztAlWaPPMM0_X0r_olR9hNakkrVsjHMiortPpajGakaosnfDbU5G6GJEPHGOdoe5BdUpkHNR18", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/libre-space-foundation.webp", + "id": "692251d953dd9d7326d33df7", + "slug": "k-9-mail", + "name": "K-9 Mail", + "category": "End user applications", + "description": "K-9 Mail – Advanced Email for Android", + "image_url": "https://lh3.googleusercontent.com/krjdwXw2oDdYr4CiiHmacAQfX7YwdVbKxXofGWXcb5BljoNWIV0Z2OJz3HvKkPMktuU3EY3dWbhQ7ulqQiDGPyVj_WjJQ-HH", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/k-9-mail.webp", "logo_r2_url": null, - "url": "https://libre.space", + "url": "https://github.com/k9mail/k-9", "active_years": [ - 2019, - 2020, - 2021 + 2017 ], - "first_year": 2019, - "last_year": 2021, + "first_year": 2017, + "last_year": 2017, "is_currently_active": false, "technologies": [ - "python", - "django", - "c", - "c++", - "arduino", - "raspberry pi", - "sdr", - "embedded", - "space applications", - "machine learning", - "embedded systems" + "android", + "java" ], "topics": [ - "hardware", - "web applications", - "space applications", - "software defined radio", - "cubesats", - "satellite data", - "space standards", - "spacecraft", - "orbital dynamics" + "email", + "communication" ], - "total_projects": 7, + "total_projects": 2, "first_time": false }, { - "id": "692251da53dd9d7326d33e0b", - "slug": "librecube-initiative", - "name": "LibreCube Initiative", - "category": "Science and medicine", - "description": "Open Source Space Exploration", - "image_url": "https://summerofcode.withgoogle.com/media/org/librecube-initiative/zkfjswciuihmdxu1-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/librecube-initiative.webp", + "id": "692251d953dd9d7326d33dfa", + "slug": "kapitan", + "name": "Kapitan", + "category": "Programming languages", + "description": "Templated configuration management for Kubernetes, Terraform and other things", + "image_url": "https://lh3.googleusercontent.com/zircNwClG3cGy7dWVs4jsWn1-wjodnztl3mBi-n6jPXGmME1cz6uFSQFmPrdthHI97lbraFMOeE9K8p6S-tooPbFcyauDpaX", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kapitan.webp", "logo_r2_url": null, - "url": "https://librecube.org", + "url": "https://kapitan.dev/", "active_years": [ - 2021, - 2022, - 2024 + 2019, + 2020 ], - "first_year": 2021, - "last_year": 2024, + "first_year": 2019, + "last_year": 2020, "is_currently_active": false, "technologies": [ "python", - "micropython", - "zmq", - "mbed", - "mongodb", - "rest", - "docker", - "raspberry pi" + "kubernetes", + "jsonnet", + "jinja2", + "terraform", + "python 3" ], "topics": [ - "space", - "cubesat", - "mission control", - "Communication Protocols", - "robotics", - "automation", - "ai", - "Rover" + "cloud", + "kubernetes", + "programming languages", + "great developer tooling" ], - "total_projects": 7, + "total_projects": 2, "first_time": false }, { - "id": "692251da53dd9d7326d33e0c", - "slug": "librehealth", - "name": "LibreHealth", - "category": "Science and medicine", - "description": "Healthcare for Humanity", - "image_url": "https://summerofcode.withgoogle.com/media/org/librehealth/wulnuhdjtsi0ngiv-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/librehealth.webp", + "id": "692251d953dd9d7326d33dfb", + "slug": "kart-project", + "name": "Kart Project", + "category": "Data", + "description": "Distributed version-control for geospatial data", + "image_url": "https://summerofcode.withgoogle.com/media/org/kart-project/mtb71mb4pzybzrp5-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kart-project.webp", "logo_r2_url": null, - "url": "https://librehealth.io", + "url": "https://kartproject.org", "active_years": [ - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023 + 2022 ], - "first_year": 2017, - "last_year": 2023, + "first_year": 2022, + "last_year": 2022, "is_currently_active": false, "technologies": [ - "mysql", - "javascript", - "java", - "php", - "webcomponents", - "android", - "python 3", "python", - "dart/flutter" - ], - "topics": [ - "web", - "web apps", - "ictd", - "health", - "global health", - "medicine", - "deep learning", - "information security", - "mobile-apps", - "radiology", - "mobile apps", - "hfoss" + "c++", + "git", + "gis" ], - "total_projects": 31, + "topics": [ + "version control", + "gis", + "data", + "point clouds", + "spatial" + ], + "total_projects": 1, "first_time": false }, { - "id": "692251da53dd9d7326d33e0d", - "slug": "libreoffice", - "name": "LibreOffice", + "id": "692251d953dd9d7326d33df8", + "slug": "kde-community", + "name": "KDE Community", "category": "End user applications", - "description": "LibreOffice is a free and open source office suite", - "image_url": "https://summerofcode.withgoogle.com/media/org/libreoffice/3g60m1gvsyzwzvvk-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/libreoffice.webp", + "description": "Community of technologists, designers, writers and advocates who work to ensure freedom for all people through our software.", + "image_url": "https://summerofcode.withgoogle.com/media/org/kde-community/1mbnnsqwd2ejcmy8-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kde-community.webp", "logo_r2_url": null, - "url": "https://www.libreoffice.org/", + "url": "https://kde.org/", "active_years": [ 2016, 2017, @@ -8706,1668 +8840,1848 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ - "python", - "android", - "java", + "c++", + "qt", + "cmake", + "php", + "qt5", + "c", + "qml", + "opencv", "opengl", - "c++" + "data structures" ], "topics": [ - "cloud", - "office suite", - "big project", + "education", + "wiki", + "graphics", + "mobile", + "desktop applications", + "science", + "desktop", + "communication", "desktop application", - "end user applications", - "android", - "end user application", - "end-user application" + "applications", + "desktop environment", + "privacy", + "deskstop", + "vr", + "art" ], - "total_projects": 65, + "total_projects": 167, "first_time": false }, { - "id": "692251db53dd9d7326d33e0e", - "slug": "linkerd", - "name": "Linkerd", + "id": "692251d953dd9d7326d33dfc", + "slug": "keploy", + "name": "Keploy", + "category": "Programming languages", + "description": "Unit, API test generation agent using AI & EBPF", + "image_url": "https://summerofcode.withgoogle.com/media/org/keploy/txoec8qr8fyegtmv-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/keploy.webp", + "logo_r2_url": null, + "url": "https://keploy.io", + "active_years": [ + 2023, + 2024, + 2025 + ], + "first_year": 2023, + "last_year": 2025, + "is_currently_active": false, + "technologies": [ + "java", + "golang", + "node.js", + "MERN", + "epbf", + "python", + "ai" + ], + "topics": [ + "API Testing", + "No code platform", + "Dev Tool", + "Functional Testing", + "Mock and Stubs Generation", + "AI/ML", + "AI Testing Agent" + ], + "total_projects": 11, + "first_time": false + }, + { + "id": "692251d953dd9d7326d33dfd", + "slug": "keptn", + "name": "Keptn", "category": "Infrastructure and cloud", - "description": "Linkerd is the ultralight service mesh for Kubernetes and beyond", - "image_url": "https://lh3.googleusercontent.com/OC5OtAHv88jewoffOwBhWygdW4jb-33_nrW_BGZSol_KnQGNLwuQg51nvG89fjCqXNl5Ry82c6txYdW3xzBknr41sJ4PHio", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/linkerd.webp", + "description": "Event-driven orchestration of cloud-native apps", + "image_url": "https://summerofcode.withgoogle.com/media/org/keptn/ey8vcewiadqdgplv-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/keptn.webp", "logo_r2_url": null, - "url": "https://linkerd.io/", + "url": "https://keptn.sh/", "active_years": [ - 2019, - 2020 + 2022 ], - "first_year": 2019, - "last_year": 2020, + "first_year": 2022, + "last_year": 2022, "is_currently_active": false, "technologies": [ - "prometheus", - "react", - "rust", "golang", "kubernetes", - "linkerd" + "angular", + "Helm" ], "topics": [ - "networking", - "kubernetes", - "service mesh", - "cloud native", - "dev-ops", - "containers", - "microservices", - "cloud infrastructure" + "cloud", + "devops", + "sre", + "CloudNative", + "Operations" ], - "total_projects": 4, + "total_projects": 3, "first_time": false }, { - "id": "692251db53dd9d7326d33e0f", - "slug": "liquid-galaxy-project", - "name": "Liquid Galaxy project", - "category": "Data", - "description": "We code immersive and interactive apps with GEarth", - "image_url": "https://summerofcode.withgoogle.com/media/org/liquid-galaxy-project/idbd8hebl6j7ajxn-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/liquid-galaxy-project.webp", + "id": "692251d953dd9d7326d33dfe", + "slug": "kiwix", + "name": "Kiwix", + "category": "End user applications", + "description": "Kiwix provides copies of websites that can be browsed offline. We run scrapers that will crawl a given website and compress it into a single .zim archive (based on the openZIM format). \n\nThe zim files can then be stored locally and read on the fly by Kiwix in such a way that the user experience is similar to being online. \n\nWe can fit the entirety of Wikipedia on a regular Android phone, but there are more than 7,000 zim files available in 100+ languages, mostly focused on educational content (e.g. Wikipedia, StackOverflow, Khan Academy, etc.).\n\n\n\nKiwix runs on all platforms (Linux, Windows, Android, etc.) and has around 10-12 million users worldwide, in pretty much any place you can think of that has limited or no connectivity: prisons, rural schools, refugee camps, even Antarctic bases!\n\nOur big challenge is to make it as easy as possible to access or share offline content.", + "image_url": "https://summerofcode.withgoogle.com/media/org/kiwix/b6zuffwiyoulh0ku-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kiwix.webp", "logo_r2_url": null, - "url": "https://www.liquidgalaxy.eu", + "url": "https://www.kiwix.org", "active_years": [ - 2016, - 2017, + 2018, 2019, 2020, 2021, - 2022, 2023, 2024, - 2025 + 2025, + 2026 ], - "first_year": 2016, - "last_year": 2025, + "first_year": 2018, + "last_year": 2026, "is_currently_active": true, "technologies": [ - "javascript", - "ros", - "gis", - "cesium", - "cesiumjs", "python", "android", + "java", + "c++", + "qt", + "javascript", + "c", "node.js", - "maps api", + "python 3", + "kotlin", + "typescript", + "perl", + "vue.js", + "nodejs" + ], + "topics": [ + "offline", + "android", + "offline access", + "browser", + "compression" + ], + "total_projects": 18, + "first_time": false + }, + { + "id": "692251d953dd9d7326d33df9", + "slug": "knime", + "name": "KNIME", + "category": "Data", + "description": "Open for Innovation", + "image_url": "https://lh3.googleusercontent.com/iH0Kbp7-kU_YMY4NSPqhkc8PTJn5BVK3g6o92I7lkcVDNyqB4sWgVd8GKzKPCAak4nlrpUrT6cY73BQl_TfzbbyCcAGGCaY", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/knime.webp", + "logo_r2_url": null, + "url": "https://knime.com", + "active_years": [ + 2019 + ], + "first_year": 2019, + "last_year": 2019, + "is_currently_active": false, + "technologies": [ + "javascript", "java", - "html", - "vue", - "arduino", - "machinelearning", - "linux", - "flutter", - "Google Earth" + "tensorflow" ], "topics": [ - "virtual reality", - "graphics", - "geospatial", - "visualisation", - "webvr", - "visualization", - "data", - "cluster", - "geo", "machine learning", - "data visualization", - "maps", - "linux", - "google earth", - "networking", - "ux", - "artificial intelligence" + "data science", + "deep learning", + "image processing", + "data analytics" ], - "total_projects": 75, + "total_projects": 2, "first_time": false }, { - "id": "692251db53dd9d7326d33e10", - "slug": "luarocks", - "name": "LuaRocks", - "category": "Programming languages", - "description": "The Lua package manager and ecosystem", - "image_url": "https://lh3.googleusercontent.com/ypThkrucQO6m-pLzB3Xz-D_fmqtnswRC6jmVEHIl8n-1fbWZQtfdvDOUltTNd-Sd3fQiV6uoPLa310yo4gu5hKZn4G1xxD8", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/luarocks.webp", + "id": "692251d953dd9d7326d33dff", + "slug": "kodi", + "name": "Kodi", + "category": "End user applications", + "description": "The ultimate entertainment center", + "image_url": "https://summerofcode.withgoogle.com/media/org/kodi/drlohv8g8h6wfxvo-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kodi.webp", "logo_r2_url": null, - "url": "https://luarocks.org", + "url": "https://kodi.tv", "active_years": [ 2017, 2018, - 2019 + 2019, + 2020, + 2021, + 2022 ], "first_year": 2017, - "last_year": 2019, + "last_year": 2022, "is_currently_active": false, "technologies": [ - "lua", - "luarocks", + "python", + "xml", + "c++11", + "git", + "drupal", + "mysql", "c", - "linux", - "windows", - "unix" + "c++", + "github", + "ffmpeg", + "sqlite", + "opengl" ], "topics": [ - "programming language", - "programming tools", - "package management", - "package manager", - "programming languages", + "audio", + "media center", + "video player", + "media management", + "video", + "home theater", "games", - "package managers" + "media", + "tv" ], - "total_projects": 5, + "total_projects": 12, "first_time": false }, { - "id": "692251db53dd9d7326d33e11", - "slug": "mbdyn", - "name": "MBDyn", - "category": "Science and medicine", - "description": "Open Source Multibody Simulation", - "image_url": "https://summerofcode.withgoogle.com/media/org/mbdyn/ambfdghkrcyizd8l-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mbdyn.webp", + "id": "692251d953dd9d7326d33e00", + "slug": "kolibrios-project-team", + "name": "KolibriOS Project Team", + "category": "Operating systems", + "description": "KolibriOS is a tiny open-source graphical operating system for x86 (and compatible) architecture computers, developed and maintained by the KolibriOS Project Team. It contains a monolithic kernel that runs in 32-bit protected mode and supports full preemptive multitasking.\n\nKolibriOS is a fork of MenuetOS, written almost entirely in FASM (assembly language). However, C, Sphinx C--, C++, Free Pascal, Forth, among other high-level languages and compilers, can also be used in user application development (although FASM is preferred).\n\nThe OS features a rich set of applications that include a word processor, image viewer, graphical editor, textual web browser, and over 30 games. Full FAT12/16/32 and EXT2/3/4 support is implemented, as well as read-only support for NTFS, ISO9660 and XFS. Drivers are written for popular sound, network and graphics cards.\n\nKolibriOS is VERY light on system requirements, using as little as 1MB of disk space and 8MB RAM to run. In terms of processing power, Intel®'s original Pentium® (P5 microarchitecture) or compatible CPU is sufficient to fully enjoy KolibriOS. We strive to become the OS of choice for all older computers, and provide their owners full modern OS experience.", + "image_url": "https://summerofcode.withgoogle.com/media/org/kolibrios-project-team/mrtxpzuxixjqff62-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kolibrios-project-team.webp", "logo_r2_url": null, - "url": "http://www.mbdyn.org/", + "url": "https://kolibrios.org", "active_years": [ 2016, - 2017, - 2019, - 2020, - 2021, - 2022, 2024, - 2025 + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, + "is_currently_active": true, + "technologies": [ + "fasm", + "flat assembler", + "x86 assembly", + "i386", + "i586", + "c", + "assembly", + "asm", + "pci" + ], + "topics": [ + "operating systems", + "hardware", + "desktop", + "drivers", + "lowlevel", + "kernel", + "operating system", + "OS", + "low-level" + ], + "total_projects": 6, + "first_time": false + }, + { + "id": "new_2026_konflux", + "slug": "konflux", + "name": "Konflux", + "category": "Infrastructure and cloud", + "description": "Konflux is an open source, opinionated Kubernetes-native software factory built on Tekton, focused on software supply chain security. It provides an end-to-end pipeline: hermetic builds from source, cryptographic signing, provenance attestation, vulnerability scanning, policy verification, and release automation. Konflux integrates with the broader supply chain security ecosystem (Sigstore, SLSA, Conforma) and is built by a welcoming community that values collaboration, transparency, and mentorship.\nContributors work with cutting-edge cloud-native technologies and help shape how we solve one of the most critical challenges in modern software delivery.", + "image_url": "https://summerofcode.withgoogle.com/media/org/konflux/7znpk8j83biro6rn.png", + "img_r2_url": "https://summerofcode.withgoogle.com/media/org/konflux/7znpk8j83biro6rn.png", + "logo_r2_url": null, + "url": "https://konflux-ci.dev/", + "active_years": [ + 2026 + ], + "first_year": 2026, + "last_year": 2026, "is_currently_active": true, "technologies": [ - "c++", "python", - "scripting", - "c" + "go", + "docker", + "kubernetes", + "tekton" ], "topics": [ + "cloud-native", + "CI/CD", + "Tekton", + "SLSA", + "supplychain" + ], + "total_projects": 0, + "first_time": true + }, + { + "id": "692251da53dd9d7326d33e01", + "slug": "kornia", + "name": "Kornia", + "category": "Programming languages", + "description": "Kornia AI is a non-profit organization advancing Spatial Artificial Intelligence through open collaboration. Founded in 2018 and registered as a non-profit in 2023, Kornia AI is supported by a global contributor community. The organization began with Kornia, a widely adopted Python library for Differentiable Computer Vision (>2M downloads/month, 400+ Google Scholar citations).\n In recent years, the core maintainers have shifted focus to kornia-rs, a native Rust stack for high‑performance 3D computer vision and spatial AI. Our direction emphasizes robotics and edge deployment: safe, memory‑efficient, low‑latency pipelines that run on constrained devices (e.g., embedded/Jetson‑class hardware). kornia-rs is gaining traction in the open-source community and is used by leading companies such as Farm-ng, Rerun.io, and Copper Robotics, who have featured the project on their platforms.", + "image_url": "https://summerofcode.withgoogle.com/media/org/kornia/p4e366l478clqvvg-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kornia.webp", + "logo_r2_url": null, + "url": "https://docs.rs/kornia", + "active_years": [ + 2025, + 2026 + ], + "first_year": 2025, + "last_year": 2026, + "is_currently_active": true, + "technologies": [ + "cuda", + "rust", + "deep learning", + "data science", + "Spatial AI" + ], + "topics": [ + "machine learning", + "artificial intelligence", "robotics", - "engineering", - "real time", - "simulation", - "physics", - "science", - "numerical methods", - "mechanics", - "aerospace", - "linear algebra", - "mechanical engineering", - "aeronautics", - "multibody dynamics", - "aerodynamics", - "scientific computing", - "automotive", - "computational mechanics", - "aeroelasticity", - "multiphysics", - "Structural engineering" + "computer vision", + "3D Geometry" ], - "total_projects": 13, + "total_projects": 2, "first_time": false }, { - "id": "692251db53dd9d7326d33e12", - "slug": "mdanalysis", - "name": "MDAnalysis", - "category": "Science and medicine", - "description": "Analysis of molecular simulations data with Python", - "image_url": "https://summerofcode.withgoogle.com/media/org/mdanalysis/kf8rugznsqeskumi-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mdanalysis.webp", + "id": "692251da53dd9d7326d33e02", + "slug": "kotlin-foundation", + "name": "Kotlin Foundation", + "category": "Programming languages", + "description": "Kotlin is a concise, modern, and versatile programming language designed for multiple platforms.\n\nThe Kotlin Foundation, established by JetBrains and Google, later welcomed Meta, Uber, Gradle, Touchlab, Block, and Kotzilla. Together, we promote and advance Kotlin across multiple platforms, including Android, iOS, web, desktop, and server-side.\n \nCurrently, 100+ engineers from JetBrains and Google contribute to the core Kotlin project, alongside 350+ independent contributors and thousands more supporting the broader Kotlin ecosystem.\n\nThe Kotlin Foundation is committed to protecting, promoting, and advancing the evolution of the Kotlin language.", + "image_url": "https://summerofcode.withgoogle.com/media/org/kotlin-foundation/2wyghqyy8nvvl4cq-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kotlin-foundation.webp", "logo_r2_url": null, - "url": "https://www.mdanalysis.org", + "url": "https://kotlinfoundation.org/", "active_years": [ - 2020, - 2021, - 2022, 2023, 2024, - 2025 + 2025, + 2026 ], - "first_year": 2020, - "last_year": 2025, + "first_year": 2023, + "last_year": 2026, "is_currently_active": true, "technologies": [ - "python", - "cython", - "c", - "c++", - "numpy" + "gradle", + "kotlin", + "jvm", + "Parsers & Compilers", + "Multiplatform" ], "topics": [ - "computational chemistry", - "cheminformatics", - "biophysics", - "molecular simulation", - "molecular dynamics", - "simulation", - "trajectory analysis", - "soft matter physics", - "materials", - "biochemistry", - "science", - "computational-chemistry", - "high-performance-computing", - "molecular-simulation", - "soft-matter-physics", - "machine-learning" + "compilers", + "programming languages", + "software development", + "libraries", + "Programming & Build Tools" ], "total_projects": 16, "first_time": false }, { - "id": "692251db53dd9d7326d33e13", - "slug": "mggg-redistricting-lab", - "name": "MGGG Redistricting Lab", - "category": "End user applications", - "description": "MGGG researches applications in math and computer science for US redistricting", - "image_url": "https://lh3.googleusercontent.com/9xQlcXz44y1uWkk2sE8WCIVXRf8bRYtxsGj9AHxn6CJ2Jqag10Rx7RVFpo_eSngn2W_e5Jdaw34FDhRaHwrsk-bI190NSv_QZ2oWQ0ATeN0k", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mggg-redistricting-lab.webp", + "id": "692251ee53dd9d7326d33f16", + "slug": "kro-kube-resource-orchestrator", + "name": "kro | Kube Resource Orchestrator", + "category": "Infrastructure and cloud", + "description": "Simplify Kubernetes API and resource management.", + "image_url": "https://summerofcode.withgoogle.com/media/org/kro-kube-resource-orchestrator/qf9flxp0iswvhnli-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kro-kube-resource-orchestrator.webp", "logo_r2_url": null, - "url": "https://mggg.org", + "url": "https://kro.run/", "active_years": [ - 2020, - 2021 + 2025 ], - "first_year": 2020, - "last_year": 2021, + "first_year": 2025, + "last_year": 2025, "is_currently_active": false, "technologies": [ - "python", - "javascript", - "julia", - "gis", - "mapping", - "statistics" + "prometheus", + "golang", + "kubernetes", + "controller-runtime", + "CEL" ], "topics": [ - "statistics", - "mapping", - "civic tech", - "graph algorithms", - "web-interface", - "mapping and surveying" + "automation", + "kubernetes", + "configuration management", + "cloud native" ], - "total_projects": 3, + "total_projects": 2, "first_time": false }, { - "id": "692251db53dd9d7326d33e14", - "slug": "mit-app-inventor", - "name": "MIT App Inventor", - "category": "Development tools", - "description": "Anyone can build apps with global impact", - "image_url": "https://summerofcode.withgoogle.com/media/org/mit-app-inventor/8ppq0spvr3j3gx8q-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mit-app-inventor.webp", + "id": "692251da53dd9d7326d33e04", + "slug": "kubeflow", + "name": "Kubeflow", + "category": "Infrastructure and cloud", + "description": "Our goal is to streamline the process of scaling and deploying machine learning (ML) models to production by leveraging Kubernetes' strengths: \n\n- Seamless deployments: Effortless, repeatable, and portable deployments across diverse infrastructure, allowing you to experiment on local machines and then seamlessly transition to on-premises clusters or the cloud.\n\n- Microservice management: Efficient deployment and management of loosely-coupled microservices for building modular and scalable ML pipelines.\n\n- Dynamic scaling: Automated scaling based on demand, ensuring optimal resource utilization.\n\nUser-centric design: Recognizing the diverse tool preferences within the ML community, we prioritize user customization (within reasonable boundaries). Our system takes care of the repetitive tasks, freeing users to focus on the core ML challenges.\n\nStarting focused, expanding rapidly: While we initially focused on specific technologies, we actively collaborate with various projects to integrate additional tools and broaden our reach.\n\nOur vision: A future where simple manifests empower you to utilize a user-friendly ML stack anywhere Kubernetes runs, with self-configuration capabilities based on the deployment environment.", + "image_url": "https://summerofcode.withgoogle.com/media/org/kubeflow/uqphmd1y7opxpjim-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kubeflow.webp", "logo_r2_url": null, - "url": "http://appinventor.mit.edu", + "url": "https://kubeflow.org", "active_years": [ - 2016, - 2017, - 2019, 2020, - 2021, - 2022, - 2023, 2024, - 2025 + 2025, + 2026 ], - "first_year": 2016, - "last_year": 2025, + "first_year": 2020, + "last_year": 2026, "is_currently_active": true, "technologies": [ - "android", - "java", - "html", - "javascript", - "gwt", - "google app engine", - "app", - "google web toolkit", - "junit", - "swift" + "python", + "tensorflow", + "kubernetes", + "jupyter notebook", + "kustomize", + "go", + "typescript", + "YAML" ], "topics": [ - "education", - "educational technology", - "api", - "iot", - "blockchain", - "mobile apps", - "programming languages and development tools", - "mobile", - "web", - "apps", - "development", - "development tools", - "android", - "ios" + "machine learning", + "cloud", + "infrastructure", + "kubernetes", + "AI/ML", + "generative AI" ], - "total_projects": 45, + "total_projects": 21, "first_time": false }, { - "id": "692251db53dd9d7326d33e15", - "slug": "mzmine", - "name": "MZmine", - "category": "Science and medicine", - "description": "Open-source software for mass spectrometry", - "image_url": "https://summerofcode.withgoogle.com/media/org/mzmine/jssbvby4wpz38go8-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mzmine.webp", + "id": "692251da53dd9d7326d33e03", + "slug": "kubevirt", + "name": "KubeVirt", + "category": "Infrastructure and cloud", + "description": "KubeVirt is a virtual machine management extension for Kubenetes, allowing you to create and manage virtualised workloads natively alongside container workloads. It does this by adding virtualization resources through the Kubernetes Custom Resource Definition API.\n\nKubeVirt is a Cloud Native Computing Project (CNCF) incubating project.", + "image_url": "https://summerofcode.withgoogle.com/media/org/kubevirt/pqdi8ojm0atxoo1s-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kubevirt.webp", "logo_r2_url": null, - "url": "https://www.mzmine.org", + "url": "https://kubevirt.io", "active_years": [ - 2020, - 2022 + 2023, + 2024, + 2025, + 2026 ], - "first_year": 2020, - "last_year": 2022, - "is_currently_active": false, + "first_year": 2023, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "java", - "javafx" + "golang", + "grpc" ], "topics": [ - "visualization", - "data processing", - "mass spectrometry", - "molecular analysis", - "molecular networking", - "biochemistry", - "feature detection", - "ion mobility" + "virtualization", + "containers", + "kubernetes" ], - "total_projects": 3, + "total_projects": 4, "first_time": false }, { - "id": "692251db53dd9d7326d33e16", - "slug": "mzmine-and-ms-dial", - "name": "MZmine and MS-DIAL", - "category": "Science and medicine", - "description": "Open-source software for mass spectrometry", - "image_url": "https://summerofcode.withgoogle.com/media/org/mzmine-and-ms-dial/pdqwksmlm0rn7hwq-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mzmine-and-ms-dial.webp", + "id": "692251da53dd9d7326d33e08", + "slug": "lablua", + "name": "LabLua", + "category": "Operating systems", + "description": "LabLua is a research lab at the Catholic University of Rio de Janeiro (PUC-Rio), affiliated with its Computer Science Department. It is dedicated to research on programming languages, with emphasis on the Lua language and reactive programming. It was founded on May 2004 by Prof. Roberto Ierusalimschy, the chief architect of the Lua language.\n\n\nLabLua consists of people from a wide range of backgrounds, including PhD candidates, professors and alumni who are the developers and maintainers of projects that are used by the Lua community at large.\n\n\nWhat is Lua?\n\n\nLua is a powerful, efficient, lightweight, embeddable scripting language. It supports procedural programming, object-oriented programming, functional programming, data-driven programming, and data description.\n\n\nLua has been used in many industrial applications (e.g., Adobe's Photoshop Lightroom), with an emphasis on embedded systems (e.g., the Ginga middleware for digital TV in Brazil) and games (e.g., World of Warcraft and Angry Birds). Several versions of Lua have been released and used in real applications since its creation in 1993.\n\nWhat is Lunatik?\n\nLunatik is an extension framework for Linux that combines the approaches of Extensible Operating Systems and Scripting Languages. This approach, named Kernel Scripting, advocates that OS kernels can be dynamically extended by using a high-level scripting language. Lunatik is a programming and execution environment that offers two main features: it allows developers to make subsystems scriptable and allows users to run Lua scripts in the kernel.\n\nWhat is Pallene?\n\nPallene is a statically-typed programming language, intended to serve as a more performant companion to Lua. It is designed to seamlessly interoperate with Lua, with first-class support for Lua data types. Pallene is able to be faster than Lua (sometimes as fast as LuaJIT) by taking advantage of the type annotations in Pallene in order to guide the compiler into outputting efficient executable code.", + "image_url": "https://summerofcode.withgoogle.com/media/org/lablua/thpyrwywpx4z6p6s.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/lablua.webp", "logo_r2_url": null, - "url": "https://mzmine-ms-dial-gsoc.github.io/", + "url": "http://www.lua.inf.puc-rio.br", "active_years": [ - 2023 + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2024, + 2025, + 2026 ], - "first_year": 2023, - "last_year": 2023, - "is_currently_active": false, + "first_year": 2016, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "java", - "c#", - "javafx" + "lua", + "céu", + "elasticsearch", + "luarocks", + "netbsd", + "lunatik", + "pallene", + "kernel" ], "topics": [ - "data science", - "graphics", - "cheminformatics", - "mass spectrometry", - "feature detection" + "operating systems", + "programming languages", + "distributed systems", + "scripting", + "scripting languages", + "reactive programming", + "kernel scripting", + "compilers", + "reactive languages", + "statically-typed languages" ], - "total_projects": 2, + "total_projects": 43, "first_time": false }, { - "id": "692251db53dd9d7326d33e17", - "slug": "macports", - "name": "MacPorts", + "id": "692251ee53dd9d7326d33f17", + "slug": "languagetoolorg", + "name": "languagetool.org", "category": "End user applications", - "description": "Open Source package manager for macOS.", - "image_url": "https://lh3.googleusercontent.com/Lymw2myNawPMZb74F5Pv2S5aN6nJq_tN5Dbvp6ygfnSPh336b1dmI7KyILWdxfihweAV6kn60bCZo0SkqILOIHSVuyZ_xJw", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/macports.webp", + "description": "Style and grammar checker", + "image_url": "https://lh3.googleusercontent.com/1r4hXN5QZPYz4OQt89c6TTc18tP_C2OpV3gnpaS6c6xHh2T8UtGURUTZ99EI4MDMrTl9r453uP0eNUl_xakmjIWuD7qshCG5", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/languagetoolorg.webp", "logo_r2_url": null, - "url": "https://www.macports.org/", + "url": "https://languagetool.org", "active_years": [ - 2017, - 2018, - 2019, - 2020 + 2018 ], - "first_year": 2017, - "last_year": 2020, + "first_year": 2018, + "last_year": 2018, "is_currently_active": false, "technologies": [ - "make", - "git", - "tcl", - "html", "javascript", - "vue.js", - "frontend", - "react.js", - "c", - "python", - "web", - "scripting", - "buildbot" + "java", + "machine learning", + "tensorflow", + "ai" ], "topics": [ - "package manager", - "mac os x", - "macos", - "build tools", - "command line", - "operating systems", - "libraries", - "package management" + "education", + "artificial intelligence", + "language", + "nlp", + "edtech" ], - "total_projects": 7, + "total_projects": 2, "first_time": false }, { - "id": "692251db53dd9d7326d33e18", - "slug": "machine-learning-for-science-ml4sci", - "name": "Machine Learning for Science (ML4SCI)", - "category": "Science and medicine", - "description": "Machine learning applications in science", - "image_url": "https://summerofcode.withgoogle.com/media/org/machine-learning-for-science-ml4sci/rs5cxhuyh9dpwekt-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/machine-learning-for-science-ml4sci.webp", + "id": "692251da53dd9d7326d33e05", + "slug": "lappis", + "name": "LAPPIS", + "category": "Security", + "description": "Social Participation to Reach Millions", + "image_url": "https://summerofcode.withgoogle.com/media/org/lappis/o9wx8njgmzlcug4n-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/lappis.webp", "logo_r2_url": null, - "url": "https://ml4sci.org/", + "url": "https://www.lappis.rocks", "active_years": [ - 2021, - 2022, - 2023, - 2024, - 2025 + 2024 ], - "first_year": 2021, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2024, + "last_year": 2024, + "is_currently_active": false, "technologies": [ "python", - "c", - "c++", "machine learning", - "data analysis", - "artificial intelligence" + "ruby on rails", + "jupyter hub" ], "topics": [ - "machine learning", - "science and medicine", - "algorithms", - "physics", - "astronomy" + "web development", + "devops", + "innovation", + "Social participation", + "mentoring" ], - "total_projects": 119, + "total_projects": 4, "first_time": false }, { - "id": "692251db53dd9d7326d33e19", - "slug": "mantis", - "name": "Mantis", - "category": "Data", - "description": "Stream Processing for Operational Analytics", - "image_url": "https://summerofcode.withgoogle.com/media/org/mantis/qvsvnpozgrydjrxi-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mantis.webp", + "id": "692251da53dd9d7326d33e06", + "slug": "leap-encryption-access-project", + "name": "LEAP Encryption Access Project", + "category": "End user applications", + "description": "Privacy should not be a priviledge", + "image_url": "https://summerofcode.withgoogle.com/media/org/leap-encryption-access-project/rd167bcc545zvv8w-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/leap-encryption-access-project.webp", "logo_r2_url": null, - "url": "https://netflix.github.io/mantis/", + "url": "https://leap.se", "active_years": [ - 2023 + 2018, + 2022 ], - "first_year": 2023, - "last_year": 2023, + "first_year": 2018, + "last_year": 2022, "is_currently_active": false, "technologies": [ + "python", + "javascript", + "twisted", + "openvpn", + "gnupg", "java", - "Rxjava", - "Akka", - "Netty" + "golang", + "qt5", + "docker", + "ansible" ], "topics": [ - "cloud", - "distributed systems", - "Operational Analytics" + "mail", + "vpn", + "encryption", + "e2e", + "privacy", + "Circumvention" ], "total_projects": 2, "first_time": false }, { - "id": "692251db53dd9d7326d33e1a", - "slug": "mapaction", - "name": "MapAction", - "category": "Other", - "description": "MapAction works on maps and data analysis for the humanitarian sector", - "image_url": "https://lh3.googleusercontent.com/MpkPZV1TvcvM6J2Nt7bd63yGfdHcEeFeIsBNX0nl7SU3e1Cx19ADySgpC2ugpGO5kxgg9jI09BkBbrP5iDmo9EtC66drxdPg6jYTrYewG7of", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mapaction.webp", + "id": "692251da53dd9d7326d33e09", + "slug": "learning-equality", + "name": "Learning Equality", + "category": "End user applications", + "description": "Learning Equality is an education technology nonprofit focused on fostering student-centered learning and advancing organizations working with underserved teachers and learners globally. Through community-driven innovation and strategic partnerships, we provide offline-first, open-source digital tools and implementation support to help them thrive.\nWe create and support open-source technology that directly and focally addresses the infrastructural and resource equity gaps that further marginalize learners with limited Internet. We started by enabling offline access to Khan Academy's videos and exercises and grew to become a key player in the global education technology landscape. For the past 13 years we’ve focused on boosting learning outcomes in some of the most challenging contexts, supporting disconnected learning in refugee camps, rural schools, out-of-school programs, and more.\nLearning Equality develops and maintains Kolibri, an adaptable set of open tools specially designed to support teaching and learning with tech but without the Internet for the third of the world that still lacks access to connectivity.\nKolibri is centered around an offline-first learning platform that runs on a variety of low-cost and legacy devices. It is complemented by a curricular tool, a library of open educational materials, and a toolkit of resources to support training and implementation. These tools are open and available in a variety of languages to better support learners and educators globally.\nAs a community-driven nonprofit, Learning Equality works closely to co-design Kolibri with a core network of collaborators, including national NGOs, UN agencies, government, and corporate partners. We also adopt a needs-based approach, constantly gathering insights from our community to inform the development of our tools.\nThrough its do-it-yourself adoption model and strategic collaborations, Learning Equality has conservatively reached 13 million learners and educators in every country in the world. Given our offline access and distribution model, we learn about usage of Kolibri through a combination of telemetry ping backs of high level, aggregate, anonymized statistics, data from partners, and use of our Kolibri Data Portal. Since instances of Kolibri never need to connect to the Internet to be used, we do not know about usage across every instance, which is why this is an informed estimate from years of data.", + "image_url": "https://summerofcode.withgoogle.com/media/org/learning-equality/iptmmzjiktknrg9p-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/learning-equality.webp", "logo_r2_url": null, - "url": "https://mapaction.org/about-us/", + "url": "https://learningequality.org/", "active_years": [ - 2021 + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ], "first_year": 2021, - "last_year": 2021, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ "python", - "data analysis", - "gis", - "apache airflow", - "visualization" + "javascript", + "django", + "vue.js" ], "topics": [ - "humanitarian", - "maps", - "geospatial", - "data processing", - "google cloud" + "education", + "distributed databases", + "offline", + "learning" ], - "total_projects": 1, + "total_projects": 16, "first_time": false }, { - "id": "692251db53dd9d7326d33e1b", - "slug": "mariadb", - "name": "MariaDB", - "category": "Data", - "description": "The fastest growing Open Source Database", - "image_url": "https://summerofcode.withgoogle.com/media/org/mariadb/0nbzguld3ntsgeqv-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mariadb.webp", + "id": "new_2026_learning-unlimited", + "slug": "learning-unlimited", + "name": "Learning Unlimited", + "category": "End user applications", + "description": "Learning Unlimited's mission is to create educational opportunities for high school and middle school students, and to provide leadership and teaching opportunities for college students. Learning Unlimited strives to engage students of all ages in an educational setting to share and discover their passions. To accomplish this, Learning Unlimited links local universities with their communities. Our open source work revolves around building and maintaining website infrastructure for these chapters to use.", + "image_url": "https://summerofcode.withgoogle.com/media/org/learning-unlimited/prqi7cnmji8guahm-360.png", + "img_r2_url": "https://summerofcode.withgoogle.com/media/org/learning-unlimited/prqi7cnmji8guahm-360.png", "logo_r2_url": null, - "url": "https://mariadb.org", + "url": "https://www.learningu.org/", "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2026 ], - "first_year": 2016, - "last_year": 2025, + "first_year": 2026, + "last_year": 2026, "is_currently_active": true, "technologies": [ - "c", - "mysql", - "mariadb", - "perl", - "java", - "c++", "python", "javascript", - "databases" + "django", + "html", + "css" ], "topics": [ - "databases", - "database", - "sql", - "distributed systems", - "performance", - "cloud", - "Database Engines", - "SQL Features" + "education", + "web", + "full stack", + "Outreach" ], - "total_projects": 39, - "first_time": false + "total_projects": 0, + "first_time": true }, { - "id": "692251dc53dd9d7326d33e1c", - "slug": "mathesar", - "name": "Mathesar", - "category": "Data", - "description": "Webapp providing a UX-first interface to databases", - "image_url": "https://summerofcode.withgoogle.com/media/org/mathesar/v96apwcwn80c3uch-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mathesar.webp", + "id": "692251ee53dd9d7326d33f18", + "slug": "libcamera", + "name": "libcamera", + "category": "Media", + "description": "Provide an open source camera stack for linux", + "image_url": "https://summerofcode.withgoogle.com/media/org/libcamera/p4cgbqxrhkw3igiv-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/libcamera.webp", "logo_r2_url": null, - "url": "https://mathesar.org/", + "url": "https://libcamera.org", "active_years": [ + 2021, 2022, 2023 ], - "first_year": 2022, + "first_year": 2021, "last_year": 2023, "is_currently_active": false, "technologies": [ - "python", - "postgresql", - "javascript", - "django", - "svelte" + "c", + "c++", + "linux kernel", + "qt5", + "gstreamer", + "v4l2" ], "topics": [ - "databases", - "web", - "data", - "nonprofit", - "self-hosted" + "camera", + "image processing", + "image prcessing" ], - "total_projects": 5, + "total_projects": 7, "first_time": false }, { - "id": "692251dc53dd9d7326d33e1d", - "slug": "matrixorg", - "name": "Matrix.org", - "category": "End user applications", - "description": "Open, secure, decentralised communication", - "image_url": "https://summerofcode.withgoogle.com/media/org/matrixorg/nyk4qwnzpfwcezz5-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/matrixorg.webp", + "id": "692251da53dd9d7326d33e0a", + "slug": "libre-space-foundation", + "name": "Libre Space Foundation", + "category": "Science and medicine", + "description": "Open-source software and hardware technologies for space", + "image_url": "https://lh3.googleusercontent.com/yKTJiijknIgJKL-5LXojkyi-tOdVdrZW1ztAlWaPPMM0_X0r_olR9hNakkrVsjHMiortPpajGakaosnfDbU5G6GJEPHGOdoe5BdUpkHNR18", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/libre-space-foundation.webp", "logo_r2_url": null, - "url": "https://matrix.org", + "url": "https://libre.space", "active_years": [ - 2016, - 2017, - 2018, 2019, 2020, - 2021, - 2022 + 2021 ], - "first_year": 2016, - "last_year": 2022, + "first_year": 2019, + "last_year": 2021, "is_currently_active": false, "technologies": [ "python", - "android", - "react", - "golang", - "ios", - "node.js", - "postgresql", - "javascript", - "go", - "rust", + "django", + "c", "c++", - "decentralisation" + "arduino", + "raspberry pi", + "sdr", + "embedded", + "space applications", + "machine learning", + "embedded systems" ], "topics": [ - "collaboration", - "iot", - "real time", - "interoperability", - "communications", - "communication", - "decentralisation", - "instant messaging", - "voip", - "real time communications", - "team chat", - "decentralization", - "realtime communications", - "federated", - "realtime communication", - "chat", - "encryption", - "decentralised", - "decentralized", - "json", - "Secure Messaging" + "hardware", + "web applications", + "space applications", + "software defined radio", + "cubesats", + "satellite data", + "space standards", + "spacecraft", + "orbital dynamics" ], - "total_projects": 29, + "total_projects": 7, "first_time": false }, { - "id": "692251dc53dd9d7326d33e1e", - "slug": "mautic", - "name": "Mautic", - "category": "End user applications", - "description": "Free your Marketing with Open Source!", - "image_url": "https://summerofcode.withgoogle.com/media/org/mautic/p77ddc1xxldz2elv-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mautic.webp", + "id": "692251da53dd9d7326d33e0b", + "slug": "librecube-initiative", + "name": "LibreCube Initiative", + "category": "Science and medicine", + "description": "LibreCube develops an ecosystem of open source space technology for exploration systems. \n\nOur vision is to enable everyone to get involved in building systems for exploration using open source hardware and software. We believe that discovering new worlds and getting scientific insights should be a matter to all humankind.\n\n\nLibreCube is based on these three pillars: \n\n\n1) Open Source: Everything we do at LibreCube is made available to the public free and open source. Also, we only use free and open source tools for our work – this way, really everyone can get involved!\n\n\n2) Free and Open Standards: We rely on proven and tested standards for our system designs, with preference for standards from the space domain.\n\n\n3) Reference Architecture: Defining a generic architecture of system that have standardized interfaces makes it possible to combine and re-use elements for various different mission applications.", + "image_url": "https://summerofcode.withgoogle.com/media/org/librecube-initiative/zkfjswciuihmdxu1-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/librecube-initiative.webp", "logo_r2_url": null, - "url": "https://www.mautic.org", + "url": "https://librecube.org", "active_years": [ - 2024 + 2021, + 2022, + 2024, + 2026 ], - "first_year": 2024, - "last_year": 2024, - "is_currently_active": false, + "first_year": 2021, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "mysql", - "php", - "symfony" + "python", + "micropython", + "zmq", + "mbed", + "mongodb", + "rest", + "docker", + "raspberry pi" ], "topics": [ + "space", + "cubesat", + "mission control", + "Communication Protocols", + "robotics", + "automation", "ai", - "DXP", - "Marketing", - "Marketing Automation", - "Digital Marketing" + "Rover" ], - "total_projects": 2, + "total_projects": 7, "first_time": false }, { - "id": "692251dc53dd9d7326d33e1f", - "slug": "mayors-office-of-new-urban-mechanics", - "name": "Mayor's Office of New Urban Mechanics", - "category": "Data", - "description": "Exploring new approaches to civic life.", - "image_url": "https://summerofcode.withgoogle.com/media/org/mayors-office-of-new-urban-mechanics/nu2mgneanw1efocb-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mayors-office-of-new-urban-mechanics.webp", + "id": "692251da53dd9d7326d33e0c", + "slug": "librehealth", + "name": "LibreHealth", + "category": "Science and medicine", + "description": "LibreHealth is the foundation of a worldwide ecosystem of open source Health IT innovation and is a place where people can come together to build tools that enhance the quality of healthcare around the world.\n\nWe currently have under our umbrella the following projects:\n\n- LibreHealth Toolkit (http://librehealth.io/projects/lh-toolkit/), a foundational base for - building Health IT tools\n\n- LibreHealth EHR (http://librehealth.io/projects/lh-ehr/), an electronic health record derived from best practices and technology from leading open source systems.\n\n- LibreHealth Radiology (https://librehealth.io/projects/lh-radiology), a specialized distribution of LibreHealth Toolkit customized for radiology healthcare professionals\n\nOur GSoC student projects will address the real-life needs of our projects to help improve the delivery of health care around the world. We have a team of expert mentors with decades of experience to help you in your work. They will be continually adding project ideas to our forum (https://forums.librehealth.io), and we encourage you to suggest ideas too as you learn more about our projects.\n\nCheck out project ideas (this will change from year to year): https://forums.librehealth.io/ideas", + "image_url": "https://summerofcode.withgoogle.com/media/org/librehealth/wulnuhdjtsi0ngiv-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/librehealth.webp", "logo_r2_url": null, - "url": "https://www.boston.gov/mechanics", + "url": "https://librehealth.io", "active_years": [ + 2017, + 2018, + 2019, + 2020, 2021, 2022, - 2023 + 2023, + 2026 ], - "first_year": 2021, - "last_year": 2023, - "is_currently_active": false, + "first_year": 2017, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "python", + "mysql", "javascript", - "ruby", - "tensorflow" + "java", + "php", + "webcomponents", + "android", + "python 3", + "python", + "dart/flutter" ], "topics": [ "web", - "machine learning", - "gis", - "civic tech", - "analytics" + "web apps", + "ictd", + "health", + "global health", + "medicine", + "deep learning", + "information security", + "mobile-apps", + "radiology", + "mobile apps", + "hfoss" ], - "total_projects": 9, + "total_projects": 31, "first_time": false }, { - "id": "692251dc53dd9d7326d33e20", - "slug": "mcgill-space-institute", - "name": "McGill Space Institute", - "category": "Science and medicine", - "description": "Center bringing together scientists doing space-related research at McGill", - "image_url": "https://lh3.googleusercontent.com/xYPOD3cQUrdMoAZDukxGEtyUuRyMYYKE0H1z4XCbDn_0RrwcYdD2MtIBjJilqquJF4mT26vbo74tJB5gmEuEqFnAEbI0_MU", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mcgill-space-institute.webp", + "id": "692251da53dd9d7326d33e0d", + "slug": "libreoffice", + "name": "LibreOffice", + "category": "End user applications", + "description": "LibreOffice is a modern Free & Open Source Office suite, one of the largest open source projects, and used by millions of users worldwide. LibreOffice is compatible with many file formats like Microsoft® Word, Excel, PowerPoint and Publisher. At its heart though, LibreOffice is built around an open standard, the OpenDocument Format, as its native file format.\nLibreOffice is developed by users who, just like you, believe in the principles of Free Software and in sharing their work with the world in non-restrictive ways. The development of LibreOffice is supported by The Document Foundation which provides the infrastructure for the project.\nWe believe that users should have the freedom to run, copy, distribute, study, change and improve the software that we distribute. While we do offer no-cost downloads of the LibreOffice suite of programs, Free Software is first and foremost a matter of liberty, not price. We campaign for these freedoms because we believe that everyone deserves them.\nThough the members of our community hail from many different backgrounds, we all value personal choice and transparency, which translates practically into wider compatibility, more utility, and no end-user lock-in to a single product. We believe that Free Software can provide better-quality, higher-reliability, increased-security, and greater-flexibility than proprietary alternatives. LibreOffice is a large project (approx. 6MLOC), which makes it interestingly complex, but at the same time, provides a place for all sorts of contribution & skills.\nThe community behind LibreOffice is the heart of the project, without which we would not have the resources to continue developing our software. The passion and drive that every individual brings to the community results in collaborative development that often exceeds our own expectations. With tons of different roles in the project, we invite everyone to join us in our work and help us to make LibreOffice known, prosper, and accessible to all.", + "image_url": "https://summerofcode.withgoogle.com/media/org/libreoffice/3g60m1gvsyzwzvvk-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/libreoffice.webp", "logo_r2_url": null, - "url": "http://msi.mcgill.ca", + "url": "https://www.libreoffice.org/", "active_years": [ - 2016 + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ], "first_year": 2016, - "last_year": 2016, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ "python", - "sql", - "big data", - "databases" + "android", + "java", + "opengl", + "c++" ], "topics": [ - "astronomy", - "space" + "cloud", + "office suite", + "big project", + "desktop application", + "end user applications", + "android", + "end user application", + "end-user application" ], - "total_projects": 3, + "total_projects": 65, "first_time": false }, { - "id": "692251dc53dd9d7326d33e21", - "slug": "media-cloud", - "name": "Media Cloud", - "category": "Other", - "description": "Media Cloud is an open-source platform for media analysis.", - "image_url": "https://lh3.googleusercontent.com/mBXUpKgF6XBRXAGdU9qKEnXF8nn6WqEtsNF2SgGg9SRZGZUWbdwkOg6vd3poGjfxNkCsLOHeqcX8busN0vJllsvqBPK0ZX5G9ssu65nh19Sr", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/media-cloud.webp", + "id": "692251ee53dd9d7326d33f19", + "slug": "libssh", + "name": "libssh", + "category": "Programming languages", + "description": "This project is for programmers needing a working SSH implementation by the mean of a library. The complete control of the client is made by the programmer. With libssh, you can remotely execute programs, transfer files, use a secure and transparent tunnel for your remote programs. With its Secure FTP implementation, you can play with remote files easily, without third-party programs others than libcrypto (from openssl), libgcrypt or mbedTLS.", + "image_url": "https://summerofcode.withgoogle.com/media/org/libssh/kcfc8lhxh3uyozbu-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/libssh.webp", "logo_r2_url": null, - "url": "https://mediacloud.org/", + "url": "https://www.libssh.org/", "active_years": [ - 2021 + 2022, + 2023, + 2024, + 2025, + 2026 ], - "first_year": 2021, - "last_year": 2021, - "is_currently_active": false, + "first_year": 2022, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "python", - "postgresql", - "javascript", - "react", - "docker" + "c", + "ssh", + "ci", + "git", + "sftp" ], "topics": [ - "research", - "media", - "news-media", - "media-analytics", - "civic-tech" + "security", + "cryptography" ], - "total_projects": 0, + "total_projects": 6, "first_time": false }, { - "id": "692251dc53dd9d7326d33e22", - "slug": "mediapipe", - "name": "MediaPipe", - "category": "Media", - "description": "Live ML anywhere", - "image_url": "https://lh3.googleusercontent.com/WRv3Ylxmbfpn_uG9BwUj5j3d6OqT3yavzflhOzFU1peN48OM9hGctXhKup2C1ansJiCm23WZ5pUe6oeUtn6Mn-OTpefqbTrATQfp9YpTAbHD", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mediapipe.webp", + "id": "692251ee53dd9d7326d33f1a", + "slug": "libvirt", + "name": "libvirt", + "category": "End user applications", + "description": "Virtualization abstraction library", + "image_url": "https://summerofcode.withgoogle.com/media/org/libvirt/8xb4f5zwejage5pf-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/libvirt.webp", "logo_r2_url": null, - "url": "https://mediapipe.dev", + "url": "https://libvirt.org/", "active_years": [ - 2021 + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2024 ], - "first_year": 2021, - "last_year": 2021, + "first_year": 2016, + "last_year": 2024, "is_currently_active": false, "technologies": [ + "c", + "xen", + "qemu", + "containers", + "kvm", + "hypervisor", + "lxc", "python", - "javascript", - "android", - "c++", - "ios" + "virtualization" ], "topics": [ - "machine learning", - "computer vision", - "deep learning", - "real-time", - "ml-inference" + "virtualization", + "cloud", + "library", + "virtual machine", + "container", + "libraries" ], - "total_projects": 6, + "total_projects": 19, "first_time": false }, { - "id": "692251dc53dd9d7326d33e23", - "slug": "meshery", - "name": "Meshery", + "id": "692251db53dd9d7326d33e0e", + "slug": "linkerd", + "name": "Linkerd", "category": "Infrastructure and cloud", - "description": "the extensible, collaborative, Kubernetes manager", - "image_url": "https://summerofcode.withgoogle.com/media/org/meshery/4ywkbdszwd1sw2rq-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/meshery.webp", + "description": "Linkerd is the ultralight service mesh for Kubernetes and beyond", + "image_url": "https://lh3.googleusercontent.com/OC5OtAHv88jewoffOwBhWygdW4jb-33_nrW_BGZSol_KnQGNLwuQg51nvG89fjCqXNl5Ry82c6txYdW3xzBknr41sJ4PHio", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/linkerd.webp", "logo_r2_url": null, - "url": "https://meshery.io", + "url": "https://linkerd.io/", "active_years": [ - 2025 + 2019, + 2020 ], - "first_year": 2025, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2019, + "last_year": 2020, + "is_currently_active": false, "technologies": [ - "javascript", + "prometheus", + "react", + "rust", "golang", "kubernetes", - "visual design" + "linkerd" ], "topics": [ - "collaboration", - "devops", - "Platform Engineering", - "cloud native infrastructure", - "infrastructure as design" + "networking", + "kubernetes", + "service mesh", + "cloud native", + "dev-ops", + "containers", + "microservices", + "cloud infrastructure" ], - "total_projects": 2, - "first_time": true + "total_projects": 4, + "first_time": false }, { - "id": "692251dc53dd9d7326d33e24", - "slug": "metabrainz-foundation-inc", - "name": "MetaBrainz Foundation Inc", + "id": "692251db53dd9d7326d33e0f", + "slug": "liquid-galaxy-project", + "name": "Liquid Galaxy project", "category": "Data", - "description": "Open music / book metadata, music recommendations", - "image_url": "https://summerofcode.withgoogle.com/media/org/metabrainz-foundation-inc/m7lax42edddowwnl-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/metabrainz-foundation-inc.webp", + "description": "Liquid Galaxy is a remarkable panoramic system that is tremendously compelling. It started off as a Google 20% project to run Google Earth across a small cluster of PC's and it has grown from there! \nLiquid Galaxy hardware consists of one or more computers driving multiple displays. Liquid Galaxy applications have been developed using a master/slave architecture. The view orientation of each slave display is configured in reference to the view of the master display. Navigation on the system is done from the master instance and the location on the master is broadcast to the slaves over UDP. The slave instances, knowing their own locations in reference to the master, then change their views accordingly.\nThe Liquid Galaxy Project, while making use of Google Earth software, does not develop the Google Earth code-base itself. Google Earth is not open-source software, although it is free (as in beer). Instead, the Liquid Galaxy Project works on extending the Liquid Galaxy system with open-source software both improving its administration and enabling open-source applications, so that content of various types can be displayed in the immersive panoramic environment.\nArtificial Intelligence focus:\n2026 is the year when AI is going to change the coding industry, and GSoC and the open-source projects on it, have to jump on.\nAt the Liquid Galaxy community, we’ve been using AI for years to obtain data to be shown on Google Earth for our projects, using many models and technologies. \nThis 2026, all the projects will have an Artificial Intelligence voice, and most of them will use of diferent AI models to handle queries and arrange data, starting from Google's Gemini and Gemma.", + "image_url": "https://summerofcode.withgoogle.com/media/org/liquid-galaxy-project/idbd8hebl6j7ajxn-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/liquid-galaxy-project.webp", "logo_r2_url": null, - "url": "https://metabrainz.org", + "url": "https://www.liquidgalaxy.eu", "active_years": [ 2016, 2017, - 2018, 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ - "python", - "postgresql", "javascript", - "perl", - "postgres", - "bigquery", - "react", - "solr", - "spark", - "rust", - "machine learning" + "ros", + "gis", + "cesium", + "cesiumjs", + "python", + "android", + "node.js", + "maps api", + "java", + "html", + "vue", + "arduino", + "machinelearning", + "linux", + "flutter", + "Google Earth", + "nodejs" ], "topics": [ - "machine learning", - "music", - "metadata", - "big data", - "books", - "open data", - "community", + "virtual reality", + "graphics", + "geospatial", + "visualisation", + "webvr", + "visualization", "data", - "databases", - "hosting", - "Music recommendation", - "music social network" + "cluster", + "geo", + "machine learning", + "data visualization", + "maps", + "linux", + "google earth", + "networking", + "ux", + "artificial intelligence" ], - "total_projects": 60, + "total_projects": 75, "first_time": false }, { - "id": "692251dc53dd9d7326d33e25", - "slug": "metacall", - "name": "MetaCall", + "id": "692251da53dd9d7326d33e07", + "slug": "llvm-compiler-infrastructure", + "name": "LLVM Compiler Infrastructure", "category": "Programming languages", - "description": "Simplifying the embedding of programming languages", - "image_url": "https://summerofcode.withgoogle.com/media/org/metacall/rezoq3uue7dpdzw5-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/metacall.webp", + "description": "The LLVM Project is a collection of modular and reusable compiler and toolchain technologies. Despite its name, LLVM has little to do with traditional virtual machines. The name \"LLVM\" itself is not an acronym; it is the full name of the project.\n\nLLVM began as a research project at the University of Illinois, with the goal of providing a modern, SSA-based compilation strategy capable of supporting both static and dynamic compilation of arbitrary programming languages. Since then, LLVM has grown to be an umbrella project consisting of a number of subprojects, many of which are being used in production by a wide variety of commercial and open source projects as well as being widely used in academic research.\n\nIn addition to official subprojects of LLVM, there are a broad variety of other projects that use components of LLVM for various tasks. Through these external projects you can use LLVM to compile Ruby, Python, Haskell, Rust, D, PHP, Pure, Lua, Julia, and a number of other languages. A major strength of LLVM is its versatility, flexibility, and reusability, which is why it is being used for such a wide variety of different tasks: everything from doing light-weight JIT compiles of embedded languages like Lua to compiling Fortran code for massive super computers.", + "image_url": "https://summerofcode.withgoogle.com/media/org/llvm-compiler-infrastructure/ize6lrlftlvdxtqe-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/llvm-compiler-infrastructure.webp", "logo_r2_url": null, - "url": "https://metacall.io", + "url": "http://www.llvm.org", "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, 2021, 2022, 2023, - 2024 + 2024, + 2025, + 2026 ], - "first_year": 2021, - "last_year": 2024, - "is_currently_active": false, + "first_year": 2016, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "python", - "javascript", "c", + "llvm", "c++", - "cmake", - "guix", - "rust", - "node.js", - "docker" + "clang", + "mlir" ], "topics": [ - "programming languages", + "optimization", + "static code analysis", + "compiler", + "backend", + "frontend", + "compilers", + "compiler api", + "code analysis", + "programming languages and development tools", + "debuggers", "development tools", - "cross-platform", - "polyglot", - "foreign function interface", - "cloud", - "faas", - "languages", - "ffi" + "libraries" ], - "total_projects": 19, + "total_projects": 122, "first_time": false }, { - "id": "692251dc53dd9d7326d33e26", - "slug": "metasploit", - "name": "Metasploit", - "category": "Security", - "description": "World’s most used penetration testing framework", - "image_url": "https://summerofcode.withgoogle.com/media/org/metasploit/ggisatrqgjavuwd7-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/metasploit.webp", + "id": "692251ee53dd9d7326d33f1b", + "slug": "lowrisc", + "name": "lowRISC", + "category": "Other", + "description": "Open to the core - collaborative engineering for open source silicon and tools", + "image_url": "https://lh3.googleusercontent.com/nXwbNqY-sFoaSOqayF8cQozzvByH5OO1523rq2G1g1LY99QjrwnBOSxRTBdpzljlgde9flGHfs-usWVQp6MYOWkF3xjMpRI", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/lowrisc.webp", "logo_r2_url": null, - "url": "https://metasploit.com", + "url": "https://www.lowrisc.org", "active_years": [ + 2016, 2017, - 2018, - 2020, - 2021, - 2022, - 2023 + 2020 ], - "first_year": 2017, - "last_year": 2023, + "first_year": 2016, + "last_year": 2020, "is_currently_active": false, "technologies": [ - "c", - "ruby", - "asm", + "linux", + "verilog", + "fpga", + "chisel", + "c++", + "risc-v", "python", - "postgresql", - "assembly" + "systemverilog" ], "topics": [ "security", - "exploitation", - "penetration testing", - "offensive security" + "education", + "embedded hardware", + "system-on-chip", + "debug", + "hardware", + "fpga", + "soc", + "compilers", + "open hardware" ], - "total_projects": 12, + "total_projects": 10, "first_time": false }, { - "id": "692251dc53dd9d7326d33e27", - "slug": "micro-electronics-research-lab-uitu", - "name": "Micro Electronics Research Lab - UITU", - "category": "Other", - "description": "Accelerating Engineering Innovation", - "image_url": "https://summerofcode.withgoogle.com/media/org/micro-electronics-research-lab-uitu/el9byq6f4dfc1y77-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/micro-electronics-research-lab-uitu.webp", + "id": "692251db53dd9d7326d33e10", + "slug": "luarocks", + "name": "LuaRocks", + "category": "Programming languages", + "description": "The Lua package manager and ecosystem", + "image_url": "https://lh3.googleusercontent.com/ypThkrucQO6m-pLzB3Xz-D_fmqtnswRC6jmVEHIl8n-1fbWZQtfdvDOUltTNd-Sd3fQiV6uoPLa310yo4gu5hKZn4G1xxD8", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/luarocks.webp", "logo_r2_url": null, - "url": "https://www.merledupk.org", + "url": "https://luarocks.org", "active_years": [ - 2022, - 2023, - 2024, - 2025 + 2017, + 2018, + 2019 ], - "first_year": 2022, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2017, + "last_year": 2019, + "is_currently_active": false, "technologies": [ - "RISCV", - "Processor", - "Hardware", - "systemonchip", - "memory" + "lua", + "luarocks", + "c", + "linux", + "windows", + "unix" ], "topics": [ - "iot", - "embedded", - "Processor", - "System on Chip", - "RISC-V" + "programming language", + "programming tools", + "package management", + "package manager", + "programming languages", + "games", + "package managers" ], - "total_projects": 12, + "total_projects": 5, "first_time": false - }, - { - "id": "692251dc53dd9d7326d33e28", - "slug": "microkernel-devroom", - "name": "Microkernel devroom", - "category": "Operating systems", - "description": "Confederation of microkernel projects (Genode, HelenOS, GNU Hurd, MINIX, Redox)", - "image_url": "https://lh3.googleusercontent.com/XeXZIspaZAf8QZNUxWJBehgrnCcvKiy5WIAja2N9AEGcaQC81kS1lzPkh38BYkJJMkPBVTUmAvMoBAAMnQX-Lw-AgxE19Ab0", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/microkernel-devroom.webp", + }, + { + "id": "692251db53dd9d7326d33e18", + "slug": "machine-learning-for-science-ml4sci", + "name": "Machine Learning for Science (ML4SCI)", + "category": "Science and medicine", + "description": "Machine Learning for Science (ML4SCI) is an umbrella organization for machine learning-related projects in science. ML4SCI brings together researchers from universities and scientific laboratories with motivated students to join existing scientific collaborations and contribute to cutting edge science projects across a wide variety of disciplines. Students work on existing problems to develop new machine learning-based approaches and produce open source code that directly contributes to solving these scientific challenges. \n\nML4SCI currently includes projects from a variety of fields. For example, some of them explore the uses of machine learning for particle reconstruction and classification in high-energy physics, deep learning-based searches for dark matter in astrophysics, applications of machine learning techniques to data returned from planetary science missions, applications of quantum machine learning to science, and others.\n\nMachine learning ideas and approaches can be broadly applicable and transferable across the scientific domains. The goals of ML4SCI projects are to grow the open-source community in machine learning for science by addressing important scientific challenges and transferring the knowledge and tools of machine learning across the disciplines. We look forward to your applications!", + "image_url": "https://summerofcode.withgoogle.com/media/org/machine-learning-for-science-ml4sci/rs5cxhuyh9dpwekt-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/machine-learning-for-science-ml4sci.webp", "logo_r2_url": null, - "url": "http://www.microkernel.info/", + "url": "https://ml4sci.org/", "active_years": [ - 2017 + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ], - "first_year": 2017, - "last_year": 2017, - "is_currently_active": false, + "first_year": 2021, + "last_year": 2026, + "is_currently_active": true, "technologies": [ + "python", "c", "c++", - "rust", - "arm", - "x86" + "machine learning", + "data analysis", + "artificial intelligence" ], "topics": [ - "virtualization", - "desktop", - "microkernel", - "components", - "ipc" + "machine learning", + "science and medicine", + "algorithms", + "physics", + "astronomy" ], - "total_projects": 3, + "total_projects": 119, "first_time": false }, { - "id": "692251dd53dd9d7326d33e29", - "slug": "mixxx", - "name": "Mixxx", + "id": "692251db53dd9d7326d33e17", + "slug": "macports", + "name": "MacPorts", "category": "End user applications", - "description": "DJ Mixing App With Powerful Features For All DJs", - "image_url": "https://summerofcode.withgoogle.com/media/org/mixxx/ivlj1kl8jabpmfs9-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mixxx.webp", + "description": "Open Source package manager for macOS.", + "image_url": "https://lh3.googleusercontent.com/Lymw2myNawPMZb74F5Pv2S5aN6nJq_tN5Dbvp6ygfnSPh336b1dmI7KyILWdxfihweAV6kn60bCZo0SkqILOIHSVuyZ_xJw", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/macports.webp", "logo_r2_url": null, - "url": "https://mixxx.org", + "url": "https://www.macports.org/", "active_years": [ - 2016, 2017, 2018, - 2020, - 2022, - 2024, - 2025 + 2019, + 2020 ], - "first_year": 2016, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2017, + "last_year": 2020, + "is_currently_active": false, "technologies": [ - "opengl", - "c++", - "qt", - "c++11", - "audio", - "midi", - "hid", - "music", - "real-time", + "make", + "git", + "tcl", + "html", "javascript", - "deep learning", - "pytorch", - "onnx" + "vue.js", + "frontend", + "react.js", + "c", + "python", + "web", + "scripting", + "buildbot" ], "topics": [ - "music", - "real time", - "audio", - "dj", - "dsp", - "art", - "metadata", - "beatdetection", - "streaming", - "music information retrieval" + "package manager", + "mac os x", + "macos", + "build tools", + "command line", + "operating systems", + "libraries", + "package management" ], - "total_projects": 16, + "total_projects": 7, "first_time": false }, { - "id": "692251dd53dd9d7326d33e2a", - "slug": "mobile-robot-programming-toolkit-mrpt", - "name": "Mobile Robot Programming Toolkit (MRPT)", + "id": "new_2026_malariagen", + "slug": "malariagen", + "name": "MalariaGEN", "category": "Science and medicine", - "description": "Empowering C++ development in robotics", - "image_url": "https://lh3.googleusercontent.com/w2l4mVMo8PxUGi4V63Zd6mHHOeUc1k1lewYp4bPyltlnLgbvNuVlZJG4MdPW9AxnQ52AJu_t8DFtPTYU--17Tjc99sxqNqw", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mobile-robot-programming-toolkit-mrpt.webp", + "description": "MalariaGEN is a global network of global partners who share and integrate data relevant to inform malaria surveillance, our mission is to generate insights and tools that bridge the gaps for analysts in malaria endemic settings to use their data meaningfully to inform public health efforts. We build and optimise data resources and analytical tools to run directly in the cloud. Our flagship project is the Vector Observatory, which includes whole-genome sequence data for over 30,000 mosquitoes, integrating data from 70 partners across the globe from over 17 different mosquito species -- this is the largest resource on genetic variation data for any multicellular organism (other than humans!). Our goal is to enable analysts, scientists, students and public health practitioners to access these data without the need for any dedicated compute infrastructure, by optimising our resources to run within free compute environments (a big shout to Google Colab!) and by developing training resources that support partners to get confident with using cloud-native data and resources for their analysis.", + "image_url": "https://summerofcode.withgoogle.com/media/org/malariagen/8dgzolp37fdiwm5h-360.png", + "img_r2_url": "https://summerofcode.withgoogle.com/media/org/malariagen/8dgzolp37fdiwm5h-360.png", "logo_r2_url": null, - "url": "https://www.mrpt.org", + "url": "https://www.malariagen.net/", "active_years": [ - 2016, - 2017, - 2018 + 2026 ], - "first_year": 2016, - "last_year": 2018, - "is_currently_active": false, + "first_year": 2026, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "ros", - "opencv", - "c++", - "qt", - "cmake", - "opengl", - "wxwidgets", "python", - "c", - "webs" + "GCS" ], "topics": [ - "robotics", - "vision", - "slam", - "selfdriving", - "mobile robots", - "computer vision", - "algorithms", - "webapps", - "ai", - "real-time", - "robot" + "machine learning", + "genomics", + "big data", + "cloud", + "analytics" ], - "total_projects": 8, - "first_time": false + "total_projects": 0, + "first_time": true }, { - "id": "692251dd53dd9d7326d33e2b", - "slug": "modsecurity", - "name": "ModSecurity", - "category": "Security", - "description": "ModSecurity cross platform web application firewall", - "image_url": "https://lh3.googleusercontent.com/bbraUY_kSKjJuWLwpBERcy5TPV8xlVudlVqLDHRZtOENox8UB1iH2QjxyxsVGwCM5a26YdE9zznCAor94xMhtqebI7vc6Bo", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/modsecurity.webp", + "id": "692251db53dd9d7326d33e19", + "slug": "mantis", + "name": "Mantis", + "category": "Data", + "description": "Stream Processing for Operational Analytics", + "image_url": "https://summerofcode.withgoogle.com/media/org/mantis/qvsvnpozgrydjrxi-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mantis.webp", "logo_r2_url": null, - "url": "http://www.modsecurity.org", + "url": "https://netflix.github.io/mantis/", "active_years": [ - 2016 + 2023 ], - "first_year": 2016, - "last_year": 2016, + "first_year": 2023, + "last_year": 2023, "is_currently_active": false, "technologies": [ - "waf", - "web application firewall" + "java", + "Rxjava", + "Akka", + "Netty" ], "topics": [ - "web application security" + "cloud", + "distributed systems", + "Operational Analytics" ], - "total_projects": 3, + "total_projects": 2, "first_time": false }, { - "id": "692251dd53dd9d7326d33e2c", - "slug": "moira", - "name": "Moira", - "category": "Programming languages", - "description": "Moira is a realtime alerting system based on Graphite data", - "image_url": "https://lh3.googleusercontent.com/St549uV6D0eslwOwI2SyLFzn7fMDknX0P5p8EBkxVXwsKe_mDDLaWr7BYvo731-Zb6LrCDwPblOxbEKBpm8VxUAVyFRQN6t-", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/moira.webp", + "id": "692251db53dd9d7326d33e1a", + "slug": "mapaction", + "name": "MapAction", + "category": "Other", + "description": "MapAction works on maps and data analysis for the humanitarian sector", + "image_url": "https://lh3.googleusercontent.com/MpkPZV1TvcvM6J2Nt7bd63yGfdHcEeFeIsBNX0nl7SU3e1Cx19ADySgpC2ugpGO5kxgg9jI09BkBbrP5iDmo9EtC66drxdPg6jYTrYewG7of", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mapaction.webp", "logo_r2_url": null, - "url": "https://moira.readthedocs.io/", + "url": "https://mapaction.org/about-us/", "active_years": [ - 2019, - 2020 + 2021 ], - "first_year": 2019, - "last_year": 2020, + "first_year": 2021, + "last_year": 2021, "is_currently_active": false, "technologies": [ - "javascript", - "golang", - "grafana", - "typescript", - "graphite", - "react" + "python", + "data analysis", + "gis", + "apache airflow", + "visualization" ], "topics": [ - "monitoring", - "devops", - "devtools", - "alerting", - "sre" + "humanitarian", + "maps", + "geospatial", + "data processing", + "google cloud" ], - "total_projects": 3, + "total_projects": 1, "first_time": false }, { - "id": "692251dd53dd9d7326d33e2d", - "slug": "monado", - "name": "Monado", - "category": "Media", - "description": "Monado, the free and open source XR platform", - "image_url": "https://summerofcode.withgoogle.com/media/org/monado/uch9jarqbeko6nep-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/monado.webp", + "id": "692251db53dd9d7326d33e1b", + "slug": "mariadb", + "name": "MariaDB", + "category": "Data", + "description": "MariaDB Foundation is the non-profit organization behind MariaDB Server, the fastest growing open source databases. MariaDB Foundation's mission is to ensure the continuity of the MariaDB Server code as well as foster and facilitated collaboration within the MariaDB ecosystem. As part of GSoC, MariaDB Foundation seeks to bring more developers into the MariaDB Server (and related projects) code base.", + "image_url": "https://summerofcode.withgoogle.com/media/org/mariadb/0nbzguld3ntsgeqv-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mariadb.webp", "logo_r2_url": null, - "url": "https://monado.freedesktop.org/", + "url": "https://mariadb.org", "active_years": [ - 2022 + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ], - "first_year": 2022, - "last_year": 2022, - "is_currently_active": false, + "first_year": 2016, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "opengl", - "vulkan", - "openxr", - "Graphics", - "XR" + "c", + "mysql", + "mariadb", + "perl", + "java", + "c++", + "python", + "javascript", + "databases", + "c/c++" ], "topics": [ - "vr", - "xr", - "AR" + "databases", + "database", + "sql", + "distributed systems", + "performance", + "cloud", + "Database Engines", + "SQL Features" ], - "total_projects": 2, + "total_projects": 39, "first_time": false }, { - "id": "692251dd53dd9d7326d33e2e", - "slug": "mono-project", - "name": "Mono Project", - "category": "Programming languages", - "description": "Cross-platform C#/F#/.NET runtime and tools", - "image_url": "https://lh3.googleusercontent.com/Wnx2UKIIjXTvvrIgRrPHvnIbw6WXjSbBGOleTchd-Kv0D9gbrdmf21-x9IpyXYONEza_KVi1TkwcIiyUpn8kOQV2wD3PGmo", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mono-project.webp", + "id": "692251dc53dd9d7326d33e1c", + "slug": "mathesar", + "name": "Mathesar", + "category": "Data", + "description": "Webapp providing a UX-first interface to databases", + "image_url": "https://summerofcode.withgoogle.com/media/org/mathesar/v96apwcwn80c3uch-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mathesar.webp", "logo_r2_url": null, - "url": "http://www.mono-project.com/", + "url": "https://mathesar.org/", "active_years": [ - 2017 + 2022, + 2023 ], - "first_year": 2017, - "last_year": 2017, + "first_year": 2022, + "last_year": 2023, "is_currently_active": false, "technologies": [ - "c", - "c#", - ".net", - "f#" + "python", + "postgresql", + "javascript", + "django", + "svelte" ], "topics": [ - "web development", - "programming tools", - "ide", - "mobile development", - "compiler" + "databases", + "web", + "data", + "nonprofit", + "self-hosted" ], - "total_projects": 9, + "total_projects": 5, "first_time": false }, { - "id": "692251dd53dd9d7326d33e2f", - "slug": "moodle", - "name": "Moodle", - "category": "Social and communication", - "description": "Empowering educators to improve our world", - "image_url": "https://lh3.googleusercontent.com/tVi2arz1wSGuftyHK1NkpIeie1tbz3lNTJxiHXS0TldjWfgCP95-JTckc-DW-7Uh0j3mRGJf_vDpf36dgFiwIlg3y5bhBXfp", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/moodle.webp", + "id": "692251dc53dd9d7326d33e1d", + "slug": "matrixorg", + "name": "Matrix.org", + "category": "End user applications", + "description": "Open, secure, decentralised communication", + "image_url": "https://summerofcode.withgoogle.com/media/org/matrixorg/nyk4qwnzpfwcezz5-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/matrixorg.webp", "logo_r2_url": null, - "url": "https://moodle.org/", + "url": "https://matrix.org", "active_years": [ 2016, 2017, 2018, - 2019 + 2019, + 2020, + 2021, + 2022 ], "first_year": 2016, - "last_year": 2019, + "last_year": 2022, "is_currently_active": false, "technologies": [ - "mysql", + "python", + "android", + "react", + "golang", + "ios", + "node.js", "postgresql", "javascript", - "php", - "jquery", - "sql", - "angular", - "ionic" + "go", + "rust", + "c++", + "decentralisation" ], "topics": [ - "education", - "web applications", - "e-learning", - "learning management", - "school systems", - "web application", - "school system" + "collaboration", + "iot", + "real time", + "interoperability", + "communications", + "communication", + "decentralisation", + "instant messaging", + "voip", + "real time communications", + "team chat", + "decentralization", + "realtime communications", + "federated", + "realtime communication", + "chat", + "encryption", + "decentralised", + "decentralized", + "json", + "Secure Messaging" ], - "total_projects": 7, + "total_projects": 29, "first_time": false }, { - "id": "692251dd53dd9d7326d33e30", - "slug": "moveit", - "name": "MoveIt", - "category": "Science and medicine", - "description": "Moving robots into the future", - "image_url": "https://summerofcode.withgoogle.com/media/org/moveit/zmatlwnrrfqcdsjo-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/moveit.webp", + "id": "692251dc53dd9d7326d33e1e", + "slug": "mautic", + "name": "Mautic", + "category": "End user applications", + "description": "Free your Marketing with Open Source!", + "image_url": "https://summerofcode.withgoogle.com/media/org/mautic/p77ddc1xxldz2elv-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mautic.webp", "logo_r2_url": null, - "url": "https://moveit.ros.org", + "url": "https://www.mautic.org", "active_years": [ - 2020, - 2021, - 2022, - 2023, 2024 ], - "first_year": 2020, + "first_year": 2024, "last_year": 2024, "is_currently_active": false, "technologies": [ - "ros", - "c++", - "c", - "python 3", - "robotics", - "python", - "rust" + "mysql", + "php", + "symfony" ], "topics": [ - "robotics", - "motion planning", - "trajectory generation", - "kinematics" + "ai", + "DXP", + "Marketing", + "Marketing Automation", + "Digital Marketing" ], - "total_projects": 10, + "total_projects": 2, "first_time": false }, { - "id": "692251dd53dd9d7326d33e31", - "slug": "mozilla", - "name": "Mozilla", - "category": "Web", - "description": "Keeping the Internet open and accessible to all.", - "image_url": "https://lh3.googleusercontent.com/v2ra_3qtUJJNbGmGrsnqw2xVpfWQLL2Xr6KUHr3ah4_aP8F37Ylm-1nuPDl33bwHKruUD5OEJ_Doa6VGmYWT_paWKA40g6k3", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mozilla.webp", + "id": "692251dc53dd9d7326d33e1f", + "slug": "mayors-office-of-new-urban-mechanics", + "name": "Mayor's Office of New Urban Mechanics", + "category": "Data", + "description": "Exploring new approaches to civic life.", + "image_url": "https://summerofcode.withgoogle.com/media/org/mayors-office-of-new-urban-mechanics/nu2mgneanw1efocb-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mayors-office-of-new-urban-mechanics.webp", "logo_r2_url": null, - "url": "https://mozilla.org", + "url": "https://www.boston.gov/mechanics", "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020 + 2021, + 2022, + 2023 ], - "first_year": 2016, - "last_year": 2020, + "first_year": 2021, + "last_year": 2023, "is_currently_active": false, "technologies": [ "python", "javascript", - "c++", - "rust", - "html", - "css", - "react", - "html5", - "web development" + "ruby", + "tensorflow" ], "topics": [ "web", - "mozilla", - "firefox", - "internet", - "education", - "web platform and services", - "web browser", - "free software", - "open web", - "browser", - "privacy/security", - "internet freedom", - "web technologies", - "open source", - "devtools", - "information security" - ], - "total_projects": 75, - "first_time": false - }, - { - "id": "692251dd53dd9d7326d33e32", - "slug": "musescore", - "name": "MuseScore", - "category": "End user applications", - "description": "The World’s Most Popular Music Notation Software", - "image_url": "https://summerofcode.withgoogle.com/media/org/musescore/tgkjkzlqhj0qru5z.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/musescore.webp", + "machine learning", + "gis", + "civic tech", + "analytics" + ], + "total_projects": 9, + "first_time": false + }, + { + "id": "692251db53dd9d7326d33e11", + "slug": "mbdyn", + "name": "MBDyn", + "category": "Science and medicine", + "description": "Open Source Multibody Simulation", + "image_url": "https://summerofcode.withgoogle.com/media/org/mbdyn/ambfdghkrcyizd8l-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mbdyn.webp", "logo_r2_url": null, - "url": "https://musescore.org/", + "url": "http://www.mbdyn.org/", "active_years": [ 2016, 2017, - 2018, 2019, 2020, 2021, 2022, - 2023, - 2024 + 2024, + 2025 ], "first_year": 2016, - "last_year": 2024, + "last_year": 2025, "is_currently_active": false, "technologies": [ - "c", "c++", - "qt", - "qml", - "c++11", - "qt5", - "breakpad", - "cpp", - "midi", - "cmake" + "python", + "scripting", + "c" ], "topics": [ - "music", - "notation", - "midi", - "musicxml", - "sheet music", - "music engraving", - "user interface", - "end user applications", - "music notation", - "composing", - "notation software", - "piano", - "guitar", - "audio", - "engraving" + "robotics", + "engineering", + "real time", + "simulation", + "physics", + "science", + "numerical methods", + "mechanics", + "aerospace", + "linear algebra", + "mechanical engineering", + "aeronautics", + "multibody dynamics", + "aerodynamics", + "scientific computing", + "automotive", + "computational mechanics", + "aeroelasticity", + "multiphysics", + "Structural engineering" ], - "total_projects": 24, + "total_projects": 13, "first_time": false }, { - "id": "692251dd53dd9d7326d33e33", - "slug": "nv-access", - "name": "NV Access", - "category": "Other", - "description": "Empowering lives through non-visual access to technology", - "image_url": "https://lh3.googleusercontent.com/R8PoVA1d2FhpRtRzpiQsmbxJbkxFcnTZFRCBCP7QJGPcRPzX7XukICQvGHoGrHBHcmJ8f_bIO__XIXGZBW6Bxux-hiXDBuM", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/nv-access.webp", + "id": "692251dc53dd9d7326d33e20", + "slug": "mcgill-space-institute", + "name": "McGill Space Institute", + "category": "Science and medicine", + "description": "Center bringing together scientists doing space-related research at McGill", + "image_url": "https://lh3.googleusercontent.com/xYPOD3cQUrdMoAZDukxGEtyUuRyMYYKE0H1z4XCbDn_0RrwcYdD2MtIBjJilqquJF4mT26vbo74tJB5gmEuEqFnAEbI0_MU", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mcgill-space-institute.webp", "logo_r2_url": null, - "url": "https://www.nvaccess.org/", + "url": "http://msi.mcgill.ca", "active_years": [ - 2019, - 2020 + 2016 ], - "first_year": 2019, - "last_year": 2020, + "first_year": 2016, + "last_year": 2016, "is_currently_active": false, "technologies": [ "python", - "c++", - "ui automation", - "iaccessible2", - "win32 api" + "sql", + "big data", + "databases" ], "topics": [ - "accessibility", - "blindness", - "screen reader", - "braille", - "text to speech" + "astronomy", + "space" ], - "total_projects": 2, + "total_projects": 3, "first_time": false }, { - "id": "692251dd53dd9d7326d33e34", - "slug": "named-data-networking-project", - "name": "Named Data Networking Project", - "category": "Web", - "description": "A Content-Centric Future Internet architecture", - "image_url": "https://lh3.googleusercontent.com/xkQpjOYnfflUCW0ZdNDW3IMvyVB_1oq7XFWCDkxCkEwihelm44Wg5veYUpVFBkVn1UqedlNvAUpIJzg0ak_hB5l3PUXMJw", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/named-data-networking-project.webp", + "id": "692251db53dd9d7326d33e12", + "slug": "mdanalysis", + "name": "MDAnalysis", + "category": "Science and medicine", + "description": "MDAnalysis is a Python library for the analysis of computer simulations of many-body systems at the molecular scale, spanning use cases from interactions of drugs with proteins to novel materials. It is written by scientists for scientists and is used for cutting edge research in biophysics, chemistry, soft-matter physics, and materials research around the world in academia and national research labs. MDAnalysis strives to be highly interoperable and hence a growing number of projects use MDAnalysis as their foundational library or integrate it.\n\nThe goal of MDAnalysis is to make it easy for users to analyze data that are produced by simulations (primarily molecular dynamics simulations) that run on some of the largest supercomputers in the world. MDAnalysis accomplishes this goal by providing a toolkit of programming building blocks that provide an abstract Python interface to the simulation data — agnostic of the specific simulation package that produced it — that lends itself to interactive data exploration and rapid prototyping but is also a robust foundational library that can form the basis for new computational tools.\n\nMDAnalysis allows one to read particle-based trajectories such as the ones produced by MD simulations or individual coordinate frames (such as biomolecules in the Protein Databank format) and access the atomic coordinates through NumPy arrays. Together with a powerful selection language and many implemented analysis algorithms, MDAnalysis provides a flexible and fast framework for complex analysis tasks. Welcoming documentation such as the User Guide https://userguide.mdanalysis.org/ make it easy to get started. New releases are downloaded a few thousand times and the academic papers describing MDAnalysis are cited more than almost two thousand times, indicating the widespread use in the academic community.", + "image_url": "https://summerofcode.withgoogle.com/media/org/mdanalysis/kf8rugznsqeskumi-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mdanalysis.webp", "logo_r2_url": null, - "url": "http://named-data.net/", + "url": "https://www.mdanalysis.org", "active_years": [ - 2019 + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ], - "first_year": 2019, - "last_year": 2019, - "is_currently_active": false, + "first_year": 2020, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "javascript", - "android", - "java", - "c++14", - "c#" + "python", + "cython", + "c", + "c++", + "numpy", + "c/c++" ], "topics": [ - "networking", - "informationc centric networking", - "ipfs" + "computational chemistry", + "cheminformatics", + "biophysics", + "molecular simulation", + "molecular dynamics", + "simulation", + "trajectory analysis", + "soft matter physics", + "materials", + "biochemistry", + "science", + "computational-chemistry", + "high-performance-computing", + "molecular-simulation", + "soft-matter-physics", + "machine-learning" ], - "total_projects": 2, + "total_projects": 16, "first_time": false }, { - "id": "692251dd53dd9d7326d33e35", - "slug": "national-resource-for-network-biology-nrnb", - "name": "National Resource for Network Biology (NRNB)", - "category": "Science and medicine", - "description": "Developing open source tools for network biology", - "image_url": "https://summerofcode.withgoogle.com/media/org/national-resource-for-network-biology-nrnb/5uobjboaxnzrxyoj-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/national-resource-for-network-biology-nrnb.webp", + "id": "new_2026_measurement-lab", + "slug": "measurement-lab", + "name": "Measurement Lab", + "category": "Data", + "description": "Founded in 2009, Measurement Lab (M-Lab) is an open platform for studying Internet performance and neutrality over time. We provide public, transparent data to empower researchers, policymakers, and open Internet advocates to make informed decisions about Internet infrastructure and policies.", + "image_url": "https://summerofcode.withgoogle.com/media/org/measurement-lab/0sttrnvo03uejp1z.png", + "img_r2_url": "https://summerofcode.withgoogle.com/media/org/measurement-lab/0sttrnvo03uejp1z.png", "logo_r2_url": null, - "url": "https://nrnb.org/gsoc.html", + "url": "https://www.measurementlab.net/", "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2026 ], - "first_year": 2016, - "last_year": 2025, + "first_year": 2026, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", "javascript", - "java", - "c++", - "php", - "c", "html", - "web", - "r", - "rest", - "xml", - "json", + "sql", "css" ], "topics": [ - "web", - "bioinformatics", - "biology", - "systems biology", - "dataviz", - "database", - "graphics", - "ui/ux", - "network biology", - "data visualization", - "web applications", - "network analysis", - "data modeling", - "web application", - "data science", - "scientific computing", - "machine learning" + "data analysis", + "speed test", + "Internet measurements", + "Internet quality" ], - "total_projects": 119, - "first_time": false + "total_projects": 0, + "first_time": true }, { - "id": "692251dd53dd9d7326d33e36", - "slug": "navidrome", - "name": "Navidrome", - "category": "Web", - "description": "Modern music server and streamer compatible with Subsonic/Airsonic", - "image_url": "https://lh3.googleusercontent.com/y873A4ZT7B_Uic1kArXJQXzofatM0HaQoFAJjVfJrPuQwtV0vMizh-kvW_v0ixlm99wwIb9u6OcKEWrrMrBb0yFVQbkJ5cmi3QWEaRqbuqc1", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/navidrome.webp", + "id": "692251dc53dd9d7326d33e21", + "slug": "media-cloud", + "name": "Media Cloud", + "category": "Other", + "description": "Media Cloud is an open-source platform for media analysis.", + "image_url": "https://lh3.googleusercontent.com/mBXUpKgF6XBRXAGdU9qKEnXF8nn6WqEtsNF2SgGg9SRZGZUWbdwkOg6vd3poGjfxNkCsLOHeqcX8busN0vJllsvqBPK0ZX5G9ssu65nh19Sr", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/media-cloud.webp", + "logo_r2_url": null, + "url": "https://mediacloud.org/", + "active_years": [ + 2021 + ], + "first_year": 2021, + "last_year": 2021, + "is_currently_active": false, + "technologies": [ + "python", + "postgresql", + "javascript", + "react", + "docker" + ], + "topics": [ + "research", + "media", + "news-media", + "media-analytics", + "civic-tech" + ], + "total_projects": 0, + "first_time": false + }, + { + "id": "692251dc53dd9d7326d33e22", + "slug": "mediapipe", + "name": "MediaPipe", + "category": "Media", + "description": "Live ML anywhere", + "image_url": "https://lh3.googleusercontent.com/WRv3Ylxmbfpn_uG9BwUj5j3d6OqT3yavzflhOzFU1peN48OM9hGctXhKup2C1ansJiCm23WZ5pUe6oeUtn6Mn-OTpefqbTrATQfp9YpTAbHD", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mediapipe.webp", "logo_r2_url": null, - "url": "https://navidrome.org", + "url": "https://mediapipe.dev", "active_years": [ 2021 ], @@ -10375,2855 +10689,2828 @@ "last_year": 2021, "is_currently_active": false, "technologies": [ - "react", - "golang", - "ffmpeg" + "python", + "javascript", + "android", + "c++", + "ios" ], "topics": [ - "web", - "music", - "streaming" + "machine learning", + "computer vision", + "deep learning", + "real-time", + "ml-inference" ], - "total_projects": 1, + "total_projects": 6, "first_time": false }, { - "id": "692251de53dd9d7326d33e37", - "slug": "neovim", - "name": "Neovim", - "category": "End user applications", - "description": "hyperextensible Vim-based text editor", - "image_url": "https://summerofcode.withgoogle.com/media/org/neovim/wsjrusphcrjmo5tf-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/neovim.webp", + "id": "692251dc53dd9d7326d33e23", + "slug": "meshery", + "name": "Meshery", + "category": "Infrastructure and cloud", + "description": "As a self-service engineering platform, Meshery enables collaborative design and operation of cloud and cloud native infrastructure.\n\nMeshery is for all cloud and cloud native infrastructure. Kubernetes-centric. Kubernetes not required.\n\nInfrastructure diversity is a reality for any enterprise. Whether you’re running a single Kubernetes cluster or multiple Kubernetes clusters, on one cloud or multiple clouds, you’ll find that Meshery supports your infrastructure diversity (or lack thereof).\n\nMeshery is for engineering teams. Whether you are a Platform Engineer, Site Reliability Engineer, DevOps Engineer, Developer, or Operator, Meshery provides a platform for you to collaborate on the design and operation of your cloud native infrastructure.\n\nWhether making a Day 0 adoption choice, a Day 1 configuration and provisioning, or maintaining a Day 2 deployment, Meshery has useful capabilities in either circumstance. Targeted audience for Meshery project would be any technology operators that leverage Cloud and cloud native infrastructure.\n\nMeshery is like Google Docs for DevOps. Using Meshery extensions you can freely collaborate across projects and team with multi-player infrastructure design and operation.\n\nMeshery enables cloud native best practices with design patterns and the Meshery Catalog. Through Models, Meshery describes infrastructure under management, enabling you to define cloud native designs and patterns and then to export those designs and share within the Meshery Catalog.", + "image_url": "https://summerofcode.withgoogle.com/media/org/meshery/4ywkbdszwd1sw2rq-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/meshery.webp", "logo_r2_url": null, - "url": "https://neovim.io/", + "url": "https://meshery.io", "active_years": [ - 2018, - 2019, - 2020, - 2025 + 2025, + 2026 ], - "first_year": 2018, - "last_year": 2025, + "first_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ - "c", - "python", "javascript", - "lua", - "vim", - "rpc" + "golang", + "kubernetes", + "visual design", + "ai" ], "topics": [ - "text editor", - "vim", - "cross platform", - "tools", - "developer tools", - "cross-platform", - "editor", - "system programming", - "programming", - "ai", - "text-editor" + "collaboration", + "devops", + "Platform Engineering", + "cloud native infrastructure", + "infrastructure as design" ], - "total_projects": 8, + "total_projects": 2, "first_time": false }, { - "id": "692251de53dd9d7326d33e38", - "slug": "netfilter-project", - "name": "Netfilter project", - "category": "Operating systems", - "description": "Firewalling, NAT and packet mangling for Linux", - "image_url": "https://lh3.googleusercontent.com/PXmFpc9huYwQ7dPtTUuAHE3wiw1Kd4hEZwm25wicFtGaF5Yy5pxhyoDvqnLr243AP-CVZ-9_CQJmnoimUsFjjNomUYYJoHTm", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/netfilter-project.webp", + "id": "692251dc53dd9d7326d33e24", + "slug": "metabrainz-foundation-inc", + "name": "MetaBrainz Foundation Inc", + "category": "Data", + "description": "The MetaBrainz Foundation is a non-profit that believes in free, open access to data. It has been set up to build community maintained databases and make them available in the public domain or under Creative Commons licenses.\n\nOur data is mostly gathered by volunteers and verified by peer review to ensure it is consistent and correct. All non-commercial use of this data is free, but commercial users are asked to support us in order to help fund the project. We encourage all data users to contribute to the data gathering process so that our data can be as comprehensive as possible.\n\nWith this data we are building a music social network and bias free music recommendations.", + "image_url": "https://summerofcode.withgoogle.com/media/org/metabrainz-foundation-inc/m7lax42edddowwnl-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/metabrainz-foundation-inc.webp", "logo_r2_url": null, - "url": "https://www.netfilter.org", + "url": "https://metabrainz.org", "active_years": [ 2016, 2017, 2018, - 2019 + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ], "first_year": 2016, - "last_year": 2019, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "networking", - "linux kernel", - "firewall", - "c", - "linux", - "kernel" + "python", + "postgresql", + "javascript", + "perl", + "postgres", + "bigquery", + "react", + "solr", + "spark", + "rust", + "machine learning" ], "topics": [ - "networking", - "firewall", - "linux kernel", - "computer networking", - "software defined networking", - "network monitoring", - "network security" + "machine learning", + "music", + "metadata", + "big data", + "books", + "open data", + "community", + "data", + "databases", + "hosting", + "Music recommendation", + "music social network" ], - "total_projects": 11, + "total_projects": 60, "first_time": false }, { - "id": "692251de53dd9d7326d33e39", - "slug": "netty", - "name": "Netty", - "category": "Web", - "description": "Netty is an asynchronous event-driven network framework", - "image_url": "https://lh3.googleusercontent.com/27iH7LkW_01hQarGnCxs2vY36zcIObRcog6ek5PXIV1Bd-wO5RaYf_aeavWUgHebuhJzyTjPQbxl69QseV6XjEgc8DDiYHU", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/netty.webp", + "id": "692251dc53dd9d7326d33e25", + "slug": "metacall", + "name": "MetaCall", + "category": "Programming languages", + "description": "When working with different technologies and developers of different programming languages, the productivity of the entire team worsens due to the lack of interoperability and communication between them. If the developers need two technologies which are written in different programming languages, for instance, a C/C++ library called from NodeJS, the team usually needs to port to one of the two languages or write a wrapper around them. Maintaining a port of a library or the plumbing code is frequently error-prone, time-consuming, and does not add any value to the final product.\n\nThe main objective of MetaCall is to provide a transparent interoperability in both ways, no matter what language you are using, so you feel like you are using a library written in the same language but in fact, it may be written in C, NodeJS or any other language.\n\nMetaCall currently provides a mechanism to introspect the types and function signatures, which allows us to provide this type info to the caller language. You can have type safety and at the same time avoid boilerplate in both directions.\n\nIt addresses the main shortcomings of embedding independent languages separately. Having a common implementation with a plugin architecture allows you to implement newer languages without rewriting more code. With a single solution you get C#, Ruby, Python or any other language you prefer. We can improve the core continuously and add new languages.\n\nFinally, we are using the polyglot runtime in cloud computing so we take advantage of the interoperability capabilities and allow to build complex polyglot distributed systems with ease. It is possible to build monolithic and mono-repo projects that can be distributed and scaled separately through our Function as a Service built on top of MetaCall, allowing the developer to maximize the productivity without the need of DevOps plumbing or thinking about intercommunication protocols and architectural details.", + "image_url": "https://summerofcode.withgoogle.com/media/org/metacall/rezoq3uue7dpdzw5-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/metacall.webp", "logo_r2_url": null, - "url": "https://netty.io", + "url": "https://metacall.io", "active_years": [ - 2020 + 2021, + 2022, + 2023, + 2024, + 2026 ], - "first_year": 2020, - "last_year": 2020, - "is_currently_active": false, + "first_year": 2021, + "last_year": 2026, + "is_currently_active": true, "technologies": [ + "python", + "javascript", "c", - "java", - "jni" + "c++", + "cmake", + "guix", + "rust", + "node.js", + "docker", + "nodejs" ], "topics": [ - "network", - "nonblocking", - "async" + "programming languages", + "development tools", + "cross-platform", + "polyglot", + "foreign function interface", + "cloud", + "faas", + "languages", + "ffi" ], - "total_projects": 1, + "total_projects": 19, "first_time": false }, { - "id": "692251de53dd9d7326d33e3a", - "slug": "neuroinformatics-unit", - "name": "Neuroinformatics Unit", - "category": "Science and medicine", - "description": "Open-source tools for neuroscience and ML", - "image_url": "https://summerofcode.withgoogle.com/media/org/neuroinformatics-unit/ebzgcbxkxvbe9igk.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/neuroinformatics-unit.webp", + "id": "new_2026_metaflow", + "slug": "metaflow", + "name": "Metaflow", + "category": "Infrastructure and cloud", + "description": "Metaflow is a human-friendly Python library that makes it straightforward to develop, deploy, and operate various kinds of data-intensive applications, in particular those involving data science, ML, and AI. Metaflow was originally developed at Netflix to boost the productivity of data scientists who work on a wide variety of projects, from classical statistics to state-of-the-art deep learning. \n\nMetaflow provides a unified API across the entire infrastructure stack required to execute data science projects from prototype to production.", + "image_url": "https://summerofcode.withgoogle.com/media/org/metaflow/lxpx64opqtnss7yx-360.png", + "img_r2_url": "https://summerofcode.withgoogle.com/media/org/metaflow/lxpx64opqtnss7yx-360.png", "logo_r2_url": null, - "url": "https://neuroinformatics.dev", + "url": "https://metaflow.org/", "active_years": [ - 2025 + 2026 ], - "first_year": 2025, - "last_year": 2025, + "first_year": 2026, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", - "numpy", - "pytorch", - "Scipy", - "napari" - ], - "topics": [ - "visualization", - "neuroscience", - "data-science", - "Computer-Vision", - "neuroanatomy" - ], - "total_projects": 2, - "first_time": true - }, - { - "id": "692251de53dd9d7326d33e3b", - "slug": "neutralinojs", - "name": "Neutralinojs", - "category": "Web", - "description": "Lightweight cross-platform desktop app framework", - "image_url": "https://summerofcode.withgoogle.com/media/org/neutralinojs/thloxs47w1aa1uts-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/neutralinojs.webp", - "logo_r2_url": null, - "url": "https://neutralino.js.org", - "active_years": [ - 2022, - 2024 - ], - "first_year": 2022, - "last_year": 2024, - "is_currently_active": false, - "technologies": [ - "c", "javascript", - "node.js", - "c++", - "typescript" + "kubernetes" ], "topics": [ - "desktop", - "framework", - "cross-platform", - "Application Development" + "machine learning", + "data science", + "ML Ops", + "Orchestrator" ], - "total_projects": 4, - "first_time": false + "total_projects": 0, + "first_time": true }, { - "id": "692251de53dd9d7326d33e3c", - "slug": "nightwatchjs", - "name": "Nightwatch.js", - "category": "Programming languages", - "description": "An integrated testing framework powered by Node.js", - "image_url": "https://summerofcode.withgoogle.com/media/org/nightwatchjs/slpwnkwtngatafl1-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/nightwatchjs.webp", + "id": "692251dc53dd9d7326d33e26", + "slug": "metasploit", + "name": "Metasploit", + "category": "Security", + "description": "The Metasploit Framework is both a penetration testing system and a development platform for creating security tools and exploits. The framework is used by network security professionals to perform penetration tests, system administrators to verify patch installations, product vendors to perform regression testing, and security researchers world-wide. The framework is written in the Ruby programming language and includes components written in C, many flavors of Assembly, Python, Powershell, PHP, and other languages.\n\nThe framework consists of tools, libraries, modules, and user interfaces. The basic function of the framework is a module launcher, allowing the user to configure an exploit module and launch it at a target system. If the exploit succeeds, the payload is executed on the target and the user is provided with a shell to interact with the payload. Hundreds of exploits and dozens of payload options are available.", + "image_url": "https://summerofcode.withgoogle.com/media/org/metasploit/ggisatrqgjavuwd7-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/metasploit.webp", "logo_r2_url": null, - "url": "https://nightwatchjs.org", + "url": "https://metasploit.com", "active_years": [ - 2024 + 2017, + 2018, + 2020, + 2021, + 2022, + 2023, + 2026 ], - "first_year": 2024, - "last_year": 2024, - "is_currently_active": false, + "first_year": 2017, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "javascript", - "selenium", - "node.js", - "typescript", - "WebDriver" + "c", + "ruby", + "asm", + "python", + "postgresql", + "assembly" ], "topics": [ - "unit testing", - "Functional Testing", - "End-To-End Testing", - "Component testing", - "Native mobile app testing" + "security", + "exploitation", + "penetration testing", + "offensive security" ], - "total_projects": 2, + "total_projects": 12, "first_time": false }, { - "id": "692251de53dd9d7326d33e3d", - "slug": "nixos-foundation", - "name": "NixOS Foundation", - "category": "Programming languages", - "description": "Declarative builds and deployments", - "image_url": "https://summerofcode.withgoogle.com/media/org/nixos-foundation/kvnnwp7viwupdsep.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/nixos-foundation.webp", + "id": "692251db53dd9d7326d33e13", + "slug": "mggg-redistricting-lab", + "name": "MGGG Redistricting Lab", + "category": "End user applications", + "description": "MGGG researches applications in math and computer science for US redistricting", + "image_url": "https://lh3.googleusercontent.com/9xQlcXz44y1uWkk2sE8WCIVXRf8bRYtxsGj9AHxn6CJ2Jqag10Rx7RVFpo_eSngn2W_e5Jdaw34FDhRaHwrsk-bI190NSv_QZ2oWQ0ATeN0k", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mggg-redistricting-lab.webp", "logo_r2_url": null, - "url": "https://nixos.org/", + "url": "https://mggg.org", "active_years": [ - 2024 + 2020, + 2021 ], - "first_year": 2024, - "last_year": 2024, + "first_year": 2020, + "last_year": 2021, "is_currently_active": false, "technologies": [ - "git", - "nix" + "python", + "javascript", + "julia", + "gis", + "mapping", + "statistics" ], "topics": [ - "declarative", - "reproducible", - "InfrastrucutreAsCode" + "statistics", + "mapping", + "civic tech", + "graph algorithms", + "web-interface", + "mapping and surveying" ], "total_projects": 3, "first_time": false }, { - "id": "692251de53dd9d7326d33e3e", - "slug": "nmap-security-scanner", - "name": "Nmap Security Scanner", - "category": "Security", - "description": "Swiss Army knife of network discovery and security auditing", - "image_url": "https://lh3.googleusercontent.com/lQ6DoH3aMVO2MR3rpw0gAQNFybSqZ1VkFXb1rBy0GAtKT0Xm-PM-Vdq3hY29BlgkIVphh_YeZP-oBL4g45yhpzPDupN7Qg", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/nmap-security-scanner.webp", + "id": "692251dc53dd9d7326d33e27", + "slug": "micro-electronics-research-lab-uitu", + "name": "Micro Electronics Research Lab - UITU", + "category": "Other", + "description": "Accelerating Engineering Innovation", + "image_url": "https://summerofcode.withgoogle.com/media/org/micro-electronics-research-lab-uitu/el9byq6f4dfc1y77-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/micro-electronics-research-lab-uitu.webp", "logo_r2_url": null, - "url": "https://nmap.org/", + "url": "https://www.merledupk.org", "active_years": [ - 2016, - 2017 + 2022, + 2023, + 2024, + 2025 ], - "first_year": 2016, - "last_year": 2017, + "first_year": 2022, + "last_year": 2025, "is_currently_active": false, "technologies": [ - "c", - "python", - "c++", - "lua" + "RISCV", + "Processor", + "Hardware", + "systemonchip", + "memory" ], "topics": [ - "security", - "networking", - "linux", - "ipv6", - "network mapping" + "iot", + "embedded", + "Processor", + "System on Chip", + "RISC-V" ], - "total_projects": 9, + "total_projects": 12, "first_time": false }, { - "id": "692251de53dd9d7326d33e3f", - "slug": "numfocus", - "name": "NumFOCUS", - "category": "Science and medicine", - "description": "NumFOCUS promotes open source scientific software.", - "image_url": "https://summerofcode.withgoogle.com/media/org/numfocus/wimcwc2v6kjlidqc-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/numfocus.webp", + "id": "692251dc53dd9d7326d33e28", + "slug": "microkernel-devroom", + "name": "Microkernel devroom", + "category": "Operating systems", + "description": "Confederation of microkernel projects (Genode, HelenOS, GNU Hurd, MINIX, Redox)", + "image_url": "https://lh3.googleusercontent.com/XeXZIspaZAf8QZNUxWJBehgrnCcvKiy5WIAja2N9AEGcaQC81kS1lzPkh38BYkJJMkPBVTUmAvMoBAAMnQX-Lw-AgxE19Ab0", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/microkernel-devroom.webp", "logo_r2_url": null, - "url": "https://numfocus.org", + "url": "http://www.microkernel.info/", "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2017 ], - "first_year": 2016, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2017, + "last_year": 2017, + "is_currently_active": false, "technologies": [ - "python", - "javascript", - "r", - "julia", "c", - "c++" + "c++", + "rust", + "arm", + "x86" ], "topics": [ - "data science", - "graphics", - "scientific computing", - "numerical computation", - "machine learning", - "data visualization", - "big data", - "high performance computing", - "statistical computing", - "pydata", - "numerical computing", - "ai" + "virtualization", + "desktop", + "microkernel", + "components", + "ipc" ], - "total_projects": 277, + "total_projects": 3, "first_time": false }, { - "id": "692251de53dd9d7326d33e40", - "slug": "osgeo-open-source-geospatial-foundation", - "name": "OSGeo (Open Source Geospatial Foundation)", - "category": "End user applications", - "description": "The Open Source Geospatial Foundation", - "image_url": "https://summerofcode.withgoogle.com/media/org/osgeo-open-source-geospatial-foundation/yundulx00fbd1akm-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/osgeo-open-source-geospatial-foundation.webp", + "id": "692251db53dd9d7326d33e14", + "slug": "mit-app-inventor", + "name": "MIT App Inventor", + "category": "Development tools", + "description": "MIT App Inventor is a free, open source web app that anyone can use to build mobile apps. It has been used by over 8 million people worldwide who have built more than 30 million apps. It is available in twelve different languages and used by people from ages 13 and up.", + "image_url": "https://summerofcode.withgoogle.com/media/org/mit-app-inventor/8ppq0spvr3j3gx8q-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mit-app-inventor.webp", "logo_r2_url": null, - "url": "https://www.osgeo.org/", + "url": "http://appinventor.mit.edu", "active_years": [ 2016, 2017, - 2018, 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ - "c", - "python", - "ogc standards", - "c++", - "sql", + "android", "java", - "database", - "standards", - "open source databases", - "javascript" + "html", + "javascript", + "gwt", + "google app engine", + "app", + "google web toolkit", + "junit", + "swift" ], "topics": [ - "science", - "gis", - "maps", - "geospatial", - "cartography", - "open science", - "citizen science", - "mapping", - "geoinformatics", - "computer vision", - "geolocation", - "databases", - "routing" + "education", + "educational technology", + "api", + "iot", + "blockchain", + "mobile apps", + "programming languages and development tools", + "mobile", + "web", + "apps", + "development", + "development tools", + "android", + "ios" ], - "total_projects": 101, + "total_projects": 45, "first_time": false }, { - "id": "692251de53dd9d7326d33e41", - "slug": "osu-open-source-lab", - "name": "OSU Open Source Lab", - "category": "Other", - "description": "OSU Open Source Lab", - "image_url": "https://lh3.googleusercontent.com/1ea3BlKTMB549woaO4J5-vuqdMAWsdu2xEXr3JDa_cFRhdC_2mbRrcpIxn-01J0mtLQMlkn7CPco0CR20AyqXNso5iemXbo", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/osu-open-source-lab.webp", + "id": "692251dd53dd9d7326d33e29", + "slug": "mixxx", + "name": "Mixxx", + "category": "End user applications", + "description": "Mixxx is a feature rich DJ mixing application. It supports many MIDI and HID DJ controllers, runs on Win Linux and MacOs. It supports effects, harmonic mixing and beatmatching.\n\nMixxx has an unusually broad community for an open-source project, encompassing performing musicians, C++ addicts, amateur DJs, Internet radio broadcasters, and casual users.", + "image_url": "https://summerofcode.withgoogle.com/media/org/mixxx/ivlj1kl8jabpmfs9-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mixxx.webp", "logo_r2_url": null, - "url": "http://osuosl.org", + "url": "https://mixxx.org", "active_years": [ - 2016 + 2016, + 2017, + 2018, + 2020, + 2022, + 2024, + 2025, + 2026 ], "first_year": 2016, - "last_year": 2016, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "python", + "opengl", + "c++", + "qt", + "c++11", + "audio", + "midi", + "hid", + "music", + "real-time", "javascript", - "ruby", - "rest" + "deep learning", + "pytorch", + "onnx" ], "topics": [ - "virtualization", - "infrastructure" + "music", + "real time", + "audio", + "dj", + "dsp", + "art", + "metadata", + "beatdetection", + "streaming", + "music information retrieval" ], - "total_projects": 1, + "total_projects": 16, "first_time": false }, { - "id": "692251de53dd9d7326d33e42", - "slug": "ow2", - "name": "OW2", - "category": "Other", - "description": "The open source community for infrastructure software.", - "image_url": "https://lh3.googleusercontent.com/zQhBjcSPVUqpmZhhdBQAumSlsm_j06H6ibTQAxY2Mq3HbqawRkUcR7DJXyyT6nj-Wfi4JQ7cTotGVER9axt2B6H6axqp1g", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ow2.webp", + "id": "new_2026_mllam", + "slug": "mllam", + "name": "MLLAM", + "category": "Science and medicine", + "description": "MLLAM is a collaborative community dedicated to advancing machine learning applications in weather forecasting, specifically for Limited Area Modeling (LAM). The organization hosts several open-source key repositories, including neural-lam, which focuses on neural weather prediction using graph-based models. Members are from various research institutions and national weather services committed to improve weather forecasting at regional, high-resolution scale.", + "image_url": "https://summerofcode.withgoogle.com/media/org/mllam/ltm3mtlosvdcrw0c.png", + "img_r2_url": "https://summerofcode.withgoogle.com/media/org/mllam/ltm3mtlosvdcrw0c.png", "logo_r2_url": null, - "url": "http://www.ow2.org", + "url": "https://github.com/mllam", "active_years": [ - 2018 + 2026 ], - "first_year": 2018, - "last_year": 2018, - "is_currently_active": false, + "first_year": 2026, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "java", - "perl", - "middleware", - "bpm", - "wiki" + "python", + "numpy", + "pytorch", + "xarray", + "Zarr" ], "topics": [ - "security", - "cloud", - "middleware", - "enterprise information systems" + "machine learning", + "ai", + "deep learning", + "earth science", + "Weather Forecasting" ], "total_projects": 0, - "first_time": false + "first_time": true }, { - "id": "692251de53dd9d7326d33e43", - "slug": "owasp-foundation", - "name": "OWASP Foundation", - "category": "Security", - "description": "No more insecure software.", - "image_url": "https://summerofcode.withgoogle.com/media/org/owasp-foundation/haks8qbp0yvjvzge-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/owasp-foundation.webp", + "id": "692251ef53dd9d7326d33f1c", + "slug": "mlpack", + "name": "mlpack", + "category": "Science and medicine", + "description": "a fast, flexible machine learning library", + "image_url": "https://summerofcode.withgoogle.com/media/org/mlpack/gs9xn22l8vefyvhh-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mlpack.webp", "logo_r2_url": null, - "url": "https://owasp.org", + "url": "https://www.mlpack.org", "active_years": [ 2016, + 2017, 2018, 2019, 2020, 2021, 2022, 2023, - 2024, - 2025 + 2024 ], "first_year": 2016, - "last_year": 2025, - "is_currently_active": true, + "last_year": 2024, + "is_currently_active": false, "technologies": [ - "python", - "javascript", - "java", - "html", - "php", - "ruby", - "net", - "node.js", - ".net", - "c", "c++", - "golang", - "ZAP", - "Juice Shop" + "python", + "machine learning", + "deep learning", + "templates", + "openmp", + "C++ template metaprogramming" ], "topics": [ - "security", - "secure development", - "appsec", - "application security", - "sdlc", - "cloud security", - "mobile security", - "information security", - "web application security", - "cyber security", - "cybersecurity", - "top 10", - "pentesting", - "web", - "cloud", - "DevSecOps" + "machine learning", + "data mining", + "fast algorithms", + "data science", + "deep learning", + "algorithms", + "reinforcement learning", + "optimization", + "neighbor-search", + "linear algebra", + "embedded", + "ai", + "Neural networks" ], - "total_projects": 102, + "total_projects": 60, "first_time": false }, { - "id": "692251df53dd9d7326d33e44", - "slug": "open-bioinformatics-foundation-obf", - "name": "Open Bioinformatics Foundation (OBF)", + "id": "692251dd53dd9d7326d33e2a", + "slug": "mobile-robot-programming-toolkit-mrpt", + "name": "Mobile Robot Programming Toolkit (MRPT)", "category": "Science and medicine", - "description": "Open Source & Open Science in biological research", - "image_url": "https://summerofcode.withgoogle.com/media/org/open-bioinformatics-foundation-obf/gcg4ymt4qhsd0fyj-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-bioinformatics-foundation-obf.webp", + "description": "Empowering C++ development in robotics", + "image_url": "https://lh3.googleusercontent.com/w2l4mVMo8PxUGi4V63Zd6mHHOeUc1k1lewYp4bPyltlnLgbvNuVlZJG4MdPW9AxnQ52AJu_t8DFtPTYU--17Tjc99sxqNqw", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mobile-robot-programming-toolkit-mrpt.webp", "logo_r2_url": null, - "url": "https://www.open-bio.org", + "url": "https://www.mrpt.org", "active_years": [ 2016, 2017, - 2018, - 2019, - 2020, - 2021, - 2022 + 2018 ], "first_year": 2016, - "last_year": 2022, + "last_year": 2018, "is_currently_active": false, "technologies": [ + "ros", + "opencv", + "c++", + "qt", + "cmake", + "opengl", + "wxwidgets", "python", - "java", - "haskell", - "ruby", - "perl", "c", - "c++", - "javascript", - "php", - "d", - "biojs", - "react", - "html", - "css", - "Git/GitHub" + "webs" ], "topics": [ - "bioinformatics", - "web", - "computational biology", - "genomics", - "workflows", - "open science", - "Open Source Bioinformatics" + "robotics", + "vision", + "slam", + "selfdriving", + "mobile robots", + "computer vision", + "algorithms", + "webapps", + "ai", + "real-time", + "robot" ], - "total_projects": 45, + "total_projects": 8, "first_time": false }, { - "id": "692251df53dd9d7326d33e45", - "slug": "open-chemistry", - "name": "Open Chemistry", - "category": "Science and medicine", - "description": "Advancing Open Source & Open Science for Chemistry", - "image_url": "https://summerofcode.withgoogle.com/media/org/open-chemistry/esda0gvsxomll6my-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-chemistry.webp", + "id": "692251dd53dd9d7326d33e2b", + "slug": "modsecurity", + "name": "ModSecurity", + "category": "Security", + "description": "ModSecurity cross platform web application firewall", + "image_url": "https://lh3.googleusercontent.com/bbraUY_kSKjJuWLwpBERcy5TPV8xlVudlVqLDHRZtOENox8UB1iH2QjxyxsVGwCM5a26YdE9zznCAor94xMhtqebI7vc6Bo", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/modsecurity.webp", "logo_r2_url": null, - "url": "https://openchemistry.org/", + "url": "http://www.modsecurity.org", "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024 + 2016 ], "first_year": 2016, - "last_year": 2024, - "is_currently_active": false, - "technologies": [ - "python", - "javascript", - "opengl", - "c++", - "webgl", - "java", - "html", - "c", - "c++14", - "c++17" + "last_year": 2016, + "is_currently_active": false, + "technologies": [ + "waf", + "web application firewall" ], "topics": [ - "visualization", - "chemistry", - "graphics", - "materials science", - "data science", - "scientific visualization", - "science", - "scientific computing", - "computational chemistry", - "cheminformatics", - "quantum chemistry" + "web application security" ], - "total_projects": 51, + "total_projects": 3, "first_time": false }, { - "id": "692251df53dd9d7326d33e46", - "slug": "open-chromosome-collective", - "name": "Open Chromosome Collective", - "category": "Science and medicine", - "description": "Open-Source Tools for 3D Genomics Research", - "image_url": "https://summerofcode.withgoogle.com/media/org/open-chromosome-collective/ef70feamp2pdisjj.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-chromosome-collective.webp", + "id": "new_2026_mofa-org", + "slug": "mofa-org", + "name": "MoFA Org", + "category": "Development tools", + "description": "mofa-org is an open-source organization that builds and maintains the MoFA ecosystem — a modular AI agent framework that makes it easy to build, compose, and run complex AI applications & a collection of open-source tools and frameworks designed to:\n\n- Allow developers to compose AI agents like building blocks\n- Enable complex AI systems without heavy boilerplate or bespoke pipelines\n- Provide visual tooling (like MoFA Stage) for developer productivity", + "image_url": "https://summerofcode.withgoogle.com/media/org/mofa-org/fa7e34trht3ou7yo-360.png", + "img_r2_url": "https://summerofcode.withgoogle.com/media/org/mofa-org/fa7e34trht3ou7yo-360.png", "logo_r2_url": null, - "url": "https://open2c.github.io/", + "url": "https://mofa.ai", "active_years": [ - 2024 + 2026 ], - "first_year": 2024, - "last_year": 2024, - "is_currently_active": false, + "first_year": 2026, + "last_year": 2026, + "is_currently_active": true, "technologies": [ "python", - "numpy", - "scikit-learn", - "pandas", - "HDF5" + "rust" ], "topics": [ - "machine learning", - "genomics", - "bioinformatics", - "data science", - "python" + "development framework", + "AI Agent", + "Compostion AI" ], - "total_projects": 3, - "first_time": false + "total_projects": 0, + "first_time": true }, { - "id": "692251df53dd9d7326d33e47", - "slug": "open-climate-fix", - "name": "Open Climate Fix", - "category": "Science and medicine", - "description": "Using Computers to Fix Climate Change", - "image_url": "https://summerofcode.withgoogle.com/media/org/open-climate-fix/k4retnlmzqbkc6bn-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-climate-fix.webp", + "id": "new_2026_moganlab", + "slug": "moganlab", + "name": "MoganLab", + "category": "Programming languages", + "description": "Moganlab develops Mogan STEM, a professional scientific writing platform specifically designed for mathematics, physics, statistics, and computer science, targeting complex formula-based documents. It is deeply optimized from GNU TeXmacs, with emphasis on performance and user experience. With Mogan STEM, you can create documents 100 times faster than LaTeX", + "image_url": "https://summerofcode.withgoogle.com/media/org/moganlab/tuz5k2kmoivlkods-360.png", + "img_r2_url": "https://summerofcode.withgoogle.com/media/org/moganlab/tuz5k2kmoivlkods-360.png", "logo_r2_url": null, - "url": "https://www.openclimatefix.org", + "url": "https://mogan.app/en/", "active_years": [ - 2024, - 2025 + 2026 ], - "first_year": 2024, - "last_year": 2025, + "first_year": 2026, + "last_year": 2026, "is_currently_active": true, "technologies": [ - "python", - "pytorch" + "c++", + "qt", + "scheme" ], "topics": [ - "Forecasting", - "Climate", - "renewables" + "editor", + "latex", + "AI for math" ], - "total_projects": 10, - "first_time": false + "total_projects": 0, + "first_time": true }, { - "id": "692251df53dd9d7326d33e48", - "slug": "open-data-kit", - "name": "Open Data Kit", - "category": "End user applications", - "description": "Open Data Kit is used to collect data for social good in difficult environments.", - "image_url": "https://lh3.googleusercontent.com/7h3l-fCdh1-5UYr-X5JyVB2kbH--nb3MA5HrkO9TLzW2gW4lG9vZoT3x4PdEIRzvY8KJnsgDRAQQj6tIcBjSqqMiAKVwLE8", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-data-kit.webp", + "id": "692251dd53dd9d7326d33e2c", + "slug": "moira", + "name": "Moira", + "category": "Programming languages", + "description": "Moira is a realtime alerting system based on Graphite data", + "image_url": "https://lh3.googleusercontent.com/St549uV6D0eslwOwI2SyLFzn7fMDknX0P5p8EBkxVXwsKe_mDDLaWr7BYvo731-Zb6LrCDwPblOxbEKBpm8VxUAVyFRQN6t-", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/moira.webp", "logo_r2_url": null, - "url": "https://opendatakit.org", + "url": "https://moira.readthedocs.io/", "active_years": [ - 2017, - 2018, - 2019 + 2019, + 2020 ], - "first_year": 2017, - "last_year": 2019, + "first_year": 2019, + "last_year": 2020, "is_currently_active": false, "technologies": [ - "python", "javascript", - "android", - "java", - "ruby" + "golang", + "grafana", + "typescript", + "graphite", + "react" ], "topics": [ - "global health", - "cloud", - "mobile", - "global development", - "social good" + "monitoring", + "devops", + "devtools", + "alerting", + "sre" ], - "total_projects": 5, + "total_projects": 3, "first_time": false }, { - "id": "692251df53dd9d7326d33e49", - "slug": "open-detection", - "name": "Open Detection", - "category": "Other", - "description": "Open Detection is a open source project for object detection and recognition.", - "image_url": "https://lh3.googleusercontent.com/iQnB3bLxuBT0oQgjrJtWgD6FjJpenOT8crAYRRDnwfkBxDMqEVIFqaba4lPfNSCPCKeWyu1Lf0orHbVQ_EaSL8dA8NiY6g", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-detection.webp", + "id": "692251ef53dd9d7326d33f1d", + "slug": "moja-global", + "name": "moja global", + "category": "Data", + "description": "Collaboration for change", + "image_url": "https://summerofcode.withgoogle.com/media/org/moja-global/jcd7uys3qjvi0guo-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/moja-global.webp", "logo_r2_url": null, - "url": "http://opendetection.com", + "url": "https://moja.global", "active_years": [ - 2016, - 2017 + 2022 ], - "first_year": 2016, - "last_year": 2017, + "first_year": 2022, + "last_year": 2022, "is_currently_active": false, "technologies": [ - "c", + "python", + "javascript", "c++", - "opencv", - "cmake", - "caffe", - "pcl" + "docker", + "Data-Science" ], "topics": [ - "machine learning", - "computer vision", - "ai" + "climate monitoring", + "nature based solutions", + "land system modelling" ], - "total_projects": 4, + "total_projects": 3, "first_time": false }, { - "id": "692251df53dd9d7326d33e4a", - "slug": "open-ephys", - "name": "Open Ephys", - "category": "Science and medicine", - "description": "Open-source electrophysiology", - "image_url": "https://lh3.googleusercontent.com/ixQqTj80C233Z7hVvQEI47UOUzmJd7iq6aKKg741y5mzuPc_xz69VynNdaEZasoVMINgNWplp2rXn5FkEIw7i7MPJtVkDGQ", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-ephys.webp", + "id": "692251dd53dd9d7326d33e2d", + "slug": "monado", + "name": "Monado", + "category": "Media", + "description": "Monado, the free and open source XR platform", + "image_url": "https://summerofcode.withgoogle.com/media/org/monado/uch9jarqbeko6nep-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/monado.webp", "logo_r2_url": null, - "url": "http://www.open-ephys.org", + "url": "https://monado.freedesktop.org/", "active_years": [ - 2016 + 2022 ], - "first_year": 2016, - "last_year": 2016, + "first_year": 2022, + "last_year": 2022, "is_currently_active": false, "technologies": [ - "c++", - "juce" + "opengl", + "vulkan", + "openxr", + "Graphics", + "XR" ], "topics": [ - "visualization", - "neuroscience", - "electrophysiology", - "ui", - "signal processing" + "vr", + "xr", + "AR" ], "total_projects": 2, "first_time": false }, { - "id": "692251df53dd9d7326d33e4b", - "slug": "open-food-facts", - "name": "Open Food Facts", - "category": "Science and medicine", - "description": "Better food choices for your health & the planet", - "image_url": "https://summerofcode.withgoogle.com/media/org/open-food-facts/ypo4wfmbo5ueujuf-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-food-facts.webp", + "id": "692251dd53dd9d7326d33e2e", + "slug": "mono-project", + "name": "Mono Project", + "category": "Programming languages", + "description": "Cross-platform C#/F#/.NET runtime and tools", + "image_url": "https://lh3.googleusercontent.com/Wnx2UKIIjXTvvrIgRrPHvnIbw6WXjSbBGOleTchd-Kv0D9gbrdmf21-x9IpyXYONEza_KVi1TkwcIiyUpn8kOQV2wD3PGmo", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mono-project.webp", "logo_r2_url": null, - "url": "https://world.openfoodfacts.org/discover", + "url": "http://www.mono-project.com/", "active_years": [ - 2018, - 2022, - 2025 + 2017 ], - "first_year": 2018, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2017, + "last_year": 2017, + "is_currently_active": false, "technologies": [ - "android", - "machine learning", - "mongodb", - "perl", - "ios", - "python", - "tensorflow", - "flutter", - "javascript" + "c", + "c#", + ".net", + "f#" ], "topics": [ - "open data", - "health", - "computer vision", - "crowdsourcing", - "food", - "environment", - "mobile" + "web development", + "programming tools", + "ide", + "mobile development", + "compiler" ], - "total_projects": 10, - "first_time": false - }, - { - "id": "692251df53dd9d7326d33e4c", - "slug": "open-genome-informatics", - "name": "Open Genome Informatics", - "category": "Science and medicine", - "description": "Open access genomics and bioinformatics projects", - "image_url": "https://summerofcode.withgoogle.com/media/org/open-genome-informatics/p6nhalhjwargwd5s-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-genome-informatics.webp", + "total_projects": 9, + "first_time": false + }, + { + "id": "692251dd53dd9d7326d33e2f", + "slug": "moodle", + "name": "Moodle", + "category": "Social and communication", + "description": "Empowering educators to improve our world", + "image_url": "https://lh3.googleusercontent.com/tVi2arz1wSGuftyHK1NkpIeie1tbz3lNTJxiHXS0TldjWfgCP95-JTckc-DW-7Uh0j3mRGJf_vDpf36dgFiwIlg3y5bhBXfp", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/moodle.webp", "logo_r2_url": null, - "url": "http://gmod.org/wiki/GSoC", + "url": "https://moodle.org/", "active_years": [ 2016, 2017, - 2020, - 2021, - 2022, - 2023 + 2018, + 2019 ], "first_year": 2016, - "last_year": 2023, + "last_year": 2019, "is_currently_active": false, "technologies": [ - "python", - "java", - "node.js", - "gwt", - "html", - "javascript", - "neo4j", - "react", - "r-project", "mysql", - "graph", - "angular" + "postgresql", + "javascript", + "php", + "jquery", + "sql", + "angular", + "ionic" ], "topics": [ - "databases", - "bioinformatics", - "genome", - "computational biology", - "data visualisation", - "data mining", - "genomics", - "biology", - "data and databases", - "cloud", - "data discovery" + "education", + "web applications", + "e-learning", + "learning management", + "school systems", + "web application", + "school system" ], - "total_projects": 28, + "total_projects": 7, "first_time": false }, { - "id": "692251df53dd9d7326d33e4d", - "slug": "open-healthcare-network", - "name": "Open HealthCare Network", + "id": "692251dd53dd9d7326d33e30", + "slug": "moveit", + "name": "MoveIt", "category": "Science and medicine", - "description": "Reimagining Healthcare Delivery", - "image_url": "https://summerofcode.withgoogle.com/media/org/open-healthcare-network/eutslgqeknc9vlgd-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-healthcare-network.webp", + "description": "Moving robots into the future", + "image_url": "https://summerofcode.withgoogle.com/media/org/moveit/zmatlwnrrfqcdsjo-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/moveit.webp", "logo_r2_url": null, - "url": "https://ohc.network/", + "url": "https://moveit.ros.org", "active_years": [ - 2024, - 2025 + 2020, + 2021, + 2022, + 2023, + 2024 ], - "first_year": 2024, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2020, + "last_year": 2024, + "is_currently_active": false, "technologies": [ + "ros", + "c++", + "c", + "python 3", + "robotics", "python", - "django", - "react", - "typescript", - "NextJs" + "rust" ], "topics": [ - "electronic medical records", - "Digital Public Goods", - "Telemedicine and Remote Care", - "AI in Health", - "HMIS" + "robotics", + "motion planning", + "trajectory generation", + "kinematics" ], - "total_projects": 9, + "total_projects": 10, "first_time": false }, { - "id": "692251df53dd9d7326d33e4e", - "slug": "open-roberta", - "name": "Open Roberta", - "category": "Programming languages", - "description": "Open Roberta® Lab is an online IDE introducing kids to program robots with NEPO®", - "image_url": "https://lh3.googleusercontent.com/TihjVj3TcdATW2AuNmSCtSYsYYjwtvFdqsNA3nQs2eH0IDOUBM6iFEhPfOPgDN0OsD9T6p-cTcfsYtYKJ5UbdHjIKkCaaPPQp3wMn71HDq0R", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-roberta.webp", + "id": "692251dd53dd9d7326d33e31", + "slug": "mozilla", + "name": "Mozilla", + "category": "Web", + "description": "Keeping the Internet open and accessible to all.", + "image_url": "https://lh3.googleusercontent.com/v2ra_3qtUJJNbGmGrsnqw2xVpfWQLL2Xr6KUHr3ah4_aP8F37Ylm-1nuPDl33bwHKruUD5OEJ_Doa6VGmYWT_paWKA40g6k3", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mozilla.webp", "logo_r2_url": null, - "url": "https://lab.open-roberta.org", + "url": "https://mozilla.org", "active_years": [ + 2016, + 2017, 2018, 2019, - 2020, - 2021 + 2020 ], - "first_year": 2018, - "last_year": 2021, + "first_year": 2016, + "last_year": 2020, "is_currently_active": false, "technologies": [ - "javascript", - "java", "python", - "go", + "javascript", "c++", - "typescript" + "rust", + "html", + "css", + "react", + "html5", + "web development" ], "topics": [ - "education", - "robotics", - "programming", "web", - "visual programming" + "mozilla", + "firefox", + "internet", + "education", + "web platform and services", + "web browser", + "free software", + "open web", + "browser", + "privacy/security", + "internet freedom", + "web technologies", + "open source", + "devtools", + "information security" ], - "total_projects": 8, + "total_projects": 75, "first_time": false }, { - "id": "692251df53dd9d7326d33e4f", - "slug": "open-robotics", - "name": "Open Robotics", + "id": "692251dd53dd9d7326d33e32", + "slug": "musescore", + "name": "MuseScore", "category": "End user applications", - "description": "Open source robotics and a whole lot more!", - "image_url": "https://summerofcode.withgoogle.com/media/org/open-robotics/6pg3nwfpieq1qmqw-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-robotics.webp", + "description": "The World’s Most Popular Music Notation Software", + "image_url": "https://summerofcode.withgoogle.com/media/org/musescore/tgkjkzlqhj0qru5z.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/musescore.webp", "logo_r2_url": null, - "url": "https://www.openrobotics.org/", + "url": "https://musescore.org/", "active_years": [ 2016, + 2017, 2018, 2019, 2020, 2021, 2022, 2023, - 2024, - 2025 + 2024 ], "first_year": 2016, - "last_year": 2025, - "is_currently_active": true, + "last_year": 2024, + "is_currently_active": false, "technologies": [ - "ros", - "gazebo", - "python", - "javascript", "c", "c++", - "ignition", - "Open-RMF" + "qt", + "qml", + "c++11", + "qt5", + "breakpad", + "cpp", + "midi", + "cmake" ], "topics": [ - "robotics", - "simulation", - "middleware", - "fleet management", - "Control" + "music", + "notation", + "midi", + "musicxml", + "sheet music", + "music engraving", + "user interface", + "end user applications", + "music notation", + "composing", + "notation software", + "piano", + "guitar", + "audio", + "engraving" ], - "total_projects": 46, + "total_projects": 24, "first_time": false }, { - "id": "692251df53dd9d7326d33e50", - "slug": "open-science-initiative-for-perfusion-imaging", - "name": "Open Science Initiative for Perfusion Imaging", + "id": "692251ef53dd9d7326d33f1e", + "slug": "mypy", + "name": "mypy", + "category": "Programming languages", + "description": "A static type checker for Python and a compiler for type-annotated Python", + "image_url": "https://lh3.googleusercontent.com/2bM_s0FVQzih2JJf2lHkVOaeRxvH8LnB8Y54s7kVnNGrh5YzWYxPMbBg0ijMV2c05Vz-LJ3gkIcsLd3RaMrqg5Q6YddhtDPUbCmNwn4Q-u49", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mypy.webp", + "logo_r2_url": null, + "url": "http://mypy-lang.org/", + "active_years": [ + 2020, + 2021 + ], + "first_year": 2020, + "last_year": 2021, + "is_currently_active": false, + "technologies": [ + "python" + ], + "topics": [ + "static code analysis", + "compiler", + "compilers" + ], + "total_projects": 3, + "first_time": false + }, + { + "id": "692251db53dd9d7326d33e15", + "slug": "mzmine", + "name": "MZmine", "category": "Science and medicine", - "description": "Open access resources for perfusion imaging", - "image_url": "https://summerofcode.withgoogle.com/media/org/open-science-initiative-for-perfusion-imaging/bxlqptrs5g0ovtqz-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-science-initiative-for-perfusion-imaging.webp", + "description": "Open-source software for mass spectrometry", + "image_url": "https://summerofcode.withgoogle.com/media/org/mzmine/jssbvby4wpz38go8-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mzmine.webp", "logo_r2_url": null, - "url": "https://osipi.ismrm.org/", + "url": "https://www.mzmine.org", "active_years": [ - 2024, - 2025 + 2020, + 2022 ], - "first_year": 2024, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2020, + "last_year": 2022, + "is_currently_active": false, "technologies": [ - "python", - "github" + "java", + "javafx" ], "topics": [ - "artificial intelligence", - "data visualization", - "data analysis", - "medical imaging", - "reproducible science" + "visualization", + "data processing", + "mass spectrometry", + "molecular analysis", + "molecular networking", + "biochemistry", + "feature detection", + "ion mobility" ], - "total_projects": 9, + "total_projects": 3, "first_time": false }, { - "id": "692251df53dd9d7326d33e51", - "slug": "open-science-labs", - "name": "Open Science Labs", + "id": "692251db53dd9d7326d33e16", + "slug": "mzmine-and-ms-dial", + "name": "MZmine and MS-DIAL", "category": "Science and medicine", - "description": "The community open to science and technology.", - "image_url": "https://summerofcode.withgoogle.com/media/org/open-science-labs/rjv8l7mrkiwlv9ab-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-science-labs.webp", + "description": "Open-source software for mass spectrometry", + "image_url": "https://summerofcode.withgoogle.com/media/org/mzmine-and-ms-dial/pdqwksmlm0rn7hwq-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mzmine-and-ms-dial.webp", "logo_r2_url": null, - "url": "https://opensciencelabs.org", + "url": "https://mzmine-ms-dial-gsoc.github.io/", "active_years": [ - 2025 + 2023 ], - "first_year": 2025, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2023, + "last_year": 2023, + "is_currently_active": false, "technologies": [ - "python", - "javascript", - "c++", - "docker", - "AST" + "java", + "c#", + "javafx" ], "topics": [ - "devops", - "devtools", - "open-science" + "data science", + "graphics", + "cheminformatics", + "mass spectrometry", + "feature detection" ], - "total_projects": 4, - "first_time": true + "total_projects": 2, + "first_time": false }, { - "id": "692251e053dd9d7326d33e52", - "slug": "open-states", - "name": "Open States", - "category": "Other", - "description": "Open Source State Legislative Data", - "image_url": "https://lh3.googleusercontent.com/NwcPOErW65aS1HhiyvCsBHwtxUKIjYW4MlE123d_66rwai20REjJkxDZP_BOjYSwnrY6oRDkBHqPJzdtvRIj9YlJ1bqkPw", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-states.webp", + "id": "692251dd53dd9d7326d33e34", + "slug": "named-data-networking-project", + "name": "Named Data Networking Project", + "category": "Web", + "description": "A Content-Centric Future Internet architecture", + "image_url": "https://lh3.googleusercontent.com/xkQpjOYnfflUCW0ZdNDW3IMvyVB_1oq7XFWCDkxCkEwihelm44Wg5veYUpVFBkVn1UqedlNvAUpIJzg0ak_hB5l3PUXMJw", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/named-data-networking-project.webp", "logo_r2_url": null, - "url": "https://openstates.org", + "url": "http://named-data.net/", "active_years": [ - 2017, - 2018 + 2019 ], - "first_year": 2017, - "last_year": 2018, + "first_year": 2019, + "last_year": 2019, "is_currently_active": false, "technologies": [ - "python", - "postgresql", "javascript", - "django", - "react", - "graphql" + "android", + "java", + "c++14", + "c#" ], "topics": [ - "web", - "government", - "journalism", - "civic", - "civic tech", - "scraping" + "networking", + "informationc centric networking", + "ipfs" ], - "total_projects": 1, + "total_projects": 2, "first_time": false }, { - "id": "692251e053dd9d7326d33e53", - "slug": "open-technologies-alliance-gfoss", - "name": "Open Technologies Alliance - GFOSS", - "category": "Development tools", - "description": "Promote Open Standards and Open Source", - "image_url": "https://summerofcode.withgoogle.com/media/org/open-technologies-alliance-gfoss/kiyijull8pfdypve-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-technologies-alliance-gfoss.webp", + "id": "692251dd53dd9d7326d33e35", + "slug": "national-resource-for-network-biology-nrnb", + "name": "National Resource for Network Biology (NRNB)", + "category": "Science and medicine", + "description": "The National Resource for Network Biology (NRNB, https://nrnb.org) organizes the development of free, open-source software technologies to enable network-based visualization, analysis, and biomedical discovery. Biomedical research is increasingly dependent on knowledge expressed in terms of networks, including gene, protein and drug interactions, cell-cell and viral-host communication, and vast social networks. Our technologies enable researchers to assemble and analyze these networks and to use them to better understand biological systems and, in particular, how they fail in disease. \nThe NRNB mentoring organization includes projects such as Cytoscape (https://cytoscape.org/), WikiPathways (https://wikipathways.org/), SBML (https://sbml.org/), SBGN (https://sbgn.github.io/) and others. This is a great opportunity to work at the intersection of biology and computing! For example, Cytoscape is downloaded over 24,000 times per month by researchers. We take mentoring seriously and are proud of our 96% success rate (https://nrnb.org/alumni.html#gsoc-tab) with former students and projects. But don’t take our word for it, read testimonials from prior NRNB students (https://nrnb.org/testimonials.html#student-tab) and mentors (https://nrnb.org/testimonials.html#mentor-tab). \nFind out more about the software projects being developed in coordination with NRNB at our website (https://nrnb.org). Also refer to our GSoC page (https://nrnb.org/gsoc.html) for additional resources and application tips.", + "image_url": "https://summerofcode.withgoogle.com/media/org/national-resource-for-network-biology-nrnb/5uobjboaxnzrxyoj-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/national-resource-for-network-biology-nrnb.webp", "logo_r2_url": null, - "url": "http://www.gfoss.eu", + "url": "https://nrnb.org", "active_years": [ + 2016, 2017, 2018, 2019, + 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ], - "first_year": 2017, - "last_year": 2025, + "first_year": 2016, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", - "mysql", + "javascript", "java", + "c++", "php", - "virtuoso", "c", - "c++", - "python 3", - "javascript", "html", + "web", + "r", + "rest", + "xml", + "json", "css", - "gtk", - "qt", - "arduino", - "perl", - "python deep learning frameworks", - "node.js", - "Machine Learning (ML)" + "LLM" ], "topics": [ - "hardware", - "cloud", - "data", - "c++ tools", - "python", - "javascript", - "gtk", - "java jsp", - "programming languages", - "robotics", - "java", - "open education", - "c- c+", - "open hardware", - "perl", "web", - "c++", - "nodered", - "Artificial Inteligence" + "bioinformatics", + "biology", + "systems biology", + "dataviz", + "database", + "graphics", + "ui/ux", + "network biology", + "data visualization", + "web applications", + "network analysis", + "data modeling", + "web application", + "data science", + "scientific computing", + "machine learning" ], - "total_projects": 70, + "total_projects": 119, "first_time": false }, { - "id": "692251e053dd9d7326d33e54", - "slug": "open-transit-software-foundation", - "name": "Open Transit Software Foundation", + "id": "692251dd53dd9d7326d33e36", + "slug": "navidrome", + "name": "Navidrome", + "category": "Web", + "description": "Modern music server and streamer compatible with Subsonic/Airsonic", + "image_url": "https://lh3.googleusercontent.com/y873A4ZT7B_Uic1kArXJQXzofatM0HaQoFAJjVfJrPuQwtV0vMizh-kvW_v0ixlm99wwIb9u6OcKEWrrMrBb0yFVQbkJ5cmi3QWEaRqbuqc1", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/navidrome.webp", + "logo_r2_url": null, + "url": "https://navidrome.org", + "active_years": [ + 2021 + ], + "first_year": 2021, + "last_year": 2021, + "is_currently_active": false, + "technologies": [ + "react", + "golang", + "ffmpeg" + ], + "topics": [ + "web", + "music", + "streaming" + ], + "total_projects": 1, + "first_time": false + }, + { + "id": "692251de53dd9d7326d33e37", + "slug": "neovim", + "name": "Neovim", "category": "End user applications", - "description": "Help make public transit better", - "image_url": "https://summerofcode.withgoogle.com/media/org/open-transit-software-foundation/uz3p7k5vsxduhrhk-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-transit-software-foundation.webp", + "description": "Neovim is a fork of the Vim text editor, designed for extensibility and usability.", + "image_url": "https://summerofcode.withgoogle.com/media/org/neovim/wsjrusphcrjmo5tf-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/neovim.webp", "logo_r2_url": null, - "url": "https://opentransitsoftwarefoundation.org", + "url": "https://neovim.io/", "active_years": [ - 2024, - 2025 + 2018, + 2019, + 2020, + 2025, + 2026 ], - "first_year": 2024, - "last_year": 2025, + "first_year": 2018, + "last_year": 2026, "is_currently_active": true, "technologies": [ - "android", - "java", - "golang", - "docker", - "ios" + "c", + "python", + "javascript", + "lua", + "vim", + "rpc" ], "topics": [ + "text editor", + "vim", + "cross platform", + "tools", + "developer tools", + "cross-platform", + "editor", + "system programming", + "programming", "ai", - "apps", - "Transit", - "travel", - "bus" + "text-editor" ], - "total_projects": 10, + "total_projects": 8, "first_time": false }, { - "id": "692251e053dd9d7326d33e55", - "slug": "open3d-team", - "name": "Open3D team", - "category": "Data", - "description": "A Modern Library for 3D Data Processing", - "image_url": "https://summerofcode.withgoogle.com/media/org/open3d-team/yhzlqgd1qkcypvrw-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open3d-team.webp", + "id": "692251de53dd9d7326d33e38", + "slug": "netfilter-project", + "name": "Netfilter project", + "category": "Operating systems", + "description": "Firewalling, NAT and packet mangling for Linux", + "image_url": "https://lh3.googleusercontent.com/PXmFpc9huYwQ7dPtTUuAHE3wiw1Kd4hEZwm25wicFtGaF5Yy5pxhyoDvqnLr243AP-CVZ-9_CQJmnoimUsFjjNomUYYJoHTm", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/netfilter-project.webp", "logo_r2_url": null, - "url": "http://www.open3d.org/", + "url": "https://www.netfilter.org", "active_years": [ - 2022 + 2016, + 2017, + 2018, + 2019 ], - "first_year": 2022, - "last_year": 2022, + "first_year": 2016, + "last_year": 2019, "is_currently_active": false, "technologies": [ - "python", - "c++", - "cuda", - "tensorflow", - "pytorch" + "networking", + "linux kernel", + "firewall", + "c", + "linux", + "kernel" ], "topics": [ - "3D machine learning", - "3D data processing", - "3D visualization", - "physically based rendering" + "networking", + "firewall", + "linux kernel", + "computer networking", + "software defined networking", + "network monitoring", + "network security" ], - "total_projects": 3, + "total_projects": 11, "first_time": false }, { - "id": "692251e053dd9d7326d33e56", - "slug": "openafs", - "name": "OpenAFS", - "category": "Operating systems", - "description": "An opensource distributed filesystem product.", - "image_url": "https://summerofcode.withgoogle.com/media/org/openafs/hhf0h2zemmqes7kt-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/openafs.webp", + "id": "692251de53dd9d7326d33e39", + "slug": "netty", + "name": "Netty", + "category": "Web", + "description": "Netty is an asynchronous event-driven network framework", + "image_url": "https://lh3.googleusercontent.com/27iH7LkW_01hQarGnCxs2vY36zcIObRcog6ek5PXIV1Bd-wO5RaYf_aeavWUgHebuhJzyTjPQbxl69QseV6XjEgc8DDiYHU", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/netty.webp", "logo_r2_url": null, - "url": "https://www.openafs.org", + "url": "https://netty.io", "active_years": [ - 2022, - 2025 + 2020 ], - "first_year": 2022, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2020, + "last_year": 2020, + "is_currently_active": false, "technologies": [ "c", - "python", - "git", - "ansible", - "filesystems", - "javascript", - "tcp/udp" + "java", + "jni" ], "topics": [ - "testing", "network", - "storage", - "filesystems", - "kernel" + "nonblocking", + "async" ], - "total_projects": 4, + "total_projects": 1, "first_time": false }, { - "id": "692251e053dd9d7326d33e57", - "slug": "openastronomy", - "name": "OpenAstronomy", + "id": "692251de53dd9d7326d33e3a", + "slug": "neuroinformatics-unit", + "name": "Neuroinformatics Unit", "category": "Science and medicine", - "description": "Look at the Universe with the power of Open Source", - "image_url": "https://summerofcode.withgoogle.com/media/org/openastronomy/3wvadxwxjc2arepg-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/openastronomy.webp", + "description": "The Neuroinformatics Unit is dedicated to the development of high quality, accurate, robust, easy to use and maintainable open-source software for neuroscience and machine learning. We collaborate with researchers and other software engineers to advance neuroscience research and make new algorithms and tools available to the global community.", + "image_url": "https://summerofcode.withgoogle.com/media/org/neuroinformatics-unit/ebzgcbxkxvbe9igk.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/neuroinformatics-unit.webp", "logo_r2_url": null, - "url": "https://openastronomy.org/", + "url": "https://neuroinformatics.dev", "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2025, + 2026 ], - "first_year": 2016, - "last_year": 2025, + "first_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ - "c", "python", - "julia", "numpy", - "qt", - "c++", - "numba", - "javascript", - "spark", - "css" + "pytorch", + "Scipy", + "napari" ], "topics": [ "visualization", - "science", - "astronomy", - "solar physics", - "atomic physics", - "data science", - "visualisation", - "astrophysics", - "orbital mechanics", - "high-energy astrophysics", - "high energy astrophysics", - "cloud infrastructure", - "image processing", - "data analysis" + "neuroscience", + "data-science", + "Computer-Vision", + "neuroanatomy" ], - "total_projects": 77, + "total_projects": 2, "first_time": false }, { - "id": "692251e053dd9d7326d33e58", - "slug": "opencv", - "name": "OpenCV", - "category": "Media", - "description": "++ beneficial uses of computer vision in society", - "image_url": "https://summerofcode.withgoogle.com/media/org/opencv/fmh9fnybaz97kodm-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/opencv.webp", + "id": "692251de53dd9d7326d33e3b", + "slug": "neutralinojs", + "name": "Neutralinojs", + "category": "Web", + "description": "Neutralinojs is a lightweight and portable desktop application development framework. It lets you develop lightweight cross-platform desktop applications using JavaScript, HTML, and CSS. You can extend Neutralinojs with any programming language (via extensions IPC) and use Neutralinojs as a part of any source file (via child processes IPC).", + "image_url": "https://summerofcode.withgoogle.com/media/org/neutralinojs/thloxs47w1aa1uts-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/neutralinojs.webp", "logo_r2_url": null, - "url": "https://opencv.org/", + "url": "https://neutralino.js.org", "active_years": [ - 2016, - 2017, - 2019, - 2020, - 2021, 2022, - 2023, 2024, - 2025 + 2026 ], - "first_year": 2016, - "last_year": 2025, + "first_year": 2022, + "last_year": 2026, "is_currently_active": true, "technologies": [ - "python", - "machine learning", - "c++", - "computer vision", - "deep learning", - "vision", - "javascript", "c", - "cuda", - "python 3", - "opengl", - "ai" + "javascript", + "node.js", + "c++", + "typescript" ], "topics": [ - "virtual reality", - "machine learning", - "robotics", - "computer vision", - "real time", - "deep learning", - "vision", - "graphics", - "ai" + "desktop", + "framework", + "cross-platform", + "Application Development", + "app development", + "Desktop App Development", + "lightweight framework" ], - "total_projects": 93, + "total_projects": 4, "first_time": false }, { - "id": "692251e053dd9d7326d33e59", - "slug": "opencensus", - "name": "OpenCensus", - "category": "Infrastructure and cloud", - "description": "Planet Scale Tracing and Monitoring", - "image_url": "https://lh3.googleusercontent.com/DobUf9xiIyhEf9eJYMwAAQDgPdWfkzmPQEuGfWtVfEL_0yqzrANy4LN0bfKSOFJSVyNrLXrLTQtPbLQqNR9JV2xZhW-Ek5I", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/opencensus.webp", + "id": "692251de53dd9d7326d33e3c", + "slug": "nightwatchjs", + "name": "Nightwatch.js", + "category": "Programming languages", + "description": "An integrated testing framework powered by Node.js", + "image_url": "https://summerofcode.withgoogle.com/media/org/nightwatchjs/slpwnkwtngatafl1-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/nightwatchjs.webp", "logo_r2_url": null, - "url": "http://opencensus.io", + "url": "https://nightwatchjs.org", "active_years": [ - 2018 + 2024 ], - "first_year": 2018, - "last_year": 2018, + "first_year": 2024, + "last_year": 2024, "is_currently_active": false, "technologies": [ - "python", - "java", - "go", - "ruby", - "node.js" + "javascript", + "selenium", + "node.js", + "typescript", + "WebDriver" ], "topics": [ - "monitoring", - "c++", - "tracing", - "php" + "unit testing", + "Functional Testing", + "End-To-End Testing", + "Component testing", + "Native mobile app testing" ], - "total_projects": 1, + "total_projects": 2, "first_time": false }, - { - "id": "692251e053dd9d7326d33e5a", - "slug": "openelis-global", - "name": "OpenELIS Global", - "category": "Science and medicine", - "description": "Empowering labs to Ensure Quality Health Care", - "image_url": "https://summerofcode.withgoogle.com/media/org/openelis-global/k6rnzk3hcktzabst-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/openelis-global.webp", + { + "id": "692251de53dd9d7326d33e3d", + "slug": "nixos-foundation", + "name": "NixOS Foundation", + "category": "Programming languages", + "description": "Our role is to support the infrastructure and development of the NixOS project as a whole.\n\nMost of the development is happening here:\nhttps://github.com/nixos/nix - the Nix cli and language reference implementation\n\nhttps://github.com/nixos/nixpkgs - package definitions for the Nix package manager and NixOS source code\n\nA few key points are:\n- keeping our ci up and running\n- hosting a trustworthy binary cache for the public\n- providing documentation for everything Nix\n- unblocking contributors and keeping things civil", + "image_url": "https://summerofcode.withgoogle.com/media/org/nixos-foundation/kvnnwp7viwupdsep.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/nixos-foundation.webp", "logo_r2_url": null, - "url": "https://openelis-global.org/", + "url": "https://nixos.org/", "active_years": [ 2024, - 2025 + 2026 ], "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ - "postgresql", - "javascript", - "java", - "react", - "spring" + "git", + "nix" ], "topics": [ - "Health Care", - "Laboratory Information System" + "declarative", + "reproducible", + "InfrastrucutreAsCode" ], - "total_projects": 9, + "total_projects": 3, "first_time": false }, { - "id": "692251e053dd9d7326d33e5b", - "slug": "openemr", - "name": "OpenEMR", - "category": "Science and medicine", - "description": "OpenEMR is a leader in healthcare open-source software", - "image_url": "https://lh3.googleusercontent.com/yEvQbaxEYLmlIJzXJUNtDCZkX5sYoYeJ2vmdAFAbz3t1kkVdIQloDfA8U36hLndz5Nim2OHUws54LDps7YkSaI-lqW8Cbt8", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/openemr.webp", + "id": "692251de53dd9d7326d33e3e", + "slug": "nmap-security-scanner", + "name": "Nmap Security Scanner", + "category": "Security", + "description": "Swiss Army knife of network discovery and security auditing", + "image_url": "https://lh3.googleusercontent.com/lQ6DoH3aMVO2MR3rpw0gAQNFybSqZ1VkFXb1rBy0GAtKT0Xm-PM-Vdq3hY29BlgkIVphh_YeZP-oBL4g45yhpzPDupN7Qg", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/nmap-security-scanner.webp", "logo_r2_url": null, - "url": "https://www.open-emr.org/", + "url": "https://nmap.org/", "active_years": [ - 2020 + 2016, + 2017 ], - "first_year": 2020, - "last_year": 2020, + "first_year": 2016, + "last_year": 2017, "is_currently_active": false, "technologies": [ - "mysql", - "javascript", - "html", - "docker", - "php" + "c", + "python", + "c++", + "lua" ], "topics": [ - "health", - "medicine", - "medical records", - "cloud", - "medical practice management solution" + "security", + "networking", + "linux", + "ipv6", + "network mapping" ], - "total_projects": 3, + "total_projects": 9, "first_time": false }, { - "id": "692251e053dd9d7326d33e5c", - "slug": "openhmd", - "name": "OpenHMD", - "category": "Media", - "description": "Multi-Platform Open Source driver for AR/VR/XR devices with stable ABI.", - "image_url": "https://lh3.googleusercontent.com/UgdTxILUY9QohgqoAY9CKmPSBtFjmdtBM-9WIFY1vgeZ40lOFoN_XQhSlpG6IdgjKlHXpht3Jkp_uyvxrsZQKKGZ8w5BWn9E", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/openhmd.webp", + "id": "692251de53dd9d7326d33e3f", + "slug": "numfocus", + "name": "NumFOCUS", + "category": "Science and medicine", + "description": "NumFOCUS supports and promotes world-class, innovative, open source scientific software. Most individual projects, even the wildly successful ones, find the overhead of a non-profit to be too large for their community to bear. NumFOCUS provides a critical service as an umbrella organization for this projects.", + "image_url": "https://summerofcode.withgoogle.com/media/org/numfocus/wimcwc2v6kjlidqc-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/numfocus.webp", "logo_r2_url": null, - "url": "http://openhmd.net", + "url": "https://numfocus.org", "active_years": [ - 2020 + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ], - "first_year": 2020, - "last_year": 2020, - "is_currently_active": false, + "first_year": 2016, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "opengl", - "opencv", - "vulkan", - "c99", - "libusb" + "python", + "javascript", + "r", + "julia", + "c", + "c++" ], "topics": [ - "virtual reality", - "computer vision", - "reverse engineering", - "drivers", - "xr" + "data science", + "graphics", + "scientific computing", + "numerical computation", + "machine learning", + "data visualization", + "big data", + "high performance computing", + "statistical computing", + "pydata", + "numerical computing", + "ai" ], - "total_projects": 0, + "total_projects": 277, "first_time": false }, { - "id": "692251e053dd9d7326d33e5d", - "slug": "openkeychain-openpgp-for-android", - "name": "OpenKeychain (OpenPGP for Android)", - "category": "Security", - "description": "OpenKeychain: Easy PGP for Android", - "image_url": "https://lh3.googleusercontent.com/wAkJBRA8v5z62PnJCHuzhl_GvQFzVFtim5UBjCy7ga473SN5tE7ttGh6fp4DE-qSKe9JcZnmYvVYCvE7JXSFDM653L0k-OmQ", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/openkeychain-openpgp-for-android.webp", + "id": "692251dd53dd9d7326d33e33", + "slug": "nv-access", + "name": "NV Access", + "category": "Other", + "description": "Empowering lives through non-visual access to technology", + "image_url": "https://lh3.googleusercontent.com/R8PoVA1d2FhpRtRzpiQsmbxJbkxFcnTZFRCBCP7QJGPcRPzX7XukICQvGHoGrHBHcmJ8f_bIO__XIXGZBW6Bxux-hiXDBuM", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/nv-access.webp", "logo_r2_url": null, - "url": "https://www.openkeychain.org/", + "url": "https://www.nvaccess.org/", "active_years": [ - 2016 + 2019, + 2020 ], - "first_year": 2016, - "last_year": 2016, + "first_year": 2019, + "last_year": 2020, "is_currently_active": false, "technologies": [ - "android", - "openpgp" + "python", + "c++", + "ui automation", + "iaccessible2", + "win32 api" ], "topics": [ - "security", - "e-mail", - "encryption" + "accessibility", + "blindness", + "screen reader", + "braille", + "text to speech" ], "total_projects": 2, "first_time": false }, { - "id": "692251e053dd9d7326d33e5e", - "slug": "openmrs", - "name": "OpenMRS", - "category": "Science and medicine", - "description": "Write Code, Save Lives.", - "image_url": "https://summerofcode.withgoogle.com/media/org/openmrs/evthgp3dhsqx5kyx-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/openmrs.webp", + "id": "692251ef53dd9d7326d33f20", + "slug": "omegaup", + "name": "omegaUp", + "category": "End user applications", + "description": "omegaUp is a non-profit organization (501c3) aimed to increase the number of talented Software Engineers in Latin America. Our open source platform omegaUp.com lets students immerse in a learning environment that fosters self paced learning of computer science skills with a democratic access to state-of-the-art learning tools.\n\nTeachers and tutors can create new coding challenges or use existing ones to start online programming competitions with local, national or even international reach, with automated grading of student's coding solutions. The omegaUp.com platform also enables teachers to leverage Competitive Programming tools and concepts inside the classroom to improve their educational experience.", + "image_url": "https://summerofcode.withgoogle.com/media/org/omegaup/uvgilx7vyspavjox-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/omegaup.webp", "logo_r2_url": null, - "url": "https://openmrs.org/", + "url": "https://omegaup.org", "active_years": [ - 2016, - 2017, 2018, - 2019, - 2020, - 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ], - "first_year": 2016, - "last_year": 2025, + "first_year": 2018, + "last_year": 2026, "is_currently_active": true, "technologies": [ - "java", - "html5", - "groovy", - "xml", - "hibernate", + "python", "mysql", - "javascript", - "html", - "css", - "spring", - "rest", - "android", - "fhir", - "Cypress", - "reactjs" + "php", + "typescript", + "vue.js" ], "topics": [ - "health", - "medical records", - "clinics", - "ehealth", - "hospitals", - "clinical", - "developing world", - "open source", - "developing countries", - "science and medicine", - "medical record", - "open source medical records", - "electronic medical records", - "platform", - "Electronic Medical Record System", - "frontend", - "QA automation" + "education", + "cs education", + "web community", + "web", + "cloud", + "edtech", + "UX/UI" ], - "total_projects": 94, + "total_projects": 10, "first_time": false }, { - "id": "692251e153dd9d7326d33e5f", - "slug": "openms", - "name": "OpenMS", + "id": "692251df53dd9d7326d33e44", + "slug": "open-bioinformatics-foundation-obf", + "name": "Open Bioinformatics Foundation (OBF)", "category": "Science and medicine", - "description": "OpenMS GSoC: Advancing Algorithms & AI for Biomedical Insights", - "image_url": "https://summerofcode.withgoogle.com/media/org/openms/fwdw8iqmudobrij3-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/openms.webp", + "description": "Open Source & Open Science in biological research", + "image_url": "https://summerofcode.withgoogle.com/media/org/open-bioinformatics-foundation-obf/gcg4ymt4qhsd0fyj-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-bioinformatics-foundation-obf.webp", "logo_r2_url": null, - "url": "https://openms.de", + "url": "https://www.open-bio.org", "active_years": [ - 2025 + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022 ], - "first_year": 2025, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2016, + "last_year": 2022, + "is_currently_active": false, "technologies": [ "python", - "cython", + "java", + "haskell", + "ruby", + "perl", + "c", "c++", - "r", - "pytorch" + "javascript", + "php", + "d", + "biojs", + "react", + "html", + "css", + "Git/GitHub" ], "topics": [ - "automation", - "deep learning", - "algorithms", - "webdev" + "bioinformatics", + "web", + "computational biology", + "genomics", + "workflows", + "open science", + "Open Source Bioinformatics" ], - "total_projects": 2, - "first_time": true + "total_projects": 45, + "first_time": false }, { - "id": "692251e153dd9d7326d33e60", - "slug": "openmined", - "name": "OpenMined", - "category": "Programming languages", - "description": "Lowering the barrier of entry to privacy preserving technology", - "image_url": "https://lh3.googleusercontent.com/_Bu5iadg0zeGl4k9_uMq0GXWovTyDcQIX8v0cyiXuYpRCxPkjneUSJSngzzQChyInMexi2Urv3a1kIP1pGyvfkGf-uK-6J56-AEzRkETR4Mx", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/openmined.webp", + "id": "692251df53dd9d7326d33e45", + "slug": "open-chemistry", + "name": "Open Chemistry", + "category": "Science and medicine", + "description": "Advancing Open Source & Open Science for Chemistry", + "image_url": "https://summerofcode.withgoogle.com/media/org/open-chemistry/esda0gvsxomll6my-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-chemistry.webp", "logo_r2_url": null, - "url": "https://www.openmined.org/", + "url": "https://openchemistry.org/", "active_years": [ + 2016, + 2017, + 2018, + 2019, 2020, - 2021 + 2021, + 2022, + 2023, + 2024 ], - "first_year": 2020, - "last_year": 2021, + "first_year": 2016, + "last_year": 2024, "is_currently_active": false, "technologies": [ - "deep learning", - "federated learning", - "homomorphic encryption", - "secure multi-party computation", - "differential privacy", "python", "javascript", - "rust", - "pytorch", - "hyperledger aries" + "opengl", + "c++", + "webgl", + "java", + "html", + "c", + "c++14", + "c++17" ], "topics": [ - "privacy", - "artificial intelligence", - "encrypted computation", - "federated learning", - "structured transparency", - "differential privacy" + "visualization", + "chemistry", + "graphics", + "materials science", + "data science", + "scientific visualization", + "science", + "scientific computing", + "computational chemistry", + "cheminformatics", + "quantum chemistry" ], - "total_projects": 9, + "total_projects": 51, "first_time": false }, { - "id": "692251e153dd9d7326d33e61", - "slug": "openrefine", - "name": "OpenRefine", - "category": "Data", - "description": "A power tool for working with messy data", - "image_url": "https://summerofcode.withgoogle.com/media/org/openrefine-j0/vygefztjlapanqqa-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/openrefine.webp", + "id": "692251df53dd9d7326d33e46", + "slug": "open-chromosome-collective", + "name": "Open Chromosome Collective", + "category": "Science and medicine", + "description": "Open-Source Tools for 3D Genomics Research", + "image_url": "https://summerofcode.withgoogle.com/media/org/open-chromosome-collective/ef70feamp2pdisjj.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-chromosome-collective.webp", "logo_r2_url": null, - "url": "https://openrefine.org", + "url": "https://open2c.github.io/", "active_years": [ - 2020, 2024 ], - "first_year": 2020, + "first_year": 2024, "last_year": 2024, "is_currently_active": false, "technologies": [ - "javascript", - "java" + "python", + "numpy", + "scikit-learn", + "pandas", + "HDF5" ], "topics": [ - "data visualization", - "web application", - "real-time", - "data integration", - "data-wrangling", - "reconcilation", - "data-mining" + "machine learning", + "genomics", + "bioinformatics", + "data science", + "python" ], "total_projects": 3, "first_time": false }, { - "id": "692251e153dd9d7326d33e62", - "slug": "opensips", - "name": "OpenSIPS", - "category": "Social and communication", - "description": "A multi-purpose Open Source SIP proxy/server for carriers, telecoms or ITSPs", - "image_url": "https://lh3.googleusercontent.com/Ze5ErtJ4lVXqkhzHnV0Xmost83K2I8bszR0095A6EDv1zTpc_7VBm8oUj-d3H4W7uYyN0BQfPlfPdgZG7JX4KyQMRLQY_Ss", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/opensips.webp", + "id": "692251df53dd9d7326d33e47", + "slug": "open-climate-fix", + "name": "Open Climate Fix", + "category": "Science and medicine", + "description": "Using Computers to Fix Climate Change", + "image_url": "https://summerofcode.withgoogle.com/media/org/open-climate-fix/k4retnlmzqbkc6bn-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-climate-fix.webp", "logo_r2_url": null, - "url": "http://www.opensips.org/", + "url": "https://www.openclimatefix.org", "active_years": [ - 2018 + 2024, + 2025 ], - "first_year": 2018, - "last_year": 2018, + "first_year": 2024, + "last_year": 2025, "is_currently_active": false, "technologies": [ - "c", "python", - "mysql", - "scripting" + "pytorch" ], "topics": [ - "voip", - "telephony", - "real-time-communications", - "sip" + "Forecasting", + "Climate", + "renewables" ], - "total_projects": 0, + "total_projects": 10, "first_time": false }, { - "id": "692251e153dd9d7326d33e63", - "slug": "openstreetmap", - "name": "OpenStreetMap", - "category": "Data", - "description": "Create and distribute free geodata for the world", - "image_url": "https://summerofcode.withgoogle.com/media/org/openstreetmap/ihw4tczyumj0yx81-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/openstreetmap.webp", + "id": "692251df53dd9d7326d33e48", + "slug": "open-data-kit", + "name": "Open Data Kit", + "category": "End user applications", + "description": "Open Data Kit is used to collect data for social good in difficult environments.", + "image_url": "https://lh3.googleusercontent.com/7h3l-fCdh1-5UYr-X5JyVB2kbH--nb3MA5HrkO9TLzW2gW4lG9vZoT3x4PdEIRzvY8KJnsgDRAQQj6tIcBjSqqMiAKVwLE8", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-data-kit.webp", "logo_r2_url": null, - "url": "https://www.openstreetmap.org/", + "url": "https://opendatakit.org", "active_years": [ - 2016, 2017, 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2019 ], - "first_year": 2016, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2017, + "last_year": 2019, + "is_currently_active": false, "technologies": [ + "python", "javascript", + "android", "java", - "opengl", - "ruby", - "postgis", - "c", - "c++", - "python", - "sql", - "docker", - "postgresql", - "rust" + "ruby" ], "topics": [ - "geoinformatics", - "gis", - "maps", - "crowdsourcing", - "open data", - "databases", - "routing", - "ui", - "geocoding", - "web", - "geodata" + "global health", + "cloud", + "mobile", + "global development", + "social good" ], - "total_projects": 45, + "total_projects": 5, "first_time": false }, { - "id": "692251e153dd9d7326d33e64", - "slug": "openvino-toolkit", - "name": "OpenVINO Toolkit", - "category": "Development tools", - "description": "Make AI inference faster and easier to deploy!", - "image_url": "https://summerofcode.withgoogle.com/media/org/openvino-toolkit/ivzvok335ujezk2z-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/openvino-toolkit.webp", + "id": "692251df53dd9d7326d33e49", + "slug": "open-detection", + "name": "Open Detection", + "category": "Other", + "description": "Open Detection is a open source project for object detection and recognition.", + "image_url": "https://lh3.googleusercontent.com/iQnB3bLxuBT0oQgjrJtWgD6FjJpenOT8crAYRRDnwfkBxDMqEVIFqaba4lPfNSCPCKeWyu1Lf0orHbVQ_EaSL8dA8NiY6g", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-detection.webp", "logo_r2_url": null, - "url": "https://docs.openvino.ai/", + "url": "http://opendetection.com", "active_years": [ - 2022, - 2023, - 2024, - 2025 - ], - "first_year": 2022, - "last_year": 2025, - "is_currently_active": true, + 2016, + 2017 + ], + "first_year": 2016, + "last_year": 2017, + "is_currently_active": false, "technologies": [ - "python", + "c", "c++", - "x86", - "arm" + "opencv", + "cmake", + "caffe", + "pcl" ], "topics": [ - "deep learning", - "Neural networks", - "Edge AI", - "DL-inference", "machine learning", - "ai", - "neural network", - "inference", - "gen ai" + "computer vision", + "ai" ], - "total_projects": 32, + "total_projects": 4, "first_time": false }, { - "id": "692251e153dd9d7326d33e65", - "slug": "openwisp", - "name": "OpenWISP", - "category": "End user applications", - "description": "The Hackable Network Management System", - "image_url": "https://summerofcode.withgoogle.com/media/org/openwisp/xgfy0r7femccwzvj-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/openwisp.webp", + "id": "692251df53dd9d7326d33e4a", + "slug": "open-ephys", + "name": "Open Ephys", + "category": "Science and medicine", + "description": "Open-source electrophysiology", + "image_url": "https://lh3.googleusercontent.com/ixQqTj80C233Z7hVvQEI47UOUzmJd7iq6aKKg741y5mzuPc_xz69VynNdaEZasoVMINgNWplp2rXn5FkEIw7i7MPJtVkDGQ", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-ephys.webp", "logo_r2_url": null, - "url": "https://openwisp.org", + "url": "http://www.open-ephys.org", "active_years": [ - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2016 ], - "first_year": 2017, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2016, + "last_year": 2016, + "is_currently_active": false, "technologies": [ - "python", - "javascript", - "django", - "openwrt", - "raspberry pi", - "linux", - "ansible", - "lua" + "c++", + "juce" ], "topics": [ - "web", - "networking", - "wireless", - "configuration management", - "telecommunications", - "web development", - "wifi", - "mesh-networks", - "iot", - "configu", - "telecom", - "wireless networks", - "network visualization", - "network automation", - "network management system", - "mesh", - "hotspot", - "vpn", - "sdn" + "visualization", + "neuroscience", + "electrophysiology", + "ui", + "signal processing" ], - "total_projects": 26, + "total_projects": 2, "first_time": false }, { - "id": "692251e153dd9d7326d33e66", - "slug": "opntec", - "name": "OpnTec", - "category": "Social and communication", - "description": "Developing Open Event Solutions for Everyone", - "image_url": "https://lh3.googleusercontent.com/htb6dQQlMfY5TpIbYyDh2pCPyNs7ksdEk_RH3lWy7qnJaPEkKhuAbuviAMGkA6oJG8uf2mkv4ujAnpCynBVSbWQw1aqbZweJ", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/opntec.webp", + "id": "692251df53dd9d7326d33e4b", + "slug": "open-food-facts", + "name": "Open Food Facts", + "category": "Science and medicine", + "description": "Open Food Facts is the \"Wikipedia of food\". Our community collects information about all the food products in the world, using mobile phones to help people make better choices for themselves and the planet, and to transform the whole food system along the way.\nWe do so using mobile crowdsourcing, community involvement and machine learning,", + "image_url": "https://summerofcode.withgoogle.com/media/org/open-food-facts/ypo4wfmbo5ueujuf-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-food-facts.webp", "logo_r2_url": null, - "url": "http://opntec.org", + "url": "https://world.openfoodfacts.org/discover", "active_years": [ - 2018 + 2018, + 2022, + 2025, + 2026 ], "first_year": 2018, - "last_year": 2018, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "python", - "javascript", "android", - "cloud", - "emberjs" + "machine learning", + "mongodb", + "perl", + "ios", + "python", + "tensorflow", + "flutter", + "javascript" ], "topics": [ - "web", - "open event", - "event solutions" + "open data", + "health", + "computer vision", + "crowdsourcing", + "food", + "environment", + "mobile" ], - "total_projects": 2, + "total_projects": 10, "first_time": false }, { - "id": "692251e153dd9d7326d33e67", - "slug": "oppia-foundation", - "name": "Oppia Foundation", - "category": "End user applications", - "description": "Free platform for interactive, tutor-like lessons", - "image_url": "https://summerofcode.withgoogle.com/media/org/oppia-foundation/nqvgy9fm3aqshwtv-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/oppia-foundation.webp", + "id": "692251df53dd9d7326d33e4c", + "slug": "open-genome-informatics", + "name": "Open Genome Informatics", + "category": "Science and medicine", + "description": "The Open Genome Informatics group represents an umbrella organization consisting of several open source and open access genomics and bioinformatics projects worldwide. Our goals are to develop and maintain a collection of sustainable software tools for managing, analyzing, visualizing, storing, and disseminating genomic data.", + "image_url": "https://summerofcode.withgoogle.com/media/org/open-genome-informatics/p6nhalhjwargwd5s-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-genome-informatics.webp", "logo_r2_url": null, - "url": "https://www.oppia.org", + "url": "http://gmod.org/wiki/GSoC", "active_years": [ 2016, 2017, - 2018, - 2019, 2020, 2021, 2022, 2023, - 2024, - 2025 + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", + "java", + "node.js", + "gwt", + "html", "javascript", - "angularjs", - "css", - "google app engine", - "kotlin", - "webpack", - "angular", - "typescript", - "android", - "Apache Beam" + "neo4j", + "react", + "r-project", + "mysql", + "graph", + "angular" ], "topics": [ - "education", - "web", - "interactive", - "tools", - "educational technology", - "community", - "web development", - "nonprofit", - "social impact", - "ai" + "databases", + "bioinformatics", + "genome", + "computational biology", + "data visualisation", + "data mining", + "genomics", + "biology", + "data and databases", + "cloud", + "data discovery" ], - "total_projects": 77, + "total_projects": 28, "first_time": false }, { - "id": "692251e153dd9d7326d33e68", - "slug": "orange-data-mining-fruitful-fun", - "name": "Orange – Data Mining Fruitful & Fun", + "id": "692251df53dd9d7326d33e4d", + "slug": "open-healthcare-network", + "name": "Open HealthCare Network", "category": "Science and medicine", - "description": "A cross-platform, visual-programming tool for data mining and visualization.", - "image_url": "https://lh3.googleusercontent.com/isMDLXr7AdgntLlLbpzebETS2oOnYyC0KQp7Gl0TY79lb2WDa8bzSH1pwtwQv3dNUhZOqZBGHxA8QlimQ4YiMbyn5zaia3IL", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/orange-data-mining-fruitful-fun.webp", + "description": "Open Healthcare Network (OHC), originally established as Coronasafe Network, is a pioneering open-source organization dedicated to enhancing healthcare delivery and management. At the core of OHC's innovation is its flagship Electronic Medical Record (EMR) system, recognized as the 50th Digital Public Good by the United Nations. This system transcends being merely a digital repository of patient records, evolving into a platform that supports advanced TeleICU capabilities.\n\nOHC represents a unique fusion of professional expertise and community-driven innovation, primarily fueled by a small team of dedicated developers and a dynamic community of college students. This collaborative model showcases a new paradigm in healthcare technology, emphasizing impactful, sustainable, and scalable solutions.\n\nOriginally a volunteer-driven initiative during the COVID-19 pandemic, OHC has continually addressed citizen-level healthcare problems. Its CARE software, adopted by several Indian states, played a crucial role in optimizing healthcare resource management during the pandemic. As the pandemic waned, CARE evolved to support the 10BedICU Project, enabling technology-driven ICU care in rural India and providing TeleICU services to the remotest regions, impacting thousands of lives.\n\nToday, beyond the 10BedICU Project, CARE is being adopted for various healthcare applications, including palliative care digitization, demonstrating its adaptability and growing significance in improving healthcare delivery across diverse settings. OHC's journey is a testament to the transformative impact of youth-driven initiatives in healthcare, touching the lives of millions across India.", + "image_url": "https://summerofcode.withgoogle.com/media/org/open-healthcare-network/eutslgqeknc9vlgd-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-healthcare-network.webp", "logo_r2_url": null, - "url": "http://orange.biolab.si", + "url": "https://ohc.network/", "active_years": [ - 2016 + 2024, + 2025, + 2026 ], - "first_year": 2016, - "last_year": 2016, - "is_currently_active": false, + "first_year": 2024, + "last_year": 2026, + "is_currently_active": true, "technologies": [ "python", - "cython", - "machine learning", - "qt" + "django", + "react", + "typescript", + "NextJs" ], "topics": [ - "visualization", - "machine learning", - "data mining", - "bioinformatics", - "gui toolkit" + "electronic medical records", + "Digital Public Goods", + "Telemedicine and Remote Care", + "AI in Health", + "HMIS" ], - "total_projects": 5, + "total_projects": 9, "first_time": false }, { - "id": "692251e153dd9d7326d33e69", - "slug": "orcasound", - "name": "Orcasound", - "category": "Science and medicine", - "description": "Humans & AI listening together to save the whales.", - "image_url": "https://summerofcode.withgoogle.com/media/org/orcasound/fu5kadqoa0vlsjhx-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/orcasound.webp", + "id": "692251df53dd9d7326d33e4e", + "slug": "open-roberta", + "name": "Open Roberta", + "category": "Programming languages", + "description": "Open Roberta® Lab is an online IDE introducing kids to program robots with NEPO®", + "image_url": "https://lh3.googleusercontent.com/TihjVj3TcdATW2AuNmSCtSYsYYjwtvFdqsNA3nQs2eH0IDOUBM6iFEhPfOPgDN0OsD9T6p-cTcfsYtYKJ5UbdHjIKkCaaPPQp3wMn71HDq0R", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-roberta.webp", "logo_r2_url": null, - "url": "https://orcasound.net", + "url": "https://lab.open-roberta.org", "active_years": [ + 2018, + 2019, 2020, - 2021, - 2022 + 2021 ], - "first_year": 2020, - "last_year": 2022, + "first_year": 2018, + "last_year": 2021, "is_currently_active": false, "technologies": [ - "python", "javascript", - "react", - "raspberry pi", - "elixir", - "NextJs" + "java", + "python", + "go", + "c++", + "typescript" ], "topics": [ - "machine learning", - "web application", - "audio", - "real-time", - "citizen science", - "scientific visualization", - "audio analysis", + "education", + "robotics", + "programming", "web", - "ai", - "acoustics", - "community science" + "visual programming" ], - "total_projects": 10, + "total_projects": 8, "first_time": false }, { - "id": "692251e153dd9d7326d33e6a", - "slug": "organic-maps", - "name": "Organic Maps", + "id": "692251df53dd9d7326d33e4f", + "slug": "open-robotics", + "name": "Open Robotics", "category": "End user applications", - "description": "Offline maps app for tourists, cyclers & hikers", - "image_url": "https://summerofcode.withgoogle.com/media/org/organic-maps/cnhed0elppzqsjut-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/organic-maps.webp", + "description": "Open Robotics supports the development, distribution, and adoption of open source software for use in robotics research, education, and product development. Open Robotics is an umbrella organization encompassing five projects: \n- Robot Operating System (ROS), a robot development framework.\n- Gazebo, a robot simulation framework.\n- Open-RMF, a framework for coordinating multiple fleets of robots.\n- ros-controls, an extensive control framework built for ROS.\n- The ROS Infrastructure that is used to build and distribute ROS packages.", + "image_url": "https://summerofcode.withgoogle.com/media/org/open-robotics/6pg3nwfpieq1qmqw-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-robotics.webp", "logo_r2_url": null, - "url": "https://organicmaps.app", + "url": "https://www.openrobotics.org/", "active_years": [ + 2016, + 2018, + 2019, + 2020, + 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ], - "first_year": 2022, - "last_year": 2025, + "first_year": 2016, + "last_year": 2026, "is_currently_active": true, "technologies": [ - "android", - "java", + "ros", + "gazebo", + "python", + "javascript", + "c", "c++", - "ios", - "OpenStreetMap" + "ignition", + "Open-RMF", + "Bevy" ], "topics": [ - "privacy", - "maps", - "navigation", - "mobile", - "offline" + "robotics", + "simulation", + "middleware", + "fleet management", + "Control", + "Hardware Control", + "buildfarms" ], - "total_projects": 10, + "total_projects": 46, "first_time": false }, { - "id": "692251e153dd9d7326d33e6b", - "slug": "our-world-in-data", - "name": "Our World In Data", + "id": "692251df53dd9d7326d33e50", + "slug": "open-science-initiative-for-perfusion-imaging", + "name": "Open Science Initiative for Perfusion Imaging", "category": "Science and medicine", - "description": "Explaining the world's biggest problems with data", - "image_url": "https://summerofcode.withgoogle.com/media/org/our-world-in-data/ghnijuxmyoccl6rt-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/our-world-in-data.webp", + "description": "Perfusion Magnetic Resonance Imaging (MRI) is a vital medical imaging technique that assesses blood flow in tissues and thus contributes crucial information for diagnosing conditions such as stroke, tumors, and neurological disorders. Unlike the standard MRI methods that are daily used in hospitals, raw perfusion MRI data require further processing and quantification. This requires dedicated software tools. However, the lack of standardization and the availability of standardized and tested analysis code makes perfusion MRI less accessible and hinders its widespread use. The ISMRM Open Science Initiative for Perfusion Imaging (OSIPI) aims to address this gap and create resources for best practices in perfusion MRI including software and data inventories, code repositories, challenges, and educational material.", + "image_url": "https://summerofcode.withgoogle.com/media/org/open-science-initiative-for-perfusion-imaging/bxlqptrs5g0ovtqz-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-science-initiative-for-perfusion-imaging.webp", "logo_r2_url": null, - "url": "https://ourworldindata.org/", + "url": "https://osipi.ismrm.org/", "active_years": [ - 2022 + 2024, + 2025, + 2026 ], - "first_year": 2022, - "last_year": 2022, - "is_currently_active": false, + "first_year": 2024, + "last_year": 2026, + "is_currently_active": true, "technologies": [ "python", - "mysql", - "d3", - "typescript", - "pandas" + "github" ], "topics": [ - "open data", - "data visualisation", - "Data cataloging" + "artificial intelligence", + "data visualization", + "data analysis", + "medical imaging", + "reproducible science" ], - "total_projects": 2, + "total_projects": 9, "first_time": false }, { - "id": "692251e253dd9d7326d33e6c", - "slug": "p2psporg", - "name": "P2PSP.org", - "category": "Media", - "description": "Shaping the future Internet TV", - "image_url": "https://lh3.googleusercontent.com/W6ous6DUr-hggplxAVhPlbTaDa7eXE6PxqrQ7kQxyq-45q_fHcfImrzpcVjZ-mjt2d7onZ128-NgAx1zMfsmKMU0pczMKA", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/p2psporg.webp", + "id": "692251df53dd9d7326d33e51", + "slug": "open-science-labs", + "name": "Open Science Labs", + "category": "Science and medicine", + "description": "Open Science Labs is a global community dedicated to creating an open space for\nteaching, learning, and sharing information about open science and computational\ntools. Our community develops tools that address real-world problems and\ncollaborates with other projects and workgroups to improve technology and create\ninternational opportunities for our community. Although our focus may seem\nbroad, we initially prioritize supporting Research Software Engineers (RSEs) who\noften face computational challenges in their work. We recognize that many\ncolleagues in scientific fields may not be familiar with programming languages,\ncomputational libraries, version control systems, databases, DevOps, and other\ncomputational tools. Therefore, we aim to provide a safe and open space for\nindividuals to learn and share their knowledge. Our community is open to\neveryone, including students, professors, and industry professionals, as we\nbelieve that the challenges and technologies used in these fields are frequently\nsimilar, if not the same (in many cases).", + "image_url": "https://summerofcode.withgoogle.com/media/org/open-science-labs/rjv8l7mrkiwlv9ab-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-science-labs.webp", "logo_r2_url": null, - "url": "http://www.p2psp.org", + "url": "https://opensciencelabs.org", "active_years": [ - 2016, - 2017, - 2018 + 2025, + 2026 ], - "first_year": 2016, - "last_year": 2018, - "is_currently_active": false, + "first_year": 2025, + "last_year": 2026, + "is_currently_active": true, "technologies": [ "python", - "android", - "c++", - "ios", - "webrtc", - "qt", - "sockets", "javascript", - "c" + "c++", + "docker", + "AST", + "llvm" ], "topics": [ - "security", - "networking", - "multimedia", - "live streaming", - "p2p", - "streaming", - "video", - "real time", - "distributed networks" + "devops", + "devtools", + "open-science", + "web", + "ai" ], - "total_projects": 5, + "total_projects": 4, "first_time": false }, { - "id": "692251e253dd9d7326d33e6d", - "slug": "pal-robotics", - "name": "PAL Robotics", + "id": "692251e053dd9d7326d33e52", + "slug": "open-states", + "name": "Open States", "category": "Other", - "description": "Enhance people’s quality of life through Robotics", - "image_url": "https://summerofcode.withgoogle.com/media/org/pal-robotics/f3yidefsydweipcc-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/pal-robotics.webp", + "description": "Open Source State Legislative Data", + "image_url": "https://lh3.googleusercontent.com/NwcPOErW65aS1HhiyvCsBHwtxUKIjYW4MlE123d_66rwai20REjJkxDZP_BOjYSwnrY6oRDkBHqPJzdtvRIj9YlJ1bqkPw", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-states.webp", "logo_r2_url": null, - "url": "https://pal-robotics.com/", + "url": "https://openstates.org", "active_years": [ - 2025 + 2017, + 2018 ], - "first_year": 2025, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2017, + "last_year": 2018, + "is_currently_active": false, "technologies": [ "python", + "postgresql", "javascript", - "c++" + "django", + "react", + "graphql" ], "topics": [ - "robotics", - "reinforcement learning", - "web tools" + "web", + "government", + "journalism", + "civic", + "civic tech", + "scraping" ], - "total_projects": 2, - "first_time": true + "total_projects": 1, + "first_time": false }, { - "id": "692251e253dd9d7326d33e6e", - "slug": "pecan-project", - "name": "PEcAn Project", + "id": "692251e053dd9d7326d33e53", + "slug": "open-technologies-alliance-gfoss", + "name": "Open Technologies Alliance - GFOSS", "category": "Science and medicine", - "description": "Develop and promote tools for ecosystem modeling", - "image_url": "https://summerofcode.withgoogle.com/media/org/pecan-project/kijyzllr7r1g0ukz-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/pecan-project.webp", + "description": "Open Technologies Alliance (GFOSS) is a non-profit organization, with 37 Universities and Research Centers as its shareholders. Our main goal is to promote Openness.\nGFOSS – Open Technologies Alliance is a platform for Open Standards, Free Software, Open Content, Open Data & Open Hardware in Greece. The major Greek Universities and Research Centers participate in GFOSS – Open Technologies Alliance, while leading members of the Greek community of developers play a key role in the implementation of our policies. Through our initiatives we aspire to contribute and coordinate the efforts of groups of volunteers, public servants, university researchers and students enabling them to form the backbone of Greek FOSS development and implementation. GFOSS is one of the strategic actors for the promotion of OSS throughout Greece (see https://joinup.ec.europa.eu/sites/default/files/inline-files/OSS%20Country%20Intelligence%20Report_GR.pdf ). Many public administrations and academic institutions collaborate with GFOSS to implement open source projects and through Google Summer of Code we give the opportunity to students to actively engage in the production and the actual implementation of an open source project. GFOSS also contributes and advises on the development of various open source projects related to e-government and digital transformation in Greece (e.g. https://howto.gov.gr/ - https://forma.gov.gr/) and actively promotes the use of Open Source software and hardware in the Greek primary and secondary education through the Open Educational Technologies Competition (https://openedtech.ellak.gr/ )", + "image_url": "https://summerofcode.withgoogle.com/media/org/open-technologies-alliance-gfoss/kiyijull8pfdypve-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-technologies-alliance-gfoss.webp", "logo_r2_url": null, - "url": "https://pecanproject.github.io/", + "url": "http://www.gfoss.eu", "active_years": [ 2017, 2018, 2019, - 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ + "python", + "mysql", + "java", + "php", + "virtuoso", "c", - "postgresql", + "c++", + "python 3", "javascript", - "r", - "php", - "python", - "docker", - "singularity", - "kubernetes", - "api", - "geospatial" + "html", + "css", + "gtk", + "qt", + "arduino", + "perl", + "python deep learning frameworks", + "node.js", + "Machine Learning (ML)", + "c/c++", + "nodejs" ], "topics": [ - "data science", - "ecosystem models", - "scientific visualization", - "ecological forecasting", - "climate science", - "Ecological Forecasting," + "hardware", + "cloud", + "data", + "c++ tools", + "python", + "javascript", + "gtk", + "java jsp", + "programming languages", + "robotics", + "java", + "open education", + "c- c+", + "open hardware", + "perl", + "web", + "c++", + "nodered", + "Artificial Inteligence" ], - "total_projects": 30, + "total_projects": 70, "first_time": false }, { - "id": "692251e253dd9d7326d33e6f", - "slug": "plasma-umass", - "name": "PLASMA-UMass", - "category": "Programming languages", - "description": "PLASMA explores ways to make programming languages faster, safer, and easier.", - "image_url": "https://lh3.googleusercontent.com/-9rCeol_lVeOVF1zTb2EaHP6fkAR-gqTXAtT-c5CuKlA8nSLFt6EW3YRhm1uqRB9AyahcBtBtdB7QiKxQpNUanGqGIbxGw", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/plasma-umass.webp", + "id": "692251e053dd9d7326d33e54", + "slug": "open-transit-software-foundation", + "name": "Open Transit Software Foundation", + "category": "End user applications", + "description": "We are the home for the OneBusAway project. OneBusAway is a suite of open source transit information tools based on real-time vehicle data.\n\nOneBusAway is a suite of open source transit information tools that enable transit agencies to provide real-time vehicle locations, alerts, and arrival information to riders, with iOS and Android apps, a web platform, and robust APIs, as well as back office support. OneBusAway lets transit agencies be in control, without needing to build everything themselves and without cutting corners.", + "image_url": "https://summerofcode.withgoogle.com/media/org/open-transit-software-foundation/uz3p7k5vsxduhrhk-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-transit-software-foundation.webp", "logo_r2_url": null, - "url": "http://plasma.cs.umass.edu", + "url": "https://opentransitsoftwarefoundation.org", "active_years": [ - 2016 + 2024, + 2025, + 2026 ], - "first_year": 2016, - "last_year": 2016, - "is_currently_active": false, + "first_year": 2024, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "javascript", - "c", - "c++", - "go", - "scala" + "android", + "java", + "golang", + "docker", + "ios" ], "topics": [ - "operating systems", - "software engineering", - "programming languages", - "programming tools", - "runtime systems" + "ai", + "apps", + "Transit", + "travel", + "bus" ], - "total_projects": 1, + "total_projects": 10, "first_time": false }, { - "id": "692251e253dd9d7326d33e70", - "slug": "pmd", - "name": "PMD", - "category": "Programming languages", - "description": "An extensible cross-language static code analyzer.", - "image_url": "https://lh3.googleusercontent.com/XshAjEG09ri7DW3eLjpOB7zgcI57j2CBMhOmcWRJ3haTuJWphGXHF-b7Sc_hf01BFc3YgtOmbh6qujmpC3JJyS6bdNYjWaY", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/pmd.webp", + "id": "692251e053dd9d7326d33e55", + "slug": "open3d-team", + "name": "Open3D team", + "category": "Data", + "description": "A Modern Library for 3D Data Processing", + "image_url": "https://summerofcode.withgoogle.com/media/org/open3d-team/yhzlqgd1qkcypvrw-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open3d-team.webp", "logo_r2_url": null, - "url": "https://pmd.github.io/", + "url": "http://www.open3d.org/", "active_years": [ - 2017, - 2018 + 2022 ], - "first_year": 2017, - "last_year": 2018, + "first_year": 2022, + "last_year": 2022, "is_currently_active": false, "technologies": [ - "java", - "xml", - "javacc", - "antlr", - "xpath" + "python", + "c++", + "cuda", + "tensorflow", + "pytorch" ], "topics": [ - "code analysis", - "code quality", - "source code analyzer", - "linter" + "3D machine learning", + "3D data processing", + "3D visualization", + "physically based rendering" ], "total_projects": 3, "first_time": false }, { - "id": "692251e253dd9d7326d33e71", - "slug": "prism-model-checker", - "name": "PRISM Model Checker", - "category": "Science and medicine", - "description": "PRISM is a tool for formally verifying the correctness of probabilistic systems.", - "image_url": "https://lh3.googleusercontent.com/XK1ab1MTDTxb-6-kx3oOqRIvw1EsGZ78EVDnHy73kseH3O6Oh93nvv9WNn_TqduBUsnccMiaWwLERzjO4V4stIwqVlDiRA", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/prism-model-checker.webp", + "id": "692251e053dd9d7326d33e56", + "slug": "openafs", + "name": "OpenAFS", + "category": "Operating systems", + "description": "OpenAFS is a distributed filesystem originally developed at Carnegie Mellon University and IBM. It offers a client-server architecture for federated file sharing and replicated read-only content distribution, providing location independence, scalability, security, and transparent migration capabilities. OpenAFS is available for a broad range of systems including UNIX, Linux, MacOS X, and Microsoft Windows.", + "image_url": "https://summerofcode.withgoogle.com/media/org/openafs/hhf0h2zemmqes7kt-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/openafs.webp", "logo_r2_url": null, - "url": "http://www.prismmodelchecker.org", + "url": "https://www.openafs.org", "active_years": [ - 2016 + 2022, + 2025, + 2026 ], - "first_year": 2016, - "last_year": 2016, - "is_currently_active": false, + "first_year": 2022, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "java", - "c++" + "c", + "python", + "git", + "ansible", + "filesystems", + "javascript", + "tcp/udp" ], "topics": [ - "verification", - "science", - "probabilistic models" + "testing", + "network", + "storage", + "filesystems", + "kernel" ], - "total_projects": 5, + "total_projects": 4, "first_time": false }, { - "id": "692251e253dd9d7326d33e72", - "slug": "peragro", - "name": "Peragro", - "category": "Other", - "description": "Digital Assets Managed Neatly", - "image_url": "https://lh3.googleusercontent.com/30U2sySIY1xqaIbEGgosUKnLzLYhOUaLkuKjCJhnjTgXD4bE86E5FOiHJqOV0nb3qUnmPTxVrw4D29pzgNToPKuS75AekeJ-", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/peragro.webp", + "id": "692251e053dd9d7326d33e57", + "slug": "openastronomy", + "name": "OpenAstronomy", + "category": "Science and medicine", + "description": "OpenAstronomy is a collaboration between open source astronomy, astrophysics & heliophysics projects that are used by researchers and software engineers around the world to study our universe either by analysing the data obtained from amazing instruments like the [James Webb Space telescope](https://jwst.nasa.gov/), the [Square Kilometer Array](https://www.skatelescope.org/) or the [Solar Dynamic Observatory](http://sdo.gsfc.nasa.gov/), developing very sophisticated numerical models (eg., [FLASH](http://flash.uchicago.edu/)) or designing interplanetary trajectories for human-made spacecraft. The analysis of such data helps multiple types of research, from being able to forecast solar storms to detecting planets in other stars, to understanding how galaxies are formed to explain the expansion and the origin of the universe.\n\nOpenAstronomy currently consists of [18 projects](https://openastronomy.org/members/) that develop tools, the range of which is wide. \nFor example: \n- [Astropy](https://www.astropy.org/) is a general Python library for astronomy, providing common tools such as celestial coordinates, image processing, tabular data, reading and writing, units and support for astronomy-specific file formats; \n- [SunPy](https://sunpy.org/) provides utilities for obtaining and representing solar physics data, with access to the largest online solar physics data archives and solar specific analysis tools and visualisation code;\n- [Julia Astro](https://juliaastro.org/dev/index.html) is a set of packages for general astronomy and astrophysics analysis using Julia;\n- And more!\n\nAs a single organisation, we strive to strengthen collaborations between each sub-organisation, and at the same time increase the awareness among our users on the capabilities of our \"sister\" projects. With the goal being unification of standards and libraries to enable true multidisciplinary research.", + "image_url": "https://summerofcode.withgoogle.com/media/org/openastronomy/3wvadxwxjc2arepg-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/openastronomy.webp", "logo_r2_url": null, - "url": "http://www.peragro.org/", + "url": "https://openastronomy.org/", "active_years": [ - 2016 + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ], "first_year": 2016, - "last_year": 2016, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ + "c", "python", + "julia", + "numpy", + "qt", + "c++", + "numba", "javascript", - "django", - "blender", - "celery" + "spark", + "css" ], "topics": [ - "web", - "games", - "analyzing", - "transcoding", - "pipeline automation" + "visualization", + "science", + "astronomy", + "solar physics", + "atomic physics", + "data science", + "visualisation", + "astrophysics", + "orbital mechanics", + "high-energy astrophysics", + "high energy astrophysics", + "cloud infrastructure", + "image processing", + "data analysis" ], - "total_projects": 0, + "total_projects": 77, "first_time": false }, { - "id": "692251e253dd9d7326d33e73", - "slug": "percona", - "name": "Percona", - "category": "Data", - "description": "Unbiased open source database experts.", - "image_url": "https://lh3.googleusercontent.com/b6GVDxPfANhAVQI8RB85qninvaaCHTpzoXsOkRHGq2xXmpcVYXAASewxkMNVJ5HrKh5r7igQN3bKbb6etu2hKp8In925EsOk", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/percona.webp", + "id": "692251e053dd9d7326d33e59", + "slug": "opencensus", + "name": "OpenCensus", + "category": "Infrastructure and cloud", + "description": "Planet Scale Tracing and Monitoring", + "image_url": "https://lh3.googleusercontent.com/DobUf9xiIyhEf9eJYMwAAQDgPdWfkzmPQEuGfWtVfEL_0yqzrANy4LN0bfKSOFJSVyNrLXrLTQtPbLQqNR9JV2xZhW-Ek5I", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/opencensus.webp", "logo_r2_url": null, - "url": "https://www.percona.com/", + "url": "http://opencensus.io", "active_years": [ - 2019, - 2020 + 2018 ], - "first_year": 2019, - "last_year": 2020, + "first_year": 2018, + "last_year": 2018, "is_currently_active": false, "technologies": [ - "mysql", - "postgresql", - "prometheus", - "javascript", - "selenium", - "shell script", - "golang", - "grafana" + "python", + "java", + "go", + "ruby", + "node.js" ], "topics": [ - "database optimization", - "metrics", - "testing", "monitoring", - "databases", - "data visualization", - "automation", - "load testing", - "alerts" + "c++", + "tracing", + "php" ], - "total_projects": 3, + "total_projects": 1, "first_time": false }, { - "id": "692251e253dd9d7326d33e74", - "slug": "performance-co-pilot", - "name": "Performance Co-Pilot", - "category": "Operating systems", - "description": "System performance analysis", - "image_url": "https://summerofcode.withgoogle.com/media/org/performance-co-pilot/ef66s0dqidt5rfle-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/performance-co-pilot.webp", + "id": "692251e053dd9d7326d33e58", + "slug": "opencv", + "name": "OpenCV", + "category": "Media", + "description": "++ beneficial uses of computer vision in society", + "image_url": "https://summerofcode.withgoogle.com/media/org/opencv/fmh9fnybaz97kodm-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/opencv.webp", "logo_r2_url": null, - "url": "https://pcp.io/", + "url": "https://opencv.org/", "active_years": [ 2016, 2017, - 2018, 2019, 2020, - 2022 + 2021, + 2022, + 2023, + 2024, + 2025 ], "first_year": 2016, - "last_year": 2022, + "last_year": 2025, "is_currently_active": false, "technologies": [ + "python", + "machine learning", + "c++", + "computer vision", + "deep learning", + "vision", "javascript", - "java", - "ruby", - "golang", - "linux kernel", "c", - "python", - "linux", - "windows", - "redis", - "grafana", - "rest", - "libuv", - "htop", - "sysstat" + "cuda", + "python 3", + "opengl", + "ai" ], "topics": [ - "monitoring", - "visualization", - "high performance computing", - "data analysis", - "realtime messaging", - "web development", - "performance", - "kernel", - "distributed", - "analysis", - "timeseries", - "lightweight", - "metrics", - "observability" + "virtual reality", + "machine learning", + "robotics", + "computer vision", + "real time", + "deep learning", + "vision", + "graphics", + "ai" ], - "total_projects": 19, + "total_projects": 93, "first_time": false }, { - "id": "692251e253dd9d7326d33e75", - "slug": "pharo-consortium", - "name": "Pharo Consortium", - "category": "Programming languages", - "description": "Modern and immersive programming language", - "image_url": "https://summerofcode.withgoogle.com/media/org/pharo-consortium/zrxygkl3ycuvw6nb-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/pharo-consortium.webp", + "id": "692251e053dd9d7326d33e5a", + "slug": "openelis-global", + "name": "OpenELIS Global", + "category": "Science and medicine", + "description": "OpenELIS Global (Open Enterprise laboratory Information System) is an open-source, standards-based, and secure lab information system for labs of any size and need.\n\nIt is an enterprise-level laboratory information system built on open-source web-based technologies that has been tailored for low- and middle-income country public health laboratories.\n\nThe software serves as both an effective laboratory software solution and a business process framework. It supports the effective functioning of public health laboratories for best laboratory practice and accreditation.", + "image_url": "https://summerofcode.withgoogle.com/media/org/openelis-global/k6rnzk3hcktzabst-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/openelis-global.webp", "logo_r2_url": null, - "url": "https://pharo.org/", + "url": "https://openelis-global.org/", "active_years": [ - 2017, - 2019, - 2021, - 2023, - 2025 + 2024, + 2025, + 2026 ], - "first_year": 2017, - "last_year": 2025, + "first_year": 2024, + "last_year": 2026, "is_currently_active": true, "technologies": [ - "smalltalk", - "roassal", - "polymath", - "pharo", - "ide", - "squeak", - "os", - "spec", - "git", - "SUnit" + "postgresql", + "javascript", + "java", + "react", + "spring" ], "topics": [ - "data science", - "user interface", - "ide", - "object oriented programming", - "dynamic environment", - "web development", - "nlp", - "cli", - "material design", - "compilers", - "visualization", - "programming languages", - "virtual machines", - "machine learning", - "Modelling", - "Live music" + "Health Care", + "Laboratory Information System" ], - "total_projects": 32, + "total_projects": 9, "first_time": false }, { - "id": "692251e253dd9d7326d33e76", - "slug": "physical-web-project", - "name": "Physical Web Project", - "category": "Other", - "description": "Physical Web GSoC project based on the Physical Web", - "image_url": "https://lh3.googleusercontent.com/4louIdBvWdQ5Jz_c-9lYN8p0OjZKSZ6DJoCPgBlqdyRI5UjJ8PmrYew-CWgjBlIJm_8NJnlv0Wsn6zvHvp4WASe07-0UCg", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/physical-web-project.webp", + "id": "692251e053dd9d7326d33e5b", + "slug": "openemr", + "name": "OpenEMR", + "category": "Science and medicine", + "description": "OpenEMR is a leader in healthcare open-source software", + "image_url": "https://lh3.googleusercontent.com/yEvQbaxEYLmlIJzXJUNtDCZkX5sYoYeJ2vmdAFAbz3t1kkVdIQloDfA8U36hLndz5Nim2OHUws54LDps7YkSaI-lqW8Cbt8", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/openemr.webp", "logo_r2_url": null, - "url": "http://physical-web-project.github.io/", + "url": "https://www.open-emr.org/", "active_years": [ - 2016, - 2017 + 2020 ], - "first_year": 2016, - "last_year": 2017, + "first_year": 2020, + "last_year": 2020, "is_currently_active": false, "technologies": [ - "python", - "arduino", - "internet of things", - "beacons", - "beacon", - "web bluetooth", - "physical web", - "bluetooth" + "mysql", + "javascript", + "html", + "docker", + "php" ], "topics": [ - "web apps", - "internet of things", - "mobile", - "beacons" + "health", + "medicine", + "medical records", + "cloud", + "medical practice management solution" ], - "total_projects": 8, + "total_projects": 3, "first_time": false }, { - "id": "692251e253dd9d7326d33e77", - "slug": "pidgin-instant-messenger", - "name": "Pidgin Instant Messenger", - "category": "Social and communication", - "description": "A universal chat client.", - "image_url": "https://lh3.googleusercontent.com/_cnWCvAP_kL_uIGMn_YD3zwWIJYWZ9TCAcGUjJ8FGHX3M1cieul6RxNm9lyflwkRn3kucFNG-RQMhlC7k8_8-4rBUyDO19lx1WGPp3hvTdC2", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/pidgin-instant-messenger.webp", + "id": "692251e053dd9d7326d33e5c", + "slug": "openhmd", + "name": "OpenHMD", + "category": "Media", + "description": "Multi-Platform Open Source driver for AR/VR/XR devices with stable ABI.", + "image_url": "https://lh3.googleusercontent.com/UgdTxILUY9QohgqoAY9CKmPSBtFjmdtBM-9WIFY1vgeZ40lOFoN_XQhSlpG6IdgjKlHXpht3Jkp_uyvxrsZQKKGZ8w5BWn9E", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/openhmd.webp", "logo_r2_url": null, - "url": "https://pidgin.im", + "url": "http://openhmd.net", "active_years": [ - 2021 + 2020 ], - "first_year": 2021, - "last_year": 2021, + "first_year": 2020, + "last_year": 2020, "is_currently_active": false, "technologies": [ - "c", - "gtk", - "gstreamer" + "opengl", + "opencv", + "vulkan", + "c99", + "libusb" ], "topics": [ - "web", - "real time", - "video", - "chat", - "voice" + "virtual reality", + "computer vision", + "reverse engineering", + "drivers", + "xr" ], - "total_projects": 1, + "total_projects": 0, "first_time": false }, { - "id": "692251e253dd9d7326d33e78", - "slug": "pitivi", - "name": "Pitivi", - "category": "End user applications", - "description": "Self-expression through filmmaking", - "image_url": "https://summerofcode.withgoogle.com/media/org/pitivi/tghrhxkqd9hb4cks-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/pitivi.webp", + "id": "692251e053dd9d7326d33e5d", + "slug": "openkeychain-openpgp-for-android", + "name": "OpenKeychain (OpenPGP for Android)", + "category": "Security", + "description": "OpenKeychain: Easy PGP for Android", + "image_url": "https://lh3.googleusercontent.com/wAkJBRA8v5z62PnJCHuzhl_GvQFzVFtim5UBjCy7ga473SN5tE7ttGh6fp4DE-qSKe9JcZnmYvVYCvE7JXSFDM653L0k-OmQ", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/openkeychain-openpgp-for-android.webp", "logo_r2_url": null, - "url": "https://www.pitivi.org/", + "url": "https://www.openkeychain.org/", "active_years": [ - 2019, - 2020, - 2021, - 2023 + 2016 ], - "first_year": 2019, - "last_year": 2023, + "first_year": 2016, + "last_year": 2016, "is_currently_active": false, "technologies": [ - "c", - "gtk", - "python 3", - "gstreamer", - "python" + "android", + "openpgp" ], "topics": [ - "video processing", - "filmmaking", - "video editing" + "security", + "e-mail", + "encryption" ], - "total_projects": 10, + "total_projects": 2, "first_time": false }, { - "id": "692251e253dd9d7326d33e79", - "slug": "plan-9-foundation", - "name": "Plan 9 Foundation", - "category": "Operating systems", - "description": "Lightweight distributed computing", - "image_url": "https://lh3.googleusercontent.com/HGZK0TXmYe6UAht6sgArgJi8TVarCJr-GPdVkHlCOpWO6e3kfzPrjpLvSeIgDcu7lAErDfcPPVqiqh-Eeu70rRxTROQgwa4kPouOYYmvu4_I", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/plan-9-foundation.webp", + "id": "692251e153dd9d7326d33e60", + "slug": "openmined", + "name": "OpenMined", + "category": "Programming languages", + "description": "Lowering the barrier of entry to privacy preserving technology", + "image_url": "https://lh3.googleusercontent.com/_Bu5iadg0zeGl4k9_uMq0GXWovTyDcQIX8v0cyiXuYpRCxPkjneUSJSngzzQChyInMexi2Urv3a1kIP1pGyvfkGf-uK-6J56-AEzRkETR4Mx", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/openmined.webp", "logo_r2_url": null, - "url": "http://p9f.org/", + "url": "https://www.openmined.org/", "active_years": [ + 2020, 2021 ], - "first_year": 2021, + "first_year": 2020, "last_year": 2021, "is_currently_active": false, "technologies": [ - "c", - "golang", - "distributed systems", - "concurrency" + "deep learning", + "federated learning", + "homomorphic encryption", + "secure multi-party computation", + "differential privacy", + "python", + "javascript", + "rust", + "pytorch", + "hyperledger aries" ], "topics": [ - "operating systems", - "distributed systems", - "network programming" + "privacy", + "artificial intelligence", + "encrypted computation", + "federated learning", + "structured transparency", + "differential privacy" ], - "total_projects": 2, + "total_projects": 9, "first_time": false }, { - "id": "692251e353dd9d7326d33e7a", - "slug": "plone-foundation", - "name": "Plone Foundation", - "category": "Web", - "description": "Python-based CMS, with React front-end.", - "image_url": "https://summerofcode.withgoogle.com/media/org/plone-foundation/wivpatiziuhidzjw-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/plone-foundation.webp", + "id": "692251e053dd9d7326d33e5e", + "slug": "openmrs", + "name": "OpenMRS", + "category": "Science and medicine", + "description": "OpenMRS provides the foundational, electronic medical record technology for more than 6,500 health facilities in over 80 countries, touching and helping millions of patients throughout the world. \n\nThe OpenMRS Community’s mission is to improve healthcare delivery in resource-constrained environments. \n\nWe coordinate a global community that creates and sustains a robust, scalable, user-driven and open-source medical record platform and reference frontend application.\n\nWe maintain a platform that countries and implementers use to create a customized EMR system in response to actual needs on the ground.", + "image_url": "https://summerofcode.withgoogle.com/media/org/openmrs/evthgp3dhsqx5kyx-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/openmrs.webp", "logo_r2_url": null, - "url": "https://plone.org", + "url": "https://openmrs.org/", "active_years": [ 2016, 2017, 2018, + 2019, + 2020, + 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ - "python", + "java", + "html5", + "groovy", + "xml", + "hibernate", + "mysql", "javascript", - "rest", - "nosql", - "zope", "html", "css", - "reactjs", - "react" - ], - "topics": [ - "content management", - "enterprise applications", - "cms", - "web", - "collaboration", - "communications" - ], - "total_projects": 26, - "first_time": false - }, - { - "id": "692251e353dd9d7326d33e7b", - "slug": "pocket-science-lab", - "name": "Pocket Science Lab", - "category": "Science and medicine", - "description": "Miniaturizing the Open Science Lab with Open Hardware and Open Source Software", - "image_url": "https://lh3.googleusercontent.com/c7_U0V5eO45sxFuYzs4fxjfK48XCdJ4qfKUryOgDy7RqPuj7TkqptMJjUzJyfNG0FRx3nNtl9d76UP2PGxnJ1oc9B3zvL_o", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/pocket-science-lab.webp", - "logo_r2_url": null, - "url": "https://pslab.io", - "active_years": [ - 2018 - ], - "first_year": 2018, - "last_year": 2018, - "is_currently_active": false, - "technologies": [ - "c", + "spring", + "rest", "android", - "java", - "firmware", - "cad" + "fhir", + "Cypress", + "reactjs" ], "topics": [ - "education", - "science", - "firmware", - "school apps" + "health", + "medical records", + "clinics", + "ehealth", + "hospitals", + "clinical", + "developing world", + "open source", + "developing countries", + "science and medicine", + "medical record", + "open source medical records", + "electronic medical records", + "platform", + "Electronic Medical Record System", + "frontend", + "QA automation" ], - "total_projects": 2, + "total_projects": 94, "first_time": false }, { - "id": "692251e353dd9d7326d33e7c", - "slug": "point-cloud-library", - "name": "Point Cloud Library", + "id": "692251e153dd9d7326d33e5f", + "slug": "openms", + "name": "OpenMS", "category": "Science and medicine", - "description": "Standalone, large scale, open project for 2D/3D image and point cloud processing", - "image_url": "https://lh3.googleusercontent.com/AOzUOMLm4TOHrEUH5LV9vlw6WgOjPt3DIm8hFkXUox68mU2eFZvb4nVLyeeo_joW2BSHQ6fAz10QKrlsB4-nSxldoa3zi54gZ_qXBxwXchveZg", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/point-cloud-library.webp", + "description": "OpenMS is an open-source C++ software library for mass spectrometry data management and analysis with python wrappers. OpenMS houses an expansive modular toolset and ready-to-use scientific workflows in Galaxy, KNIME and nextflow.", + "image_url": "https://summerofcode.withgoogle.com/media/org/openms-inc/qhamer7p2auro5cs-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/openms.webp", "logo_r2_url": null, - "url": "https://pointclouds.org/", + "url": "https://OpenMS.org", "active_years": [ - 2020, - 2021 + 2025, + 2026 ], - "first_year": 2020, - "last_year": 2021, - "is_currently_active": false, + "first_year": 2025, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "cmake", - "cpp", - "devops", "python", - "cuda", - "c++14", - "computer vision" - ], - "topics": [ - "robotics", - "3d computer vision", - "perception", - "computer vision", - "data structures", - "2d/3d graphics", - "gpu computing" - ], - "total_projects": 5, - "first_time": false - }, - { - "id": "692251e353dd9d7326d33e7d", - "slug": "polly-labs", - "name": "Polly Labs", - "category": "Programming languages", - "description": "Promoting Polyhedral Compilation", - "image_url": "https://lh3.googleusercontent.com/yKCUZwrL8WLvq58Lpcxl0GZ1wdQFNuhMVxp0NvQT8R_ZkRCaVvcOqhv0SP6MMdbDJCTxm1k9FPC6W4V-cbQwh9AUxi-nSHc6", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/polly-labs.webp", - "logo_r2_url": null, - "url": "http://pollylabs.org", - "active_years": [ - 2017, - 2018 - ], - "first_year": 2017, - "last_year": 2018, - "is_currently_active": false, - "technologies": [ - "llvm", - "polly", - "ppcg", - "integer set library", - "pencil", - "c", + "cython", "c++", - "isl" + "r", + "pytorch", + "Streamlit" ], "topics": [ - "optimization", - "fpga", - "polyhedral compilation", - "parallelization", - "program verification", - "compilers", - "polyhedral model" + "automation", + "deep learning", + "algorithms", + "webdev", + "open science", + "mass spectrometry" ], - "total_projects": 4, + "total_projects": 2, "first_time": false }, { - "id": "692251e353dd9d7326d33e7e", - "slug": "polypheny", - "name": "Polypheny", + "id": "692251e153dd9d7326d33e61", + "slug": "openrefine", + "name": "OpenRefine", "category": "Data", - "description": "The Most Versatile Data Management Platform", - "image_url": "https://summerofcode.withgoogle.com/media/org/polypheny/059uxeqzitvoqcyx-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/polypheny.webp", + "description": "A power tool for working with messy data", + "image_url": "https://summerofcode.withgoogle.com/media/org/openrefine-j0/vygefztjlapanqqa-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/openrefine.webp", "logo_r2_url": null, - "url": "https://polypheny.org", + "url": "https://openrefine.org", "active_years": [ - 2021, - 2022, + 2020, 2024 ], - "first_year": 2021, + "first_year": 2020, "last_year": 2024, "is_currently_active": false, "technologies": [ "javascript", - "java", - "sql", - "angular" + "java" ], "topics": [ - "databases", - "big data", - "ui", - "polystore", - "nosql", - "database", - "cloud", - "data science", - "ai" - ], - "total_projects": 9, - "first_time": false - }, - { - "id": "692251e353dd9d7326d33e7f", - "slug": "portland-state-university", - "name": "Portland State University", - "category": "Other", - "description": "Individual and Academic Open Source", - "image_url": "https://lh3.googleusercontent.com/sAIPHC0hT4utSZW0pR7kqUAbtNkZZJivcSJZrbA15Cs6adP4oxthezndn2EffbpBLBN-2lSyz-pHYjqiIvfZAqMrUWClvnw", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/portland-state-university.webp", + "data visualization", + "web application", + "real-time", + "data integration", + "data-wrangling", + "reconcilation", + "data-mining" + ], + "total_projects": 3, + "first_time": false + }, + { + "id": "692251e153dd9d7326d33e62", + "slug": "opensips", + "name": "OpenSIPS", + "category": "Social and communication", + "description": "A multi-purpose Open Source SIP proxy/server for carriers, telecoms or ITSPs", + "image_url": "https://lh3.googleusercontent.com/Ze5ErtJ4lVXqkhzHnV0Xmost83K2I8bszR0095A6EDv1zTpc_7VBm8oUj-d3H4W7uYyN0BQfPlfPdgZG7JX4KyQMRLQY_Ss", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/opensips.webp", "logo_r2_url": null, - "url": "http://wiki.cs.pdx.edu/psu-gsoc", + "url": "http://www.opensips.org/", "active_years": [ - 2016, - 2017 + 2018 ], - "first_year": 2016, - "last_year": 2017, + "first_year": 2018, + "last_year": 2018, "is_currently_active": false, "technologies": [ - "open hardware", - "language-agnostic" + "c", + "python", + "mysql", + "scripting" ], "topics": [ - "new projects", - "academic projects", - "individual projects" + "voip", + "telephony", + "real-time-communications", + "sip" ], - "total_projects": 13, + "total_projects": 0, "first_time": false }, { - "id": "692251e353dd9d7326d33e80", - "slug": "postgresql", - "name": "PostgreSQL", + "id": "692251e153dd9d7326d33e63", + "slug": "openstreetmap", + "name": "OpenStreetMap", "category": "Data", - "description": "The Most Advanced Open Source Relational Database", - "image_url": "https://summerofcode.withgoogle.com/media/org/postgresql/hj9srl9x0o6iendy-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/postgresql.webp", + "description": "OpenStreetMap is a crowdsourcing project that creates and distributes free geographic data for the world. Our data is collected by hundreds of thousands of contributors around the globe and released with an open-content license. We allow free access not only to our map products, but all the underlying map data, which powers websites and apps used by billions of people worldwide.\n\nOSM data can be freely used in both open and closed source software, and has attracted many commercial users. Still, the success of OSM wouldn't be possible without open source software and volunteer developers. The database, website and API running on our own servers, the editing tools used by contributors to improve the map, and many of the most popular libraries and end-user applications within the OSM software ecosystem are all open source software, and developed through a community-driven process.\n\nAs our Google Summer of Code participation spans this diverse set of software projects, most of which are maintained as independent efforts under the OSM umbrella, contributors will encounter a wide range of programming languages, paradigms and use cases. We hope that we have interesting challenges to offer for any developer, no matter their background!", + "image_url": "https://summerofcode.withgoogle.com/media/org/openstreetmap/ihw4tczyumj0yx81-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/openstreetmap.webp", "logo_r2_url": null, - "url": "https://postgresql.org", + "url": "https://www.openstreetmap.org/", "active_years": [ + 2016, 2017, 2018, 2019, @@ -13232,123 +13519,233 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], - "first_year": 2017, - "last_year": 2025, + "first_year": 2016, + "last_year": 2026, "is_currently_active": true, "technologies": [ + "javascript", + "java", + "opengl", + "ruby", + "postgis", "c", - "postgresql", - "perl", - "sql", - "rdbms", - "ordbms", - "postgres", + "c++", "python", - "julia", - "javascript", - "go" - ], - "topics": [ - "database", - "rdbms", - "big data", "sql", - "data", - "data management", - "web", - "relational database", + "docker", "postgresql", + "rust", + "glTF" + ], + "topics": [ + "geoinformatics", + "gis", + "maps", + "crowdsourcing", + "open data", + "databases", + "routing", "ui", - "Benchmark" + "geocoding", + "web", + "geodata" ], - "total_projects": 51, + "total_projects": 45, "first_time": false }, { - "id": "692251e353dd9d7326d33e81", - "slug": "postman", - "name": "Postman", - "category": "Data", - "description": "The Future is API-First", - "image_url": "https://summerofcode.withgoogle.com/media/org/postman/iw5h0aed8pe5yind-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/postman.webp", + "id": "692251ef53dd9d7326d33f21", + "slug": "opensuse-project", + "name": "openSUSE Project", + "category": "Operating systems", + "description": "The openSUSE Project is a worldwide effort that promotes the use of Linux, tools around it, and open source. The openSUSE community is made up of multiple contributing communities that collaborate as part of a global open-source network. The openSUSE community develops, builds and maintains many of the packages, tools and infrastructure for the distribution. The community works together in an open, transparent and friendly manner as part of the global Free and Open Source Software community. openSUSE creates one of the world's best Linux distributions, as well as a variety of tools, such as OBS, OpenQA, Kiwi, YaST, OSEM and Uyuni. Distributions include a rolling release (Tumbleweed), a stable annual release (Leap) and operating systems for edge, embedded, cloud and containers through MicroOS and ALP.\n\nThe project is controlled by its community and relies on the contributions of individuals, working as testers, writers, translators, usability experts, artists and ambassadors or developers. The project embraces a wide variety of technology, people with different levels of expertise, speaking different languages and having different cultural backgrounds.", + "image_url": "https://summerofcode.withgoogle.com/media/org/opensuse-project/zq11ebxj038xotbe-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/opensuse-project.webp", "logo_r2_url": null, - "url": "https://postman.com", + "url": "https://get.opensuse.org/", "active_years": [ + 2016, + 2017, + 2018, 2020, 2021, + 2022, 2023, - 2024 + 2024, + 2025, + 2026 ], - "first_year": 2020, - "last_year": 2024, - "is_currently_active": false, + "first_year": 2016, + "last_year": 2026, + "is_currently_active": true, "technologies": [ + "linux", + "ruby on rails", + "ruby", + "docker", + "angularjs", "javascript", - "node.js", - "graphql", - "openapi", - "rest api", - "api", - "AsyncAPI", - "JSON Schema" + "angular.js", + "c", + "c++", + "perl", + "ruby on rail", + "html", + "python", + "rpm", + "rust", + "kubernetes", + "artificial intelligence", + "Testing", + "configuration management", + "reactjs javascript", + "go", + "c/c++" ], "topics": [ - "api", + "virtualization", + "web development", + "linux", + "configuration management", + "realtime", + "linux distribution", + "conferences", + "web", + "qa", + "packaging", + "ui/ux", + "operating systems", + "software quality", + "build tools", + "containers", + "tools", "developer tools", - "api management", - "programmer productivity", - "productivity", - "apis", - "programming languages and development tools", - "software development", - "testing", - "automation", - "documentation", - "data" + "devops", + "edge", + "AIML", + "operating system developer tools", + "containers kubernetes", + "Security Cryptography", + "licensing & software quality QA", + "systems management" ], - "total_projects": 19, + "total_projects": 52, "first_time": false }, { - "id": "692251e353dd9d7326d33e82", - "slug": "powerdns", - "name": "PowerDNS", - "category": "Other", - "description": "PowerDNS provides open source DNS software", - "image_url": "https://summerofcode.withgoogle.com/media/org/powerdns/qmczym8f4ok5netw-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/powerdns.webp", + "id": "692251e153dd9d7326d33e64", + "slug": "openvino-toolkit", + "name": "OpenVINO Toolkit", + "category": "Development tools", + "description": "OpenVINO is an open‑source toolkit designed to optimize and deploy deep learning models from cloud to edge. It accelerates inference for a wide range of use cases—including computer vision, generative AI, and agentic AI—supporting models from popular frameworks such as PyTorch, TensorFlow, ONNX, and more. With OpenVINO, you can convert and optimize models, then deploy them across diverse Intel hardware and environments, whether on-premises, at the edge, on AI PCs, or in the cloud.", + "image_url": "https://summerofcode.withgoogle.com/media/org/openvino-toolkit/ivzvok335ujezk2z-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/openvino-toolkit.webp", "logo_r2_url": null, - "url": "https://www.powerdns.com/", + "url": "https://docs.openvino.ai/", "active_years": [ - 2022 + 2022, + 2023, + 2024, + 2025, + 2026 ], "first_year": 2022, - "last_year": 2022, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ + "python", "c++", - "DNS" + "x86", + "arm" ], "topics": [ - "DNS recursive solutions", - "Authoritative DNS software" + "deep learning", + "Neural networks", + "Edge AI", + "DL-inference", + "machine learning", + "ai", + "neural network", + "inference", + "gen ai", + "Agentic AI", + "Model Serving" + ], + "total_projects": 32, + "first_time": false + }, + { + "id": "692251e153dd9d7326d33e65", + "slug": "openwisp", + "name": "OpenWISP", + "category": "End user applications", + "description": "OpenWISP is an open source network management system which runs on low cost hardware and can be used to manage networks: from public wifi, university wifi, to mesh networks and IoT.", + "image_url": "https://summerofcode.withgoogle.com/media/org/openwisp/xgfy0r7femccwzvj-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/openwisp.webp", + "logo_r2_url": null, + "url": "https://openwisp.org", + "active_years": [ + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ], + "first_year": 2017, + "last_year": 2026, + "is_currently_active": true, + "technologies": [ + "python", + "javascript", + "django", + "openwrt", + "raspberry pi", + "linux", + "ansible", + "lua" + ], + "topics": [ + "web", + "networking", + "wireless", + "configuration management", + "telecommunications", + "web development", + "wifi", + "mesh-networks", + "iot", + "configu", + "telecom", + "wireless networks", + "network visualization", + "network automation", + "network management system", + "mesh", + "hotspot", + "vpn", + "sdn" ], - "total_projects": 1, + "total_projects": 26, "first_time": false }, { - "id": "692251e353dd9d7326d33e83", - "slug": "probot", - "name": "Probot", - "category": "Programming languages", - "description": "Automate and improve GitHub workflows", - "image_url": "https://lh3.googleusercontent.com/m9JcOmI0hFFlDLBoBysTHLRk3XutSKy8kgNBKSNP7GTAG2GRxk9ax2fEU4SIKdEP-a4mPyw0FLiXDTmk_wUnIzn9z5zs-g", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/probot.webp", + "id": "692251e153dd9d7326d33e66", + "slug": "opntec", + "name": "OpnTec", + "category": "Social and communication", + "description": "Developing Open Event Solutions for Everyone", + "image_url": "https://lh3.googleusercontent.com/htb6dQQlMfY5TpIbYyDh2pCPyNs7ksdEk_RH3lWy7qnJaPEkKhuAbuviAMGkA6oJG8uf2mkv4ujAnpCynBVSbWQw1aqbZweJ", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/opntec.webp", "logo_r2_url": null, - "url": "https://probot.github.io/", + "url": "http://opntec.org", "active_years": [ 2018 ], @@ -13356,29 +13753,32 @@ "last_year": 2018, "is_currently_active": false, "technologies": [ + "python", "javascript", - "github", - "node.js" + "android", + "cloud", + "emberjs" ], "topics": [ - "automation", - "development tools", - "bot" + "web", + "open event", + "event solutions" ], "total_projects": 2, "first_time": false }, { - "id": "692251e353dd9d7326d33e84", - "slug": "processing-foundation", - "name": "Processing Foundation", - "category": "Programming languages", - "description": "To empower all people to learn to program", - "image_url": "https://summerofcode.withgoogle.com/media/org/processing-foundation/xr2sncljbvtlop1n-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/processing-foundation.webp", + "id": "692251e153dd9d7326d33e67", + "slug": "oppia-foundation", + "name": "Oppia Foundation", + "category": "End user applications", + "description": "The Oppia project aims to empower learners across the globe by providing access to high-quality, engaging education. We envision a world where access to high-quality education is not a privilege but a human right. \n\nThe team works on two platforms: \n\n (a) Oppia Web, which provides an online learning tool that enables anyone to learn from effective and engaging interactive lessons (called 'explorations'), which simulate a one-on-one conversation with a tutor. This format makes it possible for students to learn by doing while getting feedback. The Oppia Web platform also provides the infrastructure needed to support lesson creation and translation.\n\n (b) Oppia Android, which provides a way for these lessons to be played offline on an Android app that supports low-end devices and does not require Internet connectivity. \n\nAs a community, we are also aware that millions of students in underserved communities lack access to the educational resources necessary to effectively learn key skills like basic numeracy. Thus, in addition to developing the Oppia platform, the team has launched and continues to develop a set of free and effective lessons on basic mathematics, supplemented by translations and voiceovers. Students using these lessons have shown strong improvements between pre-and post-tests, and we’ve received lots of positive feedback on them. We are planning to extend this offering to other subjects, based on what students (and the nonprofits working with them) tell us would be most useful.", + "image_url": "https://summerofcode.withgoogle.com/media/org/oppia-foundation/nqvgy9fm3aqshwtv-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/oppia-foundation.webp", "logo_r2_url": null, - "url": "http://processingfoundation.org", + "url": "https://www.oppia.org", "active_years": [ + 2016, 2017, 2018, 2019, @@ -13386,503 +13786,510 @@ 2021, 2022, 2023, - 2025 + 2024, + 2025, + 2026 ], - "first_year": 2017, - "last_year": 2025, + "first_year": 2016, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", "javascript", - "android", - "java", - "opengl", - "javascr", + "angularjs", + "css", + "google app engine", + "kotlin", + "webpack", + "angular", "typescript", - "webgl", - "GitHub Actions" + "android", + "Apache Beam" ], "topics": [ "education", "web", - "graphics", - "creative coding", - "design" + "interactive", + "tools", + "educational technology", + "community", + "web development", + "nonprofit", + "social impact", + "ai" ], - "total_projects": 87, + "total_projects": 77, "first_time": false }, { - "id": "692251e353dd9d7326d33e85", - "slug": "project-mesa", - "name": "Project Mesa", + "id": "692251e153dd9d7326d33e68", + "slug": "orange-data-mining-fruitful-fun", + "name": "Orange – Data Mining Fruitful & Fun", "category": "Science and medicine", - "description": "Mesa: Agent-based modeling in Python 3+", - "image_url": "https://summerofcode.withgoogle.com/media/org/project-mesa/fh3o8surszufvjpv-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/project-mesa.webp", + "description": "A cross-platform, visual-programming tool for data mining and visualization.", + "image_url": "https://lh3.googleusercontent.com/isMDLXr7AdgntLlLbpzebETS2oOnYyC0KQp7Gl0TY79lb2WDa8bzSH1pwtwQv3dNUhZOqZBGHxA8QlimQ4YiMbyn5zaia3IL", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/orange-data-mining-fruitful-fun.webp", "logo_r2_url": null, - "url": "https://mesa.readthedocs.io/latest/", + "url": "http://orange.biolab.si", "active_years": [ - 2024, - 2025 + 2016 ], - "first_year": 2024, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2016, + "last_year": 2016, + "is_currently_active": false, "technologies": [ "python", - "ui/ux", - "LLMs", - "Vector Operations" + "cython", + "machine learning", + "qt" ], "topics": [ - "Agent Based Models", - "Generative Science" + "visualization", + "machine learning", + "data mining", + "bioinformatics", + "gui toolkit" ], - "total_projects": 7, + "total_projects": 5, "first_time": false }, { - "id": "692251e353dd9d7326d33e86", - "slug": "project-panoptes", - "name": "Project PANOPTES", + "id": "692251e153dd9d7326d33e69", + "slug": "orcasound", + "name": "Orcasound", "category": "Science and medicine", - "description": "Discover New Worlds", - "image_url": "https://lh3.googleusercontent.com/YxgGJuUQMFtGopt--uoqDIeEK0EyNbNw_nIFql5oy90oF1a7MnS8d07_3KHazE_JiKj2KRPuqD5exiMzAIZ3EDuj75NhMQ", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/project-panoptes.webp", - "logo_r2_url": null, - "url": "https://projectpanoptes.org", - "active_years": [ - 2019 - ], - "first_year": 2019, - "last_year": 2019, - "is_currently_active": false, - "technologies": [ - "python 3", - "arduino", - "cloud" - ], - "topics": [ - "robotics", - "image processing", - "astronomy", - "exoplanet" - ], - "total_projects": 2, - "first_time": false - }, - { - "id": "692251e353dd9d7326d33e87", - "slug": "project-wikiloop", - "name": "Project WikiLoop", - "category": "Other", - "description": "Contribute to open knowledge at scale - heritage preservation and translation", - "image_url": "https://lh3.googleusercontent.com/34r7ANSITcDOXQr_s0Y5dk4iepIIl9TP7_FA1-8f2E1e4k7GOR7ZvC_KaUPIVQADrayTE8nkGsAMsSfpLo2GsyfV18ewlMhyD1ft2EG0IM86BQ", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/project-wikiloop.webp", + "description": "Humans & AI listening together to save the whales.", + "image_url": "https://summerofcode.withgoogle.com/media/org/orcasound/fu5kadqoa0vlsjhx-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/orcasound.webp", "logo_r2_url": null, - "url": "https://meta.wikimedia.org/wiki/WikiLoop", + "url": "https://orcasound.net", "active_years": [ - 2021 + 2020, + 2021, + 2022 ], - "first_year": 2021, - "last_year": 2021, + "first_year": 2020, + "last_year": 2022, "is_currently_active": false, "technologies": [ "python", - "java", - "mediawiki" + "javascript", + "react", + "raspberry pi", + "elixir", + "NextJs" ], "topics": [ - "cultural heritage", - "knowledge graphs", - "computer-assisted translation" + "machine learning", + "web application", + "audio", + "real-time", + "citizen science", + "scientific visualization", + "audio analysis", + "web", + "ai", + "acoustics", + "community science" ], - "total_projects": 3, + "total_projects": 10, "first_time": false }, { - "id": "692251e453dd9d7326d33e88", - "slug": "prometheus-operator", - "name": "Prometheus-Operator", - "category": "Infrastructure and cloud", - "description": "Managing Prometheus atop Kubernetes", - "image_url": "https://summerofcode.withgoogle.com/media/org/prometheus-operator/dpytdkpyfejrot7o-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/prometheus-operator.webp", + "id": "692251e153dd9d7326d33e6a", + "slug": "organic-maps", + "name": "Organic Maps", + "category": "End user applications", + "description": "Offline maps app for tourists, cyclers & hikers", + "image_url": "https://summerofcode.withgoogle.com/media/org/organic-maps/cnhed0elppzqsjut-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/organic-maps.webp", "logo_r2_url": null, - "url": "https://prometheus-operator.dev/", + "url": "https://organicmaps.app", "active_years": [ + 2022, + 2023, 2024, 2025 ], - "first_year": 2024, + "first_year": 2022, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ - "prometheus", - "go", - "kubernetes", - "kubernetes operators" + "android", + "java", + "c++", + "ios", + "OpenStreetMap" ], "topics": [ - "monitoring", - "cloud", - "observability", - "Kubernetes Operator" + "privacy", + "maps", + "navigation", + "mobile", + "offline" ], - "total_projects": 5, + "total_projects": 10, "first_time": false }, { - "id": "692251e453dd9d7326d33e89", - "slug": "public-lab", - "name": "Public Lab", - "category": "Science and medicine", - "description": "Tools for communities to measure pollution", - "image_url": "https://summerofcode.withgoogle.com/media/org/public-lab/w93lsalkzbyb31pg-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/public-lab.webp", + "id": "692251de53dd9d7326d33e40", + "slug": "osgeo-open-source-geospatial-foundation", + "name": "OSGeo (Open Source Geospatial Foundation)", + "category": "End user applications", + "description": "The Open Source Geospatial Foundation (OSGeo) is a not-for-profit organization whose mission is to foster global adoption of open geospatial technology by being an inclusive software foundation devoted to an open philosophy and participatory community-driven development.\n\nOSGeo serves as an umbrella organization for the Open Source Geospatial community in general and several code projects in particular:\n* Web Mapping: deegree, geomajas, GeoMOOSE, GeoServer, Mapbender, MapFish, MapGuide Open Source, MapServer, OpenLayers.\n* Desktop Applications: GRASS GIS, gvSIG, Marble, QGIS.\n* Geospatial Libraries: FDO, GDAL/OGR, GEOS, GeoTools, OSSIM, PostGIS.\n* Metadata Catalogues: GeoNetwork, pycsw.\n* Content Management Systems: GeoNode.\n* Community Projects: pgRouting, istSOS, MetaCRS, Opticks, Orfeo ToolBox (OTB), PyWPS, Team Engine, ZOO-Project.\n* Other (non-code) Projects: GeoForAll (Education and Curriculum), OSGeoLive DVD, Public Geospatial Data.\n\nWe host regional and international FOSS4G conferences with typical attendance of 500-1100+ geospatial developers, industry and government leaders, and researchers. Our mailing lists collectively go out to ~ 30,000 unique subscribers.", + "image_url": "https://summerofcode.withgoogle.com/media/org/osgeo-open-source-geospatial-foundation/yundulx00fbd1akm-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/osgeo-open-source-geospatial-foundation.webp", "logo_r2_url": null, - "url": "https://publiclab.org", + "url": "https://www.osgeo.org/", "active_years": [ 2016, 2017, 2018, 2019, + 2020, 2021, - 2022 + 2022, + 2023, + 2024, + 2025, + 2026 ], "first_year": 2016, - "last_year": 2022, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "javascript", - "ruby on rails", - "webrtc", - "leaflet", - "ruby", - "node.js", - "raspberry pi" + "c", + "python", + "ogc standards", + "c++", + "sql", + "java", + "database", + "standards", + "open source databases", + "javascript" ], "topics": [ "science", - "environment", - "community", - "hardware", - "pollution", - "collaboration", - "diversity", - "diy", - "documentation", - "forum" + "gis", + "maps", + "geospatial", + "cartography", + "open science", + "citizen science", + "mapping", + "geoinformatics", + "computer vision", + "geolocation", + "databases", + "routing" ], - "total_projects": 38, + "total_projects": 101, "first_time": false }, { - "id": "692251e453dd9d7326d33e8a", - "slug": "purr-data", - "name": "Purr Data", - "category": "End user applications", - "description": "Realtime Audio/Visual Programming Environment", - "image_url": "https://summerofcode.withgoogle.com/media/org/purr-data/vb8l0binls5gjdqp-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/purr-data.webp", + "id": "692251de53dd9d7326d33e41", + "slug": "osu-open-source-lab", + "name": "OSU Open Source Lab", + "category": "Other", + "description": "OSU Open Source Lab", + "image_url": "https://lh3.googleusercontent.com/1ea3BlKTMB549woaO4J5-vuqdMAWsdu2xEXr3JDa_cFRhdC_2mbRrcpIxn-01J0mtLQMlkn7CPco0CR20AyqXNso5iemXbo", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/osu-open-source-lab.webp", "logo_r2_url": null, - "url": "https://www.purrdata.net/", + "url": "http://osuosl.org", "active_years": [ - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024 + 2016 ], - "first_year": 2018, - "last_year": 2024, + "first_year": 2016, + "last_year": 2016, "is_currently_active": false, "technologies": [ + "python", "javascript", - "c", - "c++", - "node.js", - "html5/css3", - "html5", - "opengl", - "svg", - "html", - "css", - "Emscripten" + "ruby", + "rest" ], "topics": [ - "audio", - "real-time", - "video", - "dsp", - "data vizualisation", - "data visualization", - "digital signal processing", - "real-time system", - "music", - "visual programming", - "2d/3d graphics", - "web development", - "graphics / video / audio / virtual reality", - "web", - "graphics", - "realtime" + "virtualization", + "infrastructure" ], - "total_projects": 15, + "total_projects": 1, "first_time": false }, { - "id": "692251e453dd9d7326d33e8b", - "slug": "python-software-foundation", - "name": "Python Software Foundation", + "id": "692251e153dd9d7326d33e6b", + "slug": "our-world-in-data", + "name": "Our World In Data", "category": "Science and medicine", - "description": "A programming language used for science & more", - "image_url": "https://summerofcode.withgoogle.com/media/org/python-software-foundation/2vpxhpvcsvgyx3kg-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/python-software-foundation.webp", + "description": "Explaining the world's biggest problems with data", + "image_url": "https://summerofcode.withgoogle.com/media/org/our-world-in-data/ghnijuxmyoccl6rt-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/our-world-in-data.webp", "logo_r2_url": null, - "url": "https://python-gsoc.org/", + "url": "https://ourworldindata.org/", "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2022 ], - "first_year": 2016, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2022, + "last_year": 2022, + "is_currently_active": false, "technologies": [ "python", - "mercurial", - "javascript", - "sqlite", - "c++", - "SBOM" + "mysql", + "d3", + "typescript", + "pandas" ], "topics": [ - "mathematics", - "hardware", - "biology", - "physics", - "image analysis", - "programming languages", - "science", - "security", - "machine learning", - "ui design", - "science and medicine", - "database", - "design", - "visualization", - "compiler", - "modeling", - "Backup" + "open data", + "data visualisation", + "Data cataloging" ], - "total_projects": 277, + "total_projects": 2, "first_time": false }, { - "id": "692251e453dd9d7326d33e8c", - "slug": "qc-devs", - "name": "QC-Devs", - "category": "Science and medicine", - "description": "Sustainable software for quantum chemistry & more", - "image_url": "https://summerofcode.withgoogle.com/media/org/qc-devs/nywcx8edxlpsz2kg-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/qc-devs.webp", + "id": "692251ef53dd9d7326d33f1f", + "slug": "ovirt", + "name": "oVirt", + "category": "End user applications", + "description": "Open virtual datacenter management for all", + "image_url": "https://lh3.googleusercontent.com/W_PtFwhzkdm5Dfr1awr7uSKqbMoWtpUVdlp9gLzlRfQkQyL_dcULt1xsZE8616k8kFuTJcn2hAPgywWiLACcTK5kCSs7Zg", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ovirt.webp", "logo_r2_url": null, - "url": "https://qcdevs.org/", + "url": "http://www.ovirt.org", "active_years": [ - 2024, - 2025 + 2017 ], - "first_year": 2024, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2017, + "last_year": 2017, + "is_currently_active": false, "technologies": [ "python", - "github", - "c++", - "julia", - "jupyter" + "java", + "kvm" ], "topics": [ - "data science", - "scientific visualization", - "quantum chemistry", - "Computational Science", - "numerical algorithms" + "virtualization", + "enterprise application" ], - "total_projects": 7, + "total_projects": 2, "first_time": false }, { - "id": "692251e453dd9d7326d33e8d", - "slug": "qemu", - "name": "QEMU", - "category": "Infrastructure and cloud", - "description": "Open source machine emulator and virtualizer", - "image_url": "https://summerofcode.withgoogle.com/media/org/qemu/gik5gsxljb3j1jx1-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/qemu.webp", + "id": "692251de53dd9d7326d33e42", + "slug": "ow2", + "name": "OW2", + "category": "Other", + "description": "The open source community for infrastructure software.", + "image_url": "https://lh3.googleusercontent.com/zQhBjcSPVUqpmZhhdBQAumSlsm_j06H6ibTQAxY2Mq3HbqawRkUcR7DJXyyT6nj-Wfi4JQ7cTotGVER9axt2B6H6axqp1g", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ow2.webp", + "logo_r2_url": null, + "url": "http://www.ow2.org", + "active_years": [ + 2018 + ], + "first_year": 2018, + "last_year": 2018, + "is_currently_active": false, + "technologies": [ + "java", + "perl", + "middleware", + "bpm", + "wiki" + ], + "topics": [ + "security", + "cloud", + "middleware", + "enterprise information systems" + ], + "total_projects": 0, + "first_time": false + }, + { + "id": "692251de53dd9d7326d33e43", + "slug": "owasp-foundation", + "name": "OWASP Foundation", + "category": "Security", + "description": "As the world’s largest non-profit organization concerned with software security, OWASP:\n\n* Supports the building of impactful projects; \n* Develops & nurtures communities through events and chapter meetings worldwide; \n* Provides educational publications & resources\n\nin order to enable developers to write better software, and security professionals to make the world's software more secure.", + "image_url": "https://summerofcode.withgoogle.com/media/org/owasp-foundation/haks8qbp0yvjvzge-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/owasp-foundation.webp", "logo_r2_url": null, - "url": "https://qemu.org/", + "url": "https://owasp.org", "active_years": [ 2016, - 2017, 2018, 2019, 2020, 2021, 2022, 2023, - 2025 + 2024, + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ - "c", - "assembly", - "kvm", "python", - "linux", - "virtualization", - "rust" + "javascript", + "java", + "html", + "php", + "ruby", + "net", + "node.js", + ".net", + "c", + "c++", + "golang", + "ZAP", + "Juice Shop" ], "topics": [ - "virtualization", - "operating systems", - "compilers", - "emulation", - "compiler", - "hypervisor", + "security", + "secure development", + "appsec", + "application security", + "sdlc", + "cloud security", + "mobile security", + "information security", + "web application security", + "cyber security", + "cybersecurity", + "top 10", + "pentesting", + "web", "cloud", - "kernel", - "lowlevel", - "emulator", - "code generation", - "systems programming" + "DevSecOps" ], - "total_projects": 41, + "total_projects": 102, "first_time": false }, { - "id": "692251e453dd9d7326d33e8e", - "slug": "qdrant", - "name": "Qdrant", - "category": "Data", - "description": "Vector Search Database for the new AI generation.", - "image_url": "https://summerofcode.withgoogle.com/media/org/qdrant/73jgnlygoyu6ibia-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/qdrant.webp", + "id": "692251ef53dd9d7326d33f22", + "slug": "owncloud", + "name": "ownCloud", + "category": "Infrastructure and cloud", + "description": "A safe home for all your data", + "image_url": "https://lh3.googleusercontent.com/DfB90GrSxjjUVgE4ye84i6KbkUQVUkzoIJtpZfqCkHbRuIbf9h4Twj6DKYU4ul4zJHk01UKjz7NGXRfJ9NcIDcH1uMhxCqE", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/owncloud.webp", "logo_r2_url": null, - "url": "https://qdrant.tech", + "url": "http://owncloud.org", "active_years": [ - 2023 + 2016, + 2017 ], - "first_year": 2023, - "last_year": 2023, + "first_year": 2016, + "last_year": 2017, "is_currently_active": false, "technologies": [ - "python", "javascript", - "rust" + "html", + "sql", + "php", + "css", + "android", + "qt", + "ios" ], "topics": [ - "databases", - "machine learning", - "Search Engines" + "web", + "cloud", + "synchronized", + "data sharing", + "sync", + "file share" ], - "total_projects": 2, + "total_projects": 5, "first_time": false }, { - "id": "692251e453dd9d7326d33e8f", - "slug": "qubes-os", - "name": "Qubes OS", - "category": "Operating systems", - "description": "A reasonably secure operating system", - "image_url": "https://lh3.googleusercontent.com/ZRq4RksbAl8OOSEKMSp08O2TkUhtGMvjVMwtnuQ6e99CHeqwTYAlNQOSvBeSEtokOjUcr40hEIdVsi0DXTLSHltofdZG2lkGEAu_-e9W2Zo", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/qubes-os.webp", + "id": "692251e253dd9d7326d33e6c", + "slug": "p2psporg", + "name": "P2PSP.org", + "category": "Media", + "description": "Shaping the future Internet TV", + "image_url": "https://lh3.googleusercontent.com/W6ous6DUr-hggplxAVhPlbTaDa7eXE6PxqrQ7kQxyq-45q_fHcfImrzpcVjZ-mjt2d7onZ128-NgAx1zMfsmKMU0pczMKA", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/p2psporg.webp", "logo_r2_url": null, - "url": "https://www.qubes-os.org", + "url": "http://www.p2psp.org", "active_years": [ + 2016, 2017, - 2020, - 2021 + 2018 ], - "first_year": 2017, - "last_year": 2021, + "first_year": 2016, + "last_year": 2018, "is_currently_active": false, "technologies": [ - "c", "python", - "xen", - "shell", - "linux", - "ruby" + "android", + "c++", + "ios", + "webrtc", + "qt", + "sockets", + "javascript", + "c" ], "topics": [ - "virtualization", "security", - "privacy", - "operating system", - "operating systems" + "networking", + "multimedia", + "live streaming", + "p2p", + "streaming", + "video", + "real time", + "distributed networks" ], - "total_projects": 4, + "total_projects": 5, "first_time": false }, { - "id": "692251e453dd9d7326d33e90", - "slug": "quillorg", - "name": "Quill.org", - "category": "Web", - "description": "Helping millions of learners become better writers and critical thinkers", - "image_url": "https://lh3.googleusercontent.com/CHPiRA9590fHfBQ02NwN2zhkYtvjaI6DpI44mOuXOOoLeE3JtIwYx_0_k3-hb-W2QndF65EjL22oVy3fAeNXvk75fa2QWfc", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/quillorg.webp", + "id": "692251e253dd9d7326d33e6d", + "slug": "pal-robotics", + "name": "PAL Robotics", + "category": "Other", + "description": "Enhance people’s quality of life through Robotics", + "image_url": "https://summerofcode.withgoogle.com/media/org/pal-robotics/f3yidefsydweipcc-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/pal-robotics.webp", "logo_r2_url": null, - "url": "https://quill.org", + "url": "https://pal-robotics.com/", "active_years": [ - 2018 + 2025 ], - "first_year": 2018, - "last_year": 2018, + "first_year": 2025, + "last_year": 2025, "is_currently_active": false, "technologies": [ - "postgresql", + "python", "javascript", - "react", - "ruby", - "rails" + "c++" ], "topics": [ - "education", - "web", - "machine learning", - "nlp", - "edtech" + "robotics", + "reinforcement learning", + "web tools" ], - "total_projects": 1, + "total_projects": 2, "first_time": false }, { - "id": "692251e453dd9d7326d33e91", - "slug": "r-project-for-statistical-computing", - "name": "R project for statistical computing", + "id": "692251e253dd9d7326d33e6e", + "slug": "pecan-project", + "name": "PEcAn Project", "category": "Science and medicine", - "description": "R software for statistical computing & graphics", - "image_url": "https://summerofcode.withgoogle.com/media/org/r-project-for-statistical-computing/7regeqcjh95nenso-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/r-project-for-statistical-computing.webp", + "description": "Climate change science has witnessed an explosion in the amount and types of data that can be brought to bear on the potential responses of the terrestrial carbon cycle and biodiversity to global change. Many of the most pressing questions about global change are not necessarily limited by the need to collect new data as much as by our ability to synthesize existing data. This project specifically seeks to improve this ability. Because no one measurement provides a complete picture, multiple data sources must be integrated in a sensible manner. Process-based models represent an ideal framework for integrating these data streams because they represent multiple processes at different spatial and temporal scales in ways that capture our current understanding of the causal connections across scales and among data types. Three components are required to bridge this gap between the available data and the required level of understanding: 1) state-of-the-art ecosystem model, 2) a workflow management system to handle the numerous streams of data, and 3) a data assimilation statistical framework in order to synthesize the data with the model.", + "image_url": "https://summerofcode.withgoogle.com/media/org/pecan-project/kijyzllr7r1g0ukz-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/pecan-project.webp", "logo_r2_url": null, - "url": "https://www.r-project.org/", + "url": "https://pecanproject.github.io/", "active_years": [ - 2016, 2017, 2018, 2019, @@ -13891,626 +14298,614 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], - "first_year": 2016, - "last_year": 2025, + "first_year": 2017, + "last_year": 2026, "is_currently_active": true, "technologies": [ "c", - "c++", - "r", - "fortran", + "postgresql", "javascript", - "r-project" + "r", + "php", + "python", + "docker", + "singularity", + "kubernetes", + "api", + "geospatial" ], "topics": [ - "visualization", - "machine learning", "data science", - "graphics", - "statistics", - "data visualization" + "ecosystem models", + "scientific visualization", + "ecological forecasting", + "climate science", + "Ecological Forecasting," ], - "total_projects": 212, + "total_projects": 30, "first_time": false }, { - "id": "692251e453dd9d7326d33e92", - "slug": "radar-base", - "name": "RADAR-base", - "category": "Science and medicine", - "description": "Improve people's quality of life using patient generated data", - "image_url": "https://summerofcode.withgoogle.com/media/org/radar-base/8glcheumuwndks2c-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/radar-base.webp", + "id": "692251e253dd9d7326d33e72", + "slug": "peragro", + "name": "Peragro", + "category": "Other", + "description": "Digital Assets Managed Neatly", + "image_url": "https://lh3.googleusercontent.com/30U2sySIY1xqaIbEGgosUKnLzLYhOUaLkuKjCJhnjTgXD4bE86E5FOiHJqOV0nb3qUnmPTxVrw4D29pzgNToPKuS75AekeJ-", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/peragro.webp", "logo_r2_url": null, - "url": "https://radar-base.org/", + "url": "http://www.peragro.org/", "active_years": [ - 2022 + 2016 ], - "first_year": 2022, - "last_year": 2022, - "is_currently_active": false, - "technologies": [ - "java", - "kotlin", - "docker", - "angular", - "kafka" + "first_year": 2016, + "last_year": 2016, + "is_currently_active": false, + "technologies": [ + "python", + "javascript", + "django", + "blender", + "celery" ], "topics": [ "web", - "mhealth", - "remote patient monitoring", - "micro-services", - "devices" + "games", + "analyzing", + "transcoding", + "pipeline automation" ], - "total_projects": 3, + "total_projects": 0, "first_time": false }, { - "id": "692251e453dd9d7326d33e93", - "slug": "rtems-project", - "name": "RTEMS Project", - "category": "Operating systems", - "description": "A real-time operating system for Earth & Space", - "image_url": "https://summerofcode.withgoogle.com/media/org/rtems-project/mo975scxu6bi0bfj-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/rtems-project.webp", + "id": "692251e253dd9d7326d33e73", + "slug": "percona", + "name": "Percona", + "category": "Data", + "description": "Unbiased open source database experts.", + "image_url": "https://lh3.googleusercontent.com/b6GVDxPfANhAVQI8RB85qninvaaCHTpzoXsOkRHGq2xXmpcVYXAASewxkMNVJ5HrKh5r7igQN3bKbb6etu2hKp8In925EsOk", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/percona.webp", "logo_r2_url": null, - "url": "https://www.rtems.org/", + "url": "https://www.percona.com/", "active_years": [ - 2016, - 2017, - 2018, 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2020 ], - "first_year": 2016, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2019, + "last_year": 2020, + "is_currently_active": false, "technologies": [ - "c", - "python", - "embedded systems", - "waf", - "posix", - "bsd unix", - "c++", - "assembly" + "mysql", + "postgresql", + "prometheus", + "javascript", + "selenium", + "shell script", + "golang", + "grafana" ], "topics": [ - "real time", - "posix", - "embedded systems", - "kernel", - "operating system", - "multicore", - "iot", - "iot cps", - "real-time", - "embedded", - "rtos" + "database optimization", + "metrics", + "testing", + "monitoring", + "databases", + "data visualization", + "automation", + "load testing", + "alerts" ], - "total_projects": 46, + "total_projects": 3, "first_time": false }, { - "id": "692251e453dd9d7326d33e94", - "slug": "radare", - "name": "Radare", - "category": "Security", - "description": "Radare2 - Reverse Engineering Framework and Toolset", - "image_url": "https://lh3.googleusercontent.com/iBdoZlcklDmuxCFcARj3BSFRQFjmbw5pIU02q_Hc4-LX0EqzdaISuhcMBpOEag91gedcbsG9uAXx01JsxQcaovRm0GZ1iwU", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/radare.webp", + "id": "692251e253dd9d7326d33e74", + "slug": "performance-co-pilot", + "name": "Performance Co-Pilot", + "category": "Operating systems", + "description": "System performance analysis", + "image_url": "https://summerofcode.withgoogle.com/media/org/performance-co-pilot/ef66s0dqidt5rfle-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/performance-co-pilot.webp", "logo_r2_url": null, - "url": "https://radare.org/", + "url": "https://pcp.io/", "active_years": [ 2016, 2017, 2018, - 2020 + 2019, + 2020, + 2022 ], "first_year": 2016, - "last_year": 2020, + "last_year": 2022, "is_currently_active": false, "technologies": [ + "javascript", + "java", + "ruby", + "golang", + "linux kernel", "c", - "rust", "python", - "node.js", - "qt", - "cpp", - "go", - "c++" + "linux", + "windows", + "redis", + "grafana", + "rest", + "libuv", + "htop", + "sysstat" ], "topics": [ - "security", - "reverse engineering", - "disassembly", - "decompilation", - "assembly", - "debugging", - "program analysis" + "monitoring", + "visualization", + "high performance computing", + "data analysis", + "realtime messaging", + "web development", + "performance", + "kernel", + "distributed", + "analysis", + "timeseries", + "lightweight", + "metrics", + "observability" ], - "total_projects": 15, + "total_projects": 19, "first_time": false }, { - "id": "692251e553dd9d7326d33e95", - "slug": "react-native-elements", - "name": "React Native Elements", + "id": "692251e253dd9d7326d33e75", + "slug": "pharo-consortium", + "name": "Pharo Consortium", "category": "Programming languages", - "description": "Cross Platform React Native UI Toolkit", - "image_url": "https://lh3.googleusercontent.com/EkjSoqy4nR4_yDtErmtDSIgBSvzo_mNqeqcgFxhgZI7RTqtzXI8CpO6ZePd1MSf4BLe45CKPe_aAEJqAtDzRONW7oS8OYFhwkfPVQ2rMZPI", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/react-native-elements.webp", + "description": "Pharo is a dynamic, purely object-oriented programming language (where everything is an object) that is inspired by Smalltalk. It also includes a powerful IDE that focuses on simplicity and quick feedback. Its entire syntax can fit on a postcard, and you can code directly in the debugger. Pharo has useful tools that help you work efficiently.\n\nThe goal of Pharo is to provide a clean, innovative, free, and open-source environment. With a stable and small core system, great development tools, and regular updates, Pharo is a good choice for building and running important applications.\n\nPharo supports a healthy community made up of both private and commercial contributors who help improve and maintain the core system and its external packages.", + "image_url": "https://summerofcode.withgoogle.com/media/org/pharo-consortium/zrxygkl3ycuvw6nb-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/pharo-consortium.webp", "logo_r2_url": null, - "url": "https://reactnativeelements.com/", + "url": "https://pharo.org/", "active_years": [ - 2021 + 2017, + 2019, + 2021, + 2023, + 2025, + 2026 ], - "first_year": 2021, - "last_year": 2021, - "is_currently_active": false, + "first_year": 2017, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "javascript", - "react", - "react native" + "smalltalk", + "roassal", + "polymath", + "pharo", + "ide", + "squeak", + "os", + "spec", + "git", + "SUnit" ], "topics": [ - "ui toolkit", - "design system" + "data science", + "user interface", + "ide", + "object oriented programming", + "dynamic environment", + "web development", + "nlp", + "cli", + "material design", + "compilers", + "visualization", + "programming languages", + "virtual machines", + "machine learning", + "Modelling", + "Live music" ], - "total_projects": 2, + "total_projects": 32, "first_time": false }, { - "id": "692251e553dd9d7326d33e96", - "slug": "reactos-foundation", - "name": "ReactOS Foundation", - "category": "Operating systems", - "description": "Open your windows to freedom!", - "image_url": "https://summerofcode.withgoogle.com/media/org/reactos-foundation/yell79w1st8tno4c-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/reactos-foundation.webp", + "id": "692251ef53dd9d7326d33f23", + "slug": "phpbb-forum-software", + "name": "phpBB Forum Software", + "category": "Social and communication", + "description": "phpBB is the most widely used free and open-source forum solution.", + "image_url": "https://lh3.googleusercontent.com/k4w18k0JwvBptU87DKyZi9-fKls1mRa9_EFg1xkh3z35KuRK7uRbxNvZ_vKppBLFxzydT2n546WaKt2PTiT6YZy8UEAVlNg", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/phpbb-forum-software.webp", "logo_r2_url": null, - "url": "https://reactos.org", + "url": "https://www.phpbb.com", "active_years": [ - 2016, 2017, - 2018, - 2019, - 2020, - 2021, - 2022 + 2018 ], - "first_year": 2016, - "last_year": 2022, + "first_year": 2017, + "last_year": 2018, "is_currently_active": false, "technologies": [ - "c", - "c++", + "mysql", + "javascript", "php", - "win32", - "nt" + "css", + "symfony", + "html5/css3" ], "topics": [ - "operating systems", - "desktop", - "kernel", - "drivers", - "windows", - "web services", - "applications", - "system programming" + "collaboration", + "community", + "social", + "communication", + "forum" ], - "total_projects": 15, + "total_projects": 4, "first_time": false }, { - "id": "692251e553dd9d7326d33e97", - "slug": "read-the-docs", - "name": "Read the Docs", - "category": "Programming languages", - "description": "Documentation Simplified", - "image_url": "https://lh3.googleusercontent.com/dxmLB1HdWrLEFqmDRqfrowj1IT2LLhw33n4yI4HN7vJ0mSoW4O9kYdz3jOudzlf7XdDXtKS8Js2VDNDkzRuWNtdcNMnn5oAs", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/read-the-docs.webp", + "id": "692251ef53dd9d7326d33f24", + "slug": "phpmyadmin", + "name": "phpMyAdmin", + "category": "Data", + "description": "A web interface for MySQL written in PHP", + "image_url": "https://lh3.googleusercontent.com/Wq_8lTz8wRoLBFRD8DIpd2eZ3v8sPMpbXdYzAVB81164FR3EAVdFyd2bHZO-o_rfqCCL6I86HqtoKfE8_ivTPlrAR_ZiRSw", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/phpmyadmin.webp", "logo_r2_url": null, - "url": "https://readthedocs.org", + "url": "https://www.phpmyadmin.net", "active_years": [ + 2017, 2018, 2019 ], - "first_year": 2018, + "first_year": 2017, "last_year": 2019, "is_currently_active": false, "technologies": [ - "python", + "mysql", "javascript", - "django", - "sphinx", - "elasticsearch", - "documentation" + "php", + "jquery", + "cakephp", + "bootstrap" ], "topics": [ - "web", - "communications", - "docs", - "documentation" + "web application", + "database", + "mysql", + "developer", + "administrator", + "web applications" ], - "total_projects": 3, + "total_projects": 9, "first_time": false }, { - "id": "692251e553dd9d7326d33e98", - "slug": "red-hen-lab", - "name": "Red Hen Lab", - "category": "Data", - "description": "Research on Multimodal Communication", - "image_url": "https://summerofcode.withgoogle.com/media/org/red-hen-lab/ugdzrslbomp6lacy-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/red-hen-lab.webp", + "id": "692251e253dd9d7326d33e76", + "slug": "physical-web-project", + "name": "Physical Web Project", + "category": "Other", + "description": "Physical Web GSoC project based on the Physical Web", + "image_url": "https://lh3.googleusercontent.com/4louIdBvWdQ5Jz_c-9lYN8p0OjZKSZ6DJoCPgBlqdyRI5UjJ8PmrYew-CWgjBlIJm_8NJnlv0Wsn6zvHvp4WASe07-0UCg", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/physical-web-project.webp", "logo_r2_url": null, - "url": "http://www.redhenlab.org", + "url": "http://physical-web-project.github.io/", "active_years": [ 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024 + 2017 ], "first_year": 2016, - "last_year": 2024, + "last_year": 2017, "is_currently_active": false, "technologies": [ - "machine learning", - "opencv", - "high performance computing", - "audio procesing", - "multimodal analysis", - "audio processing", "python", - "tensorflow", - "singularity", - "scikit-learn", - "syntaxnet", - "nlp", - "asr", - "data science", - "big data science", - "computer vision", - "machinelearning", - "ai" + "arduino", + "internet of things", + "beacons", + "beacon", + "web bluetooth", + "physical web", + "bluetooth" ], "topics": [ - "natural language processing", - "deep learning", - "multimedia", - "co-speech gesture", - "big data visualization", - "machine learning", - "artificial intelligence", - "video processing", - "audio processing", - "big data", - "ai", - "communication", - "cognitive science", - "data science", - "metadata", - "media", - "language", - "multimodal communication", - "gesture" + "web apps", + "internet of things", + "mobile", + "beacons" ], - "total_projects": 88, + "total_projects": 8, "first_time": false }, { - "id": "692251e553dd9d7326d33e99", - "slug": "responsible-ai-and-human-centred-technology", - "name": "Responsible AI and Human Centred Technology", - "category": "Science and medicine", - "description": "Human-centered and responsible AI for all", - "image_url": "https://summerofcode.withgoogle.com/media/org/responsible-ai-and-human-centred-technology/makkydlswhmjyilu-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/responsible-ai-and-human-centred-technology.webp", + "id": "692251e253dd9d7326d33e77", + "slug": "pidgin-instant-messenger", + "name": "Pidgin Instant Messenger", + "category": "Social and communication", + "description": "A universal chat client.", + "image_url": "https://lh3.googleusercontent.com/_cnWCvAP_kL_uIGMn_YD3zwWIJYWZ9TCAcGUjJ8FGHX3M1cieul6RxNm9lyflwkRn3kucFNG-RQMhlC7k8_8-4rBUyDO19lx1WGPp3hvTdC2", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/pidgin-instant-messenger.webp", "logo_r2_url": null, - "url": "https://www.tensorflow.org/responsible_ai", + "url": "https://pidgin.im", "active_years": [ - 2022 + 2021 ], - "first_year": 2022, - "last_year": 2022, + "first_year": 2021, + "last_year": 2021, "is_currently_active": false, "technologies": [ - "python", - "javascript", - "Technical writing" + "c", + "gtk", + "gstreamer" ], "topics": [ - "machine learning", - "ai", - "Fairness", - "Robustness", - "Safety", - "Interpretibility" + "web", + "real time", + "video", + "chat", + "voice" ], - "total_projects": 4, + "total_projects": 1, "first_time": false }, { - "id": "692251e553dd9d7326d33e9a", - "slug": "rizin", - "name": "Rizin", - "category": "Security", - "description": "Rizin reverse engineering framework and toolset", - "image_url": "https://summerofcode.withgoogle.com/media/org/rizin/7ageygqfyv7wzlee-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/rizin.webp", + "id": "692251e253dd9d7326d33e78", + "slug": "pitivi", + "name": "Pitivi", + "category": "End user applications", + "description": "Self-expression through filmmaking", + "image_url": "https://summerofcode.withgoogle.com/media/org/pitivi/tghrhxkqd9hb4cks-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/pitivi.webp", "logo_r2_url": null, - "url": "https://rizin.re", + "url": "https://www.pitivi.org/", "active_years": [ + 2019, + 2020, 2021, - 2022, - 2023, - 2024, - 2025 + 2023 ], - "first_year": 2021, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2019, + "last_year": 2023, + "is_currently_active": false, "technologies": [ "c", - "python", - "c++", - "qt", - "go" + "gtk", + "python 3", + "gstreamer", + "python" ], "topics": [ - "reverse engineering", - "computer security", - "debugging", - "emulation", - "disassembly" + "video processing", + "filmmaking", + "video editing" ], "total_projects": 10, "first_time": false }, { - "id": "692251e553dd9d7326d33e9b", - "slug": "robocomp", - "name": "RoboComp", - "category": "Other", - "description": "Open-source framework to develop robot components", - "image_url": "https://summerofcode.withgoogle.com/media/org/robocomp/okal4wecq8dywr78-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/robocomp.webp", + "id": "692251e253dd9d7326d33e79", + "slug": "plan-9-foundation", + "name": "Plan 9 Foundation", + "category": "Operating systems", + "description": "Lightweight distributed computing", + "image_url": "https://lh3.googleusercontent.com/HGZK0TXmYe6UAht6sgArgJi8TVarCJr-GPdVkHlCOpWO6e3kfzPrjpLvSeIgDcu7lAErDfcPPVqiqh-Eeu70rRxTROQgwa4kPouOYYmvu4_I", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/plan-9-foundation.webp", "logo_r2_url": null, - "url": "https://robocomp.github.io/web/", + "url": "http://p9f.org/", "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022 + 2021 + ], + "first_year": 2021, + "last_year": 2021, + "is_currently_active": false, + "technologies": [ + "c", + "golang", + "distributed systems", + "concurrency" + ], + "topics": [ + "operating systems", + "distributed systems", + "network programming" + ], + "total_projects": 2, + "first_time": false + }, + { + "id": "692251e253dd9d7326d33e6f", + "slug": "plasma-umass", + "name": "PLASMA-UMass", + "category": "Programming languages", + "description": "PLASMA explores ways to make programming languages faster, safer, and easier.", + "image_url": "https://lh3.googleusercontent.com/-9rCeol_lVeOVF1zTb2EaHP6fkAR-gqTXAtT-c5CuKlA8nSLFt6EW3YRhm1uqRB9AyahcBtBtdB7QiKxQpNUanGqGIbxGw", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/plasma-umass.webp", + "logo_r2_url": null, + "url": "http://plasma.cs.umass.edu", + "active_years": [ + 2016 ], "first_year": 2016, - "last_year": 2022, + "last_year": 2016, "is_currently_active": false, "technologies": [ - "python", - "c++", - "cmake", - "zeroc ice", - "gnu/linux", - "qt", - "openscenegraph", + "javascript", "c", - "ice - zeroc", - "opencv", - "c++11", - "component-based development", - "qt5", - "c++17", - "pytorch" + "c++", + "go", + "scala" ], "topics": [ - "robotics", - "computer vision", - "framework", - "robotics simulation", - "simulation", - "multi-agent system", - "component-based development", - "Multi-agent Systems" + "operating systems", + "software engineering", + "programming languages", + "programming tools", + "runtime systems" ], - "total_projects": 57, + "total_projects": 1, "first_time": false }, { - "id": "692251e553dd9d7326d33e9c", - "slug": "robolectric", - "name": "Robolectric", - "category": "Operating systems", - "description": "Fast unit testing runtime for Android", - "image_url": "https://summerofcode.withgoogle.com/media/org/robolectric/lazlu9me0dgu60vq-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/robolectric.webp", + "id": "692251e353dd9d7326d33e7a", + "slug": "plone-foundation", + "name": "Plone Foundation", + "category": "Web", + "description": "Python-based CMS, with React front-end.", + "image_url": "https://summerofcode.withgoogle.com/media/org/plone-foundation/wivpatiziuhidzjw-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/plone-foundation.webp", "logo_r2_url": null, - "url": "http://robolectric.org/", + "url": "https://plone.org", "active_years": [ + 2016, + 2017, + 2018, 2022, - 2024 + 2023, + 2024, + 2025 ], - "first_year": 2022, - "last_year": 2024, + "first_year": 2016, + "last_year": 2025, "is_currently_active": false, "technologies": [ - "android", - "java", - "jvm", - "asm" + "python", + "javascript", + "rest", + "nosql", + "zope", + "html", + "css", + "reactjs", + "react" ], "topics": [ - "testing", - "mobile" + "content management", + "enterprise applications", + "cms", + "web", + "collaboration", + "communications" ], - "total_projects": 5, + "total_projects": 26, "first_time": false }, { - "id": "692251e553dd9d7326d33e9d", - "slug": "rspamd", - "name": "Rspamd", - "category": "Security", - "description": "Rspamd is an email framework and spam filter", - "image_url": "https://summerofcode.withgoogle.com/media/org/rspamd/d2hi7vv5bavik21s-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/rspamd.webp", + "id": "692251e253dd9d7326d33e70", + "slug": "pmd", + "name": "PMD", + "category": "Programming languages", + "description": "An extensible cross-language static code analyzer.", + "image_url": "https://lh3.googleusercontent.com/XshAjEG09ri7DW3eLjpOB7zgcI57j2CBMhOmcWRJ3haTuJWphGXHF-b7Sc_hf01BFc3YgtOmbh6qujmpC3JJyS6bdNYjWaY", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/pmd.webp", "logo_r2_url": null, - "url": "https://www.rspamd.com", + "url": "https://pmd.github.io/", "active_years": [ 2017, - 2018, - 2025 + 2018 ], "first_year": 2017, - "last_year": 2025, - "is_currently_active": true, + "last_year": 2018, + "is_currently_active": false, "technologies": [ - "c", - "lua", - "cmake", - "javascript", - "machine learning", - "c++", - "rust", - "clickhouse" + "java", + "xml", + "javacc", + "antlr", + "xpath" ], "topics": [ - "machine learning", - "email", - "spam filtering", - "high performance computing" + "code analysis", + "code quality", + "source code analyzer", + "linter" ], "total_projects": 3, "first_time": false }, { - "id": "692251e553dd9d7326d33e9e", - "slug": "ruby", - "name": "Ruby", - "category": "Programming languages", - "description": "Ruby is an object-oriented programming language", - "image_url": "https://summerofcode.withgoogle.com/media/org/ruby/dc6i7iw8w39rktw1-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ruby.webp", + "id": "692251e353dd9d7326d33e7b", + "slug": "pocket-science-lab", + "name": "Pocket Science Lab", + "category": "Science and medicine", + "description": "Miniaturizing the Open Science Lab with Open Hardware and Open Source Software", + "image_url": "https://lh3.googleusercontent.com/c7_U0V5eO45sxFuYzs4fxjfK48XCdJ4qfKUryOgDy7RqPuj7TkqptMJjUzJyfNG0FRx3nNtl9d76UP2PGxnJ1oc9B3zvL_o", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/pocket-science-lab.webp", "logo_r2_url": null, - "url": "https://www.ruby-lang.org/", + "url": "https://pslab.io", "active_years": [ - 2016, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023 + 2018 ], - "first_year": 2016, - "last_year": 2023, + "first_year": 2018, + "last_year": 2018, "is_currently_active": false, "technologies": [ - "ruby", "c", + "android", "java", - "ruby on rails", - "rubygems", - "bundler" + "firmware", + "cad" ], "topics": [ - "programming languages", - "developer tools", - "web servers", - "cloud", - "programming language", - "web development", - "type system", - "performance optimization", - "security", - "web", - "server", - "application" + "education", + "science", + "firmware", + "school apps" ], - "total_projects": 38, + "total_projects": 2, "first_time": false }, { - "id": "692251e553dd9d7326d33e9f", - "slug": "ruby-science-foundation", - "name": "Ruby Science Foundation", + "id": "692251e353dd9d7326d33e7c", + "slug": "point-cloud-library", + "name": "Point Cloud Library", "category": "Science and medicine", - "description": "Tools for scientific computation in Ruby", - "image_url": "https://lh3.googleusercontent.com/kFvQCOeX0CvmrLWs59bRiZgH0-a4wehdUOrnsV51yktt5uvb1JA6rfr97xZx9g54wNAiCDnmQujpHIspp-9SdDqaWG37lkU", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ruby-science-foundation.webp", + "description": "Standalone, large scale, open project for 2D/3D image and point cloud processing", + "image_url": "https://lh3.googleusercontent.com/AOzUOMLm4TOHrEUH5LV9vlw6WgOjPt3DIm8hFkXUox68mU2eFZvb4nVLyeeo_joW2BSHQ6fAz10QKrlsB4-nSxldoa3zi54gZ_qXBxwXchveZg", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/point-cloud-library.webp", "logo_r2_url": null, - "url": "http://sciruby.com/", + "url": "https://pointclouds.org/", "active_years": [ - 2016, - 2017, - 2018, - 2019 + 2020, + 2021 ], - "first_year": 2016, - "last_year": 2019, + "first_year": 2020, + "last_year": 2021, "is_currently_active": false, "technologies": [ - "c", - "c++", - "ruby", - "jruby", - "c programming", - "web", - "gpu", - "science", - "data", + "cmake", + "cpp", + "devops", + "python", "cuda", - "machine learning", - "ai" + "c++14", + "computer vision" ], "topics": [ - "math", - "visualization", - "science", - "data", - "space", - "web", - "package management", - "hpc", - "compilers", - "artificial intelligence", - "data science", - "parallel algorithms", - "scientific computing", - "linear algebra", - "scientific visualization", - "data-science" + "robotics", + "3d computer vision", + "perception", + "computer vision", + "data structures", + "2d/3d graphics", + "gpu computing" ], - "total_projects": 13, - "first_time": false - }, - { - "id": "692251e553dd9d7326d33ea0", - "slug": "ruby-on-rails", - "name": "Ruby on Rails", - "category": "Web", - "description": "Ruby on Rails is web framework that optimizes for programmer happinness.", - "image_url": "https://lh3.googleusercontent.com/vKSkD8tHmHh8CZANFLZKn491GK8d7EtO-1ym1y1jkUKTdaXThRD1egMpovzLvJ0lKWQlUCR0u2OYiSVb-aMrQdsOjQA-HP9W", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ruby-on-rails.webp", + "total_projects": 5, + "first_time": false + }, + { + "id": "692251e353dd9d7326d33e7d", + "slug": "polly-labs", + "name": "Polly Labs", + "category": "Programming languages", + "description": "Promoting Polyhedral Compilation", + "image_url": "https://lh3.googleusercontent.com/yKCUZwrL8WLvq58Lpcxl0GZ1wdQFNuhMVxp0NvQT8R_ZkRCaVvcOqhv0SP6MMdbDJCTxm1k9FPC6W4V-cbQwh9AUxi-nSHc6", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/polly-labs.webp", "logo_r2_url": null, - "url": "http://rubyonrails.org/", + "url": "http://pollylabs.org", "active_years": [ 2017, 2018 @@ -14519,86 +14914,104 @@ "last_year": 2018, "is_currently_active": false, "technologies": [ - "ruby on rails", - "ruby", - "html" + "llvm", + "polly", + "ppcg", + "integer set library", + "pencil", + "c", + "c++", + "isl" ], "topics": [ - "web", - "full stack", - "web development", - "web applications" + "optimization", + "fpga", + "polyhedral compilation", + "parallelization", + "program verification", + "compilers", + "polyhedral model" ], "total_projects": 4, "first_time": false }, { - "id": "692251e553dd9d7326d33ea1", - "slug": "score-lab", - "name": "SCoRe Lab", - "category": "End user applications", - "description": "SCoRe Lab develops FOSS softwares for everyone!!!", - "image_url": "https://summerofcode.withgoogle.com/media/org/score-lab/x8apbdrxwdrmqv7f-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/score-lab.webp", + "id": "692251e353dd9d7326d33e7e", + "slug": "polypheny", + "name": "Polypheny", + "category": "Data", + "description": "The Most Versatile Data Management Platform", + "image_url": "https://summerofcode.withgoogle.com/media/org/polypheny/059uxeqzitvoqcyx-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/polypheny.webp", "logo_r2_url": null, - "url": "https://scorelab.org/", + "url": "https://polypheny.org", "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, 2021, 2022, - 2023 + 2024 ], - "first_year": 2016, - "last_year": 2023, + "first_year": 2021, + "last_year": 2024, "is_currently_active": false, "technologies": [ - "python", - "android", + "javascript", "java", - "golang", - "hadoop", - "gcp", - "golan", - "go", - "node.js", - "pyth", - "machine learning", - "web development", - "cloud", - "mobile", - "reactjs" + "sql", + "angular" ], "topics": [ - "security", - "iot", - "mobile", - "forensic", - "cloud with google computer engine", - "mobile applications", - "embedded systems", - "web", - "machine learning", - "web development", + "databases", + "big data", + "ui", + "polystore", + "nosql", + "database", "cloud", - "information security" + "data science", + "ai" ], - "total_projects": 149, + "total_projects": 9, "first_time": false }, { - "id": "692251e653dd9d7326d33ea2", - "slug": "spdx", - "name": "SPDX", + "id": "692251e353dd9d7326d33e7f", + "slug": "portland-state-university", + "name": "Portland State University", "category": "Other", - "description": "An open ISO standard for SBOMs", - "image_url": "https://summerofcode.withgoogle.com/media/org/spdx/ggw7mdbriw97mzmu-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/spdx.webp", + "description": "Individual and Academic Open Source", + "image_url": "https://lh3.googleusercontent.com/sAIPHC0hT4utSZW0pR7kqUAbtNkZZJivcSJZrbA15Cs6adP4oxthezndn2EffbpBLBN-2lSyz-pHYjqiIvfZAqMrUWClvnw", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/portland-state-university.webp", "logo_r2_url": null, - "url": "https://spdx.dev", + "url": "http://wiki.cs.pdx.edu/psu-gsoc", + "active_years": [ + 2016, + 2017 + ], + "first_year": 2016, + "last_year": 2017, + "is_currently_active": false, + "technologies": [ + "open hardware", + "language-agnostic" + ], + "topics": [ + "new projects", + "academic projects", + "individual projects" + ], + "total_projects": 13, + "first_time": false + }, + { + "id": "692251e353dd9d7326d33e80", + "slug": "postgresql", + "name": "PostgreSQL", + "category": "Data", + "description": "PostgreSQL is a powerful, open source object-relational database system with over 30 years of active development that has earned it a strong reputation for reliability, feature robustness, and performance.", + "image_url": "https://summerofcode.withgoogle.com/media/org/postgresql/hj9srl9x0o6iendy-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/postgresql.webp", + "logo_r2_url": null, + "url": "https://postgresql.org", "active_years": [ 2017, 2018, @@ -14606,1099 +15019,1170 @@ 2020, 2021, 2022, - 2023 + 2023, + 2024, + 2025, + 2026 ], "first_year": 2017, - "last_year": 2023, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ "c", + "postgresql", + "perl", + "sql", + "rdbms", + "ordbms", + "postgres", "python", - "java", - "github", - "rdf", - "json", - "golang", - "xml", - "node.js", + "julia", + "javascript", "go" ], "topics": [ - "compliance", - "licensing", - "opensource", - "open source", - "security", - "standards", + "database", + "rdbms", + "big data", + "sql", "data", - "vulnerabilities" + "data management", + "web", + "relational database", + "postgresql", + "ui", + "Benchmark" ], - "total_projects": 29, + "total_projects": 51, "first_time": false }, { - "id": "692251e653dd9d7326d33ea3", - "slug": "sqlancer", - "name": "SQLancer", + "id": "692251e353dd9d7326d33e81", + "slug": "postman", + "name": "Postman", "category": "Data", - "description": "Automatically testing database systems", - "image_url": "https://summerofcode.withgoogle.com/media/org/sqlancer/hzunjobwazuptdb6.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/sqlancer.webp", + "description": "The Future is API-First", + "image_url": "https://summerofcode.withgoogle.com/media/org/postman/iw5h0aed8pe5yind-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/postman.webp", "logo_r2_url": null, - "url": "https://www.sqlancer.com", + "url": "https://postman.com", "active_years": [ + 2020, + 2021, 2023, - 2025 + 2024 ], - "first_year": 2023, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2020, + "last_year": 2024, + "is_currently_active": false, "technologies": [ - "java", - "sql" + "javascript", + "node.js", + "graphql", + "openapi", + "rest api", + "api", + "AsyncAPI", + "JSON Schema" ], "topics": [ - "fuzzing", - "Automated Testing", - "Logic bugs", - "Database systems" + "api", + "developer tools", + "api management", + "programmer productivity", + "productivity", + "apis", + "programming languages and development tools", + "software development", + "testing", + "automation", + "documentation", + "data" + ], + "total_projects": 19, + "first_time": false + }, + { + "id": "692251e353dd9d7326d33e82", + "slug": "powerdns", + "name": "PowerDNS", + "category": "Other", + "description": "PowerDNS provides open source DNS software", + "image_url": "https://summerofcode.withgoogle.com/media/org/powerdns/qmczym8f4ok5netw-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/powerdns.webp", + "logo_r2_url": null, + "url": "https://www.powerdns.com/", + "active_years": [ + 2022 + ], + "first_year": 2022, + "last_year": 2022, + "is_currently_active": false, + "technologies": [ + "c++", + "DNS" + ], + "topics": [ + "DNS recursive solutions", + "Authoritative DNS software" ], - "total_projects": 6, + "total_projects": 1, "first_time": false }, { - "id": "692251e653dd9d7326d33ea4", - "slug": "sw360", - "name": "SW360", - "category": "Web", - "description": "Software supply chain management done right !", - "image_url": "https://summerofcode.withgoogle.com/media/org/sw360/scylub8cx6f9mkzk-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/sw360.webp", + "id": "new_2026_precice", + "slug": "precice", + "name": "preCICE", + "category": "Science and medicine", + "description": "preCICE is an open-source coupling library and ecosystem for general partitioned multi-physics and multi-scale simulations, including surface and volume coupling.\n\nPartitioned means that preCICE couples existing programs/solvers capable of simulating a subpart of the complete physics involved in a simulation. This allows for the high flexibility that is needed to keep a decent time-to-solution for complex coupled problems.\n\nThe software offers convenient methods for transient equation coupling, communication, time interpolation, and data mapping.", + "image_url": "https://summerofcode.withgoogle.com/media/org/precice/19ymcw80uxn8g9ia-360.png", + "img_r2_url": "https://summerofcode.withgoogle.com/media/org/precice/19ymcw80uxn8g9ia-360.png", "logo_r2_url": null, - "url": "https://eclipse.dev/sw360/", + "url": "https://precice.org/", "active_years": [ - 2025 + 2026 ], - "first_year": 2025, - "last_year": 2025, + "first_year": 2026, + "last_year": 2026, "is_currently_active": true, "technologies": [ - "java", - "react", - "couchdb", - "SpringBoot" + "c", + "python", + "shell", + "c++" ], "topics": [ - "license compliance", - "compliance automation", - "SBOM", - "component repository", - "vulnerabilities management" + "scientific computing", + "simulation" ], - "total_projects": 2, + "total_projects": 0, "first_time": true }, { - "id": "692251e653dd9d7326d33ea5", - "slug": "sagemath", - "name": "SageMath", + "id": "692251e253dd9d7326d33e71", + "slug": "prism-model-checker", + "name": "PRISM Model Checker", "category": "Science and medicine", - "description": "Open-source mathematics software system", - "image_url": "https://summerofcode.withgoogle.com/media/org/sagemath/1tcj7svgwadc13cj-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/sagemath.webp", + "description": "PRISM is a tool for formally verifying the correctness of probabilistic systems.", + "image_url": "https://lh3.googleusercontent.com/XK1ab1MTDTxb-6-kx3oOqRIvw1EsGZ78EVDnHy73kseH3O6Oh93nvv9WNn_TqduBUsnccMiaWwLERzjO4V4stIwqVlDiRA", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/prism-model-checker.webp", "logo_r2_url": null, - "url": "https://www.sagemath.org", + "url": "http://www.prismmodelchecker.org", "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2016 ], "first_year": 2016, - "last_year": 2025, - "is_currently_active": true, + "last_year": 2016, + "is_currently_active": false, "technologies": [ - "python", - "cython", - "javascript", - "c++", - "c", - "python 3" + "java", + "c++" ], "topics": [ - "mathematics", - "math", + "verification", "science", - "mathematical software", - "combinatorics", - "algorithms", - "toolbox", - "education", - "research" + "probabilistic models" ], - "total_projects": 55, + "total_projects": 5, "first_time": false }, { - "id": "692251e653dd9d7326d33ea6", - "slug": "salesforce", - "name": "Salesforce", - "category": "Infrastructure and cloud", - "description": "From the kernel to the browser, open source projects from Salesforce.", - "image_url": "https://lh3.googleusercontent.com/b_Zs0WDCb82zhyL83B1zm4yR4bUymA-vGn_1yNL7aJgANPNcjfmYNOx9IZZF719ewIMxm_winyYNC8ANforLd5f0RdQkcBA", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/salesforce.webp", + "id": "692251e353dd9d7326d33e83", + "slug": "probot", + "name": "Probot", + "category": "Programming languages", + "description": "Automate and improve GitHub workflows", + "image_url": "https://lh3.googleusercontent.com/m9JcOmI0hFFlDLBoBysTHLRk3XutSKy8kgNBKSNP7GTAG2GRxk9ax2fEU4SIKdEP-a4mPyw0FLiXDTmk_wUnIzn9z5zs-g", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/probot.webp", "logo_r2_url": null, - "url": "https://opensource.salesforce.com/", + "url": "https://probot.github.io/", "active_years": [ - 2019 + 2018 ], - "first_year": 2019, - "last_year": 2019, + "first_year": 2018, + "last_year": 2018, "is_currently_active": false, "technologies": [ "javascript", - "react", - "node.js", - "scala", - "apache spark" + "github", + "node.js" ], "topics": [ - "machine learning", - "natural language processing", - "web applications", - "user interface", - "cli" + "automation", + "development tools", + "bot" ], "total_projects": 2, "first_time": false }, { - "id": "692251e653dd9d7326d33ea7", - "slug": "samba", - "name": "Samba", - "category": "Other", - "description": "Opening windows to a wider world", - "image_url": "https://lh3.googleusercontent.com/_8-VaHi74y4qMQKPJseZX26TlSr0ecED2RK5LcgCoNWutVg5Uq0Xx8v43ePrx7xDUZaGGyJptv4OIOldc7yXSN57YotASv8VDrW-pEQL-qghIg", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/samba.webp", + "id": "692251e353dd9d7326d33e84", + "slug": "processing-foundation", + "name": "Processing Foundation", + "category": "Programming languages", + "description": "Our mission is to promote software learning within the arts, artistic learning within technology-related fields, and to celebrate the diverse communities that make these fields vibrant, liberatory, and innovative. Our goal is to support people of all backgrounds in learning how to program and make creative work with code, especially those who might not otherwise have access to tools and resources. We also believe that some of the most radical futures and innovative technologies are being built by communities that have been pushed to the margins by dominant tech. We hope to support those who have been marginalized by technology in continued self-determination by providing time, space, and resources.\n\nWe work toward our goals by developing and distributing a group of related software projects, which includes Processing (Java), p5.js (JavaScript), and p5.js Editor (JavaScript), and by facilitating partnerships and collaborations with allied organizations and individuals to build a more diverse community around software and the arts.", + "image_url": "https://summerofcode.withgoogle.com/media/org/processing-foundation/xr2sncljbvtlop1n-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/processing-foundation.webp", "logo_r2_url": null, - "url": "https://www.samba.org/", + "url": "http://processingfoundation.org", "active_years": [ 2017, + 2018, 2019, 2020, - 2021 + 2021, + 2022, + 2023, + 2025, + 2026 ], "first_year": 2017, - "last_year": 2021, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "c", "python", - "smb", - "cifs" + "javascript", + "android", + "java", + "opengl", + "javascr", + "typescript", + "webgl", + "GitHub Actions" ], "topics": [ - "samba", - "networks", - "interoperability", - "networking", - "enterprise" + "education", + "web", + "graphics", + "creative coding", + "design" ], - "total_projects": 3, + "total_projects": 87, "first_time": false }, { - "id": "692251e653dd9d7326d33ea8", - "slug": "scala-center", - "name": "Scala Center", - "category": "Programming languages", - "description": "Guide and support the Scala community", - "image_url": "https://summerofcode.withgoogle.com/media/org/scala-center/0umytpqshifjeevx-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/scala-center.webp", + "id": "692251e353dd9d7326d33e85", + "slug": "project-mesa", + "name": "Project Mesa", + "category": "Science and medicine", + "description": "Mesa is an Apache2 licensed agent-based modeling (or ABM) framework in Python.\n\nIt allows users to quickly create agent-based models using built-in core components (such as spatial grids and agent schedulers) or customized implementations; visualize them using a browser-based interface; and analyze their results using Python’s data analysis tools. \n\nIts goal is to provide an ecosystem to support generative science approaches, improve understanding of complex systems and aid practical decision-making.", + "image_url": "https://summerofcode.withgoogle.com/media/org/project-mesa/fh3o8surszufvjpv-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/project-mesa.webp", "logo_r2_url": null, - "url": "https://scala-lang.org/", + "url": "https://mesa.readthedocs.io/latest/", "active_years": [ - 2016, - 2017, - 2018, - 2021, - 2022, - 2023, 2024, - 2025 + 2025, + 2026 ], - "first_year": 2016, - "last_year": 2025, + "first_year": 2024, + "last_year": 2026, "is_currently_active": true, "technologies": [ - "jvm", - "scala", - "llvm", - "#scala", - "#scala_lang", - "#jvm", - "#llvm", - "#js", - "scala.js", - "scala native", - "functional programming" + "python", + "ui/ux", + "LLMs", + "Vector Operations", + "gis", + "object oriented programming", + "network topology" ], "topics": [ - "compilers", - "programming languages", - "functional programming", - "programming tools", - "compiler", - "programming-tools", - "functional-programming", - "programming-language", - "#compilers", - "#programming-tools", - "#functional-programming", - "#programming-languages", - "#education", - "education", - "tooling", - "web", - "gpu" + "Agent Based Models", + "Generative Science", + "simulation" ], - "total_projects": 56, + "total_projects": 7, "first_time": false }, { - "id": "692251e653dd9d7326d33ea9", - "slug": "scalable-parallel-computing-laboratory", - "name": "Scalable Parallel Computing Laboratory", - "category": "Programming languages", - "description": "High-performance computing for clusters and clouds", - "image_url": "https://summerofcode.withgoogle.com/media/org/scalable-parallel-computing-laboratory/cho0tqlhmykehqlw-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/scalable-parallel-computing-laboratory.webp", + "id": "692251e353dd9d7326d33e86", + "slug": "project-panoptes", + "name": "Project PANOPTES", + "category": "Science and medicine", + "description": "Discover New Worlds", + "image_url": "https://lh3.googleusercontent.com/YxgGJuUQMFtGopt--uoqDIeEK0EyNbNw_nIFql5oy90oF1a7MnS8d07_3KHazE_JiKj2KRPuqD5exiMzAIZ3EDuj75NhMQ", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/project-panoptes.webp", + "logo_r2_url": null, + "url": "https://projectpanoptes.org", + "active_years": [ + 2019 + ], + "first_year": 2019, + "last_year": 2019, + "is_currently_active": false, + "technologies": [ + "python 3", + "arduino", + "cloud" + ], + "topics": [ + "robotics", + "image processing", + "astronomy", + "exoplanet" + ], + "total_projects": 2, + "first_time": false + }, + { + "id": "692251e353dd9d7326d33e87", + "slug": "project-wikiloop", + "name": "Project WikiLoop", + "category": "Other", + "description": "Contribute to open knowledge at scale - heritage preservation and translation", + "image_url": "https://lh3.googleusercontent.com/34r7ANSITcDOXQr_s0Y5dk4iepIIl9TP7_FA1-8f2E1e4k7GOR7ZvC_KaUPIVQADrayTE8nkGsAMsSfpLo2GsyfV18ewlMhyD1ft2EG0IM86BQ", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/project-wikiloop.webp", "logo_r2_url": null, - "url": "https://spcl.inf.ethz.ch/", + "url": "https://meta.wikimedia.org/wiki/WikiLoop", "active_years": [ - 2023, - 2024 + 2021 ], - "first_year": 2023, - "last_year": 2024, + "first_year": 2021, + "last_year": 2021, "is_currently_active": false, "technologies": [ "python", - "c++", - "mpi", - "aws", - "Serverless" + "java", + "mediawiki" ], "topics": [ - "programming languages", - "high-performance computing", - "parallel computing", - "Serverless Computing", - "faas" + "cultural heritage", + "knowledge graphs", + "computer-assisted translation" ], - "total_projects": 6, + "total_projects": 3, "first_time": false }, { - "id": "692251e653dd9d7326d33eaa", - "slug": "scilab", - "name": "Scilab", - "category": "End user applications", - "description": "Cross-platform numerical computational package and programming language.", - "image_url": "https://lh3.googleusercontent.com/lIs5ySAf3RTl47fydovwKV_c6iXAVC9iSG_tuhDg_uq7EWYQCwqKasW3EF7C4xM8SCm8Q7KNpmrkoYHb0FkCZPxfrFUXL8w", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/scilab.webp", + "id": "692251e453dd9d7326d33e88", + "slug": "prometheus-operator", + "name": "Prometheus-Operator", + "category": "Infrastructure and cloud", + "description": "Managing Prometheus atop Kubernetes", + "image_url": "https://summerofcode.withgoogle.com/media/org/prometheus-operator/dpytdkpyfejrot7o-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/prometheus-operator.webp", "logo_r2_url": null, - "url": "https://www.scilab.org", + "url": "https://prometheus-operator.dev/", "active_years": [ - 2016, - 2017, - 2018 + 2024, + 2025 ], - "first_year": 2016, - "last_year": 2018, + "first_year": 2024, + "last_year": 2025, "is_currently_active": false, "technologies": [ - "c", - "java", - "c++", - "fortran", - "scilab", - "python", - "opengl" + "prometheus", + "go", + "kubernetes", + "kubernetes operators" ], "topics": [ - "engineering", - "graphics", - "vision", - "user interface", - "mechanics", - "programming language", - "numerical computing", - "scientific visualization", - "mathematics", - "science", - "numerical computation" + "monitoring", + "cloud", + "observability", + "Kubernetes Operator" ], - "total_projects": 14, + "total_projects": 5, "first_time": false }, { - "id": "692251e653dd9d7326d33eab", - "slug": "scummvm", - "name": "ScummVM", - "category": "End user applications", - "description": "Adventure and RPG preservation project", - "image_url": "https://summerofcode.withgoogle.com/media/org/scummvm/bnok4srtehdy3fbj-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/scummvm.webp", + "id": "692251e453dd9d7326d33e89", + "slug": "public-lab", + "name": "Public Lab", + "category": "Science and medicine", + "description": "Tools for communities to measure pollution", + "image_url": "https://summerofcode.withgoogle.com/media/org/public-lab/w93lsalkzbyb31pg-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/public-lab.webp", "logo_r2_url": null, - "url": "https://www.scummvm.org/", + "url": "https://publiclab.org", "active_years": [ 2016, 2017, 2018, 2019, - 2020, 2021, - 2022, - 2023, - 2024, - 2025 + 2022 ], "first_year": 2016, - "last_year": 2025, - "is_currently_active": true, + "last_year": 2022, + "is_currently_active": false, "technologies": [ - "opengl", - "c++", - "assembly", - "sdl", - "c", - "lua", - "python", - "php" + "javascript", + "ruby on rails", + "webrtc", + "leaflet", + "ruby", + "node.js", + "raspberry pi" ], "topics": [ - "games", - "game engines", - "software preservation", - "game", - "engines", - "software archeology" + "science", + "environment", + "community", + "hardware", + "pollution", + "collaboration", + "diversity", + "diy", + "documentation", + "forum" ], - "total_projects": 34, + "total_projects": 38, "first_time": false }, { - "id": "692251e653dd9d7326d33eac", - "slug": "seaql", - "name": "SeaQL", - "category": "Data", - "description": "Building data intensive applications in Rust", - "image_url": "https://summerofcode.withgoogle.com/media/org/seaql/tkc2iu6ottkqbq0b-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/seaql.webp", + "id": "692251e453dd9d7326d33e8a", + "slug": "purr-data", + "name": "Purr Data", + "category": "End user applications", + "description": "Realtime Audio/Visual Programming Environment", + "image_url": "https://summerofcode.withgoogle.com/media/org/purr-data/vb8l0binls5gjdqp-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/purr-data.webp", "logo_r2_url": null, - "url": "https://sea-ql.org", + "url": "https://www.purrdata.net/", "active_years": [ - 2022 + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024 ], - "first_year": 2022, - "last_year": 2022, + "first_year": 2018, + "last_year": 2024, "is_currently_active": false, "technologies": [ - "mysql", - "postgresql", - "rust", - "sql", - "sqlite" + "javascript", + "c", + "c++", + "node.js", + "html5/css3", + "html5", + "opengl", + "svg", + "html", + "css", + "Emscripten" ], "topics": [ - "database", - "library", - "framework", - "sql", - "rust" + "audio", + "real-time", + "video", + "dsp", + "data vizualisation", + "data visualization", + "digital signal processing", + "real-time system", + "music", + "visual programming", + "2d/3d graphics", + "web development", + "graphics / video / audio / virtual reality", + "web", + "graphics", + "realtime" ], - "total_projects": 0, + "total_projects": 15, "first_time": false }, { - "id": "692251e653dd9d7326d33ead", - "slug": "seastar", - "name": "Seastar", - "category": "Programming languages", - "description": "Framework for writing high-performance server applications on modern hardware", - "image_url": "https://lh3.googleusercontent.com/rBIDW74GlN99v142I_orxLgDEKEkmkkFd3qfmN0D6N1u9c9GD1LQD_2XDGY_1uU03TbaQPwsLA_jQEZXkeADHCJyO4QTJSU", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/seastar.webp", + "id": "692251e453dd9d7326d33e8b", + "slug": "python-software-foundation", + "name": "Python Software Foundation", + "category": "End user applications", + "description": "Python is a programming language that lets you work more quickly and integrate your systems more effectively.\n\nThe Python Software Foundation serves as an umbrella organization to a\nvariety of Python-related projects, as well as sponsoring projects related to the\ndevelopment of the Python language.\n\nYou can view a full list of participating sub-orgs here:\nhttps://python-gsoc.org/ideas.html\n\nSub-orgs:\n- Borg Collective - backup tools\n- CVE Binary Tool - scanning for known security vulnerabilities\n- DIPY - 3d/4d+ imaging\n- Fury - scientific visualization tools\n- LPython - ahead of time compiler for python\n- MNE-Python - tools for human neurophysiological data\n- Mission Support System - atmospheric science tools for flight planning\n- PyData/Sparse - n-dimensional sparse arrays for pyData\n- PyElastica - simulation and modeling for slender structures", + "image_url": "https://summerofcode.withgoogle.com/media/org/python-software-foundation/2vpxhpvcsvgyx3kg-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/python-software-foundation.webp", "logo_r2_url": null, - "url": "http://www.seastar-project.org/", + "url": "https://python-gsoc.org/", "active_years": [ - 2018 + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ], - "first_year": 2018, - "last_year": 2018, - "is_currently_active": false, + "first_year": 2016, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "linux", - "cpp", - "framework", - "dpdk", - "tcp" + "python", + "mercurial", + "javascript", + "sqlite", + "c++", + "SBOM" ], "topics": [ - "network", - "high performance", - "tcp", - "app development", - "framework" + "mathematics", + "hardware", + "biology", + "physics", + "image analysis", + "programming languages", + "science", + "security", + "machine learning", + "ui design", + "science and medicine", + "database", + "design", + "visualization", + "compiler", + "modeling", + "Backup" ], - "total_projects": 1, + "total_projects": 277, "first_time": false }, { - "id": "692251e653dd9d7326d33eae", - "slug": "semi-technologies", - "name": "Semi Technologies", + "id": "692251e453dd9d7326d33e8c", + "slug": "qc-devs", + "name": "QC-Devs", "category": "Science and medicine", - "description": "The ML-first vector search engine", - "image_url": "https://summerofcode.withgoogle.com/media/org/semi-technologies/bcwggbwqvxkpo6qq.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/semi-technologies.webp", + "description": "QC-Devs develops free, open-source, and cross-platform libraries for the computational sciences, focusing on theoretical and computational chemistry. Our goal is to make programming accessible to students and researchers, to catalyze scientific collaborations, and to promote precepts of sustainable software development. We're adapting some of the same principles to develop free and open-source educational materials (qc-edu.org) to modernize scientific education by integrating hands-on computation and computer programming.", + "image_url": "https://summerofcode.withgoogle.com/media/org/qc-devs/nywcx8edxlpsz2kg-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/qc-devs.webp", "logo_r2_url": null, - "url": "https://weaviate.io", + "url": "https://qcdevs.org/", "active_years": [ - 2022 + 2024, + 2025, + 2026 ], - "first_year": 2022, - "last_year": 2022, - "is_currently_active": false, + "first_year": 2024, + "last_year": 2026, + "is_currently_active": true, "technologies": [ "python", - "machine learning", - "golang", - "vectors", - "natural language processing" + "github", + "c++", + "julia", + "jupyter" ], "topics": [ - "machine learning", - "Vector Database", - "Search Engines" + "data science", + "scientific visualization", + "quantum chemistry", + "Computational Science", + "numerical algorithms" ], - "total_projects": 3, + "total_projects": 7, "first_time": false }, { - "id": "692251e653dd9d7326d33eaf", - "slug": "shaka-player", - "name": "Shaka Player", - "category": "Media", - "description": "An open-source JavaScript library to play adaptive media.", - "image_url": "https://lh3.googleusercontent.com/x8zL_jDCw5xPw2P5CK9Cs5nWmIl_0gPBEaspT8INn4im49yVs2gEz2IFIthL4fH0ky5o7I80gbIjm9CXbf45lMXZgl0pRwppZL4GagfkeFLi", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/shaka-player.webp", + "id": "692251e453dd9d7326d33e8e", + "slug": "qdrant", + "name": "Qdrant", + "category": "Data", + "description": "Vector Search Database for the new AI generation.", + "image_url": "https://summerofcode.withgoogle.com/media/org/qdrant/73jgnlygoyu6ibia-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/qdrant.webp", "logo_r2_url": null, - "url": "https://opensource.google/projects/shaka-player", + "url": "https://qdrant.tech", "active_years": [ - 2021 + 2023 ], - "first_year": 2021, - "last_year": 2021, + "first_year": 2023, + "last_year": 2023, "is_currently_active": false, "technologies": [ "python", "javascript", - "web development", - "video codecs", - "ui/ux" + "rust" ], "topics": [ - "web", - "streaming", - "video" + "databases", + "machine learning", + "Search Engines" ], "total_projects": 2, "first_time": false }, { - "id": "692251e753dd9d7326d33eb0", - "slug": "shogun", - "name": "Shogun", - "category": "Science and medicine", - "description": "Unified and efficient Machine Learning", - "image_url": "https://lh3.googleusercontent.com/cCl4GfzsLBvpTPnFeYL8lxv3DraX0vbkCIhaN8Se_xEjTcWXqMdLTM_DJvJBeThODx3Gms3sjsiFlAFtznT5dKYPw7djIvE", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/shogun.webp", + "id": "692251e453dd9d7326d33e8d", + "slug": "qemu", + "name": "QEMU", + "category": "Infrastructure and cloud", + "description": "The QEMU Project includes the QEMU open source machine emulator and virtualizer and also acts as an umbrella organization for the KVM Linux kernel module and rust-vmm community.\n\nWhen used as a machine emulator, QEMU can run operating systems and programs made for one machine (e.g. an ARM board) on a different machine (e.g. your own PC). By using dynamic translation, it achieves very good performance.\n\nWhen used as a virtualizer, QEMU achieves near native performances by executing the guest code directly on the host CPU. QEMU supports virtualization when executing under the Xen hypervisor or using the KVM kernel module in Linux. When using KVM, QEMU can virtualize x86, ARM, server and embedded PowerPC, and S390 guests.", + "image_url": "https://summerofcode.withgoogle.com/media/org/qemu/gik5gsxljb3j1jx1-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/qemu.webp", "logo_r2_url": null, - "url": "https://www.shogun.ml/", + "url": "https://qemu.org/", "active_years": [ 2016, 2017, + 2018, 2019, - 2020 + 2020, + 2021, + 2022, + 2023, + 2025, + 2026 ], "first_year": 2016, - "last_year": 2020, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "python", - "c++", - "cmake", - "swig", "c", - "machine learning", - "c++11", - "c++17", - "data science", - "matlab" + "assembly", + "kvm", + "python", + "linux", + "virtualization", + "rust" ], "topics": [ - "machine learning", - "software engineering", - "bioinformatics", - "statistics", - "fast algorithms", - "data science", - "scientific computing", - "user experience" + "virtualization", + "operating systems", + "compilers", + "emulation", + "compiler", + "hypervisor", + "cloud", + "kernel", + "lowlevel", + "emulator", + "code generation", + "systems programming" ], - "total_projects": 10, + "total_projects": 41, "first_time": false }, { - "id": "692251e753dd9d7326d33eb1", - "slug": "sigmah", - "name": "Sigmah", - "category": "End user applications", - "description": "Java/GWT platform for humanitarian project management", - "image_url": "https://lh3.googleusercontent.com/93j_B6_iRuj44vvNZhG5HeC8UY4b74xxz3SfQQF6r0dqq8S3yzv76u1BUM09yp2IzcGu_aWvbWrymJYkaKXTO6oGTDbYGQ", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/sigmah.webp", + "id": "692251e453dd9d7326d33e8f", + "slug": "qubes-os", + "name": "Qubes OS", + "category": "Operating systems", + "description": "Qubes OS is a security- and privacy-focused free-and-open-source operating system that provides a safer platform for communications, information management, and general computing.", + "image_url": "https://summerofcode.withgoogle.com/media/org/qubes-os-f3/4hohuknku00cpaja-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/qubes-os.webp", "logo_r2_url": null, - "url": "http://www.sigmah.org", + "url": "https://qubes-os.org", "active_years": [ - 2016, - 2017 + 2017, + 2020, + 2021, + 2026 ], - "first_year": 2016, - "last_year": 2017, - "is_currently_active": false, + "first_year": 2017, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "java", - "gwt", - "postgresql" + "c", + "python", + "xen", + "shell", + "linux", + "ruby" ], "topics": [ - "humanitarian", - "project-management", - "hfoss" + "virtualization", + "security", + "privacy", + "operating system", + "operating systems", + "OS" ], - "total_projects": 3, + "total_projects": 4, "first_time": false }, { - "id": "692251e753dd9d7326d33eb2", - "slug": "society-for-arts-and-technology-sat", - "name": "Society for Arts and Technology (SAT)", - "category": "Media", - "description": "Technological tools for creativity and industry", - "image_url": "https://summerofcode.withgoogle.com/media/org/society-for-arts-and-technology-sat/pkgrduycyoh0wxmf-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/society-for-arts-and-technology-sat.webp", + "id": "692251e453dd9d7326d33e90", + "slug": "quillorg", + "name": "Quill.org", + "category": "Web", + "description": "Helping millions of learners become better writers and critical thinkers", + "image_url": "https://lh3.googleusercontent.com/CHPiRA9590fHfBQ02NwN2zhkYtvjaI6DpI44mOuXOOoLeE3JtIwYx_0_k3-hb-W2QndF65EjL22oVy3fAeNXvk75fa2QWfc", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/quillorg.webp", "logo_r2_url": null, - "url": "https://sat.qc.ca", + "url": "https://quill.org", "active_years": [ - 2022, - 2023, - 2025 + 2018 ], - "first_year": 2022, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2018, + "last_year": 2018, + "is_currently_active": false, "technologies": [ - "python", + "postgresql", "javascript", - "opengl", - "c++", - "supercollider", - "qt", - "esp32" + "react", + "ruby", + "rails" ], "topics": [ + "education", "web", - "graphics", - "cloud", - "multimedia", - "accessibility", - "computer vision", - "Telepresence", - "digital arts" + "machine learning", + "nlp", + "edtech" ], - "total_projects": 12, + "total_projects": 1, "first_time": false }, { - "id": "692251e753dd9d7326d33eb3", - "slug": "software-heritage", - "name": "Software Heritage", - "category": "Data", - "description": "The universal source code archive", - "image_url": "https://summerofcode.withgoogle.com/media/org/software-heritage/8vchqcnmijmq3ibq-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/software-heritage.webp", + "id": "692251e453dd9d7326d33e91", + "slug": "r-project-for-statistical-computing", + "name": "R project for statistical computing", + "category": "Science and medicine", + "description": "R provides a wide variety of statistical and graphical techniques, and is highly extensible. R is often the tool of choice for research in statistical methodology.\n\nR is an integrated suite of software facilities for data manipulation, calculation and graphical display. It includes\n\n* an effective data handling and storage facility,\n* a suite of operators for calculations on arrays, in particular matrices,\n* a large, coherent, integrated collection of intermediate tools for data analysis,\n* graphical facilities for data analysis and display either on-screen or on hardcopy, and\n* a well-developed, simple and effective programming language which includes conditionals, loops, user-defined recursive functions and input and output facilities.\n\nThe term “environment” is intended to characterize it as a fully planned and coherent system, rather than an incremental accretion of very specific and inflexible tools, as is frequently the case with other data analysis software.\n\nR, like S, is designed around a true computer language, and it allows users to add additional functionality by defining new functions. Much of the system is itself written in the R dialect of S, which makes it easy for users to follow the algorithmic choices made. For computationally-intensive tasks, C, C++ and Fortran code can be linked and called at run time. Advanced users can write C code to manipulate R objects directly.\n\nMany users think of R as a statistics system. We prefer to think of it of an environment within which statistical techniques are implemented. R can be extended (easily) via packages. There are about eight packages supplied with the R distribution and many more are available through the CRAN family of Internet sites covering a very wide range of modern statistics.\n\nR has its own LaTeX-like documentation format, which is used to supply comprehensive documentation, both on-line in a number of formats and in hardcopy.", + "image_url": "https://summerofcode.withgoogle.com/media/org/r-project-for-statistical-computing/7regeqcjh95nenso-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/r-project-for-statistical-computing.webp", "logo_r2_url": null, - "url": "https://www.softwareheritage.org/", + "url": "https://www.r-project.org/", "active_years": [ + 2016, + 2017, + 2018, 2019, + 2020, 2021, - 2022 + 2022, + 2023, + 2024, + 2025, + 2026 ], - "first_year": 2019, - "last_year": 2022, - "is_currently_active": false, + "first_year": 2016, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "python", + "c", + "c++", + "r", + "fortran", "javascript", - "django", - "git", - "postgres", - "postgresql", - "elasticsearch" + "r-project" ], "topics": [ - "big data", - "digital preservation", - "big code", - "source code archive", - "free and open source software", - "source code management", - "floss" + "visualization", + "machine learning", + "data science", + "graphics", + "statistics", + "data visualization" ], - "total_projects": 6, + "total_projects": 212, "first_time": false }, { - "id": "692251e753dd9d7326d33eb4", - "slug": "software-and-computational-systems-lab-at-lmu-munich", - "name": "Software and Computational Systems Lab at LMU Munich", - "category": "Programming languages", - "description": "Algorithms and Tooling for Software Verification", - "image_url": "https://summerofcode.withgoogle.com/media/org/software-and-computational-systems-lab-at-lmu-munich/kcrheiieoyvdm0r7-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/software-and-computational-systems-lab-at-lmu-munich.webp", + "id": "692251e453dd9d7326d33e92", + "slug": "radar-base", + "name": "RADAR-base", + "category": "Science and medicine", + "description": "Improve people's quality of life using patient generated data", + "image_url": "https://summerofcode.withgoogle.com/media/org/radar-base/8glcheumuwndks2c-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/radar-base.webp", "logo_r2_url": null, - "url": "https://www.sosy-lab.org/", + "url": "https://radar-base.org/", "active_years": [ - 2018, - 2019, - 2023, - 2024, - 2025 + 2022 ], - "first_year": 2018, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2022, + "last_year": 2022, + "is_currently_active": false, "technologies": [ - "python", - "javascript", "java", - "grpc", - "Quarkus" + "kotlin", + "docker", + "angular", + "kafka" ], "topics": [ - "software analysis", - "software verification", - "benchmarking", - "smt solver", - "result presentation", - "program analysis", - "formal methods", - "SAT & SMT solving", - "cloud" + "web", + "mhealth", + "remote patient monitoring", + "micro-services", + "devices" ], - "total_projects": 14, + "total_projects": 3, "first_time": false }, { - "id": "692251e753dd9d7326d33eb5", - "slug": "soletta-project", - "name": "Soletta Project", - "category": "Programming languages", - "description": "Soletta Project is an open source framework for making IoT applications", - "image_url": "https://lh3.googleusercontent.com/8OmsKRY9i3R3AoQOrow_zrz9jlzjaOSIXW9m2e7cCviUzCO6V3_ny6_KC9cAOuJTWIzWtDemuapvM6YV0joi1QsThI7UcvvR", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/soletta-project.webp", + "id": "692251e453dd9d7326d33e94", + "slug": "radare", + "name": "Radare", + "category": "Security", + "description": "Radare2 - Reverse Engineering Framework and Toolset", + "image_url": "https://lh3.googleusercontent.com/iBdoZlcklDmuxCFcARj3BSFRQFjmbw5pIU02q_Hc4-LX0EqzdaISuhcMBpOEag91gedcbsG9uAXx01JsxQcaovRm0GZ1iwU", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/radare.webp", "logo_r2_url": null, - "url": "https://solettaproject.org/", + "url": "https://radare.org/", "active_years": [ - 2016 + 2016, + 2017, + 2018, + 2020 ], "first_year": 2016, - "last_year": 2016, + "last_year": 2020, "is_currently_active": false, "technologies": [ "c", + "rust", "python", - "javascript", - "machine learning", - "networking" + "node.js", + "qt", + "cpp", + "go", + "c++" ], "topics": [ - "robotics", - "internet of things", - "drones", - "portable", - "makers" + "security", + "reverse engineering", + "disassembly", + "decompilation", + "assembly", + "debugging", + "program analysis" ], - "total_projects": 3, + "total_projects": 15, "first_time": false }, { - "id": "692251e753dd9d7326d33eb6", - "slug": "space-virginia-tech", - "name": "Space @ Virginia Tech", - "category": "Science and medicine", - "description": "Space@VT is devoted to the investigation of the space environment.", - "image_url": "https://lh3.googleusercontent.com/tUn7jhnuyPGZNW88fhBLLh6XVMsYmRtyLre0lPZKl1hT_afixt6PL8P_GN-dP7oaoomiz8FrHdUhIUs8QH4VDLtYDXUGy6U", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/space-virginia-tech.webp", + "id": "692251e553dd9d7326d33e95", + "slug": "react-native-elements", + "name": "React Native Elements", + "category": "Programming languages", + "description": "Cross Platform React Native UI Toolkit", + "image_url": "https://lh3.googleusercontent.com/EkjSoqy4nR4_yDtErmtDSIgBSvzo_mNqeqcgFxhgZI7RTqtzXI8CpO6ZePd1MSf4BLe45CKPe_aAEJqAtDzRONW7oS8OYFhwkfPVQ2rMZPI", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/react-native-elements.webp", "logo_r2_url": null, - "url": "http://space.vt.edu", + "url": "https://reactnativeelements.com/", "active_years": [ - 2018 + 2021 ], - "first_year": 2018, - "last_year": 2018, + "first_year": 2021, + "last_year": 2021, "is_currently_active": false, "technologies": [ - "python", - "mysql", "javascript", - "mongodb", - "d3" + "react", + "react native" ], "topics": [ - "web", - "data visualization", - "real time", - "data analytics" + "ui toolkit", + "design system" ], "total_projects": 2, "first_time": false }, { - "id": "692251e753dd9d7326d33eb7", - "slug": "st-jude-childrens-research-hospital", - "name": "St. Jude Children's Research Hospital", - "category": "Programming languages", - "description": "Find cures. Saving children.", - "image_url": "https://summerofcode.withgoogle.com/media/org/st-jude-childrens-research-hospital-ai/qnfe4pckkvrq5tfw-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/st-jude-childrens-research-hospital.webp", + "id": "692251e553dd9d7326d33e96", + "slug": "reactos-foundation", + "name": "ReactOS Foundation", + "category": "Operating systems", + "description": "Open your windows to freedom!", + "image_url": "https://summerofcode.withgoogle.com/media/org/reactos-foundation/yell79w1st8tno4c-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/reactos-foundation.webp", "logo_r2_url": null, - "url": "https://stjude.org", + "url": "https://reactos.org", "active_years": [ - 2025 + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022 ], - "first_year": 2025, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2016, + "last_year": 2022, + "is_currently_active": false, "technologies": [ - "rust", - "WDL" + "c", + "c++", + "php", + "win32", + "nt" ], "topics": [ - "programming languages", - "genomics", - "developer tools", - "cloud" + "operating systems", + "desktop", + "kernel", + "drivers", + "windows", + "web services", + "applications", + "system programming" ], - "total_projects": 2, - "first_time": true + "total_projects": 15, + "first_time": false }, { - "id": "692251e753dd9d7326d33eb8", - "slug": "stemformatics", - "name": "Stemformatics", - "category": "Science and medicine", - "description": "Stemformatics is a web-based pocket dictionary for stem cell scientists.", - "image_url": "https://lh3.googleusercontent.com/cvukkaOTKrjuwRlehZT0bMdNEUJQhTTZVt1BAWpyt7_d1n-gl-c7dIm-r668edGFQF2P_oTD3nr7Is1kWRG5i-FuNYW774He", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/stemformatics.webp", + "id": "692251e553dd9d7326d33e97", + "slug": "read-the-docs", + "name": "Read the Docs", + "category": "Programming languages", + "description": "Documentation Simplified", + "image_url": "https://lh3.googleusercontent.com/dxmLB1HdWrLEFqmDRqfrowj1IT2LLhw33n4yI4HN7vJ0mSoW4O9kYdz3jOudzlf7XdDXtKS8Js2VDNDkzRuWNtdcNMnn5oAs", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/read-the-docs.webp", "logo_r2_url": null, - "url": "https://www.stemformatics.org", + "url": "https://readthedocs.org", "active_years": [ - 2018 + 2018, + 2019 ], "first_year": 2018, - "last_year": 2018, + "last_year": 2019, "is_currently_active": false, "technologies": [ "python", - "postgresql", - "javascript" + "javascript", + "django", + "sphinx", + "elasticsearch", + "documentation" ], "topics": [ - "bioinformatics", - "cloud", - "web applications" + "web", + "communications", + "docs", + "documentation" ], - "total_projects": 2, + "total_projects": 3, "first_time": false }, { - "id": "692251e753dd9d7326d33eb9", - "slug": "stear-group", - "name": "Ste||ar group", - "category": "Science and medicine", - "description": "Shaping a Scalable Future", - "image_url": "https://summerofcode.withgoogle.com/media/org/stear-group/sebxbtinyakvrevb-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/stear-group.webp", + "id": "692251e553dd9d7326d33e98", + "slug": "red-hen-lab", + "name": "Red Hen Lab", + "category": "Data", + "description": "Research on Multimodal Communication", + "image_url": "https://summerofcode.withgoogle.com/media/org/red-hen-lab/ugdzrslbomp6lacy-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/red-hen-lab.webp", "logo_r2_url": null, - "url": "http://stellar-group.org/", + "url": "http://www.redhenlab.org", "active_years": [ 2016, 2017, 2018, + 2019, 2020, 2021, 2022, 2023, - 2024, - 2025 + 2024 ], "first_year": 2016, - "last_year": 2025, - "is_currently_active": true, + "last_year": 2024, + "is_currently_active": false, "technologies": [ - "c++", - "cuda", - "opencl", - "high performance computing", - "parallel processing", - "boost", - "hpx", - "c++17 parallel stl", - "parallel algorithms", - "python", + "machine learning", "opencv", - "cpp", - "hpc" - ], - "topics": [ "high performance computing", - "parallel computing", - "runtime systems", - "gpu", - "hpx", - "algorithms", - "c++ standardizaion", - "parallel algorithms", - "hpc", - "distributed datastructures", - "asynchronous many task systems", - "machine learning", - "deep learning", - "asynchronous manytask systems", - "concurrency", - "high-performance computing", - "parallelism", - "library", - "optimization", - "application" - ], - "total_projects": 38, - "first_time": false - }, - { - "id": "692251e753dd9d7326d33eba", - "slug": "stichting-su2", - "name": "Stichting SU2", - "category": "Science and medicine", - "description": "Computational Fluid Dynamics and Optimization", - "image_url": "https://summerofcode.withgoogle.com/media/org/stichting-su2/vexbqtmew7yd92hp-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/stichting-su2.webp", - "logo_r2_url": null, - "url": "https://su2foundation.org", - "active_years": [ - 2024, - 2025 - ], - "first_year": 2024, - "last_year": 2025, - "is_currently_active": true, - "technologies": [ + "audio procesing", + "multimodal analysis", + "audio processing", "python", - "c++" + "tensorflow", + "singularity", + "scikit-learn", + "syntaxnet", + "nlp", + "asr", + "data science", + "big data science", + "computer vision", + "machinelearning", + "ai" ], "topics": [ - "aerodynamics", - "Computational Fluid Dynamics", - "Multi-Disciplinary Optimization", - "Adjoint Design Optimization", - "Fluid Dynamics" + "natural language processing", + "deep learning", + "multimedia", + "co-speech gesture", + "big data visualization", + "machine learning", + "artificial intelligence", + "video processing", + "audio processing", + "big data", + "ai", + "communication", + "cognitive science", + "data science", + "metadata", + "media", + "language", + "multimodal communication", + "gesture" ], - "total_projects": 7, + "total_projects": 88, "first_time": false }, { - "id": "692251e753dd9d7326d33ebb", - "slug": "stony-brook-university-biomedical-informatics", - "name": "Stony Brook University Biomedical Informatics", + "id": "692251e553dd9d7326d33e99", + "slug": "responsible-ai-and-human-centred-technology", + "name": "Responsible AI and Human Centred Technology", "category": "Science and medicine", - "description": "Advance biomedical knowledge through innovative data science research", - "image_url": "https://lh3.googleusercontent.com/RuG21yTpVNlQeuffn8OimhRXHwA_MDmYEr8YrToO9jriUZkaqHh0Xpsaa5wxWPiCMK9DnZWuw8hFq_1vFsvwfEpIVodyhQ", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/stony-brook-university-biomedical-informatics.webp", + "description": "Human-centered and responsible AI for all", + "image_url": "https://summerofcode.withgoogle.com/media/org/responsible-ai-and-human-centred-technology/makkydlswhmjyilu-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/responsible-ai-and-human-centred-technology.webp", "logo_r2_url": null, - "url": "https://bmi.stonybrookmedicine.edu/", + "url": "https://www.tensorflow.org/responsible_ai", "active_years": [ - 2016, - 2017, - 2018 + 2022 ], - "first_year": 2016, - "last_year": 2018, + "first_year": 2022, + "last_year": 2022, "is_currently_active": false, "technologies": [ - "big data", - "medical imaging", - "hadoop", - "bioinformatics", - "c++", - "apache spark", - "matlab", "python", - "javascript" + "javascript", + "Technical writing" ], "topics": [ - "genomics", - "database", - "imaging", - "big data", - "medical imaging", - "biomedical informatics", - "bioinformtics", - "deep learning", - "biomedical data science", - "cancer informatics" + "machine learning", + "ai", + "Fairness", + "Robustness", + "Safety", + "Interpretibility" ], - "total_projects": 9, + "total_projects": 4, "first_time": false }, { - "id": "692251e753dd9d7326d33ebc", - "slug": "stratosphere-laboratory-czech-technical-university-in-prague", - "name": "Stratosphere Laboratory, Czech Technical University in Prague", - "category": "Data", - "description": "Using machine learning and security to help others", - "image_url": "https://summerofcode.withgoogle.com/media/org/stratosphere-laboratory-czech-technical-university-in-prague/94v2dwoajljheoba-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/stratosphere-laboratory-czech-technical-university-in-prague.webp", + "id": "692251e553dd9d7326d33e9a", + "slug": "rizin", + "name": "Rizin", + "category": "Security", + "description": "The Rizin project is a fork of the famous Radare2 project that started in 2006. Since then the codebase has been rewritten multiple times, modularized and extended to support many new features. The Rizin project aims to provide stability, focus on the most important features, and provide a user friendly interface. Along with Cutter - a Qt-based GUI and the RzGhidra decompiler it makes the effective tool for everyday reversing tasks.\n\nRizin is composed of a hexadecimal editor at its core, with support for several architectures and binary formats. It features code analysis capabilities, scripting, data and code visualization through graphs and other means, a visual mode, easy UNIX integration, a binary diffing engine for code and data, a shellcode compiler, multi-platform debug with reverse debug capabilities and much, much more!", + "image_url": "https://summerofcode.withgoogle.com/media/org/rizin/7ageygqfyv7wzlee-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/rizin.webp", "logo_r2_url": null, - "url": "https://www.stratosphereips.org/", + "url": "https://rizin.re", "active_years": [ + 2021, + 2022, 2023, - 2024 + 2024, + 2025, + 2026 ], - "first_year": 2023, - "last_year": 2024, - "is_currently_active": false, + "first_year": 2021, + "last_year": 2026, + "is_currently_active": true, "technologies": [ + "c", "python", - "javascript", - "redis", - "flask", - "docker", - "textual" + "c++", + "qt", + "go" ], "topics": [ - "machine learning", - "network security", - "Security Defense", - "civil society" + "reverse engineering", + "computer security", + "debugging", + "emulation", + "disassembly" ], - "total_projects": 2, + "total_projects": 10, "first_time": false }, { - "id": "692251e753dd9d7326d33ebd", - "slug": "streetmix", - "name": "Streetmix", - "category": "End user applications", - "description": "Design, remix, and share your neighborhood street, all in your browser.", - "image_url": "https://lh3.googleusercontent.com/_L-vs1v1urB7RbiMOJTVBWxkuZWZRnwd6wUXupSaLqoWYh-0xHo2sGvLXmmQZhgzU5kWhDS7ktZvBzz42j9rDPGdpaQRbg", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/streetmix.webp", + "id": "692251e553dd9d7326d33e9b", + "slug": "robocomp", + "name": "RoboComp", + "category": "Other", + "description": "Open-source framework to develop robot components", + "image_url": "https://summerofcode.withgoogle.com/media/org/robocomp/okal4wecq8dywr78-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/robocomp.webp", "logo_r2_url": null, - "url": "https://streetmix.net/", + "url": "https://robocomp.github.io/web/", "active_years": [ - 2018 + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022 ], - "first_year": 2018, - "last_year": 2018, + "first_year": 2016, + "last_year": 2022, "is_currently_active": false, - "technologies": [ - "postgresql", - "javascript", - "mongodb", - "react", - "redux" + "technologies": [ + "python", + "c++", + "cmake", + "zeroc ice", + "gnu/linux", + "qt", + "openscenegraph", + "c", + "ice - zeroc", + "opencv", + "c++11", + "component-based development", + "qt5", + "c++17", + "pytorch" ], "topics": [ - "web", - "civic tech", - "smart cities" + "robotics", + "computer vision", + "framework", + "robotics simulation", + "simulation", + "multi-agent system", + "component-based development", + "Multi-agent Systems" ], - "total_projects": 1, + "total_projects": 57, "first_time": false }, { - "id": "692251e853dd9d7326d33ebe", - "slug": "submitty", - "name": "Submitty", - "category": "End user applications", - "description": "Homework Autograding and Course Management Tools", - "image_url": "https://summerofcode.withgoogle.com/media/org/submitty/jlpoxlj2rvpot6zv-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/submitty.webp", + "id": "692251e553dd9d7326d33e9c", + "slug": "robolectric", + "name": "Robolectric", + "category": "Operating systems", + "description": "Fast unit testing runtime for Android", + "image_url": "https://summerofcode.withgoogle.com/media/org/robolectric/lazlu9me0dgu60vq-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/robolectric.webp", "logo_r2_url": null, - "url": "https://submitty.org", + "url": "http://robolectric.org/", "active_years": [ - 2018, - 2019, - 2020, 2022, - 2023, 2024 ], - "first_year": 2018, + "first_year": 2022, "last_year": 2024, "is_currently_active": false, "technologies": [ - "python", - "c++", - "databases", - "web", - "html", - "css", - "php", - "javascript", - "ajax", - "postgresql" + "android", + "java", + "jvm", + "asm" ], "topics": [ - "education", - "web", - "data visualization", - "privacy/security", - "communication", - "visualization" + "testing", + "mobile" ], - "total_projects": 19, + "total_projects": 5, "first_time": false }, { - "id": "692251e853dd9d7326d33ebf", - "slug": "sugar-labs", - "name": "Sugar Labs", - "category": "End user applications", - "description": "Learning software for children", - "image_url": "https://summerofcode.withgoogle.com/media/org/sugar-labs/pgbt7fp6gr6lhihd-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/sugar-labs.webp", + "id": "692251ef53dd9d7326d33f25", + "slug": "rocketchat", + "name": "rocket.chat", + "category": "Social and communication", + "description": "Open source team chat and communications platform \n\nRocket.Chat is one of the largest active open source (permissive MIT license) nodeJS communications platform communities on GitHub, connecting 2,500+ global community contributors (across projects) from 30+ countries, with 41,700+ GitHub stars, 11,100 forks, 1,005+ total releases and 15,100+ issues since inception in 2015.\n\nRocket.Chat is a team chat platform written in full-stack Typescript. It offers a fully featured team chat experience on modern browsers, comparable to Slack and Microsoft Teams. Mobile and desktop clients run on iOS, Android, Mac, Windows, and Linux. The server can scale from a small family messaging server for 5 users on a Raspberry Pi 5, to clustered micro-services configuration that can support hundred thousands of users. On-premises Rocket.Chat can ensure 100% complete security and privacy of your valuable communications/data.\n\nRocket.Chat is now installed on over 500k servers and counts over 12m users worldwide. Federated communication support extends our reach exponentially. \n\nUsers can set up Rocket.Chat on cloud or by hosting their own servers on-premises. Thanks to its extension support via Rocket.Chat Apps, and rich APIs, startups and innovators have customized Rocket.Chat into new products and services. Omnichannel extends reach to wherever user may be including WhatsApp, Instagram, Facebook Messenger and more. Increasingly, innovators in Generative AI and LLM app developers are launching their concepts on the Rocket.Chat platform to keep all data flows and communications 100% private and secure. \n\nRocket.Chat has won multiple prizes such as a 2016 Bossie Award for Best Open Source Application and first prize in the 2017 edition of All Things Open’s Startup Competition.\n\nRocket.Chat's community interacts 24 x 7 at the community Rocket.Chat server https://open.rocket.chat since 2015.", + "image_url": "https://summerofcode.withgoogle.com/media/org/rocketchat/qnog9kebwa9atw3l-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/rocketchat.webp", "logo_r2_url": null, - "url": "https://sugarlabs.org", + "url": "https://github.com/RocketChat", "active_years": [ - 2016, 2017, 2018, 2019, @@ -15707,103 +16191,106 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], - "first_year": 2016, - "last_year": 2025, + "first_year": 2017, + "last_year": 2026, "is_currently_active": true, "technologies": [ - "python", "javascript", - "gtk+", + "webrtc", + "meteor.js", + "mongo", "android", - "gtk", - "c", - "pygame", + "ios", + "node.js", "react", + "ruby", + "reactnative", + "chatbots", + "docker", + "kubernetes", + "react native", + "raspberry pi", "typescript", - "vue.js", - "python gtk", - "LLM" + "meteorJS", + "LLM", + "generative ai", + "node" ], "topics": [ - "education", - "programming", - "learning", - "games", - "user interface", - "media", - "stem", "collaboration", - "open source", - "software", - "desktop", - "programming languages", - "generative AI" + "instant messaging", + "realtime", + "chat", + "progressive web apps", + "machine learning", + "chatops", + "bot", + "realtime communications", + "chatbot", + "communication", + "team chat", + "social-network", + "community", + "team", + "communications", + "messaging", + "group chat", + "Team Collaboration", + "Chat platform" ], - "total_projects": 89, + "total_projects": 103, "first_time": false }, { - "id": "692251e853dd9d7326d33ec0", - "slug": "swift", - "name": "Swift", - "category": "Programming languages", - "description": "Fast, safe, and expressive programming language", - "image_url": "https://summerofcode.withgoogle.com/media/org/swift/moutmu5fv3rozvrz-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/swift.webp", + "id": "692251e553dd9d7326d33e9d", + "slug": "rspamd", + "name": "Rspamd", + "category": "Security", + "description": "Rspamd is an email framework and spam filter", + "image_url": "https://summerofcode.withgoogle.com/media/org/rspamd/d2hi7vv5bavik21s-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/rspamd.webp", "logo_r2_url": null, - "url": "https://swift.org", + "url": "https://www.rspamd.com", "active_years": [ + 2017, 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, 2025 ], - "first_year": 2018, + "first_year": 2017, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ - "llvm", - "c++", + "c", + "lua", "cmake", - "swift", - "ios", - "programming languages", - "compilers", - "server" + "javascript", + "machine learning", + "c++", + "rust", + "clickhouse" ], "topics": [ - "compilers", - "programming languages", - "programming", - "developer tools", - "debugging", - "programming languages and development tools", - "package management", - "programming libraries", - "cross-platform", - "Packages", - "Server development", - "Standard Libraries" + "machine learning", + "email", + "spam filtering", + "high performance computing" ], - "total_projects": 26, + "total_projects": 3, "first_time": false }, { - "id": "692251e853dd9d7326d33ec1", - "slug": "sympy", - "name": "SymPy", - "category": "Science and medicine", - "description": "SymPy is a Python library for symbolic mathematics", - "image_url": "https://summerofcode.withgoogle.com/media/org/sympy/iz2tcxocrknp1sm0-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/sympy.webp", + "id": "692251e453dd9d7326d33e93", + "slug": "rtems-project", + "name": "RTEMS Project", + "category": "Operating systems", + "description": "RTEMS (Real-Time Executive for Multiprocessor Systems) is a free real-time operating system (RTOS) designed for deeply embedded systems such as automobile electronics, robotic controllers, and on-board satellite instruments. \n\nRTEMS is free open source software that supports multi-processor systems for over a dozen CPU architectures and over 150 specific system boards. In addition, RTEMS is designed to support embedded applications with the most stringent real-time requirements while being compatible with open standards such as POSIX. RTEMS includes optional functional features such as TCP/IP and file systems while still offering minimum executable sizes under 20 KB in useful configurations.\n\nThe RTEMS Project is the collection of individuals, companies, universities, and research institutions that collectively maintain and enhance the RTEMS software base. As a community, we are proud to be popular in the space application software and experimental physics communities. RTEMS has been to Venus, circles Mars, is aboard Curiosity, is in the asteroid belt, is on its way to Jupiter, and is circling the sun. It is in use in many high energy physics research labs around the world. There are many RTEMS users who do not belong to the space or physics communities, but our small part in contributing to basic scientific knowledge makes us proud.", + "image_url": "https://summerofcode.withgoogle.com/media/org/rtems-project/mgzdqflwj84er5ml-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/rtems-project.webp", "logo_r2_url": null, - "url": "https://www.sympy.org/", + "url": "https://www.rtems.org/", "active_years": [ 2016, 2017, @@ -15814,418 +16301,433 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ - "python", - "c++", - "numpy", - "jupyter" - ], - "topics": [ - "mathematics", - "math", - "science", - "physics", - "computer algebra", - "symbolic mathematics" - ], - "total_projects": 63, - "first_time": false - }, - { - "id": "692251e853dd9d7326d33ec2", - "slug": "symbiflow", - "name": "SymbiFlow", - "category": "Programming languages", - "description": "A completely FOSS toolchain for FPGAs.", - "image_url": "https://lh3.googleusercontent.com/CvqeGxSl_fS_m75Z_2u_XWVw4JRQRmUDdQ-iL9VyMEnvPQJPbalrvLZcopVRsdK-ESlMAsM4kR_HW8xZgphjZ2YS8OSZssvXu1mMOSb9INA", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/symbiflow.webp", - "logo_r2_url": null, - "url": "https://symbiflow.github.io/", - "active_years": [ - 2019, - 2020, - 2021 - ], - "first_year": 2019, - "last_year": 2021, - "is_currently_active": false, - "technologies": [ - "verilog", - "fpga", - "xilinx", - "python", "c", - "c++" + "python", + "embedded systems", + "waf", + "posix", + "bsd unix", + "c++", + "assembly", + "c/c++" ], "topics": [ - "electronic design tools", - "programming languages and development tools", - "fpga", - "programming languages", - "development tools", - "open hardware" + "real time", + "posix", + "embedded systems", + "kernel", + "operating system", + "multicore", + "iot", + "iot cps", + "real-time", + "embedded", + "rtos" ], - "total_projects": 5, + "total_projects": 46, "first_time": false }, { - "id": "692251e853dd9d7326d33ec3", - "slug": "synfig", - "name": "Synfig", - "category": "Media", - "description": "Open-source 2D animation software", - "image_url": "https://summerofcode.withgoogle.com/media/org/synfig/ohcj3eigerib4jym-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/synfig.webp", + "id": "692251e553dd9d7326d33e9e", + "slug": "ruby", + "name": "Ruby", + "category": "Programming languages", + "description": "The Ruby organization collects mentors and students working on the Ruby language (MRI), the Ruby packaging system (Bundler, RubyGems, and RubyGems.org), and other Ruby projects. Any Ruby OSS project is eligible to be included in the Ruby GSOC organization.", + "image_url": "https://summerofcode.withgoogle.com/media/org/ruby/dc6i7iw8w39rktw1-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ruby.webp", "logo_r2_url": null, - "url": "https://synfig.org", + "url": "https://www.ruby-lang.org/", "active_years": [ + 2016, + 2018, 2019, 2020, 2021, 2022, 2023, - 2024, - 2025 + 2026 ], - "first_year": 2019, - "last_year": 2025, + "first_year": 2016, + "last_year": 2026, "is_currently_active": true, "technologies": [ - "c++", - "gtk", - "gtkmm", - "python", - "c++11" + "ruby", + "c", + "java", + "ruby on rails", + "rubygems", + "bundler" ], "topics": [ - "animation", - "vector graphics", - "2d/3d graphics", - "2d animation" + "programming languages", + "developer tools", + "web servers", + "cloud", + "programming language", + "web development", + "type system", + "performance optimization", + "security", + "web", + "server", + "application" ], - "total_projects": 12, + "total_projects": 38, "first_time": false }, { - "id": "692251e853dd9d7326d33ec4", - "slug": "systers-community", - "name": "Systers Community", - "category": "Other", - "description": "Helping women find their potential in code. You are not alone.", - "image_url": "https://lh3.googleusercontent.com/ZfLKPxprJmOds95nIeEkrw78RF0olObie6ligW1ZyPTL3mDcPsbhSR0Ed9fhyzdJHOsdblNFB2L9wwgMNMKHjH4RpNhTGc2a", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/systers-community.webp", + "id": "692251e553dd9d7326d33ea0", + "slug": "ruby-on-rails", + "name": "Ruby on Rails", + "category": "Web", + "description": "Ruby on Rails is web framework that optimizes for programmer happinness.", + "image_url": "https://lh3.googleusercontent.com/vKSkD8tHmHh8CZANFLZKn491GK8d7EtO-1ym1y1jkUKTdaXThRD1egMpovzLvJ0lKWQlUCR0u2OYiSVb-aMrQdsOjQA-HP9W", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ruby-on-rails.webp", "logo_r2_url": null, - "url": "https://anitab.org/systers/", + "url": "http://rubyonrails.org/", "active_years": [ + 2017, 2018 ], - "first_year": 2018, + "first_year": 2017, "last_year": 2018, "is_currently_active": false, "technologies": [ - "python", - "javascript", - "android", "ruby on rails", - "ios" + "ruby", + "html" ], "topics": [ - "web apps", - "community", - "mobile applications" + "web", + "full stack", + "web development", + "web applications" ], - "total_projects": 11, + "total_projects": 4, "first_time": false }, { - "id": "692251e853dd9d7326d33ec5", - "slug": "systers-an-anita-borg-institute-community", - "name": "Systers, an Anita Borg Institute community", - "category": "Other", - "description": "Helping women find their potential in code.", - "image_url": "https://lh3.googleusercontent.com/tFOFnRaUTNGblP4QyLG6X0IlRCU6PNrYL6VgZbGuLVX2MMJc0tSM-LHaGEGfhJ8_eQKoq7Zu4oOzBQWBW8brmLP9uji0fg", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/systers-an-anita-borg-institute-community.webp", + "id": "692251e553dd9d7326d33e9f", + "slug": "ruby-science-foundation", + "name": "Ruby Science Foundation", + "category": "Science and medicine", + "description": "Tools for scientific computation in Ruby", + "image_url": "https://lh3.googleusercontent.com/kFvQCOeX0CvmrLWs59bRiZgH0-a4wehdUOrnsV51yktt5uvb1JA6rfr97xZx9g54wNAiCDnmQujpHIspp-9SdDqaWG37lkU", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ruby-science-foundation.webp", "logo_r2_url": null, - "url": "http://systers.org", + "url": "http://sciruby.com/", "active_years": [ 2016, - 2017 + 2017, + 2018, + 2019 ], "first_year": 2016, - "last_year": 2017, + "last_year": 2019, "is_currently_active": false, "technologies": [ - "python", - "mysql", - "android", - "ruby on rails", - "ios", - "javascript", - "java" + "c", + "c++", + "ruby", + "jruby", + "c programming", + "web", + "gpu", + "science", + "data", + "cuda", + "machine learning", + "ai" ], "topics": [ - "women in tech", - "systers", - "women in open source", + "math", + "visualization", + "science", + "data", + "space", "web", - "games", - "mobile", - "peace corps" + "package management", + "hpc", + "compilers", + "artificial intelligence", + "data science", + "parallel algorithms", + "scientific computing", + "linear algebra", + "scientific visualization", + "data-science" ], - "total_projects": 30, + "total_projects": 13, "first_time": false }, { - "id": "692251e853dd9d7326d33ec6", - "slug": "tardis-rt-collaboration", - "name": "TARDIS RT Collaboration", + "id": "692251e653dd9d7326d33ea5", + "slug": "sagemath", + "name": "SageMath", "category": "Science and medicine", - "description": "Exploring supernovae made easy", - "image_url": "https://summerofcode.withgoogle.com/media/org/tardis-rt-collaboration/0ocxr3jw3fwdloye-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/tardis-rt-collaboration.webp", + "description": "Mathematicians, scientists, researchers, and students need a powerful tool for their work or study. SageMath is a freely available open-source mathematical software system bundling the functionality of many software libraries, exposing their features in a common interface and extending on top of this with its own powerful algorithms. By leveraging the flexibility and universality of the underlying Python interpreter, SageMath is able to accommodate for a vast range of their requirements.\n\nThe mission of SageMath is to create a viable open-source alternative to all major proprietary mathematical software systems.\n\nPython is the main programming language inside the SageMath library and also the language of choice for all interactions with the built-in objects and functions for expressing mathematical concepts and calculations. Besides a command-line and programming-library interface, its primary user interface is a dynamic self-hosted website. From the perspective of a user, the interface language is Python, but with a thin extension built directly on top of it.\n\nAlmost all areas of mathematics are represented in SageMath, at various levels of sophistication. This includes symbolic calculus, 2D and 3D graphics, polynomials, graph theory, group theory, abstract algebra, combinatorics, cryptography, elliptic curves and modular forms, numerical mathematics, linear algebra and matrix calculations (over various rings), support for parallel computing, and a powerful coercion framework to “mix” elements from different sets for calculations. SageMath’s features also expand into neighboring fields like Statistics and Physics.", + "image_url": "https://summerofcode.withgoogle.com/media/org/sagemath/1tcj7svgwadc13cj-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/sagemath.webp", "logo_r2_url": null, - "url": "https://tardis-sn.github.io", + "url": "https://www.sagemath.org", "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ], - "first_year": 2022, - "last_year": 2025, + "first_year": 2016, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", - "numba", - "numpy", - "jupyter", - "pandas" + "cython", + "javascript", + "c++", + "c", + "python 3" ], "topics": [ - "visualization", - "big data", - "simulation", - "astrophysics" + "mathematics", + "math", + "science", + "mathematical software", + "combinatorics", + "algorithms", + "toolbox", + "education", + "research" + ], + "total_projects": 55, + "first_time": false + }, + { + "id": "692251e653dd9d7326d33ea6", + "slug": "salesforce", + "name": "Salesforce", + "category": "Infrastructure and cloud", + "description": "From the kernel to the browser, open source projects from Salesforce.", + "image_url": "https://lh3.googleusercontent.com/b_Zs0WDCb82zhyL83B1zm4yR4bUymA-vGn_1yNL7aJgANPNcjfmYNOx9IZZF719ewIMxm_winyYNC8ANforLd5f0RdQkcBA", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/salesforce.webp", + "logo_r2_url": null, + "url": "https://opensource.salesforce.com/", + "active_years": [ + 2019 + ], + "first_year": 2019, + "last_year": 2019, + "is_currently_active": false, + "technologies": [ + "javascript", + "react", + "node.js", + "scala", + "apache spark" + ], + "topics": [ + "machine learning", + "natural language processing", + "web applications", + "user interface", + "cli" ], - "total_projects": 15, + "total_projects": 2, "first_time": false }, { - "id": "692251e853dd9d7326d33ec7", - "slug": "tardis-sn", - "name": "TARDIS SN", - "category": "Science and medicine", - "description": "Exploring supernovae made easy", - "image_url": "https://lh3.googleusercontent.com/tznjlg0HUYe_hQPRwpUOSU8OnCpJp7mSlNIy0Xp3ibmdk9nSTBgYQlRc0RwO-CMHwavCN6YZDTaUpeD0xdWc89YotSEwJzAsfGI7AY0pQp4tQA", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/tardis-sn.webp", + "id": "692251e653dd9d7326d33ea7", + "slug": "samba", + "name": "Samba", + "category": "Other", + "description": "Opening windows to a wider world", + "image_url": "https://lh3.googleusercontent.com/_8-VaHi74y4qMQKPJseZX26TlSr0ecED2RK5LcgCoNWutVg5Uq0Xx8v43ePrx7xDUZaGGyJptv4OIOldc7yXSN57YotASv8VDrW-pEQL-qghIg", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/samba.webp", "logo_r2_url": null, - "url": "https://tardis-sn.github.io/tardis/", + "url": "https://www.samba.org/", "active_years": [ - 2016, + 2017, + 2019, 2020, 2021 ], - "first_year": 2016, + "first_year": 2017, "last_year": 2021, "is_currently_active": false, "technologies": [ "c", "python", - "cython", - "numba", - "numpy", - "jupyter", - "pandas" + "smb", + "cifs" ], "topics": [ - "astronomy", - "monte carlo methods", - "radiative transfer", - "global optimization", - "science", - "supernova", - "visualization", - "big data", - "simulation", - "astrophysics" + "samba", + "networks", + "interoperability", + "networking", + "enterprise" ], - "total_projects": 9, + "total_projects": 3, "first_time": false }, { - "id": "692251e853dd9d7326d33ec8", - "slug": "teammates-national-university-of-singapore", - "name": "TEAMMATES @ National University of Singapore", - "category": "Web", - "description": "An online feedback management system for education", - "image_url": "https://lh3.googleusercontent.com/265HE7VM0Yah8cmmoSVdkm9wRTOJem65VxSrT_0SXfgcgtHYdkeHt0qji7xc-_9N4xYYB1TAwBC-hjKFqt3UJ7m4N7llGA", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/teammates-national-university-of-singapore.webp", + "id": "692251e653dd9d7326d33ea8", + "slug": "scala-center", + "name": "Scala Center", + "category": "Programming languages", + "description": "Guide and support the Scala community", + "image_url": "https://summerofcode.withgoogle.com/media/org/scala-center/0umytpqshifjeevx-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/scala-center.webp", "logo_r2_url": null, - "url": "https://github.com/teammates/teammates", + "url": "https://scala-lang.org/", "active_years": [ 2016, 2017, - 2018 + 2018, + 2021, + 2022, + 2023, + 2024, + 2025 ], "first_year": 2016, - "last_year": 2018, + "last_year": 2025, "is_currently_active": false, "technologies": [ - "javascript", - "java", - "html", - "css", - "google app engine", - "java ee" + "jvm", + "scala", + "llvm", + "#scala", + "#scala_lang", + "#jvm", + "#llvm", + "#js", + "scala.js", + "scala native", + "functional programming" ], "topics": [ + "compilers", + "programming languages", + "functional programming", + "programming tools", + "compiler", + "programming-tools", + "functional-programming", + "programming-language", + "#compilers", + "#programming-tools", + "#functional-programming", + "#programming-languages", + "#education", "education", - "web development", - "cloud", - "learning management", - "software as a service", - "webapps", - "peer feedback", - "saas", - "web applications", - "teaching" + "tooling", + "web", + "gpu" ], - "total_projects": 20, + "total_projects": 56, "first_time": false }, { - "id": "692251e853dd9d7326d33ec9", - "slug": "tla", - "name": "TLA+", + "id": "692251e653dd9d7326d33ea9", + "slug": "scalable-parallel-computing-laboratory", + "name": "Scalable Parallel Computing Laboratory", "category": "Programming languages", - "description": "TLA+ is a formal specification language used to design, model and verify systems", - "image_url": "https://lh3.googleusercontent.com/Pc9QkyJIXikZm1XmX5tA4LUsw2AquRp4RRrLKK15YSrDFhV3LFrs4QUiMxFcFbk1-ZPsBR1pB-QbCMOXwKDFkG3tNNeIc20", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/tla.webp", - "logo_r2_url": null, - "url": "https://lamport.azurewebsites.net/tla/tla.html", - "active_years": [ - 2018 - ], - "first_year": 2018, - "last_year": 2018, - "is_currently_active": false, - "technologies": [ - "java", - "ocaml", - "tla+", - "eclipse", - "smt" - ], - "topics": [ - "algorithms", - "formal methods" - ], - "total_projects": 1, - "first_time": false - }, - { - "id": "692251e853dd9d7326d33eca", - "slug": "tarantool", - "name": "Tarantool", - "category": "Data", - "description": "Lighting fast in-memory DBMS with JIT onboard", - "image_url": "https://summerofcode.withgoogle.com/media/org/tarantool/npjtqad5oa15tkps-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/tarantool.webp", + "description": "High-performance computing for clusters and clouds", + "image_url": "https://summerofcode.withgoogle.com/media/org/scalable-parallel-computing-laboratory/cho0tqlhmykehqlw-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/scalable-parallel-computing-laboratory.webp", "logo_r2_url": null, - "url": "https://www.tarantool.io/en/", + "url": "https://spcl.inf.ethz.ch/", "active_years": [ - 2021, - 2022 + 2023, + 2024 ], - "first_year": 2021, - "last_year": 2022, + "first_year": 2023, + "last_year": 2024, "is_currently_active": false, "technologies": [ - "c", - "lua", - "sql", "python", - "c++" + "c++", + "mpi", + "aws", + "Serverless" ], "topics": [ - "distributed systems", - "algorithms", - "high performance data processing", - "in-memory data grid", - "sql", - "In-memory", - "JIT", - "IMDG", - "NoSQL Database" + "programming languages", + "high-performance computing", + "parallel computing", + "Serverless Computing", + "faas" ], - "total_projects": 3, + "total_projects": 6, "first_time": false }, { - "id": "692251e953dd9d7326d33ecb", - "slug": "tensorflow", - "name": "TensorFlow", - "category": "Data", - "description": "TensorFlow is a ML framework for everyone.", - "image_url": "https://summerofcode.withgoogle.com/media/org/tensorflow-d1/0sqdbtssij0tfcwy-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/tensorflow.webp", + "id": "692251e653dd9d7326d33eaa", + "slug": "scilab", + "name": "Scilab", + "category": "End user applications", + "description": "Cross-platform numerical computational package and programming language.", + "image_url": "https://lh3.googleusercontent.com/lIs5ySAf3RTl47fydovwKV_c6iXAVC9iSG_tuhDg_uq7EWYQCwqKasW3EF7C4xM8SCm8Q7KNpmrkoYHb0FkCZPxfrFUXL8w", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/scilab.webp", "logo_r2_url": null, - "url": "https://www.tensorflow.org/", + "url": "https://www.scilab.org", "active_years": [ - 2019, - 2020, - 2021, - 2022, - 2023 + 2016, + 2017, + 2018 ], - "first_year": 2019, - "last_year": 2023, + "first_year": 2016, + "last_year": 2018, "is_currently_active": false, "technologies": [ - "python", "c", + "java", "c++", - "machine learning", - "data analysis", - "deep learning", - "javascript", - "python deep learning frameworks", - "tensorflow", - "ai", - "Jax", - "keras" + "fortran", + "scilab", + "python", + "opengl" ], "topics": [ - "machine learning", - "data science", - "deep learning", - "python", - "data", - "computer vision", - "natural language processing", - "cloud computing", - "education", - "research", - "on-device machine learning" + "engineering", + "graphics", + "vision", + "user interface", + "mechanics", + "programming language", + "numerical computing", + "scientific visualization", + "mathematics", + "science", + "numerical computation" ], - "total_projects": 81, + "total_projects": 14, "first_time": false }, { - "id": "692251e953dd9d7326d33ecc", - "slug": "the-apache-software-foundation", - "name": "The Apache Software Foundation", - "category": "Web", - "description": "Open source software to the public free of charge", - "image_url": "https://summerofcode.withgoogle.com/media/org/apache-software-foundation/hq22fwtmvdfjnsh9-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-apache-software-foundation.webp", + "id": "692251e553dd9d7326d33ea1", + "slug": "score-lab", + "name": "SCoRe Lab", + "category": "End user applications", + "description": "SCoRe Lab develops FOSS softwares for everyone!!!", + "image_url": "https://summerofcode.withgoogle.com/media/org/score-lab/x8apbdrxwdrmqv7f-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/score-lab.webp", "logo_r2_url": null, - "url": "https://apache.org", + "url": "https://scorelab.org/", "active_years": [ 2016, 2017, @@ -16234,1514 +16736,1581 @@ 2020, 2021, 2022, - 2023, - 2024, - 2025 + 2023 ], "first_year": 2016, - "last_year": 2025, - "is_currently_active": true, + "last_year": 2023, + "is_currently_active": false, "technologies": [ "python", - "javascript", + "android", "java", - "ruby", - "couchdb", - "c", - "erlang", - "c++", - "rust" + "golang", + "hadoop", + "gcp", + "golan", + "go", + "node.js", + "pyth", + "machine learning", + "web development", + "cloud", + "mobile", + "reactjs" ], "topics": [ + "security", + "iot", + "mobile", + "forensic", + "cloud with google computer engine", + "mobile applications", + "embedded systems", "web", - "database", + "machine learning", + "web development", "cloud", - "ddd", - "dsl", - "big data", - "libraries", - "other" + "information security" ], - "total_projects": 248, + "total_projects": 149, "first_time": false }, { - "id": "692251e953dd9d7326d33ecd", - "slug": "the-center-for-connected-learning-and-computer-based-modeling", - "name": "The Center for Connected Learning and Computer-Based Modeling", - "category": "Programming languages", - "description": "NetLogo: A language and IDE for programming and scientific simulations", - "image_url": "https://lh3.googleusercontent.com/_Ol--UayvdvAUvhHYRqcA8zVpL6mrSt70pZPWkks9uvxTHwwesYnulBEZDn6SdI5bSMDmjaYiN8SbT8q2pfyVwXB_dyXq7iL", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-center-for-connected-learning-and-computer-based-modeling.webp", + "id": "692251e653dd9d7326d33eab", + "slug": "scummvm", + "name": "ScummVM", + "category": "End user applications", + "description": "ScummVM is a game preservation project with a quickly growing code base since more than 20 years. Originally focused on 2D Point&Click adventure games, its scope widened in 2016 to RPG thanks to successful GSoC students and to 3D games in 2020 after the merge with its sister project, ResidualVM. The purpose is only to replace the game executable, not to enhance or replace the game assets.", + "image_url": "https://summerofcode.withgoogle.com/media/org/scummvm/bnok4srtehdy3fbj-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/scummvm.webp", "logo_r2_url": null, - "url": "http://ccl.northwestern.edu/netlogo", + "url": "https://www.scummvm.org/", "active_years": [ 2016, 2017, 2018, - 2019 + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ], "first_year": 2016, - "last_year": 2019, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "javascript", - "java", - "html5", - "scala", - "css", - "html5/css3" + "opengl", + "c++", + "assembly", + "sdl", + "c", + "lua", + "python", + "php" ], "topics": [ - "education", - "research", - "programming languages", - "science", - "simulation", - "programming language", - "academic research" + "games", + "game engines", + "software preservation", + "game", + "engines", + "software archeology" ], - "total_projects": 5, + "total_projects": 34, "first_time": false }, { - "id": "692251e953dd9d7326d33ece", - "slug": "the-enigma-team", - "name": "The ENIGMA Team", - "category": "Programming languages", - "description": "A free rapid game development environment.", - "image_url": "https://summerofcode.withgoogle.com/media/org/the-enigma-team/ipdbzf7owbf34bdr-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-enigma-team.webp", + "id": "692251e653dd9d7326d33eac", + "slug": "seaql", + "name": "SeaQL", + "category": "Data", + "description": "Building data intensive applications in Rust", + "image_url": "https://summerofcode.withgoogle.com/media/org/seaql/tkc2iu6ottkqbq0b-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/seaql.webp", "logo_r2_url": null, - "url": "https://enigma-dev.org", + "url": "https://sea-ql.org", "active_years": [ - 2021, - 2022, - 2023, - 2024 + 2022 ], - "first_year": 2021, - "last_year": 2024, + "first_year": 2022, + "last_year": 2022, "is_currently_active": false, "technologies": [ - "android", - "opengl", - "c++", - "qt5", - "recursive-descent" + "mysql", + "postgresql", + "rust", + "sql", + "sqlite" ], "topics": [ - "graphics", - "game development", - "compiler", - "programming", - "game design" + "database", + "library", + "framework", + "sql", + "rust" ], - "total_projects": 9, + "total_projects": 0, "first_time": false }, { - "id": "692251e953dd9d7326d33ecf", - "slug": "the-freebsd-project", - "name": "The FreeBSD Project", - "category": "Operating systems", - "description": "An OS for servers to embedded devices", - "image_url": "https://summerofcode.withgoogle.com/media/org/the-freebsd-project/4jmspor6mcto9wti-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-freebsd-project.webp", + "id": "692251e653dd9d7326d33ead", + "slug": "seastar", + "name": "Seastar", + "category": "Programming languages", + "description": "Framework for writing high-performance server applications on modern hardware", + "image_url": "https://lh3.googleusercontent.com/rBIDW74GlN99v142I_orxLgDEKEkmkkFd3qfmN0D6N1u9c9GD1LQD_2XDGY_1uU03TbaQPwsLA_jQEZXkeADHCJyO4QTJSU", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/seastar.webp", "logo_r2_url": null, - "url": "https://www.freebsd.org/", + "url": "http://www.seastar-project.org/", "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2018 ], - "first_year": 2016, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2018, + "last_year": 2018, + "is_currently_active": false, "technologies": [ - "c", - "c++", - "llvm", - "shell script", - "make", - "clang", - "shell", - "assembly", - "c/c+", - "POSIX shell" + "linux", + "cpp", + "framework", + "dpdk", + "tcp" ], "topics": [ - "virtualization", - "security", - "cloud", - "kernel", - "embeddded", - "embedded", - "embedded systems", - "operating systems", - "operating system", - "Embedded System" + "network", + "high performance", + "tcp", + "app development", + "framework" ], - "total_projects": 76, + "total_projects": 1, "first_time": false }, { - "id": "692251e953dd9d7326d33ed0", - "slug": "the-honeynet-project", - "name": "The Honeynet Project", - "category": "Security", - "description": "Honeypots and Threat Intelligence R&D", - "image_url": "https://summerofcode.withgoogle.com/media/org/the-honeynet-project/pvycoc21p2ketj7b-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-honeynet-project.webp", + "id": "692251e653dd9d7326d33eae", + "slug": "semi-technologies", + "name": "Semi Technologies", + "category": "Science and medicine", + "description": "The ML-first vector search engine", + "image_url": "https://summerofcode.withgoogle.com/media/org/semi-technologies/bcwggbwqvxkpo6qq.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/semi-technologies.webp", "logo_r2_url": null, - "url": "https://honeynet.org", + "url": "https://weaviate.io", "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2022 ], - "first_year": 2016, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2022, + "last_year": 2022, + "is_currently_active": false, "technologies": [ "python", - "android", "machine learning", - "html", - "javascript", - "honeypots", "golang", - "network stack", - "c", - "c++", - "python 3", - "linux", - "go", - "data analysis", - "networking", - "honeypot", - "django", - "docker" + "vectors", + "natural language processing" ], "topics": [ - "security", - "sandbox", - "web development", - "honeypot", - "honeynet", - "research", - "honeypots", - "deception", - "malware", - "networking", - "honeynets", - "fuzzing", - "network analysis", - "hypervisor introspection", - "malware analysis", - "Threat Intelligence" + "machine learning", + "Vector Database", + "Search Engines" ], - "total_projects": 101, + "total_projects": 3, "first_time": false }, { - "id": "692251e953dd9d7326d33ed1", - "slug": "the-jpf-team", - "name": "The JPF team", - "category": "Programming languages", - "description": "JPF is a Java VM used to verify and debug software", - "image_url": "https://summerofcode.withgoogle.com/media/org/the-jpf-team-hg/rvqtnz4hyojrfgvw.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-jpf-team.webp", + "id": "692251e653dd9d7326d33eaf", + "slug": "shaka-player", + "name": "Shaka Player", + "category": "Media", + "description": "An open-source JavaScript library to play adaptive media.", + "image_url": "https://lh3.googleusercontent.com/x8zL_jDCw5xPw2P5CK9Cs5nWmIl_0gPBEaspT8INn4im49yVs2gEz2IFIthL4fH0ky5o7I80gbIjm9CXbf45lMXZgl0pRwppZL4GagfkeFLi", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/shaka-player.webp", "logo_r2_url": null, - "url": "https://github.com/javapathfinder/jpf-core/wiki", + "url": "https://opensource.google/projects/shaka-player", "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2021 ], - "first_year": 2016, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2021, + "last_year": 2021, + "is_currently_active": false, "technologies": [ - "android", - "java", - "distributed systems", - "jvm", - "bytecode", - "smt solvers" + "python", + "javascript", + "web development", + "video codecs", + "ui/ux" ], "topics": [ - "testing", - "verification", - "model checking", - "program analysis", - "environment generation", - "symbolic execution", - "test input generation", - "formal methods", - "concurrency", - "virtual machine", - "software model checking", - "verification of concurrent systems", - "jvm" + "web", + "streaming", + "video" ], - "total_projects": 46, + "total_projects": 2, "first_time": false }, { - "id": "692251e953dd9d7326d33ed2", - "slug": "the-julia-language", - "name": "The Julia Language", + "id": "692251e753dd9d7326d33eb0", + "slug": "shogun", + "name": "Shogun", "category": "Science and medicine", - "description": "A fresh approach to technical computing", - "image_url": "https://summerofcode.withgoogle.com/media/org/the-julia-language/49fck3n7j5aqnpwu-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-julia-language.webp", + "description": "Unified and efficient Machine Learning", + "image_url": "https://lh3.googleusercontent.com/cCl4GfzsLBvpTPnFeYL8lxv3DraX0vbkCIhaN8Se_xEjTcWXqMdLTM_DJvJBeThODx3Gms3sjsiFlAFtznT5dKYPw7djIvE", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/shogun.webp", "logo_r2_url": null, - "url": "https://julialang.org", + "url": "https://www.shogun.ml/", "active_years": [ 2016, 2017, 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2020 ], "first_year": 2016, - "last_year": 2025, - "is_currently_active": true, + "last_year": 2020, + "is_currently_active": false, "technologies": [ - "c", - "javascript", + "python", "c++", - "julia", - "atom", - "llvm", - "gpu", - "julialang", + "cmake", + "swig", + "c", "machine learning", + "c++11", + "c++17", "data science", - "gui", - "models", - "compilers", - "garbage-collection" + "matlab" ], "topics": [ - "data science", - "statistics", - "linear algebra", - "numerical computation", - "integrated development environments", - "graphics", - "numerical computing", - "high performance computing", - "plotting", "machine learning", + "software engineering", + "bioinformatics", + "statistics", + "fast algorithms", + "data science", "scientific computing", - "technical computing", - "math", - "science", - "graphs", - "artificial intelligence" + "user experience" ], - "total_projects": 140, + "total_projects": 10, "first_time": false }, { - "id": "692251e953dd9d7326d33ed3", - "slug": "the-libreswan-project", - "name": "The Libreswan Project", - "category": "Infrastructure and cloud", - "description": "Encrypting the Internet with IKE / IPsec", - "image_url": "https://summerofcode.withgoogle.com/media/org/the-libreswan-project/k7boxaxvirkfj1ti-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-libreswan-project.webp", + "id": "692251e753dd9d7326d33eb1", + "slug": "sigmah", + "name": "Sigmah", + "category": "End user applications", + "description": "Java/GWT platform for humanitarian project management", + "image_url": "https://lh3.googleusercontent.com/93j_B6_iRuj44vvNZhG5HeC8UY4b74xxz3SfQQF6r0dqq8S3yzv76u1BUM09yp2IzcGu_aWvbWrymJYkaKXTO6oGTDbYGQ", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/sigmah.webp", "logo_r2_url": null, - "url": "https://libreswan.org", + "url": "http://www.sigmah.org", "active_years": [ - 2017, - 2018, - 2019, - 2020, - 2021, - 2022 + 2016, + 2017 ], - "first_year": 2017, - "last_year": 2022, + "first_year": 2016, + "last_year": 2017, "is_currently_active": false, "technologies": [ - "c", - "python", - "shell script", - "qemu", - "web", - "virtualization", - "nss", - "kvm", - "namespaces", - "shell", - "RFCs" + "java", + "gwt", + "postgresql" ], "topics": [ - "vpn", - "ipsec", - "ike", - "ipsec vpn", - "encryption", - "ikev2", - "security" + "humanitarian", + "project-management", + "hfoss" ], - "total_projects": 10, + "total_projects": 3, "first_time": false }, { - "id": "692251e953dd9d7326d33ed4", - "slug": "the-linux-foundation", - "name": "The Linux Foundation", - "category": "Operating systems", - "description": "Non-profit consortium fostering growth of Linux", - "image_url": "https://summerofcode.withgoogle.com/media/org/the-linux-foundation/ydeu9rliawhe6of9-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-linux-foundation.webp", + "id": "692251ef53dd9d7326d33f26", + "slug": "sktime", + "name": "sktime", + "category": "Data", + "description": "A unified framework for ML with time series", + "image_url": "https://summerofcode.withgoogle.com/media/org/sktime/x2i3dxljtj04sqw0-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/sktime.webp", + "logo_r2_url": null, + "url": "https://www.sktime.net/en/stable/", + "active_years": [ + 2022, + 2024 + ], + "first_year": 2022, + "last_year": 2024, + "is_currently_active": false, + "technologies": [ + "python", + "github", + "sphinx", + "scikit-learn" + ], + "topics": [ + "data science", + "ai", + "time series", + "toolbox frameworks", + "AI/ML" + ], + "total_projects": 8, + "first_time": false + }, + { + "id": "692251e753dd9d7326d33eb2", + "slug": "society-for-arts-and-technology-sat", + "name": "Society for Arts and Technology (SAT)", + "category": "Media", + "description": "Technological tools for creativity and industry", + "image_url": "https://summerofcode.withgoogle.com/media/org/society-for-arts-and-technology-sat/pkgrduycyoh0wxmf-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/society-for-arts-and-technology-sat.webp", "logo_r2_url": null, - "url": "http://www.linuxfoundation.org/", + "url": "https://sat.qc.ca", "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, 2022, 2023, - 2024, 2025 ], - "first_year": 2016, + "first_year": 2022, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ - "c", "python", - "mysql", + "javascript", + "opengl", "c++", - "cups", - "gtk", - "ipp", - "linux", - "ai", - "fuzz-testing" + "supercollider", + "qt", + "esp32" ], "topics": [ - "kernel", - "wireless", - "printing", - "lsb", - "spdx", - "wireguard", - "automotive", - "iio", - "zephyr" + "web", + "graphics", + "cloud", + "multimedia", + "accessibility", + "computer vision", + "Telepresence", + "digital arts" ], - "total_projects": 137, + "total_projects": 12, "first_time": false }, { - "id": "692251e953dd9d7326d33ed5", - "slug": "the-mifos-initiative", - "name": "The Mifos Initiative", - "category": "End user applications", - "description": "End Poverty One Line of Code at a Time", - "image_url": "https://summerofcode.withgoogle.com/media/org/the-mifos-initiative/etmiqn0lkvfxvm5p-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-mifos-initiative.webp", + "id": "692251e753dd9d7326d33eb4", + "slug": "software-and-computational-systems-lab-at-lmu-munich", + "name": "Software and Computational Systems Lab at LMU Munich", + "category": "Programming languages", + "description": "Algorithms and Tooling for Software Verification", + "image_url": "https://summerofcode.withgoogle.com/media/org/software-and-computational-systems-lab-at-lmu-munich/kcrheiieoyvdm0r7-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/software-and-computational-systems-lab-at-lmu-munich.webp", "logo_r2_url": null, - "url": "https://mifos.org", + "url": "https://www.sosy-lab.org/", "active_years": [ - 2016, - 2017, 2018, 2019, - 2020, - 2022, 2023, 2024, 2025 ], - "first_year": 2016, + "first_year": 2018, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ - "mysql", + "python", "javascript", - "android", "java", - "angularjs", - "spring", - "angular", - "kotlin" + "grpc", + "Quarkus" ], "topics": [ - "big data", - "cloud", - "mobile", - "fintech", - "financial inclusion", - "mobile banking", - "digital financial services", - "microfinance", - "web", - "ai", - "artificial intelligence" + "software analysis", + "software verification", + "benchmarking", + "smt solver", + "result presentation", + "program analysis", + "formal methods", + "SAT & SMT solving", + "cloud" ], - "total_projects": 102, + "total_projects": 14, "first_time": false }, { - "id": "692251e953dd9d7326d33ed6", - "slug": "the-monarch-initiative", - "name": "The Monarch Initiative", - "category": "End user applications", - "description": "An informatics platform for translational disease research", - "image_url": "https://lh3.googleusercontent.com/KXWjAAyvRstHYIYcVJmU2Ogrvo2mYiSBieLdjjtOYi5jhMqninkA9k_MPvl8rMg-8U0XIW4KKx46fSDGxi3gnfXokQnBPu_D", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-monarch-initiative.webp", + "id": "692251e753dd9d7326d33eb3", + "slug": "software-heritage", + "name": "Software Heritage", + "category": "Data", + "description": "The universal source code archive", + "image_url": "https://summerofcode.withgoogle.com/media/org/software-heritage/8vchqcnmijmq3ibq-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/software-heritage.webp", "logo_r2_url": null, - "url": "http://www.monarchinitiative.org", + "url": "https://www.softwareheritage.org/", "active_years": [ - 2016 + 2019, + 2021, + 2022 ], - "first_year": 2016, - "last_year": 2016, + "first_year": 2019, + "last_year": 2022, "is_currently_active": false, "technologies": [ + "python", "javascript", - "semantic web", - "text mining", - "named entity recognition", - "ontologies" + "django", + "git", + "postgres", + "postgresql", + "elasticsearch" ], "topics": [ - "embeddable widget", - "rare disease", - "data refinement" + "big data", + "digital preservation", + "big code", + "source code archive", + "free and open source software", + "source code management", + "floss" ], - "total_projects": 1, + "total_projects": 6, "first_time": false }, { - "id": "692251e953dd9d7326d33ed7", - "slug": "the-netbsd-foundation", - "name": "The NetBSD Foundation", - "category": "Operating systems", - "description": "Of course it runs NetBSD", - "image_url": "https://summerofcode.withgoogle.com/media/org/the-netbsd-foundation/gi3vozsqpecopqku-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-netbsd-foundation.webp", + "id": "692251e753dd9d7326d33eb5", + "slug": "soletta-project", + "name": "Soletta Project", + "category": "Programming languages", + "description": "Soletta Project is an open source framework for making IoT applications", + "image_url": "https://lh3.googleusercontent.com/8OmsKRY9i3R3AoQOrow_zrz9jlzjaOSIXW9m2e7cCviUzCO6V3_ny6_KC9cAOuJTWIzWtDemuapvM6YV0joi1QsThI7UcvvR", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/soletta-project.webp", "logo_r2_url": null, - "url": "https://www.NetBSD.org/", + "url": "https://solettaproject.org/", "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2016 ], "first_year": 2016, - "last_year": 2025, - "is_currently_active": true, + "last_year": 2016, + "is_currently_active": false, "technologies": [ - "networking", - "kernel", - "bsd", - "c programming", - "security", - "arm", - "network stack", - "virtualization", - "filesystems", - "mips", "c", - "bsd make", - "make", - "shell script", - "bsd unix", - "unix" + "python", + "javascript", + "machine learning", + "networking" ], "topics": [ - "operating systems", - "package system", - "package management", - "free and open source software", - "general purpose os", - "real unix", - "kernel", - "packaging", - "userland", - "unix", - "bsd" + "robotics", + "internet of things", + "drones", + "portable", + "makers" ], - "total_projects": 38, + "total_projects": 3, "first_time": false }, { - "id": "692251ea53dd9d7326d33ed8", - "slug": "the-p4-language-consortium", - "name": "The P4 Language Consortium", - "category": "Programming languages", - "description": "Evolve the programmable data plane ecosystem!", - "image_url": "https://summerofcode.withgoogle.com/media/org/the-p4-language-consortium/tru8mncy4zqlbxhe.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-p4-language-consortium.webp", + "id": "692251e753dd9d7326d33eb6", + "slug": "space-virginia-tech", + "name": "Space @ Virginia Tech", + "category": "Science and medicine", + "description": "Space@VT is devoted to the investigation of the space environment.", + "image_url": "https://lh3.googleusercontent.com/tUn7jhnuyPGZNW88fhBLLh6XVMsYmRtyLre0lPZKl1hT_afixt6PL8P_GN-dP7oaoomiz8FrHdUhIUs8QH4VDLtYDXUGy6U", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/space-virginia-tech.webp", "logo_r2_url": null, - "url": "https://p4.org/", + "url": "http://space.vt.edu", "active_years": [ - 2024, - 2025 + 2018 ], - "first_year": 2024, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2018, + "last_year": 2018, + "is_currently_active": false, "technologies": [ - "llvm", - "c++", - "mlir", - "ebpf", - "Z3" + "python", + "mysql", + "javascript", + "mongodb", + "d3" ], "topics": [ - "networking", - "programming language", - "compiler", - "AI/ML Networking", - "networking security" + "web", + "data visualization", + "real time", + "data analytics" ], - "total_projects": 9, + "total_projects": 2, "first_time": false }, { - "id": "692251ea53dd9d7326d33ed9", - "slug": "the-palisadoes-foundation", - "name": "The Palisadoes Foundation", - "category": "Social and communication", - "description": "Social media and member management for non-profits", - "image_url": "https://summerofcode.withgoogle.com/media/org/the-palisadoes-foundation/d9zsxo0idjsl7kug-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-palisadoes-foundation.webp", + "id": "692251e653dd9d7326d33ea2", + "slug": "spdx", + "name": "SPDX", + "category": "Other", + "description": "An open ISO standard for SBOMs", + "image_url": "https://summerofcode.withgoogle.com/media/org/spdx/ggw7mdbriw97mzmu-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/spdx.webp", "logo_r2_url": null, - "url": "https://www.palisadoes.org", + "url": "https://spdx.dev", "active_years": [ + 2017, + 2018, + 2019, + 2020, 2021, 2022, - 2023, - 2024, - 2025 + 2023 ], - "first_year": 2021, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2017, + "last_year": 2023, + "is_currently_active": false, "technologies": [ - "javascript", - "mongodb", - "node.js", - "flutter", - "graphql", - "typescript", + "c", "python", - "postgresql" + "java", + "github", + "rdf", + "json", + "golang", + "xml", + "node.js", + "go" ], "topics": [ - "web development", - "cloud computing", - "social good", - "mobile apps", - "social impact", - "web", - "api", - "database", - "cloud", - "mobile", - "networking", - "ai" + "compliance", + "licensing", + "opensource", + "open source", + "security", + "standards", + "data", + "vulnerabilities" ], - "total_projects": 36, + "total_projects": 29, "first_time": false }, { - "id": "692251ea53dd9d7326d33eda", - "slug": "the-perl-foundation", - "name": "The Perl Foundation", - "category": "Programming languages", - "description": "Devoted to the advancement of the Perl languages through discussion and code", - "image_url": "https://lh3.googleusercontent.com/d5e0eT02pNSKppd0CTbEJ0Xk11l06hzop8Rsed1FGMr_Rc4jGxgD9dyZ4k6y_Yayy_df4aL5nTup0p5swm_vxWVvx80rthY", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-perl-foundation.webp", + "id": "692251e653dd9d7326d33ea3", + "slug": "sqlancer", + "name": "SQLancer", + "category": "Data", + "description": "Automatically testing database systems", + "image_url": "https://summerofcode.withgoogle.com/media/org/sqlancer/hzunjobwazuptdb6.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/sqlancer.webp", "logo_r2_url": null, - "url": "https://perlfoundation.org", + "url": "https://www.sqlancer.com", "active_years": [ - 2019 + 2023, + 2025 ], - "first_year": 2019, - "last_year": 2019, + "first_year": 2023, + "last_year": 2025, "is_currently_active": false, "technologies": [ - "c", - "perl", - "regular expressions", - "perl6", - "perl5" + "java", + "sql" ], "topics": [ - "functional programming", - "concurrency", - "web services", - "natural language understanding", - "programming languages and development tools" + "fuzzing", + "Automated Testing", + "Logic bugs", + "Database systems" ], - "total_projects": 4, + "total_projects": 6, "first_time": false }, { - "id": "692251ea53dd9d7326d33edb", - "slug": "the-postgres-operator", - "name": "The Postgres Operator", - "category": "Data", - "description": "A project to create an open-sourced managed Postgresql service for Kubernetes", - "image_url": "https://lh3.googleusercontent.com/CDCWRn_sSTfImUye81t4X_YbRsxATMEc51Qh-qQQvXacneOo1yS2rebLOHxilMHmOsTy_BSVTebPjc7tBniCuPqe_JVu4Q", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-postgres-operator.webp", + "id": "692251e753dd9d7326d33eb7", + "slug": "st-jude-childrens-research-hospital", + "name": "St. Jude Children's Research Hospital", + "category": "Science and medicine", + "description": "St. Jude Children's Research Hospital is a non-profit research hospital dedicated to advancing cures and means of prevention for children with catastrophic diseases. With respect to Google Summer of Code, we're interested in building modern, open-source infrastructure upon which large-scale scientific analyses can be done (typically focused on bioinformatics or genomics specifically).", + "image_url": "https://summerofcode.withgoogle.com/media/org/st-jude-childrens-research-hospital-ai/qnfe4pckkvrq5tfw-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/st-jude-childrens-research-hospital.webp", "logo_r2_url": null, - "url": "https://github.com/zalando-incubator/postgres-operator", + "url": "https://stjude.org", "active_years": [ - 2019 + 2025, + 2026 ], - "first_year": 2019, - "last_year": 2019, - "is_currently_active": false, + "first_year": 2025, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "postgresql", - "golang", - "kubernetes", - "operator", - "patroni" + "rust", + "WDL", + "python", + "simd" ], "topics": [ - "databases", - "cloud", - "cloud databases", - "cloud native", - "database services" + "programming languages", + "genomics", + "developer tools", + "cloud" ], - "total_projects": 1, + "total_projects": 2, "first_time": false }, { - "id": "692251ea53dd9d7326d33edc", - "slug": "the-qt-project", - "name": "The Qt Project", - "category": "Programming languages", - "description": "The Qt Project co-ordinates the development of the Qt software framework.", - "image_url": "https://lh3.googleusercontent.com/3rlqQG2e3Fuqd1T5a-jTW8-yuI06AE8ilPiN3bUEF1q-1TeCpsMk3rUKbZoz1_sKP1JgJ-lWlr5Yma9mZz1DOtc0LbCcqQ", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-qt-project.webp", + "id": "692251ef53dd9d7326d33f27", + "slug": "stdlib", + "name": "stdlib", + "category": "Science and medicine", + "description": "stdlib is a standard library for JavaScript and Node.js with an emphasis on numerical and scientific computing applications. The project aims to provide functionality similar to NumPy and SciPy for use in JavaScript environments with special consideration for the unique constraints and opportunities afforded by the Web. stdlib is primarily written in JavaScript, C, and Fortran.", + "image_url": "https://summerofcode.withgoogle.com/media/org/stdlib/7ornclj6w5zz9fca-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/stdlib.webp", "logo_r2_url": null, - "url": "http://wiki.qt.io/", + "url": "https://stdlib.io", "active_years": [ - 2018 + 2024, + 2025, + 2026 ], - "first_year": 2018, - "last_year": 2018, - "is_currently_active": false, + "first_year": 2024, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "opengl", - "qt", - "qml", - "c++11", - "cpp" + "c", + "javascript", + "node.js", + "typescript", + "webassembly" ], "topics": [ - "graphics", - "gis", - "maps", - "declarative language" + "mathematics", + "web", + "scientific computing", + "numerical computing", + "statistics" ], - "total_projects": 1, + "total_projects": 9, "first_time": false }, { - "id": "692251ea53dd9d7326d33edd", - "slug": "the-rust-foundation", - "name": "The Rust Foundation", - "category": "Programming languages", - "description": "A language empowering everyone", - "image_url": "https://summerofcode.withgoogle.com/media/org/the-rust-foundation/pplrhxvka7dufvsn.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-rust-foundation.webp", + "id": "692251e753dd9d7326d33eb9", + "slug": "stear-group", + "name": "Ste||ar group", + "category": "Science and medicine", + "description": "The STE||AR Group is an international team of researchers who understand that a new approach to parallel computation is needed. Our work is crafted around the idea that we need to invent new ways to more efficiently use the resources that we have and use the knowledge that we gain to help guide the creation of the machines of tomorrow. This organization aims to support, coordinate, and distribute research done in this area by creating a marketplace of ideas where concepts are debated and solutions are transparently developed.", + "image_url": "https://summerofcode.withgoogle.com/media/org/stear-group/sebxbtinyakvrevb-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/stear-group.webp", "logo_r2_url": null, - "url": "https://www.rust-lang.org", + "url": "http://stellar-group.org/", "active_years": [ + 2016, + 2017, + 2018, + 2020, + 2021, + 2022, + 2023, 2024, - 2025 + 2025, + 2026 ], - "first_year": 2024, - "last_year": 2025, + "first_year": 2016, + "last_year": 2026, "is_currently_active": true, "technologies": [ + "c++", + "cuda", + "opencl", + "high performance computing", + "parallel processing", + "boost", + "hpx", + "c++17 parallel stl", + "parallel algorithms", "python", - "rust" + "opencv", + "cpp", + "hpc" ], "topics": [ - "compilers", - "programming languages" + "high performance computing", + "parallel computing", + "runtime systems", + "gpu", + "hpx", + "algorithms", + "c++ standardizaion", + "parallel algorithms", + "hpc", + "distributed datastructures", + "asynchronous many task systems", + "machine learning", + "deep learning", + "asynchronous manytask systems", + "concurrency", + "high-performance computing", + "parallelism", + "library", + "optimization", + "application" ], - "total_projects": 28, + "total_projects": 38, "first_time": false }, { - "id": "692251ea53dd9d7326d33ede", - "slug": "the-terasology-foundation", - "name": "The Terasology Foundation", - "category": "End user applications", - "description": "Voxel world game/engine with a large focus on extensibility and developer tools", - "image_url": "https://lh3.googleusercontent.com/M0PBCc2Ddh0Ld7fkCNbaZdH-0yAdu9lgG3d39rmhGQstkM-gXLaN_C5DPPBD8TnOqkKI4GqMU7VbuAj_Qo0onNzCne6wxEANQbx5AzkhPG6_", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-terasology-foundation.webp", + "id": "692251e753dd9d7326d33eb8", + "slug": "stemformatics", + "name": "Stemformatics", + "category": "Science and medicine", + "description": "Stemformatics is a web-based pocket dictionary for stem cell scientists.", + "image_url": "https://lh3.googleusercontent.com/cvukkaOTKrjuwRlehZT0bMdNEUJQhTTZVt1BAWpyt7_d1n-gl-c7dIm-r668edGFQF2P_oTD3nr7Is1kWRG5i-FuNYW774He", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/stemformatics.webp", "logo_r2_url": null, - "url": "https://terasology.org/", + "url": "https://www.stemformatics.org", "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021 + 2018 ], - "first_year": 2016, - "last_year": 2021, + "first_year": 2018, + "last_year": 2018, "is_currently_active": false, "technologies": [ - "java", - "opengl", - "blender", - "gradle", - "lwjgl", - "json", - "github", - "lwgjl", - "kotlin" + "python", + "postgresql", + "javascript" ], "topics": [ - "game", - "voxel", - "minecraft", - "sandbox", - "modding", - "games", - "ai", - "graphics", - "graphics / video / audio / virtual reality", - "game engines" + "bioinformatics", + "cloud", + "web applications" ], - "total_projects": 43, + "total_projects": 2, "first_time": false }, { - "id": "692251ea53dd9d7326d33edf", - "slug": "the-tor-project", - "name": "The Tor Project", - "category": "Web", - "description": "Defend yourself against tracking and surveillance.", - "image_url": "https://summerofcode.withgoogle.com/media/org/the-tor-project/1w40vc9lqddvbfoa-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-tor-project.webp", + "id": "692251e753dd9d7326d33eba", + "slug": "stichting-su2", + "name": "Stichting SU2", + "category": "Science and medicine", + "description": "Computational analysis tools have revolutionized the way we design engineering systems as a society, but most established codes are proprietary, unavailable, or prohibitively expensive for many users. The SU2 Foundation will change this, making multiphysics analysis and design optimization software free and publicly available, in a single place, without restriction on who can contribute to its creation and development.\nThe SU2 Foundation is an educational and scientific not-for-profit that will bring together computational scientists and engineers through the SU2 Foundation platform. The SU2 Foundation develops, maintains, and supports a collection of C++ and Python-based software tools for performing Partial Differential Equation (PDE) analysis and solving PDE-constrained optimization problems. Through maintaining and improving the quality of software, documentation, and tutorials, and by growing the community of users and developers, the SU2 Foundation will ensure quality improvement of multiphysics software tools, accessible by everyone, for continued innovation in the engineering sciences.", + "image_url": "https://summerofcode.withgoogle.com/media/org/stichting-su2/vexbqtmew7yd92hp-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/stichting-su2.webp", "logo_r2_url": null, - "url": "https://www.torproject.org/", + "url": "https://su2foundation.org", "active_years": [ - 2016, - 2017, - 2022, - 2023, - 2025 + 2024, + 2025, + 2026 ], - "first_year": 2016, - "last_year": 2025, + "first_year": 2024, + "last_year": 2026, "is_currently_active": true, "technologies": [ - "c", "python", - "javascript", - "golang", - "browser extensions", - "c++", - "rust", - "web" + "c++" ], "topics": [ - "security", - "privacy", - "research", - "anonymity", - "anti-censorship", - "counter-censorship", - "free-speech", - "Human Rights", - "Surveillance" + "aerodynamics", + "Computational Fluid Dynamics", + "Multi-Disciplinary Optimization", + "Adjoint Design Optimization", + "Fluid Dynamics" ], - "total_projects": 19, + "total_projects": 7, "first_time": false }, { - "id": "692251ea53dd9d7326d33ee0", - "slug": "the-vega-project-at-the-university-of-washington", - "name": "The Vega Project at the University of Washington", - "category": "Web", - "description": "Declarative formats & Applications for Creating, Saving & Sharing Visualizations", - "image_url": "https://lh3.googleusercontent.com/i2lYWOG1iVw9H16hfCqxcgjdZ_mbaiJQgC8UW1lOz4cMr012o-iUbHO5ZCqfzzGdFJnHGUwOnJ9PoGIDJtpxbtnzWQiaIAQ", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-vega-project-at-the-university-of-washington.webp", + "id": "692251e753dd9d7326d33ebb", + "slug": "stony-brook-university-biomedical-informatics", + "name": "Stony Brook University Biomedical Informatics", + "category": "Science and medicine", + "description": "Advance biomedical knowledge through innovative data science research", + "image_url": "https://lh3.googleusercontent.com/RuG21yTpVNlQeuffn8OimhRXHwA_MDmYEr8YrToO9jriUZkaqHh0Xpsaa5wxWPiCMK9DnZWuw8hFq_1vFsvwfEpIVodyhQ", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/stony-brook-university-biomedical-informatics.webp", "logo_r2_url": null, - "url": "http://vega.github.io/", + "url": "https://bmi.stonybrookmedicine.edu/", "active_years": [ - 2018, - 2019 + 2016, + 2017, + 2018 ], - "first_year": 2018, - "last_year": 2019, + "first_year": 2016, + "last_year": 2018, "is_currently_active": false, "technologies": [ - "javascript", - "react", - "typescript", - "d3.js", - "d3", - "vega", - "vega-lite" + "big data", + "medical imaging", + "hadoop", + "bioinformatics", + "c++", + "apache spark", + "matlab", + "python", + "javascript" ], "topics": [ - "data visualization", - "data science", - "declarative language", - "visualization grammar", - "plotting tools", - "visualization", - "data-science" + "genomics", + "database", + "imaging", + "big data", + "medical imaging", + "biomedical informatics", + "bioinformtics", + "deep learning", + "biomedical data science", + "cancer informatics" ], - "total_projects": 4, + "total_projects": 9, "first_time": false }, { - "id": "692251ea53dd9d7326d33ee1", - "slug": "the-wine-project", - "name": "The Wine Project", - "category": "Other", - "description": "Wine runs Windows applications on Linux, BSD, Solaris, macOS and Android.", - "image_url": "https://lh3.googleusercontent.com/7tIOiveWazWsdJRPKX6R-vqBrN058T695JfanWME8t1aZKBz9g69ZABf6YbAgkuWH40WyGoeikalEErOmqN8DbkS24mIQ10", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-wine-project.webp", + "id": "692251ef53dd9d7326d33f28", + "slug": "strace", + "name": "strace", + "category": "Development tools", + "description": "Linux syscall tracer", + "image_url": "https://summerofcode.withgoogle.com/media/org/strace/yreopwofddfe6zhk-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/strace.webp", "logo_r2_url": null, - "url": "https://www.winehq.org/", + "url": "https://strace.io/", "active_years": [ 2016, 2017, 2018, 2019, - 2020 + 2020, + 2021, + 2022 ], "first_year": 2016, - "last_year": 2020, + "last_year": 2022, "is_currently_active": false, "technologies": [ "c", - "opengl", - "x11", - "win32", - "directx", - "vulkan" + "linux", + "shell script", + "make", + "git", + "awk", + "shell", + "autotools", + "gawk" ], "topics": [ - "desktop integration", - "compatibility", - "3d", - "directx", - "opengl", - "vulkan" + "linux", + "tracing", + "syscall", + "c", + "git", + "debugging", + "diagnostic" ], - "total_projects": 4, + "total_projects": 15, "first_time": false }, { - "id": "692251ea53dd9d7326d33ee2", - "slug": "the-ns-3-network-simulator-project", - "name": "The ns-3 Network Simulator Project", - "category": "Science and medicine", - "description": "ns-3 is a simulation tool for computer networks.", - "image_url": "https://summerofcode.withgoogle.com/media/org/the-ns-3-network-simulator-project/0zmaec44y4jcfuj2-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-ns-3-network-simulator-project.webp", + "id": "692251e753dd9d7326d33ebc", + "slug": "stratosphere-laboratory-czech-technical-university-in-prague", + "name": "Stratosphere Laboratory, Czech Technical University in Prague", + "category": "Data", + "description": "Using machine learning and security to help others", + "image_url": "https://summerofcode.withgoogle.com/media/org/stratosphere-laboratory-czech-technical-university-in-prague/94v2dwoajljheoba-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/stratosphere-laboratory-czech-technical-university-in-prague.webp", "logo_r2_url": null, - "url": "https://www.nsnam.org", + "url": "https://www.stratosphereips.org/", "active_years": [ - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, 2023, - 2024, - 2025 + 2024 ], - "first_year": 2017, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2023, + "last_year": 2024, + "is_currently_active": false, "technologies": [ - "python", - "c++", - "c", - "python 3", - "django" + "python", + "javascript", + "redis", + "flask", + "docker", + "textual" ], "topics": [ - "networking", - "simulation", - "computer networking", - "research and development", - "network simulation", - "research", - "emulation", - "network analysis" + "machine learning", + "network security", + "Security Defense", + "civil society" ], - "total_projects": 34, + "total_projects": 2, "first_time": false }, { - "id": "692251ea53dd9d7326d33ee3", - "slug": "tianocore", - "name": "TianoCore", - "category": "Operating systems", - "description": "Modern, open source, UEFI BIOS firmware", - "image_url": "https://summerofcode.withgoogle.com/media/org/tianocore/klcxfxidgxhn6yan-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/tianocore.webp", + "id": "692251e753dd9d7326d33ebd", + "slug": "streetmix", + "name": "Streetmix", + "category": "End user applications", + "description": "Design, remix, and share your neighborhood street, all in your browser.", + "image_url": "https://lh3.googleusercontent.com/_L-vs1v1urB7RbiMOJTVBWxkuZWZRnwd6wUXupSaLqoWYh-0xHo2sGvLXmmQZhgzU5kWhDS7ktZvBzz42j9rDPGdpaQRbg", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/streetmix.webp", "logo_r2_url": null, - "url": "https://www.tianocore.org/", + "url": "https://streetmix.net/", "active_years": [ - 2021, - 2022 + 2018 ], - "first_year": 2021, - "last_year": 2022, + "first_year": 2018, + "last_year": 2018, "is_currently_active": false, "technologies": [ - "c", - "python", - "rust", - "golang", - "uefi" + "postgresql", + "javascript", + "mongodb", + "react", + "redux" ], "topics": [ - "firmware", - "uefi", - "bootloader", - "edk2", - "open system firmware", - "acpi", - "BIOS" + "web", + "civic tech", + "smart cities" ], - "total_projects": 8, + "total_projects": 1, "first_time": false }, { - "id": "692251ea53dd9d7326d33ee4", - "slug": "tiled", - "name": "Tiled", + "id": "692251e853dd9d7326d33ebe", + "slug": "submitty", + "name": "Submitty", "category": "End user applications", - "description": "A free, easy to use and flexible 2D level editor.", - "image_url": "https://lh3.googleusercontent.com/N82LnqT49LVmJ28wMr-Rkos0G1sWptTlzlDufgbUAaAe7gg7_p2tbsEQSDOKJl--rLX9X1GI7nbQdzTOKEGKsaqwAJkf7zp5", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/tiled.webp", + "description": "Submitty is an open source programming assignment submission system with secure and automated testing and grading, efficient manual TA/instructor grading, and additional tools for overall course management and communication between students and instructional staff. Submitty was launched by the Rensselaer Center for Open Source Software (RCOS) in 2014.\n\nhttps://github.com/Submitty/\n\nKey Features\n\n+ Secure testing of many programming languages: Python, C/C++, Java, etc.\n+ Customizable automated grading with immediate feedback to students, and optional hidden or randomized tests.\n+ Advanced grading tools: static analysis, unit testing, code coverage, memory debuggers, networked assignments, custom Docker containers, and screenshots/GIFs of graphics programs.\n+ Individual or team assignments submitted by drag-and-drop or version control.\n+ Correct mistakes through multiple submissions, flexible ``late day’’ policy.\n+ Interface for complementary instructor/TA manual grading, regrade requests, anonymized peer grading.\n+ Instructor bulk upload of scanned .pdf exams, QR code name matching, pdf annotation.\n+ Supports course material hosting, term grades spreadsheet, plagiarism detection.\n+ Integrated discussion forum, email announcements, lecture polling, office hours queue, and student activity dashboard.\n+ Scales to multiple courses, thousands of students, multiple instructors and TAs per course.\n+ Open-source, free to use, install on your own hardware, or VPS.\n\nSubmitty has been used at a half dozen other universities and we aim to grow to more users and developers. The courses using Submitty cover the undergraduate and graduate curriculum from introductory programming courses, intermediate and advanced theory courses, popular junior/senior electives with team projects and written reports, and specialized graduate courses.\n\nWe regularly present our work at the annual ACM SIGCSE conference.", + "image_url": "https://summerofcode.withgoogle.com/media/org/submitty/jlpoxlj2rvpot6zv-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/submitty.webp", "logo_r2_url": null, - "url": "http://www.mapeditor.org", + "url": "https://submitty.org", "active_years": [ - 2017 + 2018, + 2019, + 2020, + 2022, + 2023, + 2024, + 2026 ], - "first_year": 2017, - "last_year": 2017, - "is_currently_active": false, + "first_year": 2018, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "github", + "python", "c++", - "qt", - "git" + "databases", + "web", + "html", + "css", + "php", + "javascript", + "ajax", + "postgresql" ], "topics": [ - "game", - "game development", - "edit", - "editing", - "level" + "education", + "web", + "data visualization", + "privacy/security", + "communication", + "visualization" ], - "total_projects": 3, + "total_projects": 19, "first_time": false }, { - "id": "692251eb53dd9d7326d33ee5", - "slug": "timvideosus", - "name": "TimVideos.us", - "category": "Media", - "description": "Software & hardware for recording + streaming conferences, meetings, user groups", - "image_url": "https://lh3.googleusercontent.com/EXMCUdZcXXqwFdusWDrQjwkUxDqRcXVzLPvWsjxJdUGKny0uSSvP361cqSqBESHB0zcKHwfQFtzxt71nUqy21b2jEfykUJ0", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/timvideosus.webp", + "id": "692251e853dd9d7326d33ebf", + "slug": "sugar-labs", + "name": "Sugar Labs", + "category": "End user applications", + "description": "Sugar is an activity-focused, free/libre open-source software (FLOSS) learning platform for children. Collaboration, reflection, and discovery are integrated directly into the user interface. Through Sugar's clarity of design, children and teachers have the opportunity to use computers on their own terms. Students can reshape, reinvent, and reapply both software and content into powerful learning activities. Sugar's focus on sharing, constructive criticism, and exploration is grounded in the culture of free software and the ideals of learn-by-doing \"Constructionism\".", + "image_url": "https://summerofcode.withgoogle.com/media/org/sugar-labs/pgbt7fp6gr6lhihd-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/sugar-labs.webp", "logo_r2_url": null, - "url": "https://code.timvideos.us", + "url": "https://sugarlabs.org", "active_years": [ 2016, 2017, 2018, - 2019 + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ], "first_year": 2016, - "last_year": 2019, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "c", "python", - "verilog", - "fpga", - "vhdl" + "javascript", + "gtk+", + "android", + "gtk", + "c", + "pygame", + "react", + "typescript", + "vue.js", + "python gtk", + "LLM", + "javascipt" ], "topics": [ - "embedded hardware", - "live streaming", - "video capture", - "hardware", - "embedded", - "video", - "fpga" + "education", + "programming", + "learning", + "games", + "user interface", + "media", + "stem", + "collaboration", + "open source", + "software", + "desktop", + "programming languages", + "generative AI" ], - "total_projects": 6, + "total_projects": 89, "first_time": false }, { - "id": "692251eb53dd9d7326d33ee6", - "slug": "timelab-technologies-ltd", - "name": "Timelab Technologies Ltd.", - "category": "End user applications", - "description": "We help scientists understanding information in time-series", - "image_url": "https://lh3.googleusercontent.com/68Hw4cms8bhh17Ya-61UeLV_vNE3M-mrqgLCsHX3MUlQbHdx6BaeSbS1cxlcR3ajsXdmwgAtfAN46eKUxiUYyUCEMhlgN1w", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/timelab-technologies-ltd.webp", + "id": "692251e653dd9d7326d33ea4", + "slug": "sw360", + "name": "SW360", + "category": "Web", + "description": "SW360 is an open source software project licensed under the EPL-2.0 that provides both a web application and a repository to collect, organize and make available information about software components. It establishes a central hub for software components in an organization.", + "image_url": "https://summerofcode.withgoogle.com/media/org/sw360/scylub8cx6f9mkzk-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/sw360.webp", "logo_r2_url": null, - "url": "http://www.timelabtechnologies.com/", + "url": "https://eclipse.dev/sw360/", "active_years": [ - 2016 + 2025, + 2026 ], - "first_year": 2016, - "last_year": 2016, - "is_currently_active": false, + "first_year": 2025, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "python", - "javascript" + "java", + "react", + "couchdb", + "SpringBoot" ], "topics": [ - "mathematics", - "astronomy", - "algorithm prototyping/visualization", - "time series" + "license compliance", + "compliance automation", + "SBOM", + "component repository", + "vulnerabilities management" ], - "total_projects": 3, + "total_projects": 2, "first_time": false }, { - "id": "692251eb53dd9d7326d33ee7", - "slug": "tokio", - "name": "Tokio", + "id": "692251e853dd9d7326d33ec0", + "slug": "swift", + "name": "Swift", "category": "Programming languages", - "description": "The asynchronous run-time for the Rust programming language.", - "image_url": "https://lh3.googleusercontent.com/tc2ZKsdIMEMLaSli3YedP89ReiJyAsAakvW47gqZ-cW2MdnxI_1hyKH-vuw9BxYZTutH86kFKynVo4OuxgSBmh19fEsaIm8", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/tokio.webp", + "description": "Swift is a general-purpose programming language built using a modern approach to safety, performance, and software design patterns.\n\nThe goal of the Swift project is to create the best available language for uses ranging from systems programming, to mobile and desktop apps, scaling up to cloud services. Most importantly, Swift is designed to make writing and maintaining correct programs easier for the developer.", + "image_url": "https://summerofcode.withgoogle.com/media/org/swift/moutmu5fv3rozvrz-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/swift.webp", "logo_r2_url": null, - "url": "https://tokio.rs", + "url": "https://swift.org", "active_years": [ - 2019 + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ], - "first_year": 2019, - "last_year": 2019, - "is_currently_active": false, + "first_year": 2018, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "rust", - "tokio_rs" + "llvm", + "c++", + "cmake", + "swift", + "ios", + "programming languages", + "compilers", + "server" ], "topics": [ - "concurrency", - "networking", - "windows", - "rust" + "compilers", + "programming languages", + "programming", + "developer tools", + "debugging", + "programming languages and development tools", + "package management", + "programming libraries", + "cross-platform", + "Packages", + "Server development", + "Standard Libraries" ], - "total_projects": 1, + "total_projects": 26, "first_time": false }, { - "id": "692251eb53dd9d7326d33ee8", - "slug": "tungsten-fabric", - "name": "Tungsten Fabric", - "category": "Infrastructure and cloud", - "description": "Secure software defined networking for any cloud, anywhere.", - "image_url": "https://lh3.googleusercontent.com/SQUdOZ93rgGC711-JWBbLWzxGbC7Pds8BTbQw4rwEEVEw-RfAxF-T0dRwu7uG4SzQLb6pKh4zuXmSZvZMEHJPTKuaTv4_yY", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/tungsten-fabric.webp", + "id": "692251e853dd9d7326d33ec2", + "slug": "symbiflow", + "name": "SymbiFlow", + "category": "Programming languages", + "description": "A completely FOSS toolchain for FPGAs.", + "image_url": "https://lh3.googleusercontent.com/CvqeGxSl_fS_m75Z_2u_XWVw4JRQRmUDdQ-iL9VyMEnvPQJPbalrvLZcopVRsdK-ESlMAsM4kR_HW8xZgphjZ2YS8OSZssvXu1mMOSb9INA", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/symbiflow.webp", "logo_r2_url": null, - "url": "https://tungsten.io", + "url": "https://symbiflow.github.io/", "active_years": [ - 2019 + 2019, + 2020, + 2021 ], "first_year": 2019, - "last_year": 2019, + "last_year": 2021, "is_currently_active": false, "technologies": [ + "verilog", + "fpga", + "xilinx", "python", - "linux", "c", - "c++", - "networking", - "kubernetes" + "c++" ], "topics": [ - "security", - "software defined networking", - "routing", - "multicloud" + "electronic design tools", + "programming languages and development tools", + "fpga", + "programming languages", + "development tools", + "open hardware" ], - "total_projects": 1, + "total_projects": 5, "first_time": false }, { - "id": "692251eb53dd9d7326d33ee9", - "slug": "typelevel", - "name": "Typelevel", - "category": "Programming languages", - "description": "We do functional programming together", - "image_url": "https://summerofcode.withgoogle.com/media/org/typelevel/hxlcctbqekguxcxx.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/typelevel.webp", + "id": "692251e853dd9d7326d33ec1", + "slug": "sympy", + "name": "SymPy", + "category": "Science and medicine", + "description": "SymPy is a Python library for symbolic mathematics. It aims to become a full-featured computer algebra system (CAS) while keeping the code as simple as possible in order to be comprehensible and easily extensible. SymPy is written entirely in Python.", + "image_url": "https://summerofcode.withgoogle.com/media/org/sympy/iz2tcxocrknp1sm0-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/sympy.webp", "logo_r2_url": null, - "url": "https://typelevel.org", + "url": "https://www.sympy.org/", "active_years": [ - 2025 + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ], - "first_year": 2025, - "last_year": 2025, + "first_year": 2016, + "last_year": 2026, "is_currently_active": true, "technologies": [ - "linux", - "node.js", - "jvm", - "scala", - "wasm" + "python", + "c++", + "numpy", + "jupyter" ], "topics": [ - "web", - "functional programming", - "cloud", - "AI/ML", - "cats" + "mathematics", + "math", + "science", + "physics", + "computer algebra", + "symbolic mathematics" ], - "total_projects": 2, - "first_time": true + "total_projects": 63, + "first_time": false }, { - "id": "692251eb53dd9d7326d33eea", - "slug": "uc-ospo", - "name": "UC OSPO", - "category": "Science and medicine", - "description": "Amplifying Research Impact through Open Source", - "image_url": "https://summerofcode.withgoogle.com/media/org/center-for-research-in-open-source-software-cross/ndbkr7fqcqp4nguq-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/uc-ospo.webp", + "id": "692251e853dd9d7326d33ec3", + "slug": "synfig", + "name": "Synfig", + "category": "Media", + "description": "Synfig is a 2D open-source animation software. It is capable to produce vector artwork and also can work with bitmap images.\n\nThe main concept of Synfig is \"tweening\" - you can define object positions or shapes of vector objects at certain points of time and program will interpolate in-between frames automatically. You can also use bones to control your animation on higher level.\n\nWith Synfig you can easily create motion graphics and cut-out animations for product explanation videos, tutorial videos, and more.", + "image_url": "https://summerofcode.withgoogle.com/media/org/synfig/ohcj3eigerib4jym-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/synfig.webp", "logo_r2_url": null, - "url": "https://ucsc-ospo.github.io/osre25/", + "url": "https://synfig.org", "active_years": [ + 2019, + 2020, + 2021, + 2022, 2023, 2024, - 2025 + 2025, + 2026 ], - "first_year": 2023, - "last_year": 2025, + "first_year": 2019, + "last_year": 2026, "is_currently_active": true, "technologies": [ - "python", - "c", "c++", - "visualization", - "VLSI", - "ros/gazebo", - "javascript", - "machine learning" + "gtk", + "gtkmm", + "python", + "c++11" ], "topics": [ - "hardware", - "data science", - "reproducibility", - "storage systems", - "data management", - "education", - "bioinformatics", - "AI/ML" + "animation", + "vector graphics", + "2d/3d graphics", + "2d animation" ], - "total_projects": 47, + "total_projects": 12, "first_time": false }, { - "id": "692251eb53dd9d7326d33eeb", - "slug": "ucsc-xena", - "name": "UCSC Xena", - "category": "Science and medicine", - "description": "Helping biologists see the bigger picture in diverse cancer genomics data", - "image_url": "https://lh3.googleusercontent.com/hlRCFceco1ZLWp8ayUER9wOB1bqQKT8k5afqeeXRS8otR1s34Gds8dRajI3_W3-DIadsncH4GmxzV6AomZZiipAiKnsM9hA", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ucsc-xena.webp", + "id": "692251f053dd9d7326d33f29", + "slug": "syslog-ng", + "name": "syslog-ng", + "category": "Data", + "description": "Enhanced log daemon, w/ wide range of I/O methods", + "image_url": "https://summerofcode.withgoogle.com/media/org/syslog-ng/ipqfczgd4cx3zm9r-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/syslog-ng.webp", "logo_r2_url": null, - "url": "http://xena.ucsc.edu", + "url": "https://www.syslog-ng.com/", "active_years": [ - 2017, + 2016, 2018, - 2019 + 2019, + 2020, + 2021, + 2022 ], - "first_year": 2017, - "last_year": 2019, + "first_year": 2016, + "last_year": 2022, "is_currently_active": false, "technologies": [ + "c", "python", - "javascript", - "react", - "clojure", - "d3", - "jvm" + "java", + "rust", + "big data", + "c++", + "rest", + "elasticsearch", + "json", + "sql", + "kafka" ], "topics": [ - "genomics", - "data visualization", - "cancer", - "bioinformatics", - "web application", - "web applications", - "scientific visualization", - "cancer research" + "continuous delivery", + "log management", + "message queue", + "data extraction", + "message correlation", + "python", + "logging", + "build tools", + "high performance data processing", + "data processing pipeline", + "reliable log transfer", + "cloud", + "high-performance data processing" ], - "total_projects": 3, + "total_projects": 12, "first_time": false }, { - "id": "692251eb53dd9d7326d33eec", - "slug": "unicode-inc", - "name": "Unicode, Inc.", - "category": "Programming languages", - "description": "Bringing internationalization to software!", - "image_url": "https://summerofcode.withgoogle.com/media/org/unicode-inc/cev3zg8tjatag4mt.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/unicode-inc.webp", + "id": "692251e853dd9d7326d33ec4", + "slug": "systers-community", + "name": "Systers Community", + "category": "Other", + "description": "Helping women find their potential in code. You are not alone.", + "image_url": "https://lh3.googleusercontent.com/ZfLKPxprJmOds95nIeEkrw78RF0olObie6ligW1ZyPTL3mDcPsbhSR0Ed9fhyzdJHOsdblNFB2L9wwgMNMKHjH4RpNhTGc2a", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/systers-community.webp", "logo_r2_url": null, - "url": "https://home.unicode.org", + "url": "https://anitab.org/systers/", "active_years": [ - 2024, - 2025 + 2018 ], - "first_year": 2024, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2018, + "last_year": 2018, + "is_currently_active": false, "technologies": [ - "java", - "c++", - "rust", - "unicode" + "python", + "javascript", + "android", + "ruby on rails", + "ios" ], "topics": [ - "compilers", - "linguistics", - "languages", - "internationalization" + "web apps", + "community", + "mobile applications" ], - "total_projects": 9, + "total_projects": 11, "first_time": false }, { - "id": "692251eb53dd9d7326d33eed", - "slug": "unikraft", - "name": "Unikraft", - "category": "Operating systems", - "description": "A Fast and Secure Unikernel SDK", - "image_url": "https://summerofcode.withgoogle.com/media/org/unikraft/5nx7anuq3iixdm54.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/unikraft.webp", + "id": "692251e853dd9d7326d33ec5", + "slug": "systers-an-anita-borg-institute-community", + "name": "Systers, an Anita Borg Institute community", + "category": "Other", + "description": "Helping women find their potential in code.", + "image_url": "https://lh3.googleusercontent.com/tFOFnRaUTNGblP4QyLG6X0IlRCU6PNrYL6VgZbGuLVX2MMJc0tSM-LHaGEGfhJ8_eQKoq7Zu4oOzBQWBW8brmLP9uji0fg", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/systers-an-anita-borg-institute-community.webp", "logo_r2_url": null, - "url": "https://unikraft.org/", + "url": "http://systers.org", "active_years": [ - 2022, - 2023, - 2024, - 2025 + 2016, + 2017 ], - "first_year": 2022, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2016, + "last_year": 2017, + "is_currently_active": false, "technologies": [ - "c", "python", - "xen", - "kvm", - "assembly language", - "golang" + "mysql", + "android", + "ruby on rails", + "ios", + "javascript", + "java" ], "topics": [ - "virtualization", - "cloud", - "software reuse", - "software configurability" + "women in tech", + "systers", + "women in open source", + "web", + "games", + "mobile", + "peace corps" ], - "total_projects": 16, + "total_projects": 30, "first_time": false }, { - "id": "692251eb53dd9d7326d33eee", - "slug": "unitexgramlab", - "name": "Unitex/GramLab", - "category": "Programming languages", - "description": "Unitex/GramLab is an open source, multilingual corpus processing suite", - "image_url": "https://lh3.googleusercontent.com/eRTNtDGJfmj06lZRbxDWDv1KHDjkbSnrDBZse3rWYuDNDPLNc7jyebqWSmK1O_yl_gLmeQOInzBjVrV3AaAty2Psi16zB6M", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/unitexgramlab.webp", + "id": "692251e853dd9d7326d33eca", + "slug": "tarantool", + "name": "Tarantool", + "category": "Data", + "description": "Lighting fast in-memory DBMS with JIT onboard", + "image_url": "https://summerofcode.withgoogle.com/media/org/tarantool/npjtqad5oa15tkps-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/tarantool.webp", "logo_r2_url": null, - "url": "http://unitexgramlab.org", + "url": "https://www.tarantool.io/en/", "active_years": [ - 2016 + 2021, + 2022 ], - "first_year": 2016, - "last_year": 2016, + "first_year": 2021, + "last_year": 2022, "is_currently_active": false, "technologies": [ - "java", + "c", + "lua", + "sql", + "python", "c++" ], "topics": [ - "natural language processing", - "local grammars", - "finite state automata", - "corpus annotation", - "multilingual language resources" + "distributed systems", + "algorithms", + "high performance data processing", + "in-memory data grid", + "sql", + "In-memory", + "JIT", + "IMDG", + "NoSQL Database" ], - "total_projects": 2, + "total_projects": 3, "first_time": false }, { - "id": "692251eb53dd9d7326d33eef", - "slug": "uramaki-lab", - "name": "Uramaki LAB", - "category": "End user applications", - "description": "The User Experience LAB based on IA", - "image_url": "https://summerofcode.withgoogle.com/media/org/uramaki-lab/pr3ivuk0zg7lhgj1-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/uramaki-lab.webp", + "id": "692251e853dd9d7326d33ec6", + "slug": "tardis-rt-collaboration", + "name": "TARDIS RT Collaboration", + "category": "Science and medicine", + "description": "TARDIS is a tool that creates synthetic observations (spectra) for exploding stars (supernovae). \n\nA supernova marks the brilliant death throes of a star, during which it outshines its entire galaxy. Through their explosive stellar death, supernovae enrich the Universe with new elements necessary for the formation of planets and life as we know it. From the iron in your blood to the silicon in your laptop, supernovae are responsible for producing many important elements from the primordial hydrogen and helium left over from the Big Bang.\n\nTARDIS provides a link between theory and observations: by creating synthetic spectra from theoretical assumptions and comparing these to observations, we can both interpret data and test models for why, when and how supernova explosions occur.\nWe, the community around TARDIS, are interested in combining astronomy, computer science, statistics and modern software design to build a tool that is useful both in research and teaching alike (with supporting documentation that would, in theory, allow anyone to recreate the project from scratch). Please join us on https://gitter.im/tardis-sn/gsoc.", + "image_url": "https://summerofcode.withgoogle.com/media/org/tardis-rt-collaboration/0ocxr3jw3fwdloye-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/tardis-rt-collaboration.webp", "logo_r2_url": null, - "url": "https://github.com/ruxailab", + "url": "https://tardis-sn.github.io", "active_years": [ + 2022, + 2023, 2024, - 2025 + 2025, + 2026 ], - "first_year": 2024, - "last_year": 2025, + "first_year": 2022, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", - "javascript", - "html", - "css", - "Firebase" + "numba", + "numpy", + "jupyter", + "pandas" ], "topics": [ - "user experience", - "Usability", - "User Evaluation", - "Eye Tracking", - "Sentimental Analysis" + "visualization", + "big data", + "simulation", + "astrophysics" ], - "total_projects": 8, + "total_projects": 15, "first_time": false }, { - "id": "692251eb53dd9d7326d33ef0", - "slug": "urban-energy-systems-laboratory-empa", - "name": "Urban Energy Systems Laboratory, Empa", + "id": "692251e853dd9d7326d33ec7", + "slug": "tardis-sn", + "name": "TARDIS SN", "category": "Science and medicine", - "description": "HUES is a platform for modeling & analysis of distributed energy systems", - "image_url": "https://lh3.googleusercontent.com/2ZeU3O2oOvAkneIhXFjY_bIuvV0vRzmyAgzKDM7UP5a2LP6TwohTU5MpYR43-zd7pfpjhBVYzIRlap8fkpY8RJwhJwABEGvD", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/urban-energy-systems-laboratory-empa.webp", + "description": "Exploring supernovae made easy", + "image_url": "https://lh3.googleusercontent.com/tznjlg0HUYe_hQPRwpUOSU8OnCpJp7mSlNIy0Xp3ibmdk9nSTBgYQlRc0RwO-CMHwavCN6YZDTaUpeD0xdWc89YotSEwJzAsfGI7AY0pQp4tQA", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/tardis-sn.webp", "logo_r2_url": null, - "url": "https://hues-platform.github.io/", + "url": "https://tardis-sn.github.io/tardis/", "active_years": [ 2016, - 2017 + 2020, + 2021 ], "first_year": 2016, - "last_year": 2017, + "last_year": 2021, "is_currently_active": false, "technologies": [ + "c", "python", - "gis", - "milp", - "fast fluid dynamics" + "cython", + "numba", + "numpy", + "jupyter", + "pandas" ], "topics": [ + "astronomy", + "monte carlo methods", + "radiative transfer", + "global optimization", + "science", + "supernova", + "visualization", + "big data", "simulation", - "data analysis", - "energy", - "distributed energy systems", - "modeling & optimization", - "data portal" + "astrophysics" ], - "total_projects": 6, + "total_projects": 9, "first_time": false }, { - "id": "692251eb53dd9d7326d33ef1", - "slug": "visp", - "name": "ViSP", - "category": "Media", - "description": "Visual tracking and visual servoing library", - "image_url": "https://lh3.googleusercontent.com/vc01h5JBortXEAkxC3HSGB1axXpw6ZzgDfH5VEXF9OWZf6JlkRHH4DpqvK3Bas_ZCvANTX6ieoHnGA3mpPSxwWxUbakRzng", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/visp.webp", + "id": "692251e853dd9d7326d33ec8", + "slug": "teammates-national-university-of-singapore", + "name": "TEAMMATES @ National University of Singapore", + "category": "Web", + "description": "An online feedback management system for education", + "image_url": "https://lh3.googleusercontent.com/265HE7VM0Yah8cmmoSVdkm9wRTOJem65VxSrT_0SXfgcgtHYdkeHt0qji7xc-_9N4xYYB1TAwBC-hjKFqt3UJ7m4N7llGA", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/teammates-national-university-of-singapore.webp", "logo_r2_url": null, - "url": "https://visp.inria.fr/", + "url": "https://github.com/teammates/teammates", "active_years": [ + 2016, 2017, 2018 ], - "first_year": 2017, + "first_year": 2016, "last_year": 2018, "is_currently_active": false, "technologies": [ - "c++", - "vision", - "c" + "javascript", + "java", + "html", + "css", + "google app engine", + "java ee" ], "topics": [ - "robotics", - "vision", - "computer vision" + "education", + "web development", + "cloud", + "learning management", + "software as a service", + "webapps", + "peer feedback", + "saas", + "web applications", + "teaching" + ], + "total_projects": 20, + "first_time": false + }, + { + "id": "692251e953dd9d7326d33ecb", + "slug": "tensorflow", + "name": "TensorFlow", + "category": "Data", + "description": "TensorFlow is a ML framework for everyone.", + "image_url": "https://summerofcode.withgoogle.com/media/org/tensorflow-d1/0sqdbtssij0tfcwy-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/tensorflow.webp", + "logo_r2_url": null, + "url": "https://www.tensorflow.org/", + "active_years": [ + 2019, + 2020, + 2021, + 2022, + 2023 + ], + "first_year": 2019, + "last_year": 2023, + "is_currently_active": false, + "technologies": [ + "python", + "c", + "c++", + "machine learning", + "data analysis", + "deep learning", + "javascript", + "python deep learning frameworks", + "tensorflow", + "ai", + "Jax", + "keras" + ], + "topics": [ + "machine learning", + "data science", + "deep learning", + "python", + "data", + "computer vision", + "natural language processing", + "cloud computing", + "education", + "research", + "on-device machine learning" ], - "total_projects": 3, + "total_projects": 81, "first_time": false }, { - "id": "692251eb53dd9d7326d33ef2", - "slug": "videolan", - "name": "VideoLAN", - "category": "End user applications", - "description": "Open Source Multimedia for everyone!", - "image_url": "https://summerofcode.withgoogle.com/media/org/videolan/9h28hsncvrt01voz-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/videolan.webp", + "id": "692251e953dd9d7326d33ecc", + "slug": "the-apache-software-foundation", + "name": "The Apache Software Foundation", + "category": "Web", + "description": "Open source software to the public free of charge", + "image_url": "https://summerofcode.withgoogle.com/media/org/apache-software-foundation/hq22fwtmvdfjnsh9-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-apache-software-foundation.webp", "logo_r2_url": null, - "url": "https://www.videolan.org", + "url": "https://apache.org", "active_years": [ 2016, 2017, @@ -17756,224 +18325,236 @@ ], "first_year": 2016, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ + "python", + "javascript", + "java", + "ruby", + "couchdb", "c", - "opengl", + "erlang", "c++", - "qt", - "assembly", - "go", - "vue.js", - "c#", - "asm", - "machine learning", - "audio", - "video codecs", - "video" + "rust" ], "topics": [ - "video", - "multimedia", - "editor", - "editing", - "non-linear", - "audio", - "vr", - "3d", "web", - "graphics", - "codecs", - "video processing", - "network programming", - "video decode", - "streaming", - "media database" + "database", + "cloud", + "ddd", + "dsl", + "big data", + "libraries", + "other" ], - "total_projects": 92, + "total_projects": 248, "first_time": false }, { - "id": "692251ec53dd9d7326d33ef3", - "slug": "wso2", - "name": "WSO2", - "category": "Other", - "description": "Comprehensive and open source middleware platform that spans the breadth of SOA", - "image_url": "https://lh3.googleusercontent.com/1E8AX1katjzwQ4Lu7AQVzd-V2E0y-RWFm4ZR7_eS7yct9wEagNcya2aGsZMH4TOaD0RF75iKM3uom-4enwPlyCMQ_tOXgg", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/wso2.webp", + "id": "692251e953dd9d7326d33ecd", + "slug": "the-center-for-connected-learning-and-computer-based-modeling", + "name": "The Center for Connected Learning and Computer-Based Modeling", + "category": "Programming languages", + "description": "NetLogo: A language and IDE for programming and scientific simulations", + "image_url": "https://lh3.googleusercontent.com/_Ol--UayvdvAUvhHYRqcA8zVpL6mrSt70pZPWkks9uvxTHwwesYnulBEZDn6SdI5bSMDmjaYiN8SbT8q2pfyVwXB_dyXq7iL", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-center-for-connected-learning-and-computer-based-modeling.webp", "logo_r2_url": null, - "url": "http://wso2.com/", + "url": "http://ccl.northwestern.edu/netlogo", "active_years": [ 2016, - 2017 + 2017, + 2018, + 2019 ], "first_year": 2016, - "last_year": 2017, + "last_year": 2019, "is_currently_active": false, "technologies": [ + "javascript", "java", - "web services", - "middleware", - "soa", - "distributed computing" + "html5", + "scala", + "css", + "html5/css3" ], "topics": [ - "security", - "cloud", - "micro services", - "data analysis", - "iot", - "api management" + "education", + "research", + "programming languages", + "science", + "simulation", + "programming language", + "academic research" ], - "total_projects": 20, + "total_projects": 5, "first_time": false }, { - "id": "692251ec53dd9d7326d33ef4", - "slug": "wagtail", - "name": "Wagtail", - "category": "Web", - "description": "The powerful Python CMS for modern websites", - "image_url": "https://summerofcode.withgoogle.com/media/org/wagtail/so6hnqeqh2cp4jbx-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/wagtail.webp", + "id": "692251e953dd9d7326d33ece", + "slug": "the-enigma-team", + "name": "The ENIGMA Team", + "category": "Programming languages", + "description": "A free rapid game development environment.", + "image_url": "https://summerofcode.withgoogle.com/media/org/the-enigma-team/ipdbzf7owbf34bdr-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-enigma-team.webp", "logo_r2_url": null, - "url": "https://wagtail.org/", + "url": "https://enigma-dev.org", "active_years": [ + 2021, 2022, 2023, - 2024, - 2025 + 2024 ], - "first_year": 2022, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2021, + "last_year": 2024, + "is_currently_active": false, "technologies": [ - "python", - "javascript", - "django" + "android", + "opengl", + "c++", + "qt5", + "recursive-descent" ], "topics": [ - "web", - "accessibility", - "cms" + "graphics", + "game development", + "compiler", + "programming", + "game design" ], - "total_projects": 11, + "total_projects": 9, "first_time": false }, { - "id": "692251ec53dd9d7326d33ef5", - "slug": "waycrate", - "name": "Waycrate", - "category": "End user applications", - "description": "Writing robust tools for the Wayland protocol", - "image_url": "https://summerofcode.withgoogle.com/media/org/waycrate/u6pnvceiilur7iqy-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/waycrate.webp", + "id": "692251e953dd9d7326d33ecf", + "slug": "the-freebsd-project", + "name": "The FreeBSD Project", + "category": "Operating systems", + "description": "FreeBSD is an operating system renowned for its advanced networking capabilities, robust security features, and exceptional performance. It is used across a wide spectrum of computing environments, ranging from the most heavily trafficked websites to desktop computers and embedded devices. Our source code is the foundation for well-known products such as the Sony PlayStation, Junos (the operating system powering Juniper routers), and elements of Apple's macOS. Additionally, FreeBSD runs on servers at Netflix that stream terabits of video content every second.\n\nThe FreeBSD Project has a rich history spanning over 30 years, originating in 1993 but rooted in work from the Berkeley Computer Systems Research Group dating back to 1978. Over the years, our codebase has undergone continuous development and played an important role in developing essential software components used by numerous open-source projects. Examples include bsnmp, jemalloc, libarchive, and OpenPAM.\n\nFreeBSD maintains an active mentoring program to welcome new developers into our vibrant community. With approximately 300 developers with write access to our repositories and numerous other contributors, our community thrives on collaboration and shared expertise. Many of our past Google Summer of Code contributors have transitioned into becoming key members of the FreeBSD development team.\n\nCommunication within the FreeBSD community occurs through various channels, including mailing lists, forums, blogs, IRC channels, and user groups, all listed on our main website.", + "image_url": "https://summerofcode.withgoogle.com/media/org/the-freebsd-project/4jmspor6mcto9wti-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-freebsd-project.webp", "logo_r2_url": null, - "url": "https://waycrate.github.io/", + "url": "https://www.freebsd.org/", "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, 2024, - 2025 + 2025, + 2026 ], - "first_year": 2024, - "last_year": 2025, + "first_year": 2016, + "last_year": 2026, "is_currently_active": true, "technologies": [ "c", "c++", - "rust", - "wayland", - "Zig" + "llvm", + "shell script", + "make", + "clang", + "shell", + "assembly", + "c/c+", + "POSIX shell" ], "topics": [ + "virtualization", "security", - "graphics", - "Wayland", - "ScreenCapture", - "Desktop Portals" - ], - "total_projects": 7, - "first_time": false - }, - { - "id": "692251ec53dd9d7326d33ef6", - "slug": "wayland", - "name": "Wayland", - "category": "Media", - "description": "Wayland is a protocol for windowing systems on both desktops and embedded", - "image_url": "https://lh3.googleusercontent.com/4TgyMZO4bnVCdzuoV5C_iyaDKetlMKAiKYzqL3GO_Edy_9lavjat0VRjI2NhFWG8HEzNBNNxi3HpT5uXK7M31tR27O0iTupC", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/wayland.webp", - "logo_r2_url": null, - "url": "https://wayland.freedesktop.org/", - "active_years": [ - 2016 - ], - "first_year": 2016, - "last_year": 2016, - "is_currently_active": false, - "technologies": [ - "c", - "opengl", - "wayland", - "xml", - "kms" - ], - "topics": [ - "graphics", - "video", - "window system", - "display" + "cloud", + "kernel", + "embeddded", + "embedded", + "embedded systems", + "operating systems", + "operating system", + "Embedded System" ], - "total_projects": 1, - "first_time": false - }, - { - "id": "692251ec53dd9d7326d33ef7", - "slug": "wellcome-sanger-tree-of-life", - "name": "Wellcome Sanger Tree of Life", - "category": "Science and medicine", - "description": "Genome analysis for all species", - "image_url": "https://summerofcode.withgoogle.com/media/org/wellcome-sanger-institute/gmcjtlourmhkhhed-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/wellcome-sanger-tree-of-life.webp", + "total_projects": 76, + "first_time": false + }, + { + "id": "692251e953dd9d7326d33ed0", + "slug": "the-honeynet-project", + "name": "The Honeynet Project", + "category": "Security", + "description": "The Honeynet Project is a leading international 501c3 non-profit security research organization, dedicated to investigating the latest attacks and developing open source security tools to improve Internet security. With Chapters around the world, our volunteers have contributed to fight against malware (such as Conficker), discovering new attacks and creating security tools used by businesses and government agencies all over the world.\n\nThe Honeynet Project uses GSoC as a incubator for new R&D projects, and to recruit active new members.", + "image_url": "https://summerofcode.withgoogle.com/media/org/the-honeynet-project/pvycoc21p2ketj7b-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-honeynet-project.webp", "logo_r2_url": null, - "url": "https://www.sanger.ac.uk/", + "url": "https://honeynet.org", "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, 2022, + 2023, 2024, - 2025 + 2025, + 2026 ], - "first_year": 2022, - "last_year": 2025, + "first_year": 2016, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", - "javascript", - "rust", - "nextflow", + "android", "machine learning", - "natural language processing", - "Cloud Storage" + "html", + "javascript", + "honeypots", + "golang", + "network stack", + "c", + "c++", + "python 3", + "linux", + "go", + "data analysis", + "networking", + "honeypot", + "django", + "docker" ], "topics": [ - "genomics", - "bioinformatics", - "data analysis", - "genome assembly", - "machine learning", - "genome analysis" + "security", + "sandbox", + "web development", + "honeypot", + "honeynet", + "research", + "honeypots", + "deception", + "malware", + "networking", + "honeynets", + "fuzzing", + "network analysis", + "hypervisor introspection", + "malware analysis", + "Threat Intelligence" ], - "total_projects": 8, + "total_projects": 101, "first_time": false }, { - "id": "692251ec53dd9d7326d33ef8", - "slug": "wikimedia-foundation", - "name": "Wikimedia Foundation", - "category": "Web", - "description": "Bringing free educational content to the world", - "image_url": "https://summerofcode.withgoogle.com/media/org/wikimedia-foundation-nd/2e6sdwa8tksr5sg2-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/wikimedia-foundation.webp", + "id": "692251e953dd9d7326d33ed1", + "slug": "the-jpf-team", + "name": "The JPF team", + "category": "Programming languages", + "description": "The Java Pathfinder (JPF) project was initially conceived and developed at NASA Ames Research Center in 1999. JPF was open sourced in April 2005 as one of the first ongoing NASA development projects to date, and it is now released under the Apache license, 2.0. JPF is an extensible Java virtual machine written in Java itself. It is used to create a variety of verification and debugging tools, ranging from software model checkers to test case generators using symbolic execution. JPF is a research platform and a production tool at the same time. Although JPF has major contributions from companies and government agencies, our main user community is academic - there are ongoing collaborations with more than 20 universities worldwide. The JPF team for GSoC 2024 includes researchers from NASA Ames Research Center, KTH Royal Institute of Technology - Sweden, Carnegie Mellon University, Boise State University, University of Minnesota, Charles University - Czech Republic, and Singapore University of Technology and Design.\n\nJPF is designed to be highly extensible. There are well-defined extension mechanisms, directory structures and build procedures, which keep the core relatively stable and provide suitable, well-separated testbeds for new ideas and alternative implementations. As a consequence, we host a number of such extension projects on our own, public JPF server, together with a Wiki that provides a central location for learning about, obtaining, and contributing to JPF.\n\nJPF has been used for a variety of application domains and research topics such as verification of multi-threaded applications, graphical user interfaces, networking, and distributed applications. In addition to its continued presence in academia, JPF has matured enough to support verification of production code and frameworks such as Android. JPF is constantly being extended with support for verification of new types of correctness properties and for new types of application domains.", + "image_url": "https://summerofcode.withgoogle.com/media/org/the-jpf-team-hg/rvqtnz4hyojrfgvw.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-jpf-team.webp", "logo_r2_url": null, - "url": "http://wikimediafoundation.org/", + "url": "https://github.com/javapathfinder/jpf-core/wiki", "active_years": [ 2016, 2017, @@ -17983,225 +18564,294 @@ 2021, 2022, 2023, - 2024 + 2024, + 2025, + 2026 ], "first_year": 2016, - "last_year": 2024, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "javascript", - "html", - "php", - "css", - "jquery", "android", - "ruby on rails", - "reactjs", - "python", - "Phyton" + "java", + "distributed systems", + "jvm", + "bytecode", + "smt solvers" ], "topics": [ - "web", - "wiki", - "input methods", - "mediawiki", - "i18n", - "encyclopedia", - "education", - "wikipedia", - "wikimedia", - "semantic web" + "testing", + "verification", + "model checking", + "program analysis", + "environment generation", + "symbolic execution", + "test input generation", + "formal methods", + "concurrency", + "virtual machine", + "software model checking", + "verification of concurrent systems", + "jvm" ], - "total_projects": 85, + "total_projects": 46, "first_time": false }, { - "id": "692251ec53dd9d7326d33ef9", - "slug": "wireshark", - "name": "Wireshark", - "category": "Security", - "description": "Wireshark is the world's foremost network protocol analyzer.", - "image_url": "https://lh3.googleusercontent.com/sCPLlgtH6t-mZ-ysPbk5olslH9gy2nexx6mJAP0iKV3qjO4jFiw0-HSiXEu-JD2Apw2gK3o5vcQms5CC55ulYtxGVw_760B6", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/wireshark.webp", + "id": "692251e953dd9d7326d33ed2", + "slug": "the-julia-language", + "name": "The Julia Language", + "category": "Science and medicine", + "description": "The Julia Language is an open-source, high level, and dynamic language built to be easy to use like Python while having speed near C++. As an umbrella organization, we house projects related to core Julia (the language) as well as packages from the broader Julia ecosystem.", + "image_url": "https://summerofcode.withgoogle.com/media/org/the-julia-language/49fck3n7j5aqnpwu-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-julia-language.webp", "logo_r2_url": null, - "url": "https://www.wireshark.org/", + "url": "https://julialang.org", "active_years": [ - 2020 + 2016, + 2017, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ], - "first_year": 2020, - "last_year": 2020, - "is_currently_active": false, + "first_year": 2016, + "last_year": 2026, + "is_currently_active": true, "technologies": [ "c", + "javascript", "c++", - "lua", - "qt", - "cmake", - "pcap" + "julia", + "atom", + "llvm", + "gpu", + "julialang", + "machine learning", + "data science", + "gui", + "models", + "compilers", + "garbage-collection" ], "topics": [ - "data visualization", - "network monitoring", - "network security" + "data science", + "statistics", + "linear algebra", + "numerical computation", + "integrated development environments", + "graphics", + "numerical computing", + "high performance computing", + "plotting", + "machine learning", + "scientific computing", + "technical computing", + "math", + "science", + "graphs", + "artificial intelligence" ], - "total_projects": 1, + "total_projects": 140, "first_time": false }, { - "id": "692251ec53dd9d7326d33efa", - "slug": "worldbrainio-verifying-the-internet", - "name": "WorldBrain.io - Verifying the Internet", - "category": "End user applications", - "description": "Bookmarking extension that works like your brain - full-text search everything.", - "image_url": "https://lh3.googleusercontent.com/pA0vKmLZJtik5ncIN0Z-mcLtftMElDsqtkKanjJuAp8sZ-hHEW4ER_fyAMvpC1MRkgSjHhrNeQeJYYwFzLBudRhQhuBbkD2m", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/worldbrainio-verifying-the-internet.webp", + "id": "692251e953dd9d7326d33ed3", + "slug": "the-libreswan-project", + "name": "The Libreswan Project", + "category": "Security", + "description": "Libreswan implements the IKE and IPsec standards for VPN. These standards have been created and are still maintained at the Internet Engineering Task Force (IETF) in the IPsecME Working Group. Libreswan is used as a remote access VPN as well as site-to-site and cloud encryption.", + "image_url": "https://summerofcode.withgoogle.com/media/org/the-libreswan-project/k7boxaxvirkfj1ti-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-libreswan-project.webp", "logo_r2_url": null, - "url": "http://worldbrain.io", + "url": "https://libreswan.org", "active_years": [ 2017, - 2018 + 2018, + 2019, + 2020, + 2021, + 2022, + 2026 ], "first_year": 2017, - "last_year": 2018, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "javascript", - "reactjs", - "react", - "browser extension", - "datproject" + "c", + "python", + "shell script", + "qemu", + "web", + "virtualization", + "nss", + "kvm", + "namespaces", + "shell", + "RFCs", + "kernel", + "libevent" ], "topics": [ - "search", - "fake-news", - "misinformation", - "digital knowledge", - "decentralization", - "bookmarking" + "vpn", + "ipsec", + "ike", + "ipsec vpn", + "encryption", + "ikev2", + "security" ], - "total_projects": 4, + "total_projects": 10, "first_time": false - }, - { - "id": "692251ec53dd9d7326d33efb", - "slug": "xorg-foundation", - "name": "X.Org Foundation", - "category": "Media", - "description": "X Window System and related projects (Mesa, DRI, Wayland, etc.)", - "image_url": "https://summerofcode.withgoogle.com/media/org/xorg-foundation/g3sbklva7h1ksltv-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/xorg-foundation.webp", + }, + { + "id": "692251e953dd9d7326d33ed4", + "slug": "the-linux-foundation", + "name": "The Linux Foundation", + "category": "Operating systems", + "description": "The Linux Foundation is a non-profit consortium dedicated to fostering the growth of Linux. Founded in 2007 as a merger of the former Free Standards Group (FSG) and the former Open Source Developer Lab (OSDL), the LF sponsors the work of Linux creator Linus Torvalds and is supported by leading Linux and open source companies and developers from around the world. The Linux Foundation promotes, protects and standardizes Linux by providing unified resources and services needed for open source to successfully compete with closed platforms. For more see our [About page](https://www.linuxfoundation.org/about/). All software produced by us is free software published under OSI-approved licenses. See project ideas page for the license used by each project.", + "image_url": "https://summerofcode.withgoogle.com/media/org/the-linux-foundation/ydeu9rliawhe6of9-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-linux-foundation.webp", "logo_r2_url": null, - "url": "https://www.x.org", + "url": "http://www.linuxfoundation.org/", "active_years": [ 2016, 2017, 2018, 2019, 2020, + 2021, 2022, - 2023 + 2023, + 2024, + 2025, + 2026 ], "first_year": 2016, - "last_year": 2023, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ "c", - "opengl", + "python", + "mysql", "c++", - "vulkan", - "opencl", - "x11", - "wayland", - "DRM" + "cups", + "gtk", + "ipp", + "linux", + "ai", + "fuzz-testing" ], "topics": [ - "graphics", - "graphics stack", - "operating system", - "3d", - "video", - "3d acceleration", - "media acceleration", - "2d acceleration", - "windowing system", - "graphic stack", - "2d/3d graphics", - "windowing systems", - "testing/ci", - "gpu", - "drivers", - "kernel" + "kernel", + "wireless", + "printing", + "lsb", + "spdx", + "wireguard", + "automotive", + "iio", + "zephyr" ], - "total_projects": 19, + "total_projects": 137, "first_time": false }, { - "id": "692251ec53dd9d7326d33efc", - "slug": "xmpp-standards-foundation", - "name": "XMPP Standards Foundation", + "id": "692251e953dd9d7326d33ed5", + "slug": "the-mifos-initiative", + "name": "The Mifos Initiative", "category": "End user applications", - "description": "XSF develops an open-standard messaging protocol", - "image_url": "https://summerofcode.withgoogle.com/media/org/xmpp-standards-foundation/1qfi0ofcfmb8qin8-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/xmpp-standards-foundation.webp", + "description": "We are a global 501(c)3 fintech non-profit leveraging the cloud, mobile & open source community to democratize financial services worldwide and digitally transform the world’s 3 billion poor and underbanked. Mifos has pioneered open source banking technology for the past fifteen years transforming the entire sector at each major stage of evolution from microfinance to financial inclusion to digital financial services and now embedded finance. Mifos guides the open source community, steers the roadmap, and stewards the vibrant ecosystem of organizations building solutions on its open platform. Our building blocks for banking, recognized as digital public goods, make core banking commoditized infrastructure, empowering any organization, anywhere to embed any financial service to any customer via any channel. These building blocks provide the common functionalities for creating customers, managing wallets, savings and loan accounts, orchestrating payments, and maintaining the financial ledger & reports. More than 65 million clients are reached by 500+ financial institutions across 70 countries using solutions powered by our APIs.", + "image_url": "https://summerofcode.withgoogle.com/media/org/the-mifos-initiative/etmiqn0lkvfxvm5p-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-mifos-initiative.webp", "logo_r2_url": null, - "url": "https://xmpp.org/", + "url": "https://mifos.org", "active_years": [ + 2016, 2017, + 2018, 2019, 2020, 2022, 2023, - 2024 + 2024, + 2025, + 2026 ], - "first_year": 2017, - "last_year": 2024, - "is_currently_active": false, + "first_year": 2016, + "last_year": 2026, + "is_currently_active": true, "technologies": [ + "mysql", "javascript", + "android", "java", - "c++", - "xmpp", - "erlang", - "lua", - "asynchronous i/o", - "python 3", - "vala", - "webrtc", - "go", - "swift", - "dart", - "Objective C", - "gtk" + "angularjs", + "spring", + "angular", + "kotlin" ], "topics": [ - "instant messaging", - "communications", - "social", - "chat", - "messaging", - "realtime communications", - "machine-to-machine", - "internet of things", - "xmpp", - "realtime communication", - "voip", - "WebRTC", - "Jingle", - "Real-Time Communication" + "big data", + "cloud", + "mobile", + "fintech", + "financial inclusion", + "mobile banking", + "digital financial services", + "microfinance", + "web", + "ai", + "artificial intelligence" ], - "total_projects": 11, + "total_projects": 102, "first_time": false }, { - "id": "692251ec53dd9d7326d33efd", - "slug": "xwiki", - "name": "XWiki", - "category": "Web", - "description": "The Advanced Open Source Enterprise Wiki", - "image_url": "https://summerofcode.withgoogle.com/media/org/xwiki/ea9akuy6esnffmuk-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/xwiki.webp", + "id": "692251e953dd9d7326d33ed6", + "slug": "the-monarch-initiative", + "name": "The Monarch Initiative", + "category": "End user applications", + "description": "An informatics platform for translational disease research", + "image_url": "https://lh3.googleusercontent.com/KXWjAAyvRstHYIYcVJmU2Ogrvo2mYiSBieLdjjtOYi5jhMqninkA9k_MPvl8rMg-8U0XIW4KKx46fSDGxi3gnfXokQnBPu_D", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-monarch-initiative.webp", "logo_r2_url": null, - "url": "https://www.xwiki.org/", + "url": "http://www.monarchinitiative.org", + "active_years": [ + 2016 + ], + "first_year": 2016, + "last_year": 2016, + "is_currently_active": false, + "technologies": [ + "javascript", + "semantic web", + "text mining", + "named entity recognition", + "ontologies" + ], + "topics": [ + "embeddable widget", + "rare disease", + "data refinement" + ], + "total_projects": 1, + "first_time": false + }, + { + "id": "692251e953dd9d7326d33ed7", + "slug": "the-netbsd-foundation", + "name": "The NetBSD Foundation", + "category": "Operating systems", + "description": "NetBSD is a free, fast, secure, and highly portable Unix-like Open Source operating system. It is available for a wide range of platforms, from large-scale servers and powerful desktop systems to handheld and embedded devices. Its clean design and advanced features make it excellent for use in both production and research environments, and the source code is freely available under a business-friendly license. NetBSD is developed and supported by a large and vivid international community. Many applications are readily available through pkgsrc, the NetBSD Packages Collection.", + "image_url": "https://summerofcode.withgoogle.com/media/org/the-netbsd-foundation/gi3vozsqpecopqku-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-netbsd-foundation.webp", + "logo_r2_url": null, + "url": "https://www.NetBSD.org/", "active_years": [ 2016, 2017, @@ -18210,1103 +18860,1059 @@ 2020, 2021, 2022, - 2023 + 2023, + 2024, + 2025, + 2026 ], "first_year": 2016, - "last_year": 2023, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "javascript", - "java", - "html5", - "css3", - "velocity", - "css" + "networking", + "kernel", + "bsd", + "c programming", + "security", + "arm", + "network stack", + "virtualization", + "filesystems", + "mips", + "c", + "bsd make", + "make", + "shell script", + "bsd unix", + "unix" ], "topics": [ - "web development", - "web platform and services", - "wiki", - "platform", - "extensions", - "web applications", - "structured data" + "operating systems", + "package system", + "package management", + "free and open source software", + "general purpose os", + "real unix", + "kernel", + "packaging", + "userland", + "unix", + "bsd" ], - "total_projects": 12, + "total_projects": 38, "first_time": false }, { - "id": "692251ec53dd9d7326d33efe", - "slug": "xapian-search-engine-library", - "name": "Xapian Search Engine Library", - "category": "Data", - "description": "Fast, scalable and flexible search", - "image_url": "https://lh3.googleusercontent.com/QXpt9FkvyIQdMujj953yvmn3QVDdc1AHiD_zEQ149IzojkxNszscsJyF_oEa664SMOY0xjPWYX2CI4EKqIRvATdOAgwZTw", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/xapian-search-engine-library.webp", + "id": "692251ea53dd9d7326d33ee2", + "slug": "the-ns-3-network-simulator-project", + "name": "The ns-3 Network Simulator Project", + "category": "Science and medicine", + "description": "Are you interested in contributing to a widely-used performance evaluation tool for computer networking research? ns-3 is a *discrete-event, packet-level network simulator* with an emphasis on networking research and education. Users of ns-3 can construct simulations of computer networks using models of traffic generators, protocols such as TCP/IP, and devices and channels such as Wi-Fi and LTE, and analyze or visualize the results. Simulation plays a vital role in the research and education process, because of the ability for simulations to obtain reproducible results (particularly for wireless protocol design), scale to large networks, and study systems that have not yet been implemented. A particular emphasis in ns-3 is a high degree of realism in the models (including frameworks for using real application and kernel code) and integration of the tool with virtual machine environments and testbeds. Very large scale simulations are possible; simulations of hundreds of millions of nodes have been published. ns-3 has been in development since 2005 and has been making regular releases since June 2008. The simulator is written in C++, with bindings for Python scripting, and uses the CMake build system. We use a GPLv2 licensing model and heavily use mailing lists and Zulip chat, but typically not other social media.", + "image_url": "https://summerofcode.withgoogle.com/media/org/the-ns-3-network-simulator-project/0zmaec44y4jcfuj2-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-ns-3-network-simulator-project.webp", "logo_r2_url": null, - "url": "https://xapian.org/", + "url": "https://www.nsnam.org", "active_years": [ - 2016, 2017, 2018, 2019, - 2020 + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ], - "first_year": 2016, - "last_year": 2020, - "is_currently_active": false, + "first_year": 2017, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "android", + "python", "c++", - "golang", - "unicode", - "swig", - "linux" + "c", + "python 3", + "django" ], "topics": [ - "machine learning", - "search", - "information retrieval", - "linguistics", - "integration", - "indexing" + "networking", + "simulation", + "computer networking", + "research and development", + "network simulation", + "research", + "emulation", + "network analysis" ], - "total_projects": 15, + "total_projects": 34, "first_time": false }, { - "id": "692251ec53dd9d7326d33eff", - "slug": "xen-project", - "name": "Xen Project", + "id": "new_2026_the-openroad-initiative", + "slug": "the-openroad-initiative", + "name": "The OpenROAD Initiative", "category": "Infrastructure and cloud", - "description": "Bringing the power of virtualization everywhere", - "image_url": "https://lh3.googleusercontent.com/8-1iv11qUH3NQh51RUUucz5KaFc-xnirXU3Bsd_oQfGzen68L0H4YvyGdbDuwZqLRhiBRKjAJ_XTkzdJiMMvJTKKb94AmQ", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/xen-project.webp", + "description": "ORI is a 501(c)(3) nonprofit that provides long-term stewardship, governance, and ecosystem leadership for the OpenROAD open-source EDA ecosystem.\nOur Vision: Making chip design open and accessible to all—building a collaborative ecosystem driven by transparency and shared innovation.\n\nOur Mission: To advance and sustain the open-source EDA ecosystem by fostering collaborative innovation across research, education, and industry—transforming ideas into silicon.", + "image_url": "https://summerofcode.withgoogle.com/media/org/the-openroad-initiative/wsxrroe08v4rdaga-360.png", + "img_r2_url": "https://summerofcode.withgoogle.com/media/org/the-openroad-initiative/wsxrroe08v4rdaga-360.png", "logo_r2_url": null, - "url": "http://xenproject.org/", + "url": "https://www.openroadinitiative.org", "active_years": [ - 2017 + 2026 ], - "first_year": 2017, - "last_year": 2017, - "is_currently_active": false, + "first_year": 2026, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "linux", - "qemu", - "free/netbsd", - "asm/c/c++", - "ocaml" + "python", + "verilog", + "c++", + "tcl", + "OpenRoad" ], "topics": [ - "virtualization", - "security", - "cloud computing", - "unikernels", - "embedded/automotive" + "ASIC design", + "OpenROAD chip design", + "Open EDA", + "Open-source Design", + "LLM chip design" ], - "total_projects": 2, - "first_time": false + "total_projects": 0, + "first_time": true }, { - "id": "692251ec53dd9d7326d33f00", - "slug": "xfce", - "name": "Xfce", - "category": "Operating systems", - "description": "Lightweight and flexible linux desktop environment", - "image_url": "https://summerofcode.withgoogle.com/media/org/xfce/jp4avjju3s9gfqos-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/xfce.webp", + "id": "692251ea53dd9d7326d33ed8", + "slug": "the-p4-language-consortium", + "name": "The P4 Language Consortium", + "category": "Programming languages", + "description": "Programming Protocol-independent Packet Processors (P4) is a domain-specific language for network devices, specifying how data plane devices (switches, NICs, routers, filters, etc.) process packets.\n\nBefore P4, vendors had total control over the functionality supported in the network. And since networking silicon determined much of the possible behavior, silicon vendors controlled the rollout of new features (e.g., VXLAN), and rollouts took years.\n\nP4 turns the traditional model on its head. Application developers and network engineers can now use P4 to implement specific behavior in the network, and changes can be made in minutes instead of years.", + "image_url": "https://summerofcode.withgoogle.com/media/org/the-p4-language-consortium/tru8mncy4zqlbxhe.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-p4-language-consortium.webp", "logo_r2_url": null, - "url": "https://www.xfce.org/", + "url": "https://p4.org/", "active_years": [ - 2021, - 2022 + 2024, + 2025, + 2026 ], - "first_year": 2021, - "last_year": 2022, - "is_currently_active": false, + "first_year": 2024, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "c", - "python", - "javascript", - "gtk", - "vala" + "llvm", + "c++", + "mlir", + "ebpf", + "Z3", + "linux kernel" ], "topics": [ - "gui", - "desktop environment", - "desktop", - "customization" + "networking", + "programming language", + "compiler", + "AI/ML Networking", + "networking security" ], - "total_projects": 5, + "total_projects": 9, "first_time": false }, { - "id": "692251ed53dd9d7326d33f01", - "slug": "xi-editor", - "name": "Xi Editor", - "category": "End user applications", - "description": "A modern text editor with a backend written in Rust.", - "image_url": "https://lh3.googleusercontent.com/R82mVJvjn_-GopH6nXsXTMa2Wap1X9NiuFt5_Lxuz0bkiLSfJVWm4MF1n9IdahgVW4gmt6XTNLV9p8dh09a9xOHm4Rddnww", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/xi-editor.webp", + "id": "692251ea53dd9d7326d33ed9", + "slug": "the-palisadoes-foundation", + "name": "The Palisadoes Foundation", + "category": "Social and communication", + "description": "Social media and member management for non-profits", + "image_url": "https://summerofcode.withgoogle.com/media/org/the-palisadoes-foundation/d9zsxo0idjsl7kug-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-palisadoes-foundation.webp", "logo_r2_url": null, - "url": "https://xi-editor.io/", + "url": "https://www.palisadoes.org", "active_years": [ - 2018, - 2019 + 2021, + 2022, + 2023, + 2024, + 2025 ], - "first_year": 2018, - "last_year": 2019, + "first_year": 2021, + "last_year": 2025, "is_currently_active": false, "technologies": [ - "rust", - "swift" + "javascript", + "mongodb", + "node.js", + "flutter", + "graphql", + "typescript", + "python", + "postgresql" ], "topics": [ - "ide", - "text editing", - "text editor", - "end user application" + "web development", + "cloud computing", + "social good", + "mobile apps", + "social impact", + "web", + "api", + "database", + "cloud", + "mobile", + "networking", + "ai" ], - "total_projects": 4, + "total_projects": 36, "first_time": false }, { - "id": "692251ed53dd9d7326d33f02", - "slug": "xiphorg-foundation", - "name": "Xiph.Org Foundation", - "category": "Media", - "description": "Open-source and royalty free multimedia", - "image_url": "https://lh3.googleusercontent.com/sUYk_vuqIWBRqHqbkAxs0-3G7da5-bgNyn3QgnCvYEN_0qKFsPFMfp1ekbzUKzpBSxu3JJGFrrvZpI5WDUmvj5CXlpdHrtCPphQJGgaGe8eHGQ", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/xiphorg-foundation.webp", + "id": "692251ea53dd9d7326d33eda", + "slug": "the-perl-foundation", + "name": "The Perl Foundation", + "category": "Programming languages", + "description": "Devoted to the advancement of the Perl languages through discussion and code", + "image_url": "https://lh3.googleusercontent.com/d5e0eT02pNSKppd0CTbEJ0Xk11l06hzop8Rsed1FGMr_Rc4jGxgD9dyZ4k6y_Yayy_df4aL5nTup0p5swm_vxWVvx80rthY", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-perl-foundation.webp", "logo_r2_url": null, - "url": "https://xiph.org", + "url": "https://perlfoundation.org", "active_years": [ - 2021 + 2019 ], - "first_year": 2021, - "last_year": 2021, + "first_year": 2019, + "last_year": 2019, "is_currently_active": false, "technologies": [ - "rust", - "assembly", - "arm", - "x86", - "c language" + "c", + "perl", + "regular expressions", + "perl6", + "perl5" ], "topics": [ - "video", - "video encode", - "video decode", - "multimedia" + "functional programming", + "concurrency", + "web services", + "natural language understanding", + "programming languages and development tools" ], - "total_projects": 3, + "total_projects": 4, "first_time": false }, { - "id": "692251ed53dd9d7326d33f03", - "slug": "zendalona", - "name": "Zendalona", - "category": "End user applications", - "description": "FOSS accessibility solutions for visually impaired", - "image_url": "https://summerofcode.withgoogle.com/media/org/zendalona/tqduj6nsxnnw3vpy-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/zendalona.webp", + "id": "692251ea53dd9d7326d33edb", + "slug": "the-postgres-operator", + "name": "The Postgres Operator", + "category": "Data", + "description": "A project to create an open-sourced managed Postgresql service for Kubernetes", + "image_url": "https://lh3.googleusercontent.com/CDCWRn_sSTfImUye81t4X_YbRsxATMEc51Qh-qQQvXacneOo1yS2rebLOHxilMHmOsTy_BSVTebPjc7tBniCuPqe_JVu4Q", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-postgres-operator.webp", "logo_r2_url": null, - "url": "https://zendalona.com/", + "url": "https://github.com/zalando-incubator/postgres-operator", "active_years": [ - 2024, - 2025 + 2019 ], - "first_year": 2024, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2019, + "last_year": 2019, + "is_currently_active": false, "technologies": [ - "python", - "javascript", - "android", - "gtk", - "qt" + "postgresql", + "golang", + "kubernetes", + "operator", + "patroni" ], "topics": [ - "web", - "accessibility", - "braille", - "gaming", - "AGI" + "databases", + "cloud", + "cloud databases", + "cloud native", + "database services" ], - "total_projects": 10, + "total_projects": 1, "first_time": false }, { - "id": "692251ed53dd9d7326d33f04", - "slug": "zenodo", - "name": "Zenodo", - "category": "Science and medicine", - "description": "A free and open digital archive for the long-tail of science.", - "image_url": "https://lh3.googleusercontent.com/t18I4Tabm3yIeT595HG9pbjrqUelCzLjUoWehqSCdBmLS9uk7vgPCJRQoBJRFArkA_pbyj-LZisqDm-IjCbLfKgT0Ek2UA", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/zenodo.webp", + "id": "692251ea53dd9d7326d33edc", + "slug": "the-qt-project", + "name": "The Qt Project", + "category": "Programming languages", + "description": "The Qt Project co-ordinates the development of the Qt software framework.", + "image_url": "https://lh3.googleusercontent.com/3rlqQG2e3Fuqd1T5a-jTW8-yuI06AE8ilPiN3bUEF1q-1TeCpsMk3rUKbZoz1_sKP1JgJ-lWlr5Yma9mZz1DOtc0LbCcqQ", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-qt-project.webp", "logo_r2_url": null, - "url": "https://zenodo.org", + "url": "http://wiki.qt.io/", "active_years": [ - 2017 + 2018 ], - "first_year": 2017, - "last_year": 2017, + "first_year": 2018, + "last_year": 2018, "is_currently_active": false, "technologies": [ - "python", - "postgresql", - "flask", - "angularjs", - "elasticsearch" + "opengl", + "qt", + "qml", + "c++11", + "cpp" ], "topics": [ - "web", - "machine learning", - "open science", - "content management", - "digital library" + "graphics", + "gis", + "maps", + "declarative language" ], - "total_projects": 2, + "total_projects": 1, "first_time": false }, { - "id": "692251ed53dd9d7326d33f05", - "slug": "zulip", - "name": "Zulip", - "category": "End user applications", - "description": "Organized chat for distributed teams", - "image_url": "https://summerofcode.withgoogle.com/media/org/zulip/sx5ruvwv6nyugbk7-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/zulip.webp", + "id": "692251ea53dd9d7326d33edd", + "slug": "the-rust-foundation", + "name": "The Rust Foundation", + "category": "Programming languages", + "description": "The Rust Project is a group of developers and maintainers who build and support the Rust programming language. Organised into teams, they develop new features and mantain the Rust language, its compiler and standard library, and also all kinds of infrastructure that supports Rust. This application is being made by the Rust Foundation, the legal entity for the Rust Programming language, working in close association with representatives from the Rust Project.", + "image_url": "https://summerofcode.withgoogle.com/media/org/the-rust-foundation/pplrhxvka7dufvsn.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-rust-foundation.webp", "logo_r2_url": null, - "url": "https://zulip.com/", + "url": "https://www.rust-lang.org", "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, 2024, - 2025 + 2025, + 2026 ], - "first_year": 2016, - "last_year": 2025, + "first_year": 2024, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", - "javascript", - "django", - "android", - "ios", - "react native", - "electron", - "typescript", - "css", - "flutter" + "rust" ], "topics": [ - "full stack web and mobile", - "group chat", - "high quality codebase", - "web development", - "mobile applications", - "cross-platform", - "enterprise", - "visual design", - "team chat", - "mobile", - "great developer tooling", - "chat", - "bots", - "teaching quality codebase", - "integrations" + "compilers", + "programming languages" ], - "total_projects": 135, + "total_projects": 28, "first_time": false }, { - "id": "692251ed53dd9d7326d33f06", - "slug": "zynaddsubfx", - "name": "ZynAddSubFX", - "category": "Media", - "description": "An open source musical software synthesizer with a wide range of possibilities", - "image_url": "https://lh3.googleusercontent.com/p7QK3Y5XvI87Zn_oqiI8iAtjp7lvHSIOArnAIfbhUQOR0HsP7dyWk-GXysodrPfYSpZETMrCMnid2-tHgykKz3PSPkuvcg", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/zynaddsubfx.webp", + "id": "692251ea53dd9d7326d33ede", + "slug": "the-terasology-foundation", + "name": "The Terasology Foundation", + "category": "End user applications", + "description": "Voxel world game/engine with a large focus on extensibility and developer tools", + "image_url": "https://lh3.googleusercontent.com/M0PBCc2Ddh0Ld7fkCNbaZdH-0yAdu9lgG3d39rmhGQstkM-gXLaN_C5DPPBD8TnOqkKI4GqMU7VbuAj_Qo0onNzCne6wxEANQbx5AzkhPG6_", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-terasology-foundation.webp", "logo_r2_url": null, - "url": "http://zynaddsubfx.sf.net", + "url": "https://terasology.org/", "active_years": [ - 2019 + 2016, + 2017, + 2018, + 2019, + 2020, + 2021 ], - "first_year": 2019, - "last_year": 2019, + "first_year": 2016, + "last_year": 2021, "is_currently_active": false, "technologies": [ - "c", - "c++", + "java", "opengl", - "ruby", - "midi", - "open-sound-control" + "blender", + "gradle", + "lwjgl", + "json", + "github", + "lwgjl", + "kotlin" ], "topics": [ - "visualization", - "music", - "audio", - "digital signal processing", - "user experience" + "game", + "voxel", + "minecraft", + "sandbox", + "modding", + "games", + "ai", + "graphics", + "graphics / video / audio / virtual reality", + "game engines" ], - "total_projects": 1, + "total_projects": 43, "first_time": false }, { - "id": "692251ed53dd9d7326d33f07", - "slug": "aimacode", - "name": "aimacode", - "category": "Programming languages", - "description": "Code for the book \"Artificial Intelligence: A Modern Approach\"", - "image_url": "https://lh3.googleusercontent.com/1czpR5YOvFFyaQmLr6y0uEN4jBKMaXZlKoWN64JsMjkaC5ySGpMoBiu3IO4xYrgNJLxEUO3aiFA_YStmVF5B9YDlSnK-Ol8", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/aimacode.webp", + "id": "692251ea53dd9d7326d33edf", + "slug": "the-tor-project", + "name": "The Tor Project", + "category": "Web", + "description": "Defend yourself against tracking and surveillance.", + "image_url": "https://summerofcode.withgoogle.com/media/org/the-tor-project/1w40vc9lqddvbfoa-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-tor-project.webp", "logo_r2_url": null, - "url": "https://github.com/aimacode", + "url": "https://www.torproject.org/", "active_years": [ 2016, 2017, - 2018, - 2019 + 2022, + 2023, + 2025 ], "first_year": 2016, - "last_year": 2019, + "last_year": 2025, "is_currently_active": false, "technologies": [ + "c", "python", "javascript", - "java", - "machine learning", - "artificial intelligence", - "jupyter", - "ai", - "python 3" + "golang", + "browser extensions", + "c++", + "rust", + "web" ], "topics": [ - "education", - "artificial intelligence", - "machine learning", - "open education" + "security", + "privacy", + "research", + "anonymity", + "anti-censorship", + "counter-censorship", + "free-speech", + "Human Rights", + "Surveillance" ], - "total_projects": 16, + "total_projects": 19, "first_time": false }, { - "id": "692251ed53dd9d7326d33f08", - "slug": "appleseed", - "name": "appleseed", - "category": "Media", - "description": "A modern open source rendering engine for animation and visual effects", - "image_url": "https://lh3.googleusercontent.com/fsKtYgvjsvcdf4l6Uscn9CACN6kGKEyuWCWZwl_GqZF3ZhS10gsfHpEMhwqBJEa0FOF-eJD8JWFALd1hi8LNSLAmHKHQe8Y", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/appleseed.webp", + "id": "692251ea53dd9d7326d33ee0", + "slug": "the-vega-project-at-the-university-of-washington", + "name": "The Vega Project at the University of Washington", + "category": "Web", + "description": "Declarative formats & Applications for Creating, Saving & Sharing Visualizations", + "image_url": "https://lh3.googleusercontent.com/i2lYWOG1iVw9H16hfCqxcgjdZ_mbaiJQgC8UW1lOz4cMr012o-iUbHO5ZCqfzzGdFJnHGUwOnJ9PoGIDJtpxbtnzWQiaIAQ", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-vega-project-at-the-university-of-washington.webp", "logo_r2_url": null, - "url": "https://appleseedhq.net/", + "url": "http://vega.github.io/", "active_years": [ - 2017, 2018, - 2019, - 2020 + 2019 ], - "first_year": 2017, - "last_year": 2020, + "first_year": 2018, + "last_year": 2019, "is_currently_active": false, "technologies": [ - "python", - "c++", - "qt", - "c", - "opengl", - "c++11" + "javascript", + "react", + "typescript", + "d3.js", + "d3", + "vega", + "vega-lite" ], "topics": [ - "3d", - "rendering", - "computer graphics", - "animation", - "vfx", - "mathematics", - "graphics", - "physics", - "high performance", - "simulation", - "image synthesis" + "data visualization", + "data science", + "declarative language", + "visualization grammar", + "plotting tools", + "visualization", + "data-science" ], - "total_projects": 11, + "total_projects": 4, "first_time": false }, { - "id": "692251ed53dd9d7326d33f09", - "slug": "cbioportal-for-cancer-genomics", - "name": "cBioPortal for Cancer Genomics", - "category": "Science and medicine", - "description": "Aid discovery in complex cancer genomics data", - "image_url": "https://summerofcode.withgoogle.com/media/org/cbioportal-for-cancer-genomics/fdxtjhb0urtqcyfe-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cbioportal-for-cancer-genomics.webp", + "id": "692251ea53dd9d7326d33ee1", + "slug": "the-wine-project", + "name": "The Wine Project", + "category": "Other", + "description": "Wine runs Windows applications on Linux, BSD, Solaris, macOS and Android.", + "image_url": "https://lh3.googleusercontent.com/7tIOiveWazWsdJRPKX6R-vqBrN058T695JfanWME8t1aZKBz9g69ZABf6YbAgkuWH40WyGoeikalEErOmqN8DbkS24mIQ10", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-wine-project.webp", "logo_r2_url": null, - "url": "https://www.cbioportal.org/", + "url": "https://www.winehq.org/", "active_years": [ 2016, 2017, + 2018, 2019, - 2022, - 2023, - 2024, - 2025 + 2020 ], "first_year": 2016, - "last_year": 2025, - "is_currently_active": true, + "last_year": 2020, + "is_currently_active": false, "technologies": [ - "javascript", - "java", - "web", - "html", - "big data", - "web services", - "reactjs", - "database", - "web apps", - "mysql", - "react", - "typescript" + "c", + "opengl", + "x11", + "win32", + "directx", + "vulkan" ], "topics": [ - "genomics", - "cancer", - "bioinformatics", - "biology", - "precision medicine", - "big data", - "data visualization", - "cancer research" + "desktop integration", + "compatibility", + "3d", + "directx", + "opengl", + "vulkan" ], - "total_projects": 38, + "total_projects": 4, "first_time": false }, { - "id": "692251ed53dd9d7326d33f0a", - "slug": "camicroscope", - "name": "caMicroscope", - "category": "Science and medicine", - "description": "Toolkit for cancer imaging research", - "image_url": "https://summerofcode.withgoogle.com/media/org/camicroscope/gnuvwzgnlt6gpjwy-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/camicroscope.webp", + "id": "692251ea53dd9d7326d33ee3", + "slug": "tianocore", + "name": "TianoCore", + "category": "Operating systems", + "description": "Modern, open source, UEFI BIOS firmware", + "image_url": "https://summerofcode.withgoogle.com/media/org/tianocore/klcxfxidgxhn6yan-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/tianocore.webp", "logo_r2_url": null, - "url": "https://camicroscope.github.io", + "url": "https://www.tianocore.org/", "active_years": [ - 2020, 2021, - 2023, - 2024 + 2022 ], - "first_year": 2020, - "last_year": 2024, + "first_year": 2021, + "last_year": 2022, "is_currently_active": false, "technologies": [ + "c", "python", - "javascript", - "java", - "tensorflow", - "medical imaging", - "mongodb", - "opencv", - "node.js" + "rust", + "golang", + "uefi" ], "topics": [ - "cloud", - "distributed systems", - "science and medicine", - "precision medicine", - "data integration", - "machine learning", - "data visualization", - "image analysis", - "AI/ML", - "microscopy", - "dicom pathology" + "firmware", + "uefi", + "bootloader", + "edk2", + "open system firmware", + "acpi", + "BIOS" ], - "total_projects": 13, + "total_projects": 8, "first_time": false }, { - "id": "692251ed53dd9d7326d33f0b", - "slug": "checkstyle", - "name": "checkstyle", - "category": "Programming languages", - "description": "Helps to adheres of Java coding standard", - "image_url": "https://summerofcode.withgoogle.com/media/org/checkstyle/e8ubktvaft8eljli-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/checkstyle.webp", + "id": "692251ea53dd9d7326d33ee4", + "slug": "tiled", + "name": "Tiled", + "category": "End user applications", + "description": "Tiled is a 2D engine-agnostic level editor for games. Its primary feature is to edit different types of tile maps, but it also supports free image placement as well as powerful ways to annotate levels with extra information used by the game. Tiled focuses on general flexibility while trying to stay intuitive.", + "image_url": "https://summerofcode.withgoogle.com/media/org/tiled/bat2ba3t9fujdzyn-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/tiled.webp", "logo_r2_url": null, - "url": "https://checkstyle.org", + "url": "https://www.mapeditor.org", "active_years": [ 2017, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2026 ], "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ - "java", - "antlr", - "xpath", - "artificial-intelligence" + "github", + "c++", + "qt", + "git" ], "topics": [ - "static code analysis", - "code review tool", - "coding standards", - "coding conventions", - "artificial-intelligence" + "game", + "game development", + "edit", + "editing", + "level", + "games", + "Level Editor" ], - "total_projects": 21, + "total_projects": 3, "first_time": false }, { - "id": "692251ed53dd9d7326d33f0c", - "slug": "coala", - "name": "coala", - "category": "Programming languages", - "description": "Linting and Fixing Code for All Languages", - "image_url": "https://lh3.googleusercontent.com/0PqG5lb1LsnualMXfs468WjitwnUq_jx1wefb_QF6EgC8c7LOp4DYPODanM12sQM1f7RlV4vXHaucZ8ZJ8PyiBdlE5kR8s5gQxUSsm_WoxYf", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/coala.webp", + "id": "692251eb53dd9d7326d33ee6", + "slug": "timelab-technologies-ltd", + "name": "Timelab Technologies Ltd.", + "category": "End user applications", + "description": "We help scientists understanding information in time-series", + "image_url": "https://lh3.googleusercontent.com/68Hw4cms8bhh17Ya-61UeLV_vNE3M-mrqgLCsHX3MUlQbHdx6BaeSbS1cxlcR3ajsXdmwgAtfAN46eKUxiUYyUCEMhlgN1w", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/timelab-technologies-ltd.webp", "logo_r2_url": null, - "url": "https://coala.io", + "url": "http://www.timelabtechnologies.com/", "active_years": [ - 2017, - 2018, - 2019, - 2021 + 2016 ], - "first_year": 2017, - "last_year": 2021, + "first_year": 2016, + "last_year": 2016, "is_currently_active": false, "technologies": [ "python", - "django", - "python 3", - "antlr", - "emberjs", - "reactjs", - "java", - "haskell", - "docker", - "angularjs" + "javascript" ], "topics": [ - "code analysis", - "devops", - "chatops", - "language server", - "dependency management", - "static code analysis", - "chat" + "mathematics", + "astronomy", + "algorithm prototyping/visualization", + "time series" ], - "total_projects": 37, + "total_projects": 3, "first_time": false }, { - "id": "692251ed53dd9d7326d33f0d", - "slug": "coreboot", - "name": "coreboot", - "category": "Operating systems", - "description": "Fast, secure and flexible BIOS firmware", - "image_url": "https://summerofcode.withgoogle.com/media/org/coreboot/aq8ne4b9ot7xq8rz-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/coreboot.webp", + "id": "692251eb53dd9d7326d33ee5", + "slug": "timvideosus", + "name": "TimVideos.us", + "category": "Media", + "description": "Software & hardware for recording + streaming conferences, meetings, user groups", + "image_url": "https://lh3.googleusercontent.com/EXMCUdZcXXqwFdusWDrQjwkUxDqRcXVzLPvWsjxJdUGKny0uSSvP361cqSqBESHB0zcKHwfQFtzxt71nUqy21b2jEfykUJ0", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/timvideosus.webp", "logo_r2_url": null, - "url": "https://coreboot.org", + "url": "https://code.timvideos.us", "active_years": [ 2016, - 2019, - 2020, - 2022, - 2023 + 2017, + 2018, + 2019 ], "first_year": 2016, - "last_year": 2023, + "last_year": 2019, "is_currently_active": false, "technologies": [ "c", - "assembly", - "open hardware", - "assembler", - "arm", - "x86" + "python", + "verilog", + "fpga", + "vhdl" ], "topics": [ + "embedded hardware", + "live streaming", + "video capture", "hardware", - "embedded systems", - "real time", - "drivers", - "firmware", - "boot loader", - "BIOS" + "embedded", + "video", + "fpga" ], - "total_projects": 11, + "total_projects": 6, "first_time": false }, { - "id": "692251ee53dd9d7326d33f0e", - "slug": "dora-rs", - "name": "dora-rs", - "category": "End user applications", - "description": "Simplify robotic apps with low latency & distributed dataflow", - "image_url": "https://summerofcode.withgoogle.com/media/org/dora-rs-tb/u8emntrmqq6vgcih-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/dora-rs.webp", + "id": "692251e853dd9d7326d33ec9", + "slug": "tla", + "name": "TLA+", + "category": "Programming languages", + "description": "TLA+ is a formal specification language used to design, model and verify systems", + "image_url": "https://lh3.googleusercontent.com/Pc9QkyJIXikZm1XmX5tA4LUsw2AquRp4RRrLKK15YSrDFhV3LFrs4QUiMxFcFbk1-ZPsBR1pB-QbCMOXwKDFkG3tNNeIc20", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/tla.webp", "logo_r2_url": null, - "url": "https://dora-rs.ai", + "url": "https://lamport.azurewebsites.net/tla/tla.html", "active_years": [ - 2025 + 2018 ], - "first_year": 2025, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2018, + "last_year": 2018, + "is_currently_active": false, "technologies": [ - "python", - "ros", - "c++", - "rust", - "Autonomous drive" + "java", + "ocaml", + "tla+", + "eclipse", + "smt" ], "topics": [ - "middleware", - "Embodied AI", - "Python Robotics", - "Autonomous Drive", - "Robot Dataflow" + "algorithms", + "formal methods" ], - "total_projects": 2, - "first_time": true + "total_projects": 1, + "first_time": false }, { - "id": "692251ee53dd9d7326d33f0f", - "slug": "eunomia-bpf", - "name": "eunomia-bpf", - "category": "Operating systems", - "description": "Unleash eBPF Potential with our tools and runtimes", - "image_url": "https://summerofcode.withgoogle.com/media/org/eunomia-bpf/xnyotwpqgsmqh6xf.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/eunomia-bpf.webp", + "id": "692251eb53dd9d7326d33ee7", + "slug": "tokio", + "name": "Tokio", + "category": "Programming languages", + "description": "The asynchronous run-time for the Rust programming language.", + "image_url": "https://lh3.googleusercontent.com/tc2ZKsdIMEMLaSli3YedP89ReiJyAsAakvW47gqZ-cW2MdnxI_1hyKH-vuw9BxYZTutH86kFKynVo4OuxgSBmh19fEsaIm8", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/tokio.webp", "logo_r2_url": null, - "url": "https://eunomia.dev/", + "url": "https://tokio.rs", "active_years": [ - 2024 + 2019 ], - "first_year": 2024, - "last_year": 2024, + "first_year": 2019, + "last_year": 2019, "is_currently_active": false, "technologies": [ - "linux", - "llvm", - "ebpf", - "webassembly" + "rust", + "tokio_rs" ], "topics": [ - "cloud", - "OS", - "runtime" + "concurrency", + "networking", + "windows", + "rust" ], - "total_projects": 2, + "total_projects": 1, "first_time": false }, { - "id": "692251ee53dd9d7326d33f10", - "slug": "freifunk", - "name": "freifunk", - "category": "Operating systems", - "description": "Free and open wireless networks", - "image_url": "https://summerofcode.withgoogle.com/media/org/freifunk/bpcbaeecusvfzbzk-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/freifunk.webp", + "id": "692251eb53dd9d7326d33ee8", + "slug": "tungsten-fabric", + "name": "Tungsten Fabric", + "category": "Infrastructure and cloud", + "description": "Secure software defined networking for any cloud, anywhere.", + "image_url": "https://lh3.googleusercontent.com/SQUdOZ93rgGC711-JWBbLWzxGbC7Pds8BTbQw4rwEEVEw-RfAxF-T0dRwu7uG4SzQLb6pKh4zuXmSZvZMEHJPTKuaTv4_yY", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/tungsten-fabric.webp", "logo_r2_url": null, - "url": "https://freifunk.net/en", + "url": "https://tungsten.io", "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2021, - 2022, - 2023, - 2024, - 2025 + 2019 ], - "first_year": 2016, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2019, + "last_year": 2019, + "is_currently_active": false, "technologies": [ - "c", - "lua", - "openwrt", - "olsr", - "batman", - "javascript", - "shell script", - "html", - "css", - "lede/openwrt", "python", - "ruby", - "shell", + "linux", + "c", "c++", - "json", - "rust", - "gnu/linux" + "networking", + "kubernetes" ], "topics": [ - "monitoring", - "user interface", - "wifi", - "mesh", - "routing protocols", - "wireless", - "routing", - "firmware development", - "embedded systems", - "network", - "web applications", - "software-defined networking", - "web apps", + "security", "software defined networking", - "wireless communications", - "open hardware", - "wireless networks", - "decentralized", - "federation", - "security" + "routing", + "multicloud" ], - "total_projects": 74, + "total_projects": 1, "first_time": false }, { - "id": "692251ee53dd9d7326d33f11", - "slug": "grpc", - "name": "gRPC", - "category": "Infrastructure and cloud", - "description": "A high performance, open-source universal RPC framework", - "image_url": "https://lh3.googleusercontent.com/PodIa074YoVZQnSBOUczwt9ubSMoI6wuHOHILt4batJpSJzp1K9rq3y6xleifWLBgcI9SmtkBEZsA7_Ag6vckvQG672e2Q", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/grpc.webp", + "id": "692251eb53dd9d7326d33ee9", + "slug": "typelevel", + "name": "Typelevel", + "category": "Programming languages", + "description": "Typelevel is an ecosystem of projects and a community of people united to foster an inclusive, welcoming, and safe environment around functional programming in Scala. We work together to develop projects that apply functional programming to challenging problems relevant in industry. Our community culture embraces curiosity and mentoring and we don't shy away from experimenting with new and exciting ideas. Most of all, we love to make programming joyful and social.", + "image_url": "https://summerofcode.withgoogle.com/media/org/typelevel/hxlcctbqekguxcxx.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/typelevel.webp", "logo_r2_url": null, - "url": "https://grpc.io", + "url": "https://typelevel.org", "active_years": [ - 2016, - 2018 + 2025, + 2026 ], - "first_year": 2016, - "last_year": 2018, - "is_currently_active": false, + "first_year": 2025, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "distributed systems", - "networking", - "micro-services", - "scalability", - "http/2", - "cloud", - "microservices", - "grpc" + "linux", + "node.js", + "jvm", + "scala", + "wasm" ], "topics": [ + "web", + "functional programming", "cloud", - "micro services", - "full stack web and mobile", - "distributed systems", - "apis", - "middleware", - "communications", - "microservices", - "infrastructure", - "distributed networks" + "AI/ML", + "cats" ], - "total_projects": 3, + "total_projects": 2, "first_time": false }, { - "id": "692251ee53dd9d7326d33f12", - "slug": "gvisor", - "name": "gVisor", - "category": "Operating systems", - "description": "An application kernel for containers that provides efficient defense-in-depth", - "image_url": "https://lh3.googleusercontent.com/67i_33JFM4ih5X_j_67THr9VDba9TlPP7HYDEI5Z9pOzhMot95CBMb9ygcqFryQe-urdXKPGbDqvgDGBUXz1mAaVHN7D555ffcCjekKGx5ny", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gvisor.webp", + "id": "692251eb53dd9d7326d33eea", + "slug": "uc-ospo", + "name": "UC OSPO", + "category": "Science and medicine", + "description": "The UCSC Open Source Program Office (OSPO) and the UC OSPO Network supports open source work throughout the University of California system. Beginning in 2022, the UCSC OSPO took over the programmatic responsibilities of the UCSC Center for Research in Open Source Software (CROSS), including mentorship activities such as GSoC. The UCSC OSPO creates partnerships with stakeholders within and outside the UC system in order to help students learn from open source communities, support scientists in using open source to accelerate research efforts, and connect students and scientists with sponsors from industry, government, and foundations. The OSPO helps bridge the gap between academic research and successful open source projects by promoting innovative projects maintained by UC-affiliated scientists and researchers. We support the transfer of cutting-edge technology resulting from UC-originating research to industry via successful open source projects. Due to the multi-campus nature of our current efforts, the projects we support and promote cover a wide range of topics and technologies - including:\n\n- Open Source Hardware and Chip Design\n- AI / Machine Learning\n- Storage Systems and Devices\n- Data Science and visualization\n- Scientific Computing & Research Infrastructure\n- Reproducibility\n- Cloud-based computation\nAll of our mentors are scientists and researchers who are actively involved in one or more of these open source projects.", + "image_url": "https://summerofcode.withgoogle.com/media/org/center-for-research-in-open-source-software-cross/ndbkr7fqcqp4nguq-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/uc-ospo.webp", "logo_r2_url": null, - "url": "http://gvisor.dev", + "url": "https://ucsc-ospo.github.io/osre26/", "active_years": [ - 2021 + 2023, + 2024, + 2025, + 2026 ], - "first_year": 2021, - "last_year": 2021, - "is_currently_active": false, + "first_year": 2023, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "linux", + "python", "c", "c++", - "golang", - "posix" + "visualization", + "VLSI", + "ros/gazebo", + "javascript", + "machine learning", + "c/c++", + "pytorch" ], "topics": [ - "virtualization", - "sandbox", - "kernel", - "containers" + "hardware", + "data science", + "reproducibility", + "storage systems", + "data management", + "education", + "bioinformatics", + "AI/ML", + "research software" ], - "total_projects": 1, + "total_projects": 47, "first_time": false }, { - "id": "692251ee53dd9d7326d33f13", - "slug": "gprmax", - "name": "gprMax", + "id": "692251eb53dd9d7326d33eeb", + "slug": "ucsc-xena", + "name": "UCSC Xena", "category": "Science and medicine", - "description": "Simulating electromagnetic wave propagation", - "image_url": "https://summerofcode.withgoogle.com/media/org/gprmax/vm8kavyxz3csja8f-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gprmax.webp", + "description": "Helping biologists see the bigger picture in diverse cancer genomics data", + "image_url": "https://lh3.googleusercontent.com/hlRCFceco1ZLWp8ayUER9wOB1bqQKT8k5afqeeXRS8otR1s34Gds8dRajI3_W3-DIadsncH4GmxzV6AomZZiipAiKnsM9hA", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ucsc-xena.webp", "logo_r2_url": null, - "url": "https://www.gprmax.com", + "url": "http://xena.ucsc.edu", "active_years": [ - 2019, - 2021, - 2023, - 2024, - 2025 + 2017, + 2018, + 2019 ], - "first_year": 2019, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2017, + "last_year": 2019, + "is_currently_active": false, "technologies": [ "python", - "cython", - "cuda", - "openmp", - "mpi", - "opencl" + "javascript", + "react", + "clojure", + "d3", + "jvm" ], "topics": [ - "science", - "engineering", - "geophysics", - "electromagnetics", - "ground penetrating radar", - "optimisation" + "genomics", + "data visualization", + "cancer", + "bioinformatics", + "web application", + "web applications", + "scientific visualization", + "cancer research" ], - "total_projects": 18, + "total_projects": 3, "first_time": false }, { - "id": "692251ee53dd9d7326d33f14", - "slug": "illumosorg", - "name": "illumos.org", - "category": "Operating systems", - "description": "Open Source successor of OpenSolaris", - "image_url": "https://lh3.googleusercontent.com/2LrctGY6XCtdGS2LOqG1NiguqpMf52KyJWQHkEIBc1we3NM2GYoQUyEZZDFKH-6iN5bX0zBlVOb9WPTHm-OYE7VsilFdlQ", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/illumosorg.webp", + "id": "692251eb53dd9d7326d33eec", + "slug": "unicode-inc", + "name": "Unicode, Inc.", + "category": "Programming languages", + "description": "Bringing internationalization to software!", + "image_url": "https://summerofcode.withgoogle.com/media/org/unicode-inc/cev3zg8tjatag4mt.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/unicode-inc.webp", "logo_r2_url": null, - "url": "http://illumos.org", + "url": "https://home.unicode.org", "active_years": [ - 2017 + 2024, + 2025 ], - "first_year": 2017, - "last_year": 2017, + "first_year": 2024, + "last_year": 2025, "is_currently_active": false, "technologies": [ - "unix", - "dtrace", - "illumos", - "openzfs", - "zfs" + "java", + "c++", + "rust", + "unicode" ], "topics": [ - "virtualization", - "networking", - "kernel", - "drivers", - "storage" + "compilers", + "linguistics", + "languages", + "internationalization" ], - "total_projects": 0, + "total_projects": 9, "first_time": false }, { - "id": "692251ee53dd9d7326d33f15", - "slug": "jquery-foundation", - "name": "jQuery Foundation", - "category": "Web", - "description": "jQuery Foundation - home of jQuery, Dojo and many other JavaScript libraries", - "image_url": "https://lh3.googleusercontent.com/3y_twCisHNday397Rh2bgpt0BMwEATMtgr6MxmhH_mT_HT_mqCKRULvmYK7FJLar9czJhWnh_LRCk3_vguTf9LkXMDUcsEQ", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jquery-foundation.webp", + "id": "692251eb53dd9d7326d33eed", + "slug": "unikraft", + "name": "Unikraft", + "category": "Operating systems", + "description": "Unikraft is a fast, secure and open-source Unikernel Development Kit.\n\nBy tailoring the operating system, libraries and configuration to the particular needs of your application, it vastly reduces virtual machine and container image sizes to a few KBs, provides blazing performance, and drastically cuts down your software stack’s attack surface.\n\nUnikraft is developed in the spirit of open source: public discussions on Discord, open source licensing model using BSD-3-Clause, public development and management on GitHub.\n\nIt does so in the context of a vibrant community consisting of highly skilled software engineers, researchers, teachers, students and hobbyists. Periodic meetings, hackathons and a consistent presence in open source events are central to the well functioning of the community.\n\nWe use guidelines for development and maintenance to ensure the creation of high quality code.\n\nPublic releases are planned to happen once every two months. In general, we aim for a public release to happen at the last Monday of each odd month (January, March, May, etc.)\n\nWe welcome contributors and users on Discord and on GitHub. If you are looking for a fun technical project in the area of operating systems, virtualization, come aboard on Discord.", + "image_url": "https://summerofcode.withgoogle.com/media/org/unikraft/5nx7anuq3iixdm54.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/unikraft.webp", "logo_r2_url": null, - "url": "https://jquery.org/", + "url": "https://unikraft.org/", "active_years": [ - 2016 + 2022, + 2023, + 2024, + 2025, + 2026 ], - "first_year": 2016, - "last_year": 2016, - "is_currently_active": false, + "first_year": 2022, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "javascript", - "html5", - "css", - "jquery" + "c", + "python", + "xen", + "kvm", + "assembly language", + "golang" ], "topics": [ - "unit testing", - "software testing", - "framework development", - "user interface components", - "event handling" + "virtualization", + "cloud", + "software reuse", + "software configurability" ], - "total_projects": 7, + "total_projects": 16, "first_time": false }, { - "id": "692251ee53dd9d7326d33f16", - "slug": "kro-kube-resource-orchestrator", - "name": "kro | Kube Resource Orchestrator", - "category": "Infrastructure and cloud", - "description": "Simplify Kubernetes API and resource management.", - "image_url": "https://summerofcode.withgoogle.com/media/org/kro-kube-resource-orchestrator/qf9flxp0iswvhnli-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kro-kube-resource-orchestrator.webp", + "id": "new_2026_united-nations-office-of-information-communication-technology", + "slug": "united-nations-office-of-information-communication-technology", + "name": "United Nations Office of Information Communication Technology", + "category": "End user applications", + "description": "The Open Source Team at the United Nations, based within the UN Office of Information and Communications Technology (UNOICT), supports the development and adoption of open source technologies across the UN system and in collaboration with external partners. The team works to advance digital public goods that address global challenges such as climate resilience, sustainable food systems, and inclusive digital participation.\nThrough initiatives including “Reboot the Earth” and other open source collaborations, our team enables early-stage ideas to mature into scalable, production-ready solutions. Our work emphasizes open collaboration, responsible use of emerging technologies such as AI, focusing on deployment in real-world, resource-constrained environments. The Open Source Team also provides technical guidance, mentorship, and governance support to ensure projects not only align with UN values but also prioritize long-term sustainability.\nDisclaimer: All Summer of Code work is conducted independently. Contributors are not considered United Nations employees or official representatives.", + "image_url": "https://summerofcode.withgoogle.com/media/org/united-nations-office-of-information-communication-technology/bl0zv6y6mjmzuybz-360.png", + "img_r2_url": "https://summerofcode.withgoogle.com/media/org/united-nations-office-of-information-communication-technology/bl0zv6y6mjmzuybz-360.png", "logo_r2_url": null, - "url": "https://kro.run/", + "url": "https://unite.un.org/en", "active_years": [ - 2025 + 2026 ], - "first_year": 2025, - "last_year": 2025, + "first_year": 2026, + "last_year": 2026, "is_currently_active": true, "technologies": [ - "prometheus", - "golang", - "kubernetes", - "controller-runtime", - "CEL" + "python", + "javascript", + "css" ], "topics": [ - "automation", - "kubernetes", - "configuration management", - "cloud native" + "Technology", + "innovation" ], - "total_projects": 2, + "total_projects": 0, "first_time": true }, { - "id": "692251ee53dd9d7326d33f17", - "slug": "languagetoolorg", - "name": "languagetool.org", - "category": "End user applications", - "description": "Style and grammar checker", - "image_url": "https://lh3.googleusercontent.com/1r4hXN5QZPYz4OQt89c6TTc18tP_C2OpV3gnpaS6c6xHh2T8UtGURUTZ99EI4MDMrTl9r453uP0eNUl_xakmjIWuD7qshCG5", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/languagetoolorg.webp", + "id": "692251eb53dd9d7326d33eee", + "slug": "unitexgramlab", + "name": "Unitex/GramLab", + "category": "Programming languages", + "description": "Unitex/GramLab is an open source, multilingual corpus processing suite", + "image_url": "https://lh3.googleusercontent.com/eRTNtDGJfmj06lZRbxDWDv1KHDjkbSnrDBZse3rWYuDNDPLNc7jyebqWSmK1O_yl_gLmeQOInzBjVrV3AaAty2Psi16zB6M", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/unitexgramlab.webp", "logo_r2_url": null, - "url": "https://languagetool.org", + "url": "http://unitexgramlab.org", "active_years": [ - 2018 + 2016 ], - "first_year": 2018, - "last_year": 2018, + "first_year": 2016, + "last_year": 2016, "is_currently_active": false, "technologies": [ - "javascript", "java", - "machine learning", - "tensorflow", - "ai" + "c++" ], "topics": [ - "education", - "artificial intelligence", - "language", - "nlp", - "edtech" + "natural language processing", + "local grammars", + "finite state automata", + "corpus annotation", + "multilingual language resources" ], "total_projects": 2, "first_time": false }, { - "id": "692251ee53dd9d7326d33f18", - "slug": "libcamera", - "name": "libcamera", - "category": "Media", - "description": "Provide an open source camera stack for linux", - "image_url": "https://summerofcode.withgoogle.com/media/org/libcamera/p4cgbqxrhkw3igiv-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/libcamera.webp", + "id": "692251eb53dd9d7326d33eef", + "slug": "uramaki-lab", + "name": "Uramaki LAB", + "category": "End user applications", + "description": "The RUXAILAB is an open-source organization dedicated to democratizing usability and accessibility evaluation through the use of Artificial Intelligence. We provide a suite of AI-powered tools that enable remote usability and accessibility testing, ensuring that professionals and researchers can analyze user experience through different methodologies.\n\nOur platform supports multiple methods such as User Testing, Heuristic Evaluation, Eye-Tracking system, Sentimental Analysis, a semi-automated tool for prototyping virtual reality environments in 2D, and heatmap analysis for advanced data extraction. \n\nOur mission is to eliminate financial and technological barriers to usability and accessibility research, making it possible for anyone, anywhere to set up their own usability lab at zero cost.\n\nWe invite developers, designers, and researchers to join us in expanding our toolkit, refining our existing solutions, and fostering a more accessible digital world. 🚀🌍", + "image_url": "https://summerofcode.withgoogle.com/media/org/uramaki-lab/pr3ivuk0zg7lhgj1-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/uramaki-lab.webp", "logo_r2_url": null, - "url": "https://libcamera.org", + "url": "https://github.com/ruxailab", "active_years": [ - 2021, - 2022, - 2023 + 2024, + 2025, + 2026 ], - "first_year": 2021, - "last_year": 2023, - "is_currently_active": false, + "first_year": 2024, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "c", - "c++", - "linux kernel", - "qt5", - "gstreamer", - "v4l2" + "python", + "javascript", + "html", + "css", + "Firebase" ], "topics": [ - "camera", - "image processing", - "image prcessing" + "user experience", + "Usability", + "User Evaluation", + "Eye Tracking", + "Sentimental Analysis", + "artificial intelligence" ], - "total_projects": 7, + "total_projects": 8, "first_time": false }, { - "id": "692251ee53dd9d7326d33f19", - "slug": "libssh", - "name": "libssh", - "category": "Programming languages", - "description": "The SSH library", - "image_url": "https://summerofcode.withgoogle.com/media/org/libssh/kcfc8lhxh3uyozbu-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/libssh.webp", + "id": "692251eb53dd9d7326d33ef0", + "slug": "urban-energy-systems-laboratory-empa", + "name": "Urban Energy Systems Laboratory, Empa", + "category": "Science and medicine", + "description": "HUES is a platform for modeling & analysis of distributed energy systems", + "image_url": "https://lh3.googleusercontent.com/2ZeU3O2oOvAkneIhXFjY_bIuvV0vRzmyAgzKDM7UP5a2LP6TwohTU5MpYR43-zd7pfpjhBVYzIRlap8fkpY8RJwhJwABEGvD", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/urban-energy-systems-laboratory-empa.webp", "logo_r2_url": null, - "url": "https://www.libssh.org/", + "url": "https://hues-platform.github.io/", "active_years": [ - 2022, - 2023, - 2024, - 2025 + 2016, + 2017 ], - "first_year": 2022, - "last_year": 2025, - "is_currently_active": true, - "technologies": [ - "c", - "ssh", - "ci", - "git", - "sftp" + "first_year": 2016, + "last_year": 2017, + "is_currently_active": false, + "technologies": [ + "python", + "gis", + "milp", + "fast fluid dynamics" ], "topics": [ - "security", - "cryptography" + "simulation", + "data analysis", + "energy", + "distributed energy systems", + "modeling & optimization", + "data portal" ], "total_projects": 6, "first_time": false }, { - "id": "692251ee53dd9d7326d33f1a", - "slug": "libvirt", - "name": "libvirt", + "id": "692251eb53dd9d7326d33ef2", + "slug": "videolan", + "name": "VideoLAN", "category": "End user applications", - "description": "Virtualization abstraction library", - "image_url": "https://summerofcode.withgoogle.com/media/org/libvirt/8xb4f5zwejage5pf-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/libvirt.webp", + "description": "The VideoLAN project is led by and composed of a team of volunteers who believe in the power of open source to rock the multimedia world. We produce multimedia software notably the famous VLC media player as well as designated libraries and codecs.", + "image_url": "https://summerofcode.withgoogle.com/media/org/videolan/9h28hsncvrt01voz-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/videolan.webp", "logo_r2_url": null, - "url": "https://libvirt.org/", + "url": "https://www.videolan.org", "active_years": [ 2016, 2017, @@ -19315,378 +19921,406 @@ 2020, 2021, 2022, - 2024 + 2023, + 2024, + 2025, + 2026 ], "first_year": 2016, - "last_year": 2024, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ "c", - "xen", - "qemu", - "containers", - "kvm", - "hypervisor", - "lxc", - "python", - "virtualization" + "opengl", + "c++", + "qt", + "assembly", + "go", + "vue.js", + "c#", + "asm", + "machine learning", + "audio", + "video codecs", + "video" ], "topics": [ - "virtualization", - "cloud", - "library", - "virtual machine", - "container", - "libraries" + "video", + "multimedia", + "editor", + "editing", + "non-linear", + "audio", + "vr", + "3d", + "web", + "graphics", + "codecs", + "video processing", + "network programming", + "video decode", + "streaming", + "media database" ], - "total_projects": 19, + "total_projects": 92, "first_time": false }, { - "id": "692251ee53dd9d7326d33f1b", - "slug": "lowrisc", - "name": "lowRISC", - "category": "Other", - "description": "Open to the core - collaborative engineering for open source silicon and tools", - "image_url": "https://lh3.googleusercontent.com/nXwbNqY-sFoaSOqayF8cQozzvByH5OO1523rq2G1g1LY99QjrwnBOSxRTBdpzljlgde9flGHfs-usWVQp6MYOWkF3xjMpRI", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/lowrisc.webp", + "id": "692251eb53dd9d7326d33ef1", + "slug": "visp", + "name": "ViSP", + "category": "Media", + "description": "Visual tracking and visual servoing library", + "image_url": "https://lh3.googleusercontent.com/vc01h5JBortXEAkxC3HSGB1axXpw6ZzgDfH5VEXF9OWZf6JlkRHH4DpqvK3Bas_ZCvANTX6ieoHnGA3mpPSxwWxUbakRzng", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/visp.webp", "logo_r2_url": null, - "url": "https://www.lowrisc.org", + "url": "https://visp.inria.fr/", "active_years": [ - 2016, 2017, - 2020 + 2018 ], - "first_year": 2016, - "last_year": 2020, + "first_year": 2017, + "last_year": 2018, "is_currently_active": false, "technologies": [ - "linux", - "verilog", - "fpga", - "chisel", "c++", - "risc-v", - "python", - "systemverilog" + "vision", + "c" ], "topics": [ - "security", - "education", - "embedded hardware", - "system-on-chip", - "debug", - "hardware", - "fpga", - "soc", - "compilers", - "open hardware" + "robotics", + "vision", + "computer vision" ], - "total_projects": 10, + "total_projects": 3, "first_time": false }, { - "id": "692251ef53dd9d7326d33f1c", - "slug": "mlpack", - "name": "mlpack", - "category": "Science and medicine", - "description": "a fast, flexible machine learning library", - "image_url": "https://summerofcode.withgoogle.com/media/org/mlpack/gs9xn22l8vefyvhh-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mlpack.webp", + "id": "692251f053dd9d7326d33f2a", + "slug": "vitrivr", + "name": "vitrivr", + "category": "Data", + "description": "The multimedia search engine", + "image_url": "https://lh3.googleusercontent.com/a5NdzEGPaMpZwYVi5ZliWes35t5wP6fOzmwlAF1GlUxAm4HYbsc5gTcwYjRyWDgJZe-RdStiC8Rgfivpgxl5xFtBf1Yff2q0lzlS7O3iuM2V", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/vitrivr.webp", "logo_r2_url": null, - "url": "https://www.mlpack.org", + "url": "https://vitrivr.org", "active_years": [ 2016, - 2017, 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024 + 2021 ], "first_year": 2016, - "last_year": 2024, + "last_year": 2021, "is_currently_active": false, "technologies": [ - "c++", - "python", + "java", "machine learning", - "deep learning", - "templates", - "openmp", - "C++ template metaprogramming" + "web", + "databases", + "computer vision", + "angularjs", + "spark", + "grpc", + "kotlin", + "tensorflow", + "angular", + "typescript" ], "topics": [ + "databases", + "multimedia retrieval", + "audio", + "3d", + "video", + "multimedia", + "retrieval", + "web", "machine learning", - "data mining", - "fast algorithms", - "data science", - "deep learning", - "algorithms", - "reinforcement learning", - "optimization", - "neighbor-search", - "linear algebra", - "embedded", - "ai", - "Neural networks" + "computer vision" ], - "total_projects": 60, + "total_projects": 6, "first_time": false }, { - "id": "692251ef53dd9d7326d33f1d", - "slug": "moja-global", - "name": "moja global", - "category": "Data", - "description": "Collaboration for change", - "image_url": "https://summerofcode.withgoogle.com/media/org/moja-global/jcd7uys3qjvi0guo-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/moja-global.webp", + "id": "692251ec53dd9d7326d33ef4", + "slug": "wagtail", + "name": "Wagtail", + "category": "Web", + "description": "We build Wagtail, a popular content management system. It's built on Python, by an active and engaged open source community, which has grown rapidly since Wagtail's release in 2014. Wagtail is available in over 40 languages, and used by some of the world's best-known organizations, including NASA, Google, Mozilla, MIT, and the UK's National Health Service, as well as museums, universities, non-profits, governments, banks, studios, restaurants, startups and bloggers around the world.", + "image_url": "https://summerofcode.withgoogle.com/media/org/wagtail/so6hnqeqh2cp4jbx-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/wagtail.webp", "logo_r2_url": null, - "url": "https://moja.global", + "url": "https://wagtail.org/", "active_years": [ - 2022 + 2022, + 2023, + 2024, + 2025, + 2026 ], "first_year": 2022, - "last_year": 2022, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ "python", "javascript", + "django" + ], + "topics": [ + "web", + "accessibility", + "cms" + ], + "total_projects": 11, + "first_time": false + }, + { + "id": "692251ec53dd9d7326d33ef5", + "slug": "waycrate", + "name": "Waycrate", + "category": "End user applications", + "description": "Writing robust tools for the Wayland protocol", + "image_url": "https://summerofcode.withgoogle.com/media/org/waycrate/u6pnvceiilur7iqy-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/waycrate.webp", + "logo_r2_url": null, + "url": "https://waycrate.github.io/", + "active_years": [ + 2024, + 2025 + ], + "first_year": 2024, + "last_year": 2025, + "is_currently_active": false, + "technologies": [ + "c", "c++", - "docker", - "Data-Science" + "rust", + "wayland", + "Zig" ], "topics": [ - "climate monitoring", - "nature based solutions", - "land system modelling" + "security", + "graphics", + "Wayland", + "ScreenCapture", + "Desktop Portals" ], - "total_projects": 3, + "total_projects": 7, "first_time": false }, { - "id": "692251ef53dd9d7326d33f1e", - "slug": "mypy", - "name": "mypy", - "category": "Programming languages", - "description": "A static type checker for Python and a compiler for type-annotated Python", - "image_url": "https://lh3.googleusercontent.com/2bM_s0FVQzih2JJf2lHkVOaeRxvH8LnB8Y54s7kVnNGrh5YzWYxPMbBg0ijMV2c05Vz-LJ3gkIcsLd3RaMrqg5Q6YddhtDPUbCmNwn4Q-u49", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mypy.webp", + "id": "692251ec53dd9d7326d33ef6", + "slug": "wayland", + "name": "Wayland", + "category": "Media", + "description": "Wayland is a protocol for windowing systems on both desktops and embedded", + "image_url": "https://lh3.googleusercontent.com/4TgyMZO4bnVCdzuoV5C_iyaDKetlMKAiKYzqL3GO_Edy_9lavjat0VRjI2NhFWG8HEzNBNNxi3HpT5uXK7M31tR27O0iTupC", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/wayland.webp", "logo_r2_url": null, - "url": "http://mypy-lang.org/", + "url": "https://wayland.freedesktop.org/", "active_years": [ - 2020, - 2021 + 2016 ], - "first_year": 2020, - "last_year": 2021, + "first_year": 2016, + "last_year": 2016, "is_currently_active": false, "technologies": [ - "python" + "c", + "opengl", + "wayland", + "xml", + "kms" ], "topics": [ - "static code analysis", - "compiler", - "compilers" + "graphics", + "video", + "window system", + "display" ], - "total_projects": 3, + "total_projects": 1, "first_time": false }, { - "id": "692251ef53dd9d7326d33f1f", - "slug": "ovirt", - "name": "oVirt", - "category": "End user applications", - "description": "Open virtual datacenter management for all", - "image_url": "https://lh3.googleusercontent.com/W_PtFwhzkdm5Dfr1awr7uSKqbMoWtpUVdlp9gLzlRfQkQyL_dcULt1xsZE8616k8kFuTJcn2hAPgywWiLACcTK5kCSs7Zg", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ovirt.webp", + "id": "692251f053dd9d7326d33f2b", + "slug": "webpack", + "name": "webpack", + "category": "Web", + "description": "webpack is THE build tool for modern web applications run on NodeJS\nwebpack is a module bundler. Its main purpose is to bundle JavaScript files for usage in a browser, yet it is also capable of transforming, bundling, or packaging just about any resource or asset.\n\nOverview\nCurrently in the web, modules are not fully adopted, and therefore we need tooling to help compile your module code into something that will work in the browser. webpack champions this by not only supporting CommonJS, AMD, RequireJS module systems, but also ECMAScript Modules (ESM).\n\nWhat makes webpack unique?\nExtensibility webpack is built using an extensible event-driven architecture. This means that a majority of our code is Plugins that hook into a set of lifecycle events. This means that it is infinitely flexible and configurable. This architecture also lets us pivot very quickly. Plugins isolate functionality (and can even be used in your configuration), and allow us to add and drop new functionality without breaking the rest of the system.\n\nFocused around Web Performance webpack revived a classic technique from Google Web Toolkit known as \"code splitting\". Code splitting let's developers write imperative instructions (as a part of their code), to split up their JavaScript bundles (at build time) into multiple pieces that can be loaded lazily.\n\nBuilt in JavaScript webpack's configuration format, and architecture is all built and run on NodeJS. This means that anyone comfortable with JavaScript can break open our source code with a low level of entry to learn, contribute to, and improve.\n\nUsed at Scale webpack is used by companies like AirBnB, Microsoft, Housing.com, Flipkart, Alibaba, to build high performance, scaled web applications.\n\nCommunity Owned webpack is not backed by a single organization, rather by its users, contributors, backers, sponsors, and shareholders. This means that every decision we make is for them, and them only.", + "image_url": "https://summerofcode.withgoogle.com/media/org/webpack/bb5phgrkm0y4op3e-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/webpack.webp", "logo_r2_url": null, - "url": "http://www.ovirt.org", + "url": "https://webpack.js.org", "active_years": [ - 2017 + 2018, + 2019, + 2020, + 2024, + 2025, + 2026 ], - "first_year": 2017, - "last_year": 2017, - "is_currently_active": false, + "first_year": 2018, + "last_year": 2026, + "is_currently_active": true, "technologies": [ - "python", - "java", - "kvm" + "javascript", + "node.js", + "web development", + "html5/css3", + "webassembly", + "webasssembly", + "webpack", + "typescript", + "node" ], "topics": [ - "virtualization", - "enterprise application" + "compilers", + "tooling", + "parser", + "toolchains", + "web performance", + "programming languages and development tools", + "web development", + "javascript", + "webassembly", + "Node.js", + "webpack" ], - "total_projects": 2, + "total_projects": 10, "first_time": false }, { - "id": "692251ef53dd9d7326d33f20", - "slug": "omegaup", - "name": "omegaUp", - "category": "End user applications", - "description": "Open CS Education as a catalyst for social change", - "image_url": "https://summerofcode.withgoogle.com/media/org/omegaup/uvgilx7vyspavjox-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/omegaup.webp", + "id": "692251ec53dd9d7326d33ef7", + "slug": "wellcome-sanger-tree-of-life", + "name": "Wellcome Sanger Tree of Life", + "category": "Science and medicine", + "description": "Genome analysis for all species", + "image_url": "https://summerofcode.withgoogle.com/media/org/wellcome-sanger-institute/gmcjtlourmhkhhed-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/wellcome-sanger-tree-of-life.webp", "logo_r2_url": null, - "url": "https://omegaup.org", + "url": "https://www.sanger.ac.uk/", "active_years": [ - 2018, 2022, - 2023, 2024, 2025 ], - "first_year": 2018, + "first_year": 2022, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "python", - "mysql", - "php", - "typescript", - "vue.js" + "javascript", + "rust", + "nextflow", + "machine learning", + "natural language processing", + "Cloud Storage" ], "topics": [ - "education", - "cs education", - "web community", - "web", - "cloud", - "edtech", - "UX/UI" + "genomics", + "bioinformatics", + "data analysis", + "genome assembly", + "machine learning", + "genome analysis" ], - "total_projects": 10, + "total_projects": 8, "first_time": false }, { - "id": "692251ef53dd9d7326d33f21", - "slug": "opensuse-project", - "name": "openSUSE Project", - "category": "Operating systems", - "description": "Makers' choice for sysadmins, developers & users", - "image_url": "https://summerofcode.withgoogle.com/media/org/opensuse-project/zq11ebxj038xotbe-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/opensuse-project.webp", + "id": "692251ec53dd9d7326d33ef8", + "slug": "wikimedia-foundation", + "name": "Wikimedia Foundation", + "category": "Web", + "description": "Wikimedia strives to bring about a world in which every single human being can freely share in the sum of all knowledge; through various projects, chapters, and the support structure of the non-profit Wikimedia Foundation. Wikimedia officially supports 13 projects, including Wikipedia, the seventh most popular site on the internet. Wikipedia receives over 20 billion global page views every month and is available in over 300 languages. The tech behind it ensures that our projects are fast, reliable, and open to all. We design and build the open-source technology that powers Wikimedia projects from hosting Wikipedia to creating edit-checking artificial intelligence (AI). Community volunteers and Foundation technologists collaborate on MediaWiki, which makes sharing free knowledge possible. Read more about Wikimedia on our homepage: https://wikimediafoundation.org/", + "image_url": "https://summerofcode.withgoogle.com/media/org/wikimedia-foundation-nd/2e6sdwa8tksr5sg2-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/wikimedia-foundation.webp", "logo_r2_url": null, - "url": "https://get.opensuse.org/", + "url": "http://wikimediafoundation.org/", "active_years": [ 2016, 2017, 2018, + 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ - "linux", - "ruby on rails", - "ruby", - "docker", - "angularjs", "javascript", - "angular.js", - "c", - "c++", - "perl", - "ruby on rail", "html", + "php", + "css", + "jquery", + "android", + "ruby on rails", + "reactjs", "python", - "rpm", - "rust", - "kubernetes", - "artificial intelligence", - "Testing", - "configuration management", - "reactjs javascript", - "go" + "Phyton" ], "topics": [ - "virtualization", - "web development", - "linux", - "configuration management", - "realtime", - "linux distribution", - "conferences", "web", - "qa", - "packaging", - "ui/ux", - "operating systems", - "software quality", - "build tools", - "containers", - "tools", - "developer tools", - "devops", - "edge", - "AIML", - "operating system developer tools", - "containers kubernetes", - "Security Cryptography", - "licensing & software quality QA", - "systems management" + "wiki", + "input methods", + "mediawiki", + "i18n", + "encyclopedia", + "education", + "wikipedia", + "wikimedia", + "semantic web" ], - "total_projects": 52, + "total_projects": 85, "first_time": false }, { - "id": "692251ef53dd9d7326d33f22", - "slug": "owncloud", - "name": "ownCloud", - "category": "Infrastructure and cloud", - "description": "A safe home for all your data", - "image_url": "https://lh3.googleusercontent.com/DfB90GrSxjjUVgE4ye84i6KbkUQVUkzoIJtpZfqCkHbRuIbf9h4Twj6DKYU4ul4zJHk01UKjz7NGXRfJ9NcIDcH1uMhxCqE", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/owncloud.webp", + "id": "692251ec53dd9d7326d33ef9", + "slug": "wireshark", + "name": "Wireshark", + "category": "Security", + "description": "Wireshark is the world's foremost network protocol analyzer.", + "image_url": "https://lh3.googleusercontent.com/sCPLlgtH6t-mZ-ysPbk5olslH9gy2nexx6mJAP0iKV3qjO4jFiw0-HSiXEu-JD2Apw2gK3o5vcQms5CC55ulYtxGVw_760B6", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/wireshark.webp", "logo_r2_url": null, - "url": "http://owncloud.org", + "url": "https://www.wireshark.org/", "active_years": [ - 2016, - 2017 + 2020 ], - "first_year": 2016, - "last_year": 2017, + "first_year": 2020, + "last_year": 2020, "is_currently_active": false, "technologies": [ - "javascript", - "html", - "sql", - "php", - "css", - "android", + "c", + "c++", + "lua", "qt", - "ios" + "cmake", + "pcap" ], "topics": [ - "web", - "cloud", - "synchronized", - "data sharing", - "sync", - "file share" + "data visualization", + "network monitoring", + "network security" ], - "total_projects": 5, + "total_projects": 1, "first_time": false }, { - "id": "692251ef53dd9d7326d33f23", - "slug": "phpbb-forum-software", - "name": "phpBB Forum Software", - "category": "Social and communication", - "description": "phpBB is the most widely used free and open-source forum solution.", - "image_url": "https://lh3.googleusercontent.com/k4w18k0JwvBptU87DKyZi9-fKls1mRa9_EFg1xkh3z35KuRK7uRbxNvZ_vKppBLFxzydT2n546WaKt2PTiT6YZy8UEAVlNg", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/phpbb-forum-software.webp", + "id": "692251ec53dd9d7326d33efa", + "slug": "worldbrainio-verifying-the-internet", + "name": "WorldBrain.io - Verifying the Internet", + "category": "End user applications", + "description": "Bookmarking extension that works like your brain - full-text search everything.", + "image_url": "https://lh3.googleusercontent.com/pA0vKmLZJtik5ncIN0Z-mcLtftMElDsqtkKanjJuAp8sZ-hHEW4ER_fyAMvpC1MRkgSjHhrNeQeJYYwFzLBudRhQhuBbkD2m", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/worldbrainio-verifying-the-internet.webp", "logo_r2_url": null, - "url": "https://www.phpbb.com", + "url": "http://worldbrain.io", "active_years": [ 2017, 2018 @@ -19695,415 +20329,363 @@ "last_year": 2018, "is_currently_active": false, "technologies": [ - "mysql", "javascript", - "php", - "css", - "symfony", - "html5/css3" + "reactjs", + "react", + "browser extension", + "datproject" ], "topics": [ - "collaboration", - "community", - "social", - "communication", - "forum" + "search", + "fake-news", + "misinformation", + "digital knowledge", + "decentralization", + "bookmarking" ], "total_projects": 4, "first_time": false }, { - "id": "692251ef53dd9d7326d33f24", - "slug": "phpmyadmin", - "name": "phpMyAdmin", - "category": "Data", - "description": "A web interface for MySQL written in PHP", - "image_url": "https://lh3.googleusercontent.com/Wq_8lTz8wRoLBFRD8DIpd2eZ3v8sPMpbXdYzAVB81164FR3EAVdFyd2bHZO-o_rfqCCL6I86HqtoKfE8_ivTPlrAR_ZiRSw", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/phpmyadmin.webp", + "id": "692251ec53dd9d7326d33ef3", + "slug": "wso2", + "name": "WSO2", + "category": "Other", + "description": "Comprehensive and open source middleware platform that spans the breadth of SOA", + "image_url": "https://lh3.googleusercontent.com/1E8AX1katjzwQ4Lu7AQVzd-V2E0y-RWFm4ZR7_eS7yct9wEagNcya2aGsZMH4TOaD0RF75iKM3uom-4enwPlyCMQ_tOXgg", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/wso2.webp", "logo_r2_url": null, - "url": "https://www.phpmyadmin.net", + "url": "http://wso2.com/", "active_years": [ - 2017, - 2018, - 2019 + 2016, + 2017 ], - "first_year": 2017, - "last_year": 2019, + "first_year": 2016, + "last_year": 2017, "is_currently_active": false, "technologies": [ - "mysql", - "javascript", - "php", - "jquery", - "cakephp", - "bootstrap" + "java", + "web services", + "middleware", + "soa", + "distributed computing" ], "topics": [ - "web application", - "database", - "mysql", - "developer", - "administrator", - "web applications" + "security", + "cloud", + "micro services", + "data analysis", + "iot", + "api management" ], - "total_projects": 9, + "total_projects": 20, "first_time": false }, { - "id": "692251ef53dd9d7326d33f25", - "slug": "rocketchat", - "name": "rocket.chat", - "category": "Social and communication", - "description": "Open source communications platform for the AI age", - "image_url": "https://summerofcode.withgoogle.com/media/org/rocketchat/qnog9kebwa9atw3l-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/rocketchat.webp", + "id": "692251f053dd9d7326d33f2c", + "slug": "wxwidgets", + "name": "wxWidgets", + "category": "Programming languages", + "description": "Library for creating portable native GUIs in C++", + "image_url": "https://lh3.googleusercontent.com/eOVcxwPPFY88vbPAbL0VdS3UXorKsdc3Ow4SIUsUecOXlnaNEOgMxlvJeKw6AG3zMw9IZdSp5_Xz93Rr5f8-EsrW2hAwrrg", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/wxwidgets.webp", "logo_r2_url": null, - "url": "https://github.com/RocketChat", + "url": "http://www.wxwidgets.org/", "active_years": [ - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2017 ], "first_year": 2017, - "last_year": 2025, - "is_currently_active": true, + "last_year": 2017, + "is_currently_active": false, "technologies": [ - "javascript", - "webrtc", - "meteor.js", - "mongo", - "android", - "ios", - "node.js", - "react", - "ruby", - "reactnative", - "chatbots", - "docker", - "kubernetes", - "react native", - "raspberry pi", - "typescript", - "meteorJS", - "LLM", - "generative ai" + "c++", + "gtk+", + "win32", + "cocoa" ], "topics": [ - "collaboration", - "instant messaging", - "realtime", - "chat", - "progressive web apps", - "machine learning", - "chatops", - "bot", - "realtime communications", - "chatbot", - "communication", - "team chat", - "social-network", - "community", - "team", - "communications", - "messaging", - "group chat", - "Team Collaboration", - "Chat platform" + "desktop", + "cross-platform", + "gui" ], - "total_projects": 103, + "total_projects": 2, "first_time": false }, { - "id": "692251ef53dd9d7326d33f26", - "slug": "sktime", - "name": "sktime", - "category": "Data", - "description": "A unified framework for ML with time series", - "image_url": "https://summerofcode.withgoogle.com/media/org/sktime/x2i3dxljtj04sqw0-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/sktime.webp", + "id": "692251ec53dd9d7326d33efb", + "slug": "xorg-foundation", + "name": "X.Org Foundation", + "category": "Media", + "description": "X Window System and related projects (Mesa, DRI, Wayland, etc.)", + "image_url": "https://summerofcode.withgoogle.com/media/org/xorg-foundation/g3sbklva7h1ksltv-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/xorg-foundation.webp", "logo_r2_url": null, - "url": "https://www.sktime.net/en/stable/", + "url": "https://www.x.org", "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, 2022, - 2024 + 2023 ], - "first_year": 2022, - "last_year": 2024, + "first_year": 2016, + "last_year": 2023, "is_currently_active": false, - "technologies": [ - "python", - "github", - "sphinx", - "scikit-learn" - ], - "topics": [ - "data science", - "ai", - "time series", - "toolbox frameworks", - "AI/ML" - ], - "total_projects": 8, - "first_time": false - }, - { - "id": "692251ef53dd9d7326d33f27", - "slug": "stdlib", - "name": "stdlib", - "category": "Science and medicine", - "description": "The fundamental numerical library for JavaScript", - "image_url": "https://summerofcode.withgoogle.com/media/org/stdlib/7ornclj6w5zz9fca-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/stdlib.webp", - "logo_r2_url": null, - "url": "https://stdlib.io", - "active_years": [ - 2024, - 2025 - ], - "first_year": 2024, - "last_year": 2025, - "is_currently_active": true, "technologies": [ "c", - "javascript", - "node.js", - "typescript", - "webassembly" + "opengl", + "c++", + "vulkan", + "opencl", + "x11", + "wayland", + "DRM" ], "topics": [ - "mathematics", - "web", - "scientific computing", - "numerical computing", - "statistics" + "graphics", + "graphics stack", + "operating system", + "3d", + "video", + "3d acceleration", + "media acceleration", + "2d acceleration", + "windowing system", + "graphic stack", + "2d/3d graphics", + "windowing systems", + "testing/ci", + "gpu", + "drivers", + "kernel" ], - "total_projects": 9, + "total_projects": 19, "first_time": false }, { - "id": "692251ef53dd9d7326d33f28", - "slug": "strace", - "name": "strace", - "category": "Development tools", - "description": "Linux syscall tracer", - "image_url": "https://summerofcode.withgoogle.com/media/org/strace/yreopwofddfe6zhk-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/strace.webp", + "id": "692251ec53dd9d7326d33efe", + "slug": "xapian-search-engine-library", + "name": "Xapian Search Engine Library", + "category": "Data", + "description": "Fast, scalable and flexible search", + "image_url": "https://lh3.googleusercontent.com/QXpt9FkvyIQdMujj953yvmn3QVDdc1AHiD_zEQ149IzojkxNszscsJyF_oEa664SMOY0xjPWYX2CI4EKqIRvATdOAgwZTw", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/xapian-search-engine-library.webp", "logo_r2_url": null, - "url": "https://strace.io/", + "url": "https://xapian.org/", "active_years": [ 2016, 2017, 2018, 2019, - 2020, - 2021, - 2022 + 2020 ], "first_year": 2016, - "last_year": 2022, + "last_year": 2020, "is_currently_active": false, "technologies": [ - "c", - "linux", - "shell script", - "make", - "git", - "awk", - "shell", - "autotools", - "gawk" + "android", + "c++", + "golang", + "unicode", + "swig", + "linux" ], "topics": [ - "linux", - "tracing", - "syscall", - "c", - "git", - "debugging", - "diagnostic" + "machine learning", + "search", + "information retrieval", + "linguistics", + "integration", + "indexing" ], "total_projects": 15, "first_time": false }, { - "id": "692251f053dd9d7326d33f29", - "slug": "syslog-ng", - "name": "syslog-ng", - "category": "Data", - "description": "Enhanced log daemon, w/ wide range of I/O methods", - "image_url": "https://summerofcode.withgoogle.com/media/org/syslog-ng/ipqfczgd4cx3zm9r-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/syslog-ng.webp", + "id": "692251ec53dd9d7326d33eff", + "slug": "xen-project", + "name": "Xen Project", + "category": "Infrastructure and cloud", + "description": "Bringing the power of virtualization everywhere", + "image_url": "https://lh3.googleusercontent.com/8-1iv11qUH3NQh51RUUucz5KaFc-xnirXU3Bsd_oQfGzen68L0H4YvyGdbDuwZqLRhiBRKjAJ_XTkzdJiMMvJTKKb94AmQ", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/xen-project.webp", "logo_r2_url": null, - "url": "https://www.syslog-ng.com/", + "url": "http://xenproject.org/", + "active_years": [ + 2017 + ], + "first_year": 2017, + "last_year": 2017, + "is_currently_active": false, + "technologies": [ + "linux", + "qemu", + "free/netbsd", + "asm/c/c++", + "ocaml" + ], + "topics": [ + "virtualization", + "security", + "cloud computing", + "unikernels", + "embedded/automotive" + ], + "total_projects": 2, + "first_time": false + }, + { + "id": "692251ec53dd9d7326d33f00", + "slug": "xfce", + "name": "Xfce", + "category": "Operating systems", + "description": "Lightweight and flexible linux desktop environment", + "image_url": "https://summerofcode.withgoogle.com/media/org/xfce/jp4avjju3s9gfqos-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/xfce.webp", + "logo_r2_url": null, + "url": "https://www.xfce.org/", "active_years": [ - 2016, - 2018, - 2019, - 2020, 2021, 2022 ], - "first_year": 2016, + "first_year": 2021, "last_year": 2022, "is_currently_active": false, "technologies": [ "c", "python", - "java", - "rust", - "big data", - "c++", - "rest", - "elasticsearch", - "json", - "sql", - "kafka" + "javascript", + "gtk", + "vala" ], "topics": [ - "continuous delivery", - "log management", - "message queue", - "data extraction", - "message correlation", - "python", - "logging", - "build tools", - "high performance data processing", - "data processing pipeline", - "reliable log transfer", - "cloud", - "high-performance data processing" + "gui", + "desktop environment", + "desktop", + "customization" ], - "total_projects": 12, + "total_projects": 5, "first_time": false }, { - "id": "692251f053dd9d7326d33f2a", - "slug": "vitrivr", - "name": "vitrivr", - "category": "Data", - "description": "The multimedia search engine", - "image_url": "https://lh3.googleusercontent.com/a5NdzEGPaMpZwYVi5ZliWes35t5wP6fOzmwlAF1GlUxAm4HYbsc5gTcwYjRyWDgJZe-RdStiC8Rgfivpgxl5xFtBf1Yff2q0lzlS7O3iuM2V", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/vitrivr.webp", + "id": "692251ed53dd9d7326d33f01", + "slug": "xi-editor", + "name": "Xi Editor", + "category": "End user applications", + "description": "A modern text editor with a backend written in Rust.", + "image_url": "https://lh3.googleusercontent.com/R82mVJvjn_-GopH6nXsXTMa2Wap1X9NiuFt5_Lxuz0bkiLSfJVWm4MF1n9IdahgVW4gmt6XTNLV9p8dh09a9xOHm4Rddnww", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/xi-editor.webp", "logo_r2_url": null, - "url": "https://vitrivr.org", + "url": "https://xi-editor.io/", "active_years": [ - 2016, 2018, - 2021 + 2019 ], - "first_year": 2016, - "last_year": 2021, + "first_year": 2018, + "last_year": 2019, "is_currently_active": false, "technologies": [ - "java", - "machine learning", - "web", - "databases", - "computer vision", - "angularjs", - "spark", - "grpc", - "kotlin", - "tensorflow", - "angular", - "typescript" + "rust", + "swift" ], "topics": [ - "databases", - "multimedia retrieval", - "audio", - "3d", - "video", - "multimedia", - "retrieval", - "web", - "machine learning", - "computer vision" + "ide", + "text editing", + "text editor", + "end user application" ], - "total_projects": 6, + "total_projects": 4, "first_time": false }, { - "id": "692251f053dd9d7326d33f2b", - "slug": "webpack", - "name": "webpack", - "category": "Web", - "description": "webpack is the module bundler for web projects", - "image_url": "https://summerofcode.withgoogle.com/media/org/webpack/bb5phgrkm0y4op3e-360.png", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/webpack.webp", + "id": "692251ed53dd9d7326d33f02", + "slug": "xiphorg-foundation", + "name": "Xiph.Org Foundation", + "category": "Media", + "description": "Open-source and royalty free multimedia", + "image_url": "https://lh3.googleusercontent.com/sUYk_vuqIWBRqHqbkAxs0-3G7da5-bgNyn3QgnCvYEN_0qKFsPFMfp1ekbzUKzpBSxu3JJGFrrvZpI5WDUmvj5CXlpdHrtCPphQJGgaGe8eHGQ", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/xiphorg-foundation.webp", "logo_r2_url": null, - "url": "https://webpack.js.org", + "url": "https://xiph.org", "active_years": [ - 2018, - 2019, - 2020, - 2024, - 2025 + 2021 ], - "first_year": 2018, - "last_year": 2025, - "is_currently_active": true, + "first_year": 2021, + "last_year": 2021, + "is_currently_active": false, "technologies": [ - "javascript", - "node.js", - "web development", - "html5/css3", - "webassembly", - "webasssembly", - "webpack", - "typescript" + "rust", + "assembly", + "arm", + "x86", + "c language" ], "topics": [ - "compilers", - "tooling", - "parser", - "toolchains", - "web performance", - "programming languages and development tools", - "web development", - "javascript", - "webassembly", - "Node.js", - "webpack" + "video", + "video encode", + "video decode", + "multimedia" ], - "total_projects": 10, - "first_time": false - }, - { - "id": "692251f053dd9d7326d33f2c", - "slug": "wxwidgets", - "name": "wxWidgets", - "category": "Programming languages", - "description": "Library for creating portable native GUIs in C++", - "image_url": "https://lh3.googleusercontent.com/eOVcxwPPFY88vbPAbL0VdS3UXorKsdc3Ow4SIUsUecOXlnaNEOgMxlvJeKw6AG3zMw9IZdSp5_Xz93Rr5f8-EsrW2hAwrrg", - "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/wxwidgets.webp", + "total_projects": 3, + "first_time": false + }, + { + "id": "692251ec53dd9d7326d33efc", + "slug": "xmpp-standards-foundation", + "name": "XMPP Standards Foundation", + "category": "End user applications", + "description": "XSF develops an open-standard messaging protocol", + "image_url": "https://summerofcode.withgoogle.com/media/org/xmpp-standards-foundation/1qfi0ofcfmb8qin8-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/xmpp-standards-foundation.webp", "logo_r2_url": null, - "url": "http://www.wxwidgets.org/", + "url": "https://xmpp.org/", "active_years": [ - 2017 + 2017, + 2019, + 2020, + 2022, + 2023, + 2024 ], "first_year": 2017, - "last_year": 2017, + "last_year": 2024, "is_currently_active": false, "technologies": [ + "javascript", + "java", "c++", - "gtk+", - "win32", - "cocoa" + "xmpp", + "erlang", + "lua", + "asynchronous i/o", + "python 3", + "vala", + "webrtc", + "go", + "swift", + "dart", + "Objective C", + "gtk" ], "topics": [ - "desktop", - "cross-platform", - "gui" + "instant messaging", + "communications", + "social", + "chat", + "messaging", + "realtime communications", + "machine-to-machine", + "internet of things", + "xmpp", + "realtime communication", + "voip", + "WebRTC", + "Jingle", + "Real-Time Communication" ], - "total_projects": 2, + "total_projects": 11, "first_time": false }, { @@ -20174,10 +20756,212 @@ ], "total_projects": 2, "first_time": false + }, + { + "id": "692251ec53dd9d7326d33efd", + "slug": "xwiki", + "name": "XWiki", + "category": "Web", + "description": "The Advanced Open Source Enterprise Wiki", + "image_url": "https://summerofcode.withgoogle.com/media/org/xwiki/ea9akuy6esnffmuk-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/xwiki.webp", + "logo_r2_url": null, + "url": "https://www.xwiki.org/", + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023 + ], + "first_year": 2016, + "last_year": 2023, + "is_currently_active": false, + "technologies": [ + "javascript", + "java", + "html5", + "css3", + "velocity", + "css" + ], + "topics": [ + "web development", + "web platform and services", + "wiki", + "platform", + "extensions", + "web applications", + "structured data" + ], + "total_projects": 12, + "first_time": false + }, + { + "id": "692251ed53dd9d7326d33f03", + "slug": "zendalona", + "name": "Zendalona", + "category": "End user applications", + "description": "FOSS accessibility solutions for visually impaired", + "image_url": "https://summerofcode.withgoogle.com/media/org/zendalona/tqduj6nsxnnw3vpy-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/zendalona.webp", + "logo_r2_url": null, + "url": "https://zendalona.com/", + "active_years": [ + 2024, + 2025 + ], + "first_year": 2024, + "last_year": 2025, + "is_currently_active": false, + "technologies": [ + "python", + "javascript", + "android", + "gtk", + "qt" + ], + "topics": [ + "web", + "accessibility", + "braille", + "gaming", + "AGI" + ], + "total_projects": 10, + "first_time": false + }, + { + "id": "692251ed53dd9d7326d33f04", + "slug": "zenodo", + "name": "Zenodo", + "category": "Science and medicine", + "description": "A free and open digital archive for the long-tail of science.", + "image_url": "https://lh3.googleusercontent.com/t18I4Tabm3yIeT595HG9pbjrqUelCzLjUoWehqSCdBmLS9uk7vgPCJRQoBJRFArkA_pbyj-LZisqDm-IjCbLfKgT0Ek2UA", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/zenodo.webp", + "logo_r2_url": null, + "url": "https://zenodo.org", + "active_years": [ + 2017 + ], + "first_year": 2017, + "last_year": 2017, + "is_currently_active": false, + "technologies": [ + "python", + "postgresql", + "flask", + "angularjs", + "elasticsearch" + ], + "topics": [ + "web", + "machine learning", + "open science", + "content management", + "digital library" + ], + "total_projects": 2, + "first_time": false + }, + { + "id": "692251ed53dd9d7326d33f05", + "slug": "zulip", + "name": "Zulip", + "category": "End user applications", + "description": "Zulip is the only modern team chat app that is ideal for both live and asynchronous conversations. Zulip has a web app, a cross-platform mobile app for iOS and Android, cross-platform desktop and terminal apps, and over 100 native integrations. The entire Zulip codebase is 100% open source.\n\nZulip has been gaining in popularity since it was released as open source software in late 2015, with code contributions from over 1000 people from all around the world. Thousands of people use Zulip every day, and your work on Zulip will have meaningful impact on their experience.\n\nAs an organization, we value engaged, responsive mentorship and making sure our product quality is extremely high. You can expect to receive disciplined code reviews by highly experienced engineers. Since Zulip is a team chat product, your GSoC experience with the Zulip project will be highly interactive.\n\nAs part of our commitment to mentorship, Zulip has over 160,000 words of documentation for developers, much of it designed to explain not just how Zulip works, but why Zulip works the way that it does.\n\nTo learn more about the experience of doing GSoC with Zulip, check out our blog post: https://blog.zulip.com/2025/12/02/google-summer-of-code-2025/", + "image_url": "https://summerofcode.withgoogle.com/media/org/zulip/sx5ruvwv6nyugbk7-360.png", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/zulip.webp", + "logo_r2_url": null, + "url": "https://zulip.com/", + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ], + "first_year": 2016, + "last_year": 2026, + "is_currently_active": true, + "technologies": [ + "python", + "javascript", + "django", + "android", + "ios", + "react native", + "electron", + "typescript", + "css", + "flutter" + ], + "topics": [ + "full stack web and mobile", + "group chat", + "high quality codebase", + "web development", + "mobile applications", + "cross-platform", + "enterprise", + "visual design", + "team chat", + "mobile", + "great developer tooling", + "chat", + "bots", + "teaching quality codebase", + "integrations" + ], + "total_projects": 135, + "first_time": false + }, + { + "id": "692251ed53dd9d7326d33f06", + "slug": "zynaddsubfx", + "name": "ZynAddSubFX", + "category": "Media", + "description": "An open source musical software synthesizer with a wide range of possibilities", + "image_url": "https://lh3.googleusercontent.com/p7QK3Y5XvI87Zn_oqiI8iAtjp7lvHSIOArnAIfbhUQOR0HsP7dyWk-GXysodrPfYSpZETMrCMnid2-tHgykKz3PSPkuvcg", + "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/zynaddsubfx.webp", + "logo_r2_url": null, + "url": "http://zynaddsubfx.sf.net", + "active_years": [ + 2019 + ], + "first_year": 2019, + "last_year": 2019, + "is_currently_active": false, + "technologies": [ + "c", + "c++", + "opengl", + "ruby", + "midi", + "open-sound-control" + ], + "topics": [ + "visualization", + "music", + "audio", + "digital signal processing", + "user experience" + ], + "total_projects": 1, + "first_time": false } ], "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:52.858Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/inkscape.json b/new-api-details/organizations/inkscape.json index 99fa89c7..da27a180 100644 --- a/new-api-details/organizations/inkscape.json +++ b/new-api-details/organizations/inkscape.json @@ -22,7 +22,7 @@ ], "first_year": 2016, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "python", "c++", @@ -656,6 +656,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.259Z" + "generated_at": "2026-02-19T12:41:12.412Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/international-catrobat-association.json b/new-api-details/organizations/international-catrobat-association.json index 5302b62a..9f6d95b6 100644 --- a/new-api-details/organizations/international-catrobat-association.json +++ b/new-api-details/organizations/international-catrobat-association.json @@ -3,7 +3,7 @@ "slug": "international-catrobat-association", "name": "International Catrobat Association", "category": "Programming languages", - "description": "Free visual coding apps for computational thinking", + "description": "Computational thinking for all with free visual coding apps\nThe Catrobat project develops useful frameworks to create games, animations, or apps easily within a short time. This set of mobile creativity tools for smartphones is inspired by the well-known Scratch framework by the Lifelong Kindergarten Group at the MIT Media Lab. The motivation behind the project is that programming is an important cultural technique on the same level as mathematics and physics, from a practical as well as from a philosophical point of view. Our aim thus is to popularize the skills needed to program from an early age in a fun and engaging way that will facilitate the spread of its adoption among young people all over the world.\n\nOur awarded Android app “Pocket Code” is currently the most famous outcome of the project. Without the need for any further devices, users have the possibility to create their first program directly on their mobile device in just a few steps using visual \"Bricks\". Pocket Code supports all common device sensors, provides special \"Bricks\" for different robotic devices (Lego Mindstorms, Robotix Phiro, etc.) as well as for hardware devices such as the Arduino board or the Raspberry Pi, and of course offers elements of programming languages such as variables, if-statements, concurrency, etc. We also work on \"Pocket Code\" for iOS and on a large number of extensions. That’s why developers of different fields help us to keep our products up-to-date to meet the current needs of our users.\n\nMotivated by prizes (such as the Lovie Award, the Austrian National Innovation Award or the Re-Imagine Education Award) and being featured by different programs (like Google Play for Education or code.org), our team is working on many different subprojects and extensions. Over 870 developers already contributed to our project on different topics such as app development, web technologies, graphics, usability, internationalization, or design.", "image_url": "https://summerofcode.withgoogle.com/media/org/international-catrobat-association/dfkxzmsqlkyvwi2o-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/international-catrobat-association.webp", "logo_r2_url": null, @@ -18,10 +18,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "javascript", @@ -35,7 +36,8 @@ "symfony", "php", "kotlin", - "flutter" + "flutter", + "python" ], "topics": [ "education", @@ -65,7 +67,8 @@ "year_2022": 11, "year_2023": 7, "year_2024": 8, - "year_2025": 7 + "year_2025": 7, + "year_2026": null }, "students_by_year": { "year_2016": 7, @@ -77,7 +80,8 @@ "year_2022": 11, "year_2023": 7, "year_2024": 8, - "year_2025": 7 + "year_2025": 7, + "year_2026": null }, "total_students": 78 }, @@ -1707,13 +1711,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/international-catrobat-association" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "contact@catrobat.org", "guide_url": "https://docs.google.com/document/d/1vOGY2C80raXLV6RVRHXoqiAhcnBJFeZdU8wqMm-Rgo0/edit?usp=sharing", - "ideas_url": "https://developer.catrobat.org/pages/development/google-summer-of-code/2025/", + "ideas_url": "https://developer.catrobat.org/pages/development/google-summer-of-code/2026/", "irc_channel": "https://github.com/Catrobat/Catroid#contributing", "mailing_list": "https://catrob.at/mailinglist" }, @@ -1721,7 +1726,7 @@ "blog": null, "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/Catrobat/", "gitlab": null, "instagram": null, "linkedin": null, @@ -1736,6 +1741,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.271Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/internet-archive.json b/new-api-details/organizations/internet-archive.json index 131c842c..0cc91611 100644 --- a/new-api-details/organizations/internet-archive.json +++ b/new-api-details/organizations/internet-archive.json @@ -3,7 +3,7 @@ "slug": "internet-archive", "name": "Internet Archive", "category": "Science and medicine", - "description": "Universal Access to All Knowledge", + "description": "The Internet Archive is a non-profit digital library.\n\nWe are the home of the Wayback Machine.", "image_url": "https://summerofcode.withgoogle.com/media/org/internet-archive/uzbgzbb9tvp81c2i.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/internet-archive.webp", "logo_r2_url": null, @@ -16,10 +16,11 @@ 2021, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -58,7 +59,8 @@ "year_2022": null, "year_2023": 5, "year_2024": 2, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -70,7 +72,8 @@ "year_2022": null, "year_2023": 5, "year_2024": 2, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "total_students": 26 }, @@ -613,13 +616,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/internet-archive" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "info@archive.org", "guide_url": null, - "ideas_url": "https://docs.google.com/document/d/1oHNwPNYmHV5q3puBfv6IQFs-4gTe9XLN2iz2Lgse-1k/edit?tab=t.0", + "ideas_url": "https://docs.google.com/document/d/1EjzrHVapOZuzdI_Qqd_ravaTgiDWnxlMRbjjbzfd_-I/edit?tab=t.0", "irc_channel": null, "mailing_list": null }, @@ -627,7 +631,7 @@ "blog": "http://blog.archive.org", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/internetarchive", "gitlab": null, "instagram": null, "linkedin": null, @@ -642,6 +646,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.274Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/internet-health-report.json b/new-api-details/organizations/internet-health-report.json index 5616a877..d5477cb9 100644 --- a/new-api-details/organizations/internet-health-report.json +++ b/new-api-details/organizations/internet-health-report.json @@ -16,7 +16,7 @@ ], "first_year": 2022, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "python", "javascript", @@ -404,6 +404,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.276Z" + "generated_at": "2026-02-19T12:41:12.412Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/invesalius.json b/new-api-details/organizations/invesalius.json index 5824e237..34e49908 100644 --- a/new-api-details/organizations/invesalius.json +++ b/new-api-details/organizations/invesalius.json @@ -3,7 +3,7 @@ "slug": "invesalius", "name": "Invesalius", "category": "Science and medicine", - "description": "3D Medical visualization and neuronavigation tool", + "description": "InVesalius is an Open Source organization that works developing free software for reconstruction of computed tomography and magnetic resonance images. The software is mainly used for rapid prototyping, teaching, forensics, and in the medical field. It is possible to use it on the Microsoft Windows, GNU/Linux and Apple Mac OS X platforms. \n\nInVesalius main software started began their development on 2001 by Centro de Tecnologia da Informação Renato Archer (CTI), in Brazil, later it was released under GNU license and more practitioners joins the organization to improve their development.\n\nAt that time, there was no medical image software in Portuguese that fulfilled the Brazilian hospitals and clinics needs. Therefore, InVesalius came as a proposal of development with the aim to be a medical software image analysis with null acquisition cost, capability of execution on low-cost personal computers and the\ncapability of execution on different operating systems and act as a platform to encourage the use and development of medical images in Brazil.", "image_url": "https://summerofcode.withgoogle.com/media/org/invesalius/ktlk8dmldhfmlyb2-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/invesalius.webp", "logo_r2_url": null, @@ -11,10 +11,11 @@ "active_years": [ 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2023, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -43,7 +44,8 @@ "year_2022": null, "year_2023": 2, "year_2024": 5, - "year_2025": 6 + "year_2025": 6, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -55,7 +57,8 @@ "year_2022": null, "year_2023": 2, "year_2024": 5, - "year_2025": 6 + "year_2025": 6, + "year_2026": null }, "total_students": 13 }, @@ -331,21 +334,22 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/invesalius" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": null, "guide_url": "https://github.com/invesalius/gsoc/blob/main/gsoc_application.md", - "ideas_url": "https://github.com/invesalius/gsoc/blob/main/gsoc_2025_ideas.md", + "ideas_url": "https://github.com/invesalius/gsoc/blob/main/gsoc_2026_ideas.md", "irc_channel": null, "mailing_list": "https://github.com/invesalius/invesalius3/discussions" }, "social": { - "blog": "https://invesalius.github.io/publication.html", + "blog": "https://www.youtube.com/@invesalius/videos", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/invesalius/invesalius3", "gitlab": null, "instagram": null, "linkedin": null, @@ -360,6 +364,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.279Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/ioos.json b/new-api-details/organizations/ioos.json index 831f341e..23d951c8 100644 --- a/new-api-details/organizations/ioos.json +++ b/new-api-details/organizations/ioos.json @@ -3,7 +3,7 @@ "slug": "ioos", "name": "IOOS", "category": "Science and medicine", - "description": "Our eyes on the ocean, coasts, and Great Lakes", + "description": "U.S. IOOS is a national and regional partnership working to provide ocean, coastal and Great Lakes observations, data, tools, and forecasts to improve safety, enhance the economy, and protect our environment. Our primary purpose is to provide free and open data about the state of our oceans and Great Lakes to our users. These data are fundamental to understanding the health of our marine ecosystems, to monitor the climate signal as captured in oceanographic conditions, and to provide predictions about the future state of our oceans and coasts.", "image_url": "https://summerofcode.withgoogle.com/media/org/ioos/oe7caipkhwnizoyr-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ioos.webp", "logo_r2_url": null, @@ -12,10 +12,11 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ], "first_year": 2021, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -50,7 +51,8 @@ "year_2022": 4, "year_2023": null, "year_2024": 6, - "year_2025": 9 + "year_2025": 9, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -62,7 +64,8 @@ "year_2022": 4, "year_2023": null, "year_2024": 6, - "year_2025": 9 + "year_2025": 9, + "year_2026": null }, "total_students": 21 }, @@ -525,13 +528,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/ioos" - } + }, + "year_2026": null }, "first_time": false, "contact": { - "email": "ocefpaf@gmail.com", + "email": "micah.wengren@noaa.gov", "guide_url": "https://github.com/ioos/gsoc/blob/main/contributor-guidance.md", - "ideas_url": "https://github.com/ioos/gsoc/blob/main/2025/ideas-list.md", + "ideas_url": "https://github.com/ioos/gsoc/blob/main/2026/ideas-list.md", "irc_channel": "https://gitter.im/ioos", "mailing_list": "https://groups.google.com/g/ioos_tech/" }, @@ -539,7 +543,7 @@ "blog": "https://ioos.github.io/notebooks_demos/", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/ioos", "gitlab": null, "instagram": null, "linkedin": null, @@ -554,6 +558,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.252Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/jabref-ev.json b/new-api-details/organizations/jabref-ev.json index 1a867bb6..f1128816 100644 --- a/new-api-details/organizations/jabref-ev.json +++ b/new-api-details/organizations/jabref-ev.json @@ -3,7 +3,7 @@ "slug": "jabref-ev", "name": "JabRef e.V.", "category": "Science and medicine", - "description": "Stay on top of your Literature", + "description": "JabRef is one of the most widely used citation and reference management tools. It helps students and researchers to stay on top of their literature by assisting at every step of a research project: collecting and organizing literature sources, discovering the latest research, citing references in LaTeX and other text editors, and sharing interesting papers with collaborators.\n\nJabRef is open-source and cross-platform. It is written in Java using JavaFX as the user interface technology. It is licensed under the MIT license.\n\nSince 2020 JabRef is maintained by the non-profit organization JabRef e.V.", "image_url": "https://summerofcode.withgoogle.com/media/org/jabref-ev/ylevworrwqf9bw9g-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jabref-ev.webp", "logo_r2_url": null, @@ -13,10 +13,11 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ], "first_year": 2019, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "java", @@ -50,7 +51,8 @@ "year_2022": 1, "year_2023": null, "year_2024": 3, - "year_2025": 4 + "year_2025": 4, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -62,7 +64,8 @@ "year_2022": 1, "year_2023": null, "year_2024": 3, - "year_2025": 4 + "year_2025": 4, + "year_2026": null }, "total_students": 11 }, @@ -302,13 +305,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/jabref-ev" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "developers@jabref.org", "guide_url": "https://github.com/JabRef/jabref/wiki/GSOC-Application", - "ideas_url": "https://github.com/JabRef/jabref/wiki/GSoC-2025-ideas-list", + "ideas_url": "https://jabref.github.io/GSoC/projects/", "irc_channel": "http://gitter.im/JabRef/jabref", "mailing_list": "https://discourse.jabref.org/" }, @@ -316,7 +320,7 @@ "blog": "https://blog.jabref.org/", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/JabRef/jabref", "gitlab": null, "instagram": null, "linkedin": null, @@ -331,6 +335,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.292Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/jax-and-keras.json b/new-api-details/organizations/jax-and-keras.json index 83b94282..52a85dcf 100644 --- a/new-api-details/organizations/jax-and-keras.json +++ b/new-api-details/organizations/jax-and-keras.json @@ -13,7 +13,7 @@ ], "first_year": 2025, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "python", "machine learning", @@ -174,6 +174,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.283Z" + "generated_at": "2026-02-19T12:41:12.412Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/jboss-community.json b/new-api-details/organizations/jboss-community.json index 7552b33d..c0b82985 100644 --- a/new-api-details/organizations/jboss-community.json +++ b/new-api-details/organizations/jboss-community.json @@ -2,8 +2,8 @@ "id": "692251d853dd9d7326d33deb", "slug": "jboss-community", "name": "JBoss Community", - "category": "Data", - "description": "Community of projects around JBoss Middleware", + "category": "Web", + "description": "JBoss Community is a community of open source projects. The community hosts a diverse set of projects that are written in various programming languages. The primary language is Java, however there are also projects that are written in Go, Rust, Ruby, PHP, Node and other languages.\n\nProject categories range from application servers, microservices, IOT, cloud technologies, web frameworks et cetera", "image_url": "https://summerofcode.withgoogle.com/media/org/jboss-community/vno1fifehc0i6aa6-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jboss-community.webp", "logo_r2_url": null, @@ -15,11 +15,12 @@ 2019, 2020, 2021, - 2022 + 2022, + 2026 ], "first_year": 2016, - "last_year": 2022, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ "android", "java", @@ -34,7 +35,8 @@ "react", "golang", "node.js", - "rust" + "rust", + "cloud" ], "topics": [ "testing", @@ -56,7 +58,8 @@ "machine learning", "iot", "messaging", - "cfc" + "cfc", + "artificial intelligence" ], "total_projects": 52, "stats": { @@ -71,7 +74,8 @@ "year_2022": 9, "year_2023": null, "year_2024": null, - "year_2025": null + "year_2025": null, + "year_2026": null }, "students_by_year": { "year_2016": 9, @@ -83,7 +87,8 @@ "year_2022": 9, "year_2023": null, "year_2024": null, - "year_2025": null + "year_2025": null, + "year_2026": null }, "total_students": 49 }, @@ -1146,21 +1151,22 @@ }, "year_2023": null, "year_2024": null, - "year_2025": null + "year_2025": null, + "year_2026": null }, "first_time": false, "contact": { "email": "mwessendorf@gmail.com", - "guide_url": null, - "ideas_url": null, + "guide_url": "https://spaces.redhat.com/display/GSOC/Google+Summer+of+Code+-+contributor+guide", + "ideas_url": "https://spaces.redhat.com/spaces/GSOC/pages/750884772/Google+Summer+of+Code+2026+Ideas", "irc_channel": "https://gitter.im/JBossOutreach/GSoC", "mailing_list": "https://developer.jboss.org/wiki/JBossGSoCContactInformation" }, "social": { - "blog": "http://planet.jboss.org/", + "blog": "https://spaces.redhat.com/display/GSOC/Google+Summer+of+Code+2025+Ideas", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/jbossas", "gitlab": null, "instagram": null, "linkedin": null, @@ -1175,6 +1181,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.284Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/jderobot.json b/new-api-details/organizations/jderobot.json index fd2ba840..ab9bb568 100644 --- a/new-api-details/organizations/jderobot.json +++ b/new-api-details/organizations/jderobot.json @@ -3,7 +3,7 @@ "slug": "jderobot", "name": "JdeRobot", "category": "Other", - "description": "Toolkit for developing Robotics applications", + "description": "Robotics applications are typically distributed, made up of a collection of concurrent asynchronous components which communicate using some middleware (ROS messages, DDS...). Building robotics applications is a complex task. Integrating existing nodes or libraries that provide already solved functionality, and using several tools may increase the software robustness and shorten the development time. JdeRobot provides several tools, libraries and reusable nodes. They have been written in C++, Python or JavaScript.\n\nOur community mainly works on four development areas:\n1.- Education in Robotics\n* RoboticsAcademy (https://jderobot.github.io/RoboticsAcademy/): a ROS-based framework to learn robotics and computer vision with drones, autonomous cars.... It is a collection of Python programmed exercises for engineering students. \n* Unibotics: a web based framework for teaching robotics.\n\n2.- Robot Programming Tools\t\n* VisualCircuit (https://jderobot.github.io/VisualCircuit/) for robot programming with connected blocks, as in electronic circuits, in a visual way\n* VisualStates for robot programming with Finite State Machines in a visual way\n* WebSim2D robot simulator with web technologies\n\n3.- MachineLearning in Robotics\n* DeepLearningSuite: neural networks for robot control. It includes the BehaviorMetrics tool for assessment of neural networks for autonomous driving\n* RL-Studio: Robotic library for the training of Reinforcement Learning algorithms\n* DetectionMetrics tool for evaluation of visual detection neural networks and algorithms\n\n4.- FPGAs in Robotics\n* FPGA-robotics (https://github.com/JdeRobot/FPGA-robotics): programming robots with reconfigurable computing (FPGAs) using open tools as IceStudio and Symbiflow. Verilog-based reusable blocks for robotics applications.\n* NeuralFPGA: running deeplearning networks on FPGAs", "image_url": "https://summerofcode.withgoogle.com/media/org/jderobot/xwu8zkcagffmlqdj-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jderobot.webp", "logo_r2_url": null, @@ -17,10 +17,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -53,7 +54,8 @@ "year_2022": 6, "year_2023": 4, "year_2024": 5, - "year_2025": 7 + "year_2025": 7, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -65,7 +67,8 @@ "year_2022": 6, "year_2023": 4, "year_2024": 5, - "year_2025": 7 + "year_2025": 7, + "year_2026": null }, "total_students": 48 }, @@ -1056,21 +1059,22 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/jderobot" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "jderobot@gmail.com", - "guide_url": "https://jderobot.github.io/activities/gsoc/2025#application-instructions-for-gsoc-2025", - "ideas_url": "https://jderobot.github.io/activities/gsoc/2025#ideas-list", + "guide_url": "https://jderobot.github.io/activities/gsoc/2026#application-instructions-for-gsoc-2026", + "ideas_url": "https://jderobot.github.io/activities/gsoc/2026#ideas-list", "irc_channel": null, - "mailing_list": "https://gsyc.urjc.es/cgi-bin/mailman/listinfo/jde-developers" + "mailing_list": "https://github.com/orgs/JdeRobot/discussions" }, "social": { - "blog": null, + "blog": "https://www.linkedin.com/company/jderobot/", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/jderobot", "gitlab": null, "instagram": null, "linkedin": null, @@ -1085,6 +1089,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.294Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/jenkins.json b/new-api-details/organizations/jenkins.json index ccfdfb0a..8973f879 100644 --- a/new-api-details/organizations/jenkins.json +++ b/new-api-details/organizations/jenkins.json @@ -3,7 +3,7 @@ "slug": "jenkins", "name": "Jenkins", "category": "Programming languages", - "description": "Jenkins, build great things at any scale", + "description": "Short description:\n\nJenkins is a popular open source automation server which is used for building, testing, CI/CD, deployment and many other use-cases. Our motto is \"Build great things at any scale\".\n\nLong description:\n\nJenkins, originally founded in 2006 as \"Hudson\", is one of the leading automation servers. Jenkins' motto is \"Build great things at any scale\". Using an extensible, plugin-based architecture, developers have created hundreds of plugins to adapt Jenkins to a multitude of build, test, and deployment automation workloads. As Jenkins is open-source, MIT License is used for most of the components.\n\nThis year we invite potential GSoC contributors to join the Jenkins community and to work together to improve Jenkins. We have many strategic project ideas which are important to potentially hundreds of thousands of Jenkins users.\n\nThe project has over 600 active contributors working on Jenkins core, plugins, website, project infrastructure, localization activities, etc. In total we have more than 2,000 components including plugins, libraries, and various utilities. The main languages in the project are Java, Groovy and JavaScript, but we also have components written in other languages (Go, C/C++, C#, etc.). Jenkins project includes multiple sub-projects (including Configuration-as-Code, Infrastructure and Remoting) and special interest groups. These entities participate in GSoC as a part of the Jenkins project.\n\nThe Jenkins project is a part of Continuous Delivery Foundation (CDF).", "image_url": "https://summerofcode.withgoogle.com/media/org/jenkins-wp/7qlgfron9nyj194y-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jenkins.webp", "logo_r2_url": null, @@ -16,10 +16,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "java", @@ -56,7 +57,8 @@ "year_2022": 4, "year_2023": 4, "year_2024": 5, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "students_by_year": { "year_2016": 1, @@ -68,7 +70,8 @@ "year_2022": 4, "year_2023": 4, "year_2024": 5, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "total_students": 33 }, @@ -764,13 +767,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/jenkins-wp" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "jenkinsci-gsoc-all-public@googlegroups.com", "guide_url": "https://www.jenkins.io/projects/gsoc/contributors", - "ideas_url": "https://www.jenkins.io/projects/gsoc/2025/project-ideas/", + "ideas_url": "https://www.jenkins.io/projects/gsoc/2026/project-ideas/", "irc_channel": "https://gitter.im/jenkinsci/gsoc-sig", "mailing_list": "https://community.jenkins.io/c/contributing/gsoc/6" }, @@ -778,7 +782,7 @@ "blog": "https://www.jenkins.io/blog", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/jenkinsci/", "gitlab": null, "instagram": null, "linkedin": null, @@ -793,6 +797,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.297Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/jitsi.json b/new-api-details/organizations/jitsi.json index 32279253..dc936274 100644 --- a/new-api-details/organizations/jitsi.json +++ b/new-api-details/organizations/jitsi.json @@ -3,7 +3,7 @@ "slug": "jitsi", "name": "Jitsi", "category": "Media", - "description": "State-of-the-art video conferencing", + "description": "Jitsi is a set of Open Source projects which empower users to deploy secure, scalable and easy to use video conferencing platforms with state-of-the-art video quality and features.", "image_url": "https://summerofcode.withgoogle.com/media/org/jitsi/p3456ygkk7vdq0or-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jitsi.webp", "logo_r2_url": null, @@ -13,10 +13,11 @@ 2018, 2022, 2024, - 2025 + 2025, + 2026 ], "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "javascript", @@ -51,7 +52,8 @@ "year_2022": 6, "year_2023": null, "year_2024": 4, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -63,7 +65,8 @@ "year_2022": 6, "year_2023": null, "year_2024": 4, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "total_students": 21 }, @@ -501,13 +504,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/jitsi" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "gsoc@jitsi.org", "guide_url": "https://jitsi.github.io/handbook/docs/dev-guide/dev-guide-contributing", - "ideas_url": "https://github.com/jitsi/gsoc-ideas/blob/master/2025/README.md", + "ideas_url": "https://github.com/jitsi/gsoc-ideas/blob/master/2026/README.md", "irc_channel": "https://jitsi.org/Development/MailingLists", "mailing_list": "https://community.jitsi.org/" }, @@ -515,7 +519,7 @@ "blog": "https://jitsi.org/news/", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/jitsi/", "gitlab": null, "instagram": null, "linkedin": null, @@ -530,6 +534,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.303Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/joomla.json b/new-api-details/organizations/joomla.json index 157a0233..d4fd2efb 100644 --- a/new-api-details/organizations/joomla.json +++ b/new-api-details/organizations/joomla.json @@ -3,7 +3,7 @@ "slug": "joomla", "name": "Joomla!", "category": "End user applications", - "description": "The flexible platform empowering website creators.", + "description": "The Joomla CMS is a PHP based application that powers about 2.2% of the web, 3.5% of all CMS based websites, as well as many intranets. Joomla has been downloaded over 119 Million times: https://downloads.joomla.org/\n\nThe Joomla project has hundreds of contributors, organized in a set of working groups and teams, and a leadership group. These are coordinated by the [Departments](https://volunteers.joomla.org/departments/ \"Joomla Departments\").\n\nJoomla is a community driven FOSS project developed and maintained by an international community encompassing over 150 countries. Joomla is used by millions of websites and web applications ranging from the hobbyist, professional web developer, to large enterprises, for both the World Wide Web and intranets.\n\nJoomla is available in 76 languages with an active and dedicated translation team\nhttps://community.joomla.org/translations/joomla-3-translations.html\n\n\nThe Joomla Project is a community effort which strives to engage contributors from diverse backgrounds and varying interests and skills in building and supporting great software together. The [mission, vision and values](https://www.joomla.org/about-joomla/the-project/mission-vision-and-values.html \"Joomla Mission vision and values\") of the Joomla Project reflect this.\n\nThe official umbrella organisation is Open Source Matters (OSM), the not for profit organization that manages financial and legal issues for the Joomla Project. A team of experienced people drawn from many areas of the project will manage the 2025 GSoC project for Joomla.", "image_url": "https://summerofcode.withgoogle.com/media/org/joomla/dwntn9vfd52jkr9z.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/joomla.webp", "logo_r2_url": null, @@ -15,10 +15,11 @@ 2019, 2021, 2022, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "javascript", @@ -28,7 +29,8 @@ "jquery", "mysql", "html5/css3", - "cms" + "cms", + "ai" ], "topics": [ "web", @@ -53,7 +55,8 @@ "year_2022": 4, "year_2023": null, "year_2024": null, - "year_2025": 4 + "year_2025": 4, + "year_2026": null }, "students_by_year": { "year_2016": 5, @@ -65,7 +68,8 @@ "year_2022": 4, "year_2023": null, "year_2024": null, - "year_2025": 4 + "year_2025": 4, + "year_2026": null }, "total_students": 34 }, @@ -830,21 +834,22 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/joomla" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "gsoc@joomla.org", - "guide_url": "https://docs.joomla.org/GSoC_2025", - "ideas_url": "https://docs.joomla.org/GSoC_2025_Project_Ideas", - "irc_channel": "https://joomlacommunity.cloud.mattermost.com/main/channels/gsoc-2025", - "mailing_list": "https://forms.gle/BN9b3teutzxPetP29" + "guide_url": "https://community.joomla.org/gsoc", + "ideas_url": "https://community.joomla.org/gsoc/projects-2026.html", + "irc_channel": "https://joomlacommunity.cloud.mattermost.com/main/channels/gsoc-2026", + "mailing_list": "https://forms.gle/jE63n81vfctCTAeE7" }, "social": { "blog": "https://community.joomla.org/", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/joomla/joomla-cms", "gitlab": null, "instagram": null, "linkedin": null, @@ -859,6 +864,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.305Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/joplin.json b/new-api-details/organizations/joplin.json index 14b2ec90..c030cbd6 100644 --- a/new-api-details/organizations/joplin.json +++ b/new-api-details/organizations/joplin.json @@ -3,7 +3,7 @@ "slug": "joplin", "name": "Joplin", "category": "End user applications", - "description": "The secure note taking application", + "description": "Joplin is a note-taking app designed with strong security and privacy in mind. It features end-to-end encryption (E2EE), ensuring the notes remain protected during synchronization. Users can store notes locally or sync them via trusted services like Nextcloud, Dropbox, or self-hosted servers, retaining full data ownership.\n\nAdditionally Joplin can manage a large number of notes that can be organised using notebooks or tags, thus making it suitable to manage a knowledge base. The notes can be searched using simple or advanced queries.\n\nThe application can be customised using plugins and themes, and you can also easily create your own. It is available for Windows, Linux, macOS, Android and iOS.", "image_url": "https://summerofcode.withgoogle.com/media/org/joplin/0b4z6iftngd1afrp-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/joplin.webp", "logo_r2_url": null, @@ -12,11 +12,12 @@ 2020, 2021, 2022, - 2024 + 2024, + 2026 ], "first_year": 2020, - "last_year": 2024, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ "react", "node.js", @@ -53,7 +54,8 @@ "year_2022": 6, "year_2023": null, "year_2024": 4, - "year_2025": null + "year_2025": null, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -65,7 +67,8 @@ "year_2022": 6, "year_2023": null, "year_2024": 4, - "year_2025": null + "year_2025": null, + "year_2026": null }, "total_students": 17 }, @@ -418,13 +421,14 @@ ], "projects_url": "https://summerofcode.withgoogle.com/archive/2024/organizations/joplin/" }, - "year_2025": null + "year_2025": null, + "year_2026": null }, "first_time": false, "contact": { "email": "support@joplinapp.org", - "guide_url": null, - "ideas_url": null, + "guide_url": "https://github.com/joplin/gsoc/?tab=readme-ov-file#google-summer-of-code-2025", + "ideas_url": "https://github.com/joplin/gsoc/blob/master/ideas.md", "irc_channel": "https://discord.com/invite/VSj7AFHvpq", "mailing_list": "https://discourse.joplinapp.org/" }, @@ -432,7 +436,7 @@ "blog": "https://www.patreon.com/joplin/posts", "discord": "https://discord.com/invite/VSj7AFHvpq", "facebook": null, - "github": "https://github.com/laurent22/joplin", + "github": "https://github.com/laurent22/joplin/", "gitlab": null, "instagram": null, "linkedin": null, @@ -447,6 +451,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.307Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/json-schema.json b/new-api-details/organizations/json-schema.json index cf101f0f..fa8de082 100644 --- a/new-api-details/organizations/json-schema.json +++ b/new-api-details/organizations/json-schema.json @@ -3,17 +3,18 @@ "slug": "json-schema", "name": "JSON Schema", "category": "Data", - "description": "We enable the reliable use of JSON data format.", + "description": "JSON Schema is a vocabulary that allows you to annotate and validate JSON documents \n\nWe are a community JSON Schema enthusiast dedicated to maintain, evolve and promote the JSON Schema specification. The Community consists of individuals, community members, tooling builders, schema designers, researchers, and representatives from companies and organizations who use or are considering using JSON Schema.", "image_url": "https://summerofcode.withgoogle.com/media/org/json-schema/d3qfjxegxnlrfysi.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/json-schema.webp", "logo_r2_url": null, "url": "https://json-schema.org/", "active_years": [ 2024, - 2025 + 2025, + 2026 ], "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -42,7 +43,8 @@ "year_2022": null, "year_2023": null, "year_2024": 8, - "year_2025": 6 + "year_2025": 6, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -54,7 +56,8 @@ "year_2022": null, "year_2023": null, "year_2024": 8, - "year_2025": 6 + "year_2025": 6, + "year_2026": null }, "total_students": 14 }, @@ -351,13 +354,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/json-schema" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "info@json-schema.org", "guide_url": "https://github.com/json-schema-org/community/blob/main/programs/mentoring/gsoc/CONTRIBUTOR-GUIDANCE.md", - "ideas_url": "https://github.com/json-schema-org/community/blob/main/programs/mentoring/gsoc/gsoc-2025.md", + "ideas_url": "https://github.com/json-schema-org/community/blob/main/programs/mentoring/gsoc/gsoc-2026.md", "irc_channel": "https://json-schema.org/slack", "mailing_list": null }, @@ -365,7 +369,7 @@ "blog": null, "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/json-schema-org", "gitlab": null, "instagram": null, "linkedin": null, @@ -380,6 +384,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.291Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/kde-community.json b/new-api-details/organizations/kde-community.json index 4bb8b74e..cb82df0e 100644 --- a/new-api-details/organizations/kde-community.json +++ b/new-api-details/organizations/kde-community.json @@ -3,7 +3,7 @@ "slug": "kde-community", "name": "KDE Community", "category": "End user applications", - "description": "Control your digital life", + "description": "Community of technologists, designers, writers and advocates who work to ensure freedom for all people through our software.", "image_url": "https://summerofcode.withgoogle.com/media/org/kde-community/1mbnnsqwd2ejcmy8-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kde-community.webp", "logo_r2_url": null, @@ -18,10 +18,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "c++", @@ -65,7 +66,8 @@ "year_2022": 6, "year_2023": 7, "year_2024": 10, - "year_2025": 15 + "year_2025": 15, + "year_2026": null }, "students_by_year": { "year_2016": 32, @@ -77,7 +79,8 @@ "year_2022": 6, "year_2023": 7, "year_2024": 10, - "year_2025": 15 + "year_2025": 15, + "year_2026": null }, "total_students": 159 }, @@ -3263,14 +3266,15 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/kde-community" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "kde-community@kde.org", "guide_url": "https://community.kde.org/GSoC", - "ideas_url": "https://community.kde.org/GSoC/2025/Ideas", - "irc_channel": "https://userbase.kde.org/IRC_Channels", + "ideas_url": "https://community.kde.org/GSoC/2026/Ideas", + "irc_channel": "https://community.kde.org/Matrix", "mailing_list": "https://mail.kde.org/mailman/listinfo/kde-devel" }, "social": { @@ -3292,6 +3296,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.310Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/keploy.json b/new-api-details/organizations/keploy.json index dabebde2..e1bc26c2 100644 --- a/new-api-details/organizations/keploy.json +++ b/new-api-details/organizations/keploy.json @@ -15,7 +15,7 @@ ], "first_year": 2023, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "java", "golang", @@ -345,6 +345,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.321Z" + "generated_at": "2026-02-19T12:41:12.412Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/kiwix.json b/new-api-details/organizations/kiwix.json index 2dbecbfb..f73658bd 100644 --- a/new-api-details/organizations/kiwix.json +++ b/new-api-details/organizations/kiwix.json @@ -3,7 +3,7 @@ "slug": "kiwix", "name": "Kiwix", "category": "End user applications", - "description": "Internet content available offline.", + "description": "Kiwix provides copies of websites that can be browsed offline. We run scrapers that will crawl a given website and compress it into a single .zim archive (based on the openZIM format). \n\nThe zim files can then be stored locally and read on the fly by Kiwix in such a way that the user experience is similar to being online. \n\nWe can fit the entirety of Wikipedia on a regular Android phone, but there are more than 7,000 zim files available in 100+ languages, mostly focused on educational content (e.g. Wikipedia, StackOverflow, Khan Academy, etc.).\n\n\n\nKiwix runs on all platforms (Linux, Windows, Android, etc.) and has around 10-12 million users worldwide, in pretty much any place you can think of that has limited or no connectivity: prisons, rural schools, refugee camps, even Antarctic bases!\n\nOur big challenge is to make it as easy as possible to access or share offline content.", "image_url": "https://summerofcode.withgoogle.com/media/org/kiwix/b6zuffwiyoulh0ku-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kiwix.webp", "logo_r2_url": null, @@ -15,10 +15,11 @@ 2021, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -33,7 +34,8 @@ "kotlin", "typescript", "perl", - "vue.js" + "vue.js", + "nodejs" ], "topics": [ "offline", @@ -55,7 +57,8 @@ "year_2022": null, "year_2023": 2, "year_2024": 3, - "year_2025": 3 + "year_2025": 3, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -67,7 +70,8 @@ "year_2022": null, "year_2023": 2, "year_2024": 3, - "year_2025": 3 + "year_2025": 3, + "year_2026": null }, "total_students": 17 }, @@ -474,7 +478,8 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/kiwix" - } + }, + "year_2026": null }, "first_time": false, "contact": { @@ -488,7 +493,7 @@ "blog": "https://www.kiwix.org/en/blog/", "discord": null, "facebook": null, - "github": null, + "github": "https://www.github.com/kiwix", "gitlab": null, "instagram": null, "linkedin": null, @@ -503,6 +508,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.325Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/kolibrios-project-team.json b/new-api-details/organizations/kolibrios-project-team.json index 783489da..c7fc7206 100644 --- a/new-api-details/organizations/kolibrios-project-team.json +++ b/new-api-details/organizations/kolibrios-project-team.json @@ -3,18 +3,19 @@ "slug": "kolibrios-project-team", "name": "KolibriOS Project Team", "category": "Operating systems", - "description": "A tiny and fast operating system in fasm", + "description": "KolibriOS is a tiny open-source graphical operating system for x86 (and compatible) architecture computers, developed and maintained by the KolibriOS Project Team. It contains a monolithic kernel that runs in 32-bit protected mode and supports full preemptive multitasking.\n\nKolibriOS is a fork of MenuetOS, written almost entirely in FASM (assembly language). However, C, Sphinx C--, C++, Free Pascal, Forth, among other high-level languages and compilers, can also be used in user application development (although FASM is preferred).\n\nThe OS features a rich set of applications that include a word processor, image viewer, graphical editor, textual web browser, and over 30 games. Full FAT12/16/32 and EXT2/3/4 support is implemented, as well as read-only support for NTFS, ISO9660 and XFS. Drivers are written for popular sound, network and graphics cards.\n\nKolibriOS is VERY light on system requirements, using as little as 1MB of disk space and 8MB RAM to run. In terms of processing power, Intel®'s original Pentium® (P5 microarchitecture) or compatible CPU is sufficient to fully enjoy KolibriOS. We strive to become the OS of choice for all older computers, and provide their owners full modern OS experience.", "image_url": "https://summerofcode.withgoogle.com/media/org/kolibrios-project-team/mrtxpzuxixjqff62-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kolibrios-project-team.webp", "logo_r2_url": null, "url": "https://kolibrios.org", "active_years": [ 2016, - 2024 + 2024, + 2026 ], "first_year": 2016, - "last_year": 2024, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ "fasm", "flat assembler", @@ -50,7 +51,8 @@ "year_2022": null, "year_2023": null, "year_2024": 2, - "year_2025": null + "year_2025": null, + "year_2026": null }, "students_by_year": { "year_2016": 4, @@ -62,7 +64,8 @@ "year_2022": null, "year_2023": null, "year_2024": 2, - "year_2025": null + "year_2025": null, + "year_2026": null }, "total_students": 6 }, @@ -196,21 +199,22 @@ ], "projects_url": "https://summerofcode.withgoogle.com/archive/2024/organizations/kolibrios-project-team/" }, - "year_2025": null + "year_2025": null, + "year_2026": null }, "first_time": false, "contact": { "email": null, - "guide_url": null, - "ideas_url": null, - "irc_channel": "https://discord.com/invite/FeB2NvE6bF", + "guide_url": "https://wiki.kolibrios.org/wiki/Ideas_Page#Google_Summer_of_Code'26_Contributor_Requirements", + "ideas_url": "https://wiki.kolibrios.org/wiki/Ideas_Page", + "irc_channel": "https://web.libera.chat/#kolibrios", "mailing_list": "https://board.kolibrios.org" }, "social": { "blog": "https://board.kolibrios.org", "discord": "https://discord.com/invite/FeB2NvE6bF", "facebook": null, - "github": null, + "github": "https://github.com/KolibriOS", "gitlab": null, "instagram": null, "linkedin": null, @@ -225,6 +229,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.330Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/konflux.json b/new-api-details/organizations/konflux.json new file mode 100644 index 00000000..c9a4ba29 --- /dev/null +++ b/new-api-details/organizations/konflux.json @@ -0,0 +1,103 @@ +{ + "id": "new_2026_konflux", + "slug": "konflux", + "name": "Konflux", + "category": "Infrastructure and cloud", + "description": "Konflux is an open source, opinionated Kubernetes-native software factory built on Tekton, focused on software supply chain security. It provides an end-to-end pipeline: hermetic builds from source, cryptographic signing, provenance attestation, vulnerability scanning, policy verification, and release automation. Konflux integrates with the broader supply chain security ecosystem (Sigstore, SLSA, Conforma) and is built by a welcoming community that values collaboration, transparency, and mentorship.\nContributors work with cutting-edge cloud-native technologies and help shape how we solve one of the most critical challenges in modern software delivery.", + "image_url": "https://summerofcode.withgoogle.com/media/org/konflux/7znpk8j83biro6rn.png", + "img_r2_url": "https://summerofcode.withgoogle.com/media/org/konflux/7znpk8j83biro6rn.png", + "logo_r2_url": null, + "url": "https://konflux-ci.dev/", + "active_years": [ + 2026 + ], + "first_year": 2026, + "last_year": 2026, + "is_currently_active": true, + "technologies": [ + "python", + "go", + "docker", + "kubernetes", + "tekton" + ], + "topics": [ + "cloud-native", + "CI/CD", + "Tekton", + "SLSA", + "supplychain" + ], + "total_projects": 0, + "stats": { + "avg_projects_per_appeared_year": 0, + "projects_by_year": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "students_by_year": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "total_students": 0 + }, + "years": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "contact": { + "email": null, + "guide_url": null, + "ideas_url": "https://github.com/konflux-ci/community/wiki/Google-Summer-of-Code-&-Outreachy-Project-Ideas-%E2%80%90-2026", + "irc_channel": "https://join.slack.com/t/konflux-ci/shared_invite/zt-3g36o0a4x-Dmsy25XEGuBV79S7kd04CA", + "mailing_list": "https://groups.google.com/g/konflux" + }, + "social": { + "blog": "https://join.slack.com/t/konflux-ci/shared_invite/zt-3g36o0a4x-Dmsy25XEGuBV79S7kd04CA", + "discord": null, + "facebook": null, + "github": "https://github.com/konflux-ci", + "gitlab": null, + "instagram": null, + "linkedin": null, + "mastodon": null, + "medium": null, + "reddit": null, + "slack": null, + "stackoverflow": null, + "twitch": null, + "twitter": null, + "youtube": null + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:46:24.131Z" + } +} \ No newline at end of file diff --git a/new-api-details/organizations/kornia.json b/new-api-details/organizations/kornia.json index c8d9f9fb..2b090623 100644 --- a/new-api-details/organizations/kornia.json +++ b/new-api-details/organizations/kornia.json @@ -3,16 +3,17 @@ "slug": "kornia", "name": "Kornia", "category": "Programming languages", - "description": "Advancing Computer Vision & Spatial AI, Openly", + "description": "Kornia AI is a non-profit organization advancing Spatial Artificial Intelligence through open collaboration. Founded in 2018 and registered as a non-profit in 2023, Kornia AI is supported by a global contributor community. The organization began with Kornia, a widely adopted Python library for Differentiable Computer Vision (>2M downloads/month, 400+ Google Scholar citations).\n In recent years, the core maintainers have shifted focus to kornia-rs, a native Rust stack for high‑performance 3D computer vision and spatial AI. Our direction emphasizes robotics and edge deployment: safe, memory‑efficient, low‑latency pipelines that run on constrained devices (e.g., embedded/Jetson‑class hardware). kornia-rs is gaining traction in the open-source community and is used by leading companies such as Farm-ng, Rerun.io, and Copper Robotics, who have featured the project on their platforms.", "image_url": "https://summerofcode.withgoogle.com/media/org/kornia/p4e366l478clqvvg-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kornia.webp", "logo_r2_url": null, "url": "https://docs.rs/kornia", "active_years": [ - 2025 + 2025, + 2026 ], "first_year": 2025, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "cuda", @@ -41,7 +42,8 @@ "year_2022": null, "year_2023": null, "year_2024": null, - "year_2025": 2 + "year_2025": 2, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -53,7 +55,8 @@ "year_2022": null, "year_2023": null, "year_2024": null, - "year_2025": 2 + "year_2025": 2, + "year_2026": null }, "total_students": 2 }, @@ -109,13 +112,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/kornia" - } + }, + "year_2026": null }, "first_time": true, "contact": { "email": "hello@kornia.org", "guide_url": "https://github.com/kornia/kornia-rs/wiki/Google-Sumer-of-Code-Application", - "ideas_url": "https://github.com/kornia/kornia-rs/wiki/Google-Summer-of-Code-Ideas-2025", + "ideas_url": "https://github.com/kornia/kornia-rs/wiki/%5B2026%5D-Google-Sumer-of-Code-Application", "irc_channel": "https://discord.gg/HfnywwpBnD", "mailing_list": null }, @@ -123,7 +127,7 @@ "blog": null, "discord": "https://discord.gg/HfnywwpBnD", "facebook": null, - "github": null, + "github": "https://github.com/kornia/kornia-rs", "gitlab": null, "instagram": null, "linkedin": null, @@ -138,6 +142,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.332Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/kotlin-foundation.json b/new-api-details/organizations/kotlin-foundation.json index 9bf7e73d..20c647c2 100644 --- a/new-api-details/organizations/kotlin-foundation.json +++ b/new-api-details/organizations/kotlin-foundation.json @@ -3,7 +3,7 @@ "slug": "kotlin-foundation", "name": "Kotlin Foundation", "category": "Programming languages", - "description": "Advance the Kotlin programming language", + "description": "Kotlin is a concise, modern, and versatile programming language designed for multiple platforms.\n\nThe Kotlin Foundation, established by JetBrains and Google, later welcomed Meta, Uber, Gradle, Touchlab, Block, and Kotzilla. Together, we promote and advance Kotlin across multiple platforms, including Android, iOS, web, desktop, and server-side.\n \nCurrently, 100+ engineers from JetBrains and Google contribute to the core Kotlin project, alongside 350+ independent contributors and thousands more supporting the broader Kotlin ecosystem.\n\nThe Kotlin Foundation is committed to protecting, promoting, and advancing the evolution of the Kotlin language.", "image_url": "https://summerofcode.withgoogle.com/media/org/kotlin-foundation/2wyghqyy8nvvl4cq-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kotlin-foundation.webp", "logo_r2_url": null, @@ -11,10 +11,11 @@ "active_years": [ 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2023, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "gradle", @@ -43,7 +44,8 @@ "year_2022": null, "year_2023": 4, "year_2024": 4, - "year_2025": 8 + "year_2025": 8, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -55,7 +57,8 @@ "year_2022": null, "year_2023": 4, "year_2024": 4, - "year_2025": 8 + "year_2025": 8, + "year_2026": null }, "total_students": 16 }, @@ -399,13 +402,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/kotlin-foundation" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "gsoc@kotlinfoundation.org", "guide_url": "https://kotlinlang.org/docs/gsoc-overview.html", - "ideas_url": "https://kotlinlang.org/docs/gsoc-2025.html", + "ideas_url": "https://kotlinlang.org/docs/gsoc-2026.html", "irc_channel": "https://slack-chats.kotlinlang.org/c/gsoc", "mailing_list": null }, @@ -413,7 +417,7 @@ "blog": "https://blog.jetbrains.com/kotlin/", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/jetbrains/kotlin", "gitlab": null, "instagram": null, "linkedin": null, @@ -428,6 +432,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.337Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/kro-kube-resource-orchestrator.json b/new-api-details/organizations/kro-kube-resource-orchestrator.json index b283692a..e349c6c4 100644 --- a/new-api-details/organizations/kro-kube-resource-orchestrator.json +++ b/new-api-details/organizations/kro-kube-resource-orchestrator.json @@ -13,7 +13,7 @@ ], "first_year": 2025, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "prometheus", "golang", @@ -137,6 +137,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.575Z" + "generated_at": "2026-02-19T12:41:12.412Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/kubeflow.json b/new-api-details/organizations/kubeflow.json index 79053078..85eb54fa 100644 --- a/new-api-details/organizations/kubeflow.json +++ b/new-api-details/organizations/kubeflow.json @@ -3,7 +3,7 @@ "slug": "kubeflow", "name": "Kubeflow", "category": "Infrastructure and cloud", - "description": "The Machine Learning Toolkit for Kubernetes (AI)", + "description": "Our goal is to streamline the process of scaling and deploying machine learning (ML) models to production by leveraging Kubernetes' strengths: \n\n- Seamless deployments: Effortless, repeatable, and portable deployments across diverse infrastructure, allowing you to experiment on local machines and then seamlessly transition to on-premises clusters or the cloud.\n\n- Microservice management: Efficient deployment and management of loosely-coupled microservices for building modular and scalable ML pipelines.\n\n- Dynamic scaling: Automated scaling based on demand, ensuring optimal resource utilization.\n\nUser-centric design: Recognizing the diverse tool preferences within the ML community, we prioritize user customization (within reasonable boundaries). Our system takes care of the repetitive tasks, freeing users to focus on the core ML challenges.\n\nStarting focused, expanding rapidly: While we initially focused on specific technologies, we actively collaborate with various projects to integrate additional tools and broaden our reach.\n\nOur vision: A future where simple manifests empower you to utilize a user-friendly ML stack anywhere Kubernetes runs, with self-configuration capabilities based on the deployment environment.", "image_url": "https://summerofcode.withgoogle.com/media/org/kubeflow/uqphmd1y7opxpjim-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kubeflow.webp", "logo_r2_url": null, @@ -11,10 +11,11 @@ "active_years": [ 2020, 2024, - 2025 + 2025, + 2026 ], "first_year": 2020, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -47,7 +48,8 @@ "year_2022": null, "year_2023": null, "year_2024": 8, - "year_2025": 11 + "year_2025": 11, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -59,7 +61,8 @@ "year_2022": null, "year_2023": null, "year_2024": 8, - "year_2025": 11 + "year_2025": 11, + "year_2026": null }, "total_students": 21 }, @@ -513,13 +516,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/kubeflow" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "https://groups.google.com/g/kubeflow-discuss", "guide_url": null, - "ideas_url": "https://www.kubeflow.org/events/gsoc-2025/", + "ideas_url": "https://www.kubeflow.org/events/upcoming-events/gsoc-2026/", "irc_channel": "https://cloud-native.slack.com/archives/C0742LBR5BM", "mailing_list": "https://www.kubeflow.org/docs/about/gsoc/" }, @@ -527,7 +531,7 @@ "blog": null, "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/kubeflow", "gitlab": null, "instagram": null, "linkedin": null, @@ -542,6 +546,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.342Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/kubevirt.json b/new-api-details/organizations/kubevirt.json index f86cb9f2..c44723d1 100644 --- a/new-api-details/organizations/kubevirt.json +++ b/new-api-details/organizations/kubevirt.json @@ -3,7 +3,7 @@ "slug": "kubevirt", "name": "KubeVirt", "category": "Infrastructure and cloud", - "description": "Building a virtualization API for Kubernetes", + "description": "KubeVirt is a virtual machine management extension for Kubenetes, allowing you to create and manage virtualised workloads natively alongside container workloads. It does this by adding virtualization resources through the Kubernetes Custom Resource Definition API.\n\nKubeVirt is a Cloud Native Computing Project (CNCF) incubating project.", "image_url": "https://summerofcode.withgoogle.com/media/org/kubevirt/pqdi8ojm0atxoo1s-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kubevirt.webp", "logo_r2_url": null, @@ -11,10 +11,11 @@ "active_years": [ 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2023, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "golang", @@ -38,7 +39,8 @@ "year_2022": null, "year_2023": 1, "year_2024": 2, - "year_2025": 1 + "year_2025": 1, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -50,7 +52,8 @@ "year_2022": null, "year_2023": 1, "year_2024": 2, - "year_2025": 1 + "year_2025": 1, + "year_2026": null }, "total_students": 4 }, @@ -155,13 +158,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/kubevirt" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": null, "guide_url": "https://github.com/kubevirt/community/wiki/Google-Summer-of-Code-2025#how-and-where-to-find-help", - "ideas_url": "https://github.com/kubevirt/community/wiki/Google-Summer-of-Code-2025", + "ideas_url": "https://github.com/kubevirt/community/wiki/Google-Summer-of-Code-2026", "irc_channel": "https://kubernetes.slack.com/archives/C0163DT0R8X", "mailing_list": "https://groups.google.com/forum/#!forum/kubevirt-dev" }, @@ -169,7 +173,7 @@ "blog": null, "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/kubevirt", "gitlab": null, "instagram": null, "linkedin": null, @@ -184,6 +188,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.340Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/lablua.json b/new-api-details/organizations/lablua.json index a297a91b..f4274b4e 100644 --- a/new-api-details/organizations/lablua.json +++ b/new-api-details/organizations/lablua.json @@ -3,7 +3,7 @@ "slug": "lablua", "name": "LabLua", "category": "Operating systems", - "description": "Programming Language Research with emphasis on Lua", + "description": "LabLua is a research lab at the Catholic University of Rio de Janeiro (PUC-Rio), affiliated with its Computer Science Department. It is dedicated to research on programming languages, with emphasis on the Lua language and reactive programming. It was founded on May 2004 by Prof. Roberto Ierusalimschy, the chief architect of the Lua language.\n\n\nLabLua consists of people from a wide range of backgrounds, including PhD candidates, professors and alumni who are the developers and maintainers of projects that are used by the Lua community at large.\n\n\nWhat is Lua?\n\n\nLua is a powerful, efficient, lightweight, embeddable scripting language. It supports procedural programming, object-oriented programming, functional programming, data-driven programming, and data description.\n\n\nLua has been used in many industrial applications (e.g., Adobe's Photoshop Lightroom), with an emphasis on embedded systems (e.g., the Ginga middleware for digital TV in Brazil) and games (e.g., World of Warcraft and Angry Birds). Several versions of Lua have been released and used in real applications since its creation in 1993.\n\nWhat is Lunatik?\n\nLunatik is an extension framework for Linux that combines the approaches of Extensible Operating Systems and Scripting Languages. This approach, named Kernel Scripting, advocates that OS kernels can be dynamically extended by using a high-level scripting language. Lunatik is a programming and execution environment that offers two main features: it allows developers to make subsystems scriptable and allows users to run Lua scripts in the kernel.\n\nWhat is Pallene?\n\nPallene is a statically-typed programming language, intended to serve as a more performant companion to Lua. It is designed to seamlessly interoperate with Lua, with first-class support for Lua data types. Pallene is able to be faster than Lua (sometimes as fast as LuaJIT) by taking advantage of the type annotations in Pallene in order to guide the compiler into outputting efficient executable code.", "image_url": "https://summerofcode.withgoogle.com/media/org/lablua/thpyrwywpx4z6p6s.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/lablua.webp", "logo_r2_url": null, @@ -16,10 +16,11 @@ 2020, 2021, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "lua", @@ -56,7 +57,8 @@ "year_2022": null, "year_2023": null, "year_2024": 4, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "students_by_year": { "year_2016": 8, @@ -68,7 +70,8 @@ "year_2022": null, "year_2023": null, "year_2024": 4, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "total_students": 43 }, @@ -919,7 +922,8 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/lablua" - } + }, + "year_2026": null }, "first_time": false, "contact": { @@ -948,6 +952,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.358Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/learning-equality.json b/new-api-details/organizations/learning-equality.json index a8c15092..c5a69c5e 100644 --- a/new-api-details/organizations/learning-equality.json +++ b/new-api-details/organizations/learning-equality.json @@ -3,7 +3,7 @@ "slug": "learning-equality", "name": "Learning Equality", "category": "End user applications", - "description": "Building equity in education to transform lives", + "description": "Learning Equality is an education technology nonprofit focused on fostering student-centered learning and advancing organizations working with underserved teachers and learners globally. Through community-driven innovation and strategic partnerships, we provide offline-first, open-source digital tools and implementation support to help them thrive.\nWe create and support open-source technology that directly and focally addresses the infrastructural and resource equity gaps that further marginalize learners with limited Internet. We started by enabling offline access to Khan Academy's videos and exercises and grew to become a key player in the global education technology landscape. For the past 13 years we’ve focused on boosting learning outcomes in some of the most challenging contexts, supporting disconnected learning in refugee camps, rural schools, out-of-school programs, and more.\nLearning Equality develops and maintains Kolibri, an adaptable set of open tools specially designed to support teaching and learning with tech but without the Internet for the third of the world that still lacks access to connectivity.\nKolibri is centered around an offline-first learning platform that runs on a variety of low-cost and legacy devices. It is complemented by a curricular tool, a library of open educational materials, and a toolkit of resources to support training and implementation. These tools are open and available in a variety of languages to better support learners and educators globally.\nAs a community-driven nonprofit, Learning Equality works closely to co-design Kolibri with a core network of collaborators, including national NGOs, UN agencies, government, and corporate partners. We also adopt a needs-based approach, constantly gathering insights from our community to inform the development of our tools.\nThrough its do-it-yourself adoption model and strategic collaborations, Learning Equality has conservatively reached 13 million learners and educators in every country in the world. Given our offline access and distribution model, we learn about usage of Kolibri through a combination of telemetry ping backs of high level, aggregate, anonymized statistics, data from partners, and use of our Kolibri Data Portal. Since instances of Kolibri never need to connect to the Internet to be used, we do not know about usage across every instance, which is why this is an informed estimate from years of data.", "image_url": "https://summerofcode.withgoogle.com/media/org/learning-equality/iptmmzjiktknrg9p-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/learning-equality.webp", "logo_r2_url": null, @@ -13,10 +13,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2021, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -43,7 +44,8 @@ "year_2022": 3, "year_2023": 3, "year_2024": 4, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -55,7 +57,8 @@ "year_2022": 3, "year_2023": 3, "year_2024": 4, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "total_students": 16 }, @@ -404,13 +407,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/learning-equality" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "gsoc@learningequality.org", "guide_url": "https://learningequality.org/r/gsoc-contributor-guidelines", - "ideas_url": "https://docs.google.com/document/d/e/2PACX-1vT49WKgbsAIUoJ0jJS8LTWWm7UTByM0Pw3qt0KgyU_BShB1oGtZBkrEWuannFsRMVvGd0QBytZt8blh/pub", + "ideas_url": "https://docs.google.com/document/d/e/2PACX-1vShAAywLDbBu5WH-Wv44rxetISCOQmHxBwxDw63Nt_OcpPVIZW2jjT8sd_GLTpeNvspze8W-_c9JUdl/pub", "irc_channel": null, "mailing_list": "https://community.learningequality.org/" }, @@ -418,7 +422,7 @@ "blog": "https://blog.learningequality.org/", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/learningequality/kolibri", "gitlab": null, "instagram": null, "linkedin": null, @@ -433,6 +437,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.361Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/learning-unlimited.json b/new-api-details/organizations/learning-unlimited.json new file mode 100644 index 00000000..11b64990 --- /dev/null +++ b/new-api-details/organizations/learning-unlimited.json @@ -0,0 +1,102 @@ +{ + "id": "new_2026_learning-unlimited", + "slug": "learning-unlimited", + "name": "Learning Unlimited", + "category": "End user applications", + "description": "Learning Unlimited's mission is to create educational opportunities for high school and middle school students, and to provide leadership and teaching opportunities for college students. Learning Unlimited strives to engage students of all ages in an educational setting to share and discover their passions. To accomplish this, Learning Unlimited links local universities with their communities. Our open source work revolves around building and maintaining website infrastructure for these chapters to use.", + "image_url": "https://summerofcode.withgoogle.com/media/org/learning-unlimited/prqi7cnmji8guahm-360.png", + "img_r2_url": "https://summerofcode.withgoogle.com/media/org/learning-unlimited/prqi7cnmji8guahm-360.png", + "logo_r2_url": null, + "url": "https://www.learningu.org/", + "active_years": [ + 2026 + ], + "first_year": 2026, + "last_year": 2026, + "is_currently_active": true, + "technologies": [ + "python", + "javascript", + "django", + "html", + "css" + ], + "topics": [ + "education", + "web", + "full stack", + "Outreach" + ], + "total_projects": 0, + "stats": { + "avg_projects_per_appeared_year": 0, + "projects_by_year": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "students_by_year": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "total_students": 0 + }, + "years": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "contact": { + "email": "gsoc-mentors-2026@learningu.org", + "guide_url": "https://docs.google.com/document/d/e/2PACX-1vSQrzex-1PlqTGwOiFmiFnGlm1_3ajsf-Wo2z-9hUzJybZQOBD4EraIH_iW7Qn87TPB2SR5O_JX1T6C/pub", + "ideas_url": "https://docs.google.com/document/d/e/2PACX-1vQHE4OyXDdhDPkP2X7OWdSjauW_rQi1Fhr3RwEgTrSjDbrHO3nePDCdJkCheeocMrRTdqbHqnmb9WcG/pub", + "irc_channel": null, + "mailing_list": null + }, + "social": { + "blog": null, + "discord": null, + "facebook": null, + "github": "https://github.com/learning-unlimited", + "gitlab": null, + "instagram": null, + "linkedin": null, + "mastodon": null, + "medium": null, + "reddit": null, + "slack": null, + "stackoverflow": null, + "twitch": null, + "twitter": null, + "youtube": null + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:46:24.131Z" + } +} \ No newline at end of file diff --git a/new-api-details/organizations/librecube-initiative.json b/new-api-details/organizations/librecube-initiative.json index a181c5c8..e4bd257a 100644 --- a/new-api-details/organizations/librecube-initiative.json +++ b/new-api-details/organizations/librecube-initiative.json @@ -3,7 +3,7 @@ "slug": "librecube-initiative", "name": "LibreCube Initiative", "category": "Science and medicine", - "description": "Open Source Space Exploration", + "description": "LibreCube develops an ecosystem of open source space technology for exploration systems. \n\nOur vision is to enable everyone to get involved in building systems for exploration using open source hardware and software. We believe that discovering new worlds and getting scientific insights should be a matter to all humankind.\n\n\nLibreCube is based on these three pillars: \n\n\n1) Open Source: Everything we do at LibreCube is made available to the public free and open source. Also, we only use free and open source tools for our work – this way, really everyone can get involved!\n\n\n2) Free and Open Standards: We rely on proven and tested standards for our system designs, with preference for standards from the space domain.\n\n\n3) Reference Architecture: Defining a generic architecture of system that have standardized interfaces makes it possible to combine and re-use elements for various different mission applications.", "image_url": "https://summerofcode.withgoogle.com/media/org/librecube-initiative/zkfjswciuihmdxu1-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/librecube-initiative.webp", "logo_r2_url": null, @@ -11,11 +11,12 @@ "active_years": [ 2021, 2022, - 2024 + 2024, + 2026 ], "first_year": 2021, - "last_year": 2024, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ "python", "micropython", @@ -49,7 +50,8 @@ "year_2022": 1, "year_2023": null, "year_2024": 4, - "year_2025": null + "year_2025": null, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -61,7 +63,8 @@ "year_2022": 1, "year_2023": null, "year_2024": 4, - "year_2025": null + "year_2025": null, + "year_2026": null }, "total_students": 7 }, @@ -223,13 +226,14 @@ ], "projects_url": "https://summerofcode.withgoogle.com/archive/2024/organizations/librecube-initiative/" }, - "year_2025": null + "year_2025": null, + "year_2026": null }, "first_time": false, "contact": { "email": "info@librecube.org", - "guide_url": null, - "ideas_url": null, + "guide_url": "https://librecube.org/google-summer-of-code-proposal/", + "ideas_url": "https://librecube.org/google-summer-of-code/", "irc_channel": "https://app.element.io/#/room/#librecube.org:matrix.org", "mailing_list": null }, @@ -238,7 +242,7 @@ "discord": null, "facebook": null, "github": null, - "gitlab": null, + "gitlab": "https://gitlab.com/librecube", "instagram": null, "linkedin": null, "mastodon": null, @@ -252,6 +256,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.366Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/librehealth.json b/new-api-details/organizations/librehealth.json index 80fdce16..c4311f52 100644 --- a/new-api-details/organizations/librehealth.json +++ b/new-api-details/organizations/librehealth.json @@ -3,7 +3,7 @@ "slug": "librehealth", "name": "LibreHealth", "category": "Science and medicine", - "description": "Healthcare for Humanity", + "description": "LibreHealth is the foundation of a worldwide ecosystem of open source Health IT innovation and is a place where people can come together to build tools that enhance the quality of healthcare around the world.\n\nWe currently have under our umbrella the following projects:\n\n- LibreHealth Toolkit (http://librehealth.io/projects/lh-toolkit/), a foundational base for - building Health IT tools\n\n- LibreHealth EHR (http://librehealth.io/projects/lh-ehr/), an electronic health record derived from best practices and technology from leading open source systems.\n\n- LibreHealth Radiology (https://librehealth.io/projects/lh-radiology), a specialized distribution of LibreHealth Toolkit customized for radiology healthcare professionals\n\nOur GSoC student projects will address the real-life needs of our projects to help improve the delivery of health care around the world. We have a team of expert mentors with decades of experience to help you in your work. They will be continually adding project ideas to our forum (https://forums.librehealth.io), and we encourage you to suggest ideas too as you learn more about our projects.\n\nCheck out project ideas (this will change from year to year): https://forums.librehealth.io/ideas", "image_url": "https://summerofcode.withgoogle.com/media/org/librehealth/wulnuhdjtsi0ngiv-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/librehealth.webp", "logo_r2_url": null, @@ -15,11 +15,12 @@ 2020, 2021, 2022, - 2023 + 2023, + 2026 ], "first_year": 2017, - "last_year": 2023, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ "mysql", "javascript", @@ -58,7 +59,8 @@ "year_2022": 4, "year_2023": 5, "year_2024": null, - "year_2025": null + "year_2025": null, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -70,7 +72,8 @@ "year_2022": 4, "year_2023": 5, "year_2024": null, - "year_2025": null + "year_2025": null, + "year_2026": null }, "total_students": 29 }, @@ -723,13 +726,14 @@ "projects_url": "https://summerofcode.withgoogle.com/programs/2023/organizations/librehealth" }, "year_2024": null, - "year_2025": null + "year_2025": null, + "year_2026": null }, "first_time": false, "contact": { "email": "community@librehealth.io", - "guide_url": null, - "ideas_url": null, + "guide_url": "https://forums.librehealth.io/t/readme-making-a-successful-gsoc-proposal/4359", + "ideas_url": "https://forums.librehealth.io/ideas", "irc_channel": "https://chat.librehealth.io", "mailing_list": "https://forums.librehealth.io" }, @@ -738,7 +742,7 @@ "discord": null, "facebook": null, "github": null, - "gitlab": null, + "gitlab": "https://gitlab.com/librehealth", "instagram": null, "linkedin": null, "mastodon": null, @@ -752,6 +756,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.370Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/libreoffice.json b/new-api-details/organizations/libreoffice.json index 79597f51..82538540 100644 --- a/new-api-details/organizations/libreoffice.json +++ b/new-api-details/organizations/libreoffice.json @@ -3,7 +3,7 @@ "slug": "libreoffice", "name": "LibreOffice", "category": "End user applications", - "description": "LibreOffice is a free and open source office suite", + "description": "LibreOffice is a modern Free & Open Source Office suite, one of the largest open source projects, and used by millions of users worldwide. LibreOffice is compatible with many file formats like Microsoft® Word, Excel, PowerPoint and Publisher. At its heart though, LibreOffice is built around an open standard, the OpenDocument Format, as its native file format.\nLibreOffice is developed by users who, just like you, believe in the principles of Free Software and in sharing their work with the world in non-restrictive ways. The development of LibreOffice is supported by The Document Foundation which provides the infrastructure for the project.\nWe believe that users should have the freedom to run, copy, distribute, study, change and improve the software that we distribute. While we do offer no-cost downloads of the LibreOffice suite of programs, Free Software is first and foremost a matter of liberty, not price. We campaign for these freedoms because we believe that everyone deserves them.\nThough the members of our community hail from many different backgrounds, we all value personal choice and transparency, which translates practically into wider compatibility, more utility, and no end-user lock-in to a single product. We believe that Free Software can provide better-quality, higher-reliability, increased-security, and greater-flexibility than proprietary alternatives. LibreOffice is a large project (approx. 6MLOC), which makes it interestingly complex, but at the same time, provides a place for all sorts of contribution & skills.\nThe community behind LibreOffice is the heart of the project, without which we would not have the resources to continue developing our software. The passion and drive that every individual brings to the community results in collaborative development that often exceeds our own expectations. With tons of different roles in the project, we invite everyone to join us in our work and help us to make LibreOffice known, prosper, and accessible to all.", "image_url": "https://summerofcode.withgoogle.com/media/org/libreoffice/3g60m1gvsyzwzvvk-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/libreoffice.webp", "logo_r2_url": null, @@ -18,10 +18,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -53,7 +54,8 @@ "year_2022": 2, "year_2023": 5, "year_2024": 7, - "year_2025": 7 + "year_2025": 7, + "year_2026": null }, "students_by_year": { "year_2016": 9, @@ -65,7 +67,8 @@ "year_2022": 2, "year_2023": 5, "year_2024": 7, - "year_2025": 7 + "year_2025": 7, + "year_2026": null }, "total_students": 59 }, @@ -1329,7 +1332,8 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/libreoffice" - } + }, + "year_2026": null }, "first_time": false, "contact": { @@ -1358,6 +1362,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.377Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/libssh.json b/new-api-details/organizations/libssh.json index 1024c0ce..2c2bf7d5 100644 --- a/new-api-details/organizations/libssh.json +++ b/new-api-details/organizations/libssh.json @@ -3,7 +3,7 @@ "slug": "libssh", "name": "libssh", "category": "Programming languages", - "description": "The SSH library", + "description": "This project is for programmers needing a working SSH implementation by the mean of a library. The complete control of the client is made by the programmer. With libssh, you can remotely execute programs, transfer files, use a secure and transparent tunnel for your remote programs. With its Secure FTP implementation, you can play with remote files easily, without third-party programs others than libcrypto (from openssl), libgcrypt or mbedTLS.", "image_url": "https://summerofcode.withgoogle.com/media/org/libssh/kcfc8lhxh3uyozbu-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/libssh.webp", "logo_r2_url": null, @@ -12,10 +12,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2022, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "c", @@ -41,7 +42,8 @@ "year_2022": 1, "year_2023": 2, "year_2024": 2, - "year_2025": 1 + "year_2025": 1, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -53,7 +55,8 @@ "year_2022": 1, "year_2023": 2, "year_2024": 2, - "year_2025": 1 + "year_2025": 1, + "year_2026": null }, "total_students": 6 }, @@ -200,7 +203,8 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/libssh" - } + }, + "year_2026": null }, "first_time": false, "contact": { @@ -229,6 +233,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.593Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/liquid-galaxy-project.json b/new-api-details/organizations/liquid-galaxy-project.json index 06b4c675..2062a1f4 100644 --- a/new-api-details/organizations/liquid-galaxy-project.json +++ b/new-api-details/organizations/liquid-galaxy-project.json @@ -3,7 +3,7 @@ "slug": "liquid-galaxy-project", "name": "Liquid Galaxy project", "category": "Data", - "description": "We code immersive and interactive apps with GEarth", + "description": "Liquid Galaxy is a remarkable panoramic system that is tremendously compelling. It started off as a Google 20% project to run Google Earth across a small cluster of PC's and it has grown from there! \nLiquid Galaxy hardware consists of one or more computers driving multiple displays. Liquid Galaxy applications have been developed using a master/slave architecture. The view orientation of each slave display is configured in reference to the view of the master display. Navigation on the system is done from the master instance and the location on the master is broadcast to the slaves over UDP. The slave instances, knowing their own locations in reference to the master, then change their views accordingly.\nThe Liquid Galaxy Project, while making use of Google Earth software, does not develop the Google Earth code-base itself. Google Earth is not open-source software, although it is free (as in beer). Instead, the Liquid Galaxy Project works on extending the Liquid Galaxy system with open-source software both improving its administration and enabling open-source applications, so that content of various types can be displayed in the immersive panoramic environment.\nArtificial Intelligence focus:\n2026 is the year when AI is going to change the coding industry, and GSoC and the open-source projects on it, have to jump on.\nAt the Liquid Galaxy community, we’ve been using AI for years to obtain data to be shown on Google Earth for our projects, using many models and technologies. \nThis 2026, all the projects will have an Artificial Intelligence voice, and most of them will use of diferent AI models to handle queries and arrange data, starting from Google's Gemini and Gemma.", "image_url": "https://summerofcode.withgoogle.com/media/org/liquid-galaxy-project/idbd8hebl6j7ajxn-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/liquid-galaxy-project.webp", "logo_r2_url": null, @@ -17,10 +17,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "javascript", @@ -39,7 +40,8 @@ "machinelearning", "linux", "flutter", - "Google Earth" + "Google Earth", + "nodejs" ], "topics": [ "virtual reality", @@ -73,7 +75,8 @@ "year_2022": 9, "year_2023": 11, "year_2024": 11, - "year_2025": 11 + "year_2025": 11, + "year_2026": null }, "students_by_year": { "year_2016": 4, @@ -85,7 +88,8 @@ "year_2022": 9, "year_2023": 11, "year_2024": 11, - "year_2025": 11 + "year_2025": 11, + "year_2026": null }, "total_students": 70 }, @@ -1633,13 +1637,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/liquid-galaxy-project" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "liquidgalaxylab@gmail.com", - "guide_url": "https://www.liquidgalaxy.eu/2024/11/unique-post-for-gsoc-2025-at-liquid.html", - "ideas_url": "https://www.liquidgalaxy.eu/2024/11/unique-post-for-gsoc-2025-at-liquid.html", + "guide_url": "https://www.liquidgalaxy.eu/2025/11/GSoC2026.html", + "ideas_url": "https://www.liquidgalaxy.eu/2026/01/gsoc-2026-project-ideas.html", "irc_channel": "https://liquidgalaxy.slack.com/", "mailing_list": "https://discord.gg/peGA5K8tJU" }, @@ -1647,7 +1652,7 @@ "blog": "https://www.liquidgalaxy.eu/#main-wrapper", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/LiquidGalaxyLAB/", "gitlab": null, "instagram": null, "linkedin": null, @@ -1662,6 +1667,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.386Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/llvm-compiler-infrastructure.json b/new-api-details/organizations/llvm-compiler-infrastructure.json index b7d079f2..50e320b1 100644 --- a/new-api-details/organizations/llvm-compiler-infrastructure.json +++ b/new-api-details/organizations/llvm-compiler-infrastructure.json @@ -3,7 +3,7 @@ "slug": "llvm-compiler-infrastructure", "name": "LLVM Compiler Infrastructure", "category": "Programming languages", - "description": "LLVM Compiler Infrastructure", + "description": "The LLVM Project is a collection of modular and reusable compiler and toolchain technologies. Despite its name, LLVM has little to do with traditional virtual machines. The name \"LLVM\" itself is not an acronym; it is the full name of the project.\n\nLLVM began as a research project at the University of Illinois, with the goal of providing a modern, SSA-based compilation strategy capable of supporting both static and dynamic compilation of arbitrary programming languages. Since then, LLVM has grown to be an umbrella project consisting of a number of subprojects, many of which are being used in production by a wide variety of commercial and open source projects as well as being widely used in academic research.\n\nIn addition to official subprojects of LLVM, there are a broad variety of other projects that use components of LLVM for various tasks. Through these external projects you can use LLVM to compile Ruby, Python, Haskell, Rust, D, PHP, Pure, Lua, Julia, and a number of other languages. A major strength of LLVM is its versatility, flexibility, and reusability, which is why it is being used for such a wide variety of different tasks: everything from doing light-weight JIT compiles of embedded languages like Lua to compiling Fortran code for massive super computers.", "image_url": "https://summerofcode.withgoogle.com/media/org/llvm-compiler-infrastructure/ize6lrlftlvdxtqe-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/llvm-compiler-infrastructure.webp", "logo_r2_url": null, @@ -18,10 +18,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "c", @@ -57,7 +58,8 @@ "year_2022": 13, "year_2023": 20, "year_2024": 12, - "year_2025": 15 + "year_2025": 15, + "year_2026": null }, "students_by_year": { "year_2016": 7, @@ -69,7 +71,8 @@ "year_2022": 13, "year_2023": 20, "year_2024": 12, - "year_2025": 15 + "year_2025": 15, + "year_2026": null }, "total_students": 108 }, @@ -2355,7 +2358,8 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/llvm-compiler-infrastructure" - } + }, + "year_2026": null }, "first_time": false, "contact": { @@ -2369,7 +2373,7 @@ "blog": "https://blog.llvm.org/", "discord": "https://discord.com/channels/636084430946959380/642374147640524831", "facebook": null, - "github": null, + "github": "https://github.com/llvm/llvm-project/", "gitlab": null, "instagram": null, "linkedin": null, @@ -2384,6 +2388,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.353Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/machine-learning-for-science-ml4sci.json b/new-api-details/organizations/machine-learning-for-science-ml4sci.json index ce258c32..b41548ac 100644 --- a/new-api-details/organizations/machine-learning-for-science-ml4sci.json +++ b/new-api-details/organizations/machine-learning-for-science-ml4sci.json @@ -3,7 +3,7 @@ "slug": "machine-learning-for-science-ml4sci", "name": "Machine Learning for Science (ML4SCI)", "category": "Science and medicine", - "description": "Machine learning applications in science", + "description": "Machine Learning for Science (ML4SCI) is an umbrella organization for machine learning-related projects in science. ML4SCI brings together researchers from universities and scientific laboratories with motivated students to join existing scientific collaborations and contribute to cutting edge science projects across a wide variety of disciplines. Students work on existing problems to develop new machine learning-based approaches and produce open source code that directly contributes to solving these scientific challenges. \n\nML4SCI currently includes projects from a variety of fields. For example, some of them explore the uses of machine learning for particle reconstruction and classification in high-energy physics, deep learning-based searches for dark matter in astrophysics, applications of machine learning techniques to data returned from planetary science missions, applications of quantum machine learning to science, and others.\n\nMachine learning ideas and approaches can be broadly applicable and transferable across the scientific domains. The goals of ML4SCI projects are to grow the open-source community in machine learning for science by addressing important scientific challenges and transferring the knowledge and tools of machine learning across the disciplines. We look forward to your applications!", "image_url": "https://summerofcode.withgoogle.com/media/org/machine-learning-for-science-ml4sci/rs5cxhuyh9dpwekt-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/machine-learning-for-science-ml4sci.webp", "logo_r2_url": null, @@ -13,10 +13,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2021, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -46,7 +47,8 @@ "year_2022": 20, "year_2023": 23, "year_2024": 26, - "year_2025": 31 + "year_2025": 31, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -58,7 +60,8 @@ "year_2022": 20, "year_2023": 23, "year_2024": 26, - "year_2025": 31 + "year_2025": 31, + "year_2026": null }, "total_students": 102 }, @@ -2314,21 +2317,22 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/machine-learning-for-science-ml4sci" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "ml4-sci@cern.ch", "guide_url": null, - "ideas_url": "https://ml4sci.org/", + "ideas_url": "https://ml4sci.org/activities/gsoc2026.html", "irc_channel": "https://app.gitter.im/#/room/#ML4SCI_general:gitter.im", - "mailing_list": "https://simba3.web.cern.ch/simba3/SelfSubscription.aspx?groupName=ml4sci-announce" + "mailing_list": "ml4-sci@cern.ch" }, "social": { "blog": null, "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/ML4SCI", "gitlab": null, "instagram": null, "linkedin": null, @@ -2343,6 +2347,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.426Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/malariagen.json b/new-api-details/organizations/malariagen.json new file mode 100644 index 00000000..ba2c15dd --- /dev/null +++ b/new-api-details/organizations/malariagen.json @@ -0,0 +1,100 @@ +{ + "id": "new_2026_malariagen", + "slug": "malariagen", + "name": "MalariaGEN", + "category": "Science and medicine", + "description": "MalariaGEN is a global network of global partners who share and integrate data relevant to inform malaria surveillance, our mission is to generate insights and tools that bridge the gaps for analysts in malaria endemic settings to use their data meaningfully to inform public health efforts. We build and optimise data resources and analytical tools to run directly in the cloud. Our flagship project is the Vector Observatory, which includes whole-genome sequence data for over 30,000 mosquitoes, integrating data from 70 partners across the globe from over 17 different mosquito species -- this is the largest resource on genetic variation data for any multicellular organism (other than humans!). Our goal is to enable analysts, scientists, students and public health practitioners to access these data without the need for any dedicated compute infrastructure, by optimising our resources to run within free compute environments (a big shout to Google Colab!) and by developing training resources that support partners to get confident with using cloud-native data and resources for their analysis.", + "image_url": "https://summerofcode.withgoogle.com/media/org/malariagen/8dgzolp37fdiwm5h-360.png", + "img_r2_url": "https://summerofcode.withgoogle.com/media/org/malariagen/8dgzolp37fdiwm5h-360.png", + "logo_r2_url": null, + "url": "https://www.malariagen.net/", + "active_years": [ + 2026 + ], + "first_year": 2026, + "last_year": 2026, + "is_currently_active": true, + "technologies": [ + "python", + "GCS" + ], + "topics": [ + "machine learning", + "genomics", + "big data", + "cloud", + "analytics" + ], + "total_projects": 0, + "stats": { + "avg_projects_per_appeared_year": 0, + "projects_by_year": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "students_by_year": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "total_students": 0 + }, + "years": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "contact": { + "email": null, + "guide_url": "https://docs.google.com/document/d/178LEZEsC0xbknHDId83k5XzIDRtnyVw243Ta0fhlvPM/edit?usp=sharing", + "ideas_url": "https://docs.google.com/document/d/178LEZEsC0xbknHDId83k5XzIDRtnyVw243Ta0fhlvPM/edit?tab=t.0", + "irc_channel": null, + "mailing_list": "support@malariagen.net" + }, + "social": { + "blog": "https://github.com/malariagen/malariagen-data-python/discussions", + "discord": null, + "facebook": null, + "github": "https://github.com/malariagen/", + "gitlab": null, + "instagram": null, + "linkedin": null, + "mastodon": null, + "medium": null, + "reddit": null, + "slack": null, + "stackoverflow": null, + "twitch": null, + "twitter": null, + "youtube": null + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:46:24.131Z" + } +} \ No newline at end of file diff --git a/new-api-details/organizations/mariadb.json b/new-api-details/organizations/mariadb.json index eaa08944..8cc478b4 100644 --- a/new-api-details/organizations/mariadb.json +++ b/new-api-details/organizations/mariadb.json @@ -3,7 +3,7 @@ "slug": "mariadb", "name": "MariaDB", "category": "Data", - "description": "The fastest growing Open Source Database", + "description": "MariaDB Foundation is the non-profit organization behind MariaDB Server, the fastest growing open source databases. MariaDB Foundation's mission is to ensure the continuity of the MariaDB Server code as well as foster and facilitated collaboration within the MariaDB ecosystem. As part of GSoC, MariaDB Foundation seeks to bring more developers into the MariaDB Server (and related projects) code base.", "image_url": "https://summerofcode.withgoogle.com/media/org/mariadb/0nbzguld3ntsgeqv-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mariadb.webp", "logo_r2_url": null, @@ -18,10 +18,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "c", @@ -32,7 +33,8 @@ "c++", "python", "javascript", - "databases" + "databases", + "c/c++" ], "topics": [ "databases", @@ -57,7 +59,8 @@ "year_2022": 6, "year_2023": 5, "year_2024": 4, - "year_2025": 7 + "year_2025": 7, + "year_2026": null }, "students_by_year": { "year_2016": 5, @@ -69,7 +72,8 @@ "year_2022": 6, "year_2023": 5, "year_2024": 4, - "year_2025": 7 + "year_2025": 7, + "year_2026": null }, "total_students": 39 }, @@ -828,21 +832,22 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/mariadb" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "maria-discuss@lists.launchpad.net", "guide_url": "https://mariadb.org/gsoc2022-instructions/", - "ideas_url": "https://mariadb.com/kb/en/google-summer-of-code-2025/", + "ideas_url": "https://mariadb.com/docs/general-resources/community/contributing-participating/google-summers-of-code/google-summer-of-code-2026", "irc_channel": "https://mariadb.zulipchat.com/", - "mailing_list": "https://mariadb.com/kb/en/mailing-lists/" + "mailing_list": "https://lists.mariadb.org/postorius/lists/developers.lists.mariadb.org/" }, "social": { "blog": "https://mariadb.org/blog/", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/MariaDB/server", "gitlab": null, "instagram": null, "linkedin": null, @@ -857,6 +862,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.436Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/mbdyn.json b/new-api-details/organizations/mbdyn.json index 54d7a3a8..9903314b 100644 --- a/new-api-details/organizations/mbdyn.json +++ b/new-api-details/organizations/mbdyn.json @@ -20,7 +20,7 @@ ], "first_year": 2016, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "c++", "python", @@ -393,6 +393,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.392Z" + "generated_at": "2026-02-19T12:41:12.412Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/mdanalysis.json b/new-api-details/organizations/mdanalysis.json index 8be3abb1..99362b84 100644 --- a/new-api-details/organizations/mdanalysis.json +++ b/new-api-details/organizations/mdanalysis.json @@ -3,7 +3,7 @@ "slug": "mdanalysis", "name": "MDAnalysis", "category": "Science and medicine", - "description": "Analysis of molecular simulations data with Python", + "description": "MDAnalysis is a Python library for the analysis of computer simulations of many-body systems at the molecular scale, spanning use cases from interactions of drugs with proteins to novel materials. It is written by scientists for scientists and is used for cutting edge research in biophysics, chemistry, soft-matter physics, and materials research around the world in academia and national research labs. MDAnalysis strives to be highly interoperable and hence a growing number of projects use MDAnalysis as their foundational library or integrate it.\n\nThe goal of MDAnalysis is to make it easy for users to analyze data that are produced by simulations (primarily molecular dynamics simulations) that run on some of the largest supercomputers in the world. MDAnalysis accomplishes this goal by providing a toolkit of programming building blocks that provide an abstract Python interface to the simulation data — agnostic of the specific simulation package that produced it — that lends itself to interactive data exploration and rapid prototyping but is also a robust foundational library that can form the basis for new computational tools.\n\nMDAnalysis allows one to read particle-based trajectories such as the ones produced by MD simulations or individual coordinate frames (such as biomolecules in the Protein Databank format) and access the atomic coordinates through NumPy arrays. Together with a powerful selection language and many implemented analysis algorithms, MDAnalysis provides a flexible and fast framework for complex analysis tasks. Welcoming documentation such as the User Guide https://userguide.mdanalysis.org/ make it easy to get started. New releases are downloaded a few thousand times and the academic papers describing MDAnalysis are cited more than almost two thousand times, indicating the widespread use in the academic community.", "image_url": "https://summerofcode.withgoogle.com/media/org/mdanalysis/kf8rugznsqeskumi-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mdanalysis.webp", "logo_r2_url": null, @@ -14,17 +14,19 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2020, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", "cython", "c", "c++", - "numpy" + "numpy", + "c/c++" ], "topics": [ "computational chemistry", @@ -57,7 +59,8 @@ "year_2022": 2, "year_2023": 2, "year_2024": 3, - "year_2025": 4 + "year_2025": 4, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -69,7 +72,8 @@ "year_2022": 2, "year_2023": 2, "year_2024": 3, - "year_2025": 4 + "year_2025": 4, + "year_2026": null }, "total_students": 16 }, @@ -410,13 +414,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/mdanalysis" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "mdanalysis@numfocus.org", "guide_url": "https://github.com/MDAnalysis/mdanalysis/wiki/Google-Summer-Of-Code", - "ideas_url": "https://github.com/MDAnalysis/mdanalysis/wiki/GSoC-2025-Project-Ideas", + "ideas_url": "https://github.com/MDAnalysis/mdanalysis/wiki/GSoC-2026-Project-Ideas", "irc_channel": "https://discord.com/channels/807348386012987462/", "mailing_list": "https://github.com/MDAnalysis/mdanalysis/discussions" }, @@ -424,7 +429,7 @@ "blog": "https://www.mdanalysis.org/blog/", "discord": "https://discord.com/channels/807348386012987462/", "facebook": null, - "github": null, + "github": "https://github.com/MDAnalysis/mdanalysis", "gitlab": null, "instagram": null, "linkedin": null, @@ -439,6 +444,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.394Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/measurement-lab.json b/new-api-details/organizations/measurement-lab.json new file mode 100644 index 00000000..63166c0e --- /dev/null +++ b/new-api-details/organizations/measurement-lab.json @@ -0,0 +1,102 @@ +{ + "id": "new_2026_measurement-lab", + "slug": "measurement-lab", + "name": "Measurement Lab", + "category": "Data", + "description": "Founded in 2009, Measurement Lab (M-Lab) is an open platform for studying Internet performance and neutrality over time. We provide public, transparent data to empower researchers, policymakers, and open Internet advocates to make informed decisions about Internet infrastructure and policies.", + "image_url": "https://summerofcode.withgoogle.com/media/org/measurement-lab/0sttrnvo03uejp1z.png", + "img_r2_url": "https://summerofcode.withgoogle.com/media/org/measurement-lab/0sttrnvo03uejp1z.png", + "logo_r2_url": null, + "url": "https://www.measurementlab.net/", + "active_years": [ + 2026 + ], + "first_year": 2026, + "last_year": 2026, + "is_currently_active": true, + "technologies": [ + "python", + "javascript", + "html", + "sql", + "css" + ], + "topics": [ + "data analysis", + "speed test", + "Internet measurements", + "Internet quality" + ], + "total_projects": 0, + "stats": { + "avg_projects_per_appeared_year": 0, + "projects_by_year": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "students_by_year": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "total_students": 0 + }, + "years": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "contact": { + "email": "pavlos@measurementlab.net", + "guide_url": "https://github.com/m-lab/gsoc", + "ideas_url": "https://github.com/m-lab/gsoc", + "irc_channel": null, + "mailing_list": null + }, + "social": { + "blog": "https://www.measurementlab.net/blog/", + "discord": null, + "facebook": null, + "github": "https://github.com/m-lab/", + "gitlab": null, + "instagram": null, + "linkedin": null, + "mastodon": null, + "medium": null, + "reddit": null, + "slack": null, + "stackoverflow": null, + "twitch": null, + "twitter": "https://x.com/MeasurementLab", + "youtube": null + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:46:24.131Z" + } +} \ No newline at end of file diff --git a/new-api-details/organizations/meshery.json b/new-api-details/organizations/meshery.json index fe305fbd..f56d6696 100644 --- a/new-api-details/organizations/meshery.json +++ b/new-api-details/organizations/meshery.json @@ -3,22 +3,24 @@ "slug": "meshery", "name": "Meshery", "category": "Infrastructure and cloud", - "description": "the extensible, collaborative, Kubernetes manager", + "description": "As a self-service engineering platform, Meshery enables collaborative design and operation of cloud and cloud native infrastructure.\n\nMeshery is for all cloud and cloud native infrastructure. Kubernetes-centric. Kubernetes not required.\n\nInfrastructure diversity is a reality for any enterprise. Whether you’re running a single Kubernetes cluster or multiple Kubernetes clusters, on one cloud or multiple clouds, you’ll find that Meshery supports your infrastructure diversity (or lack thereof).\n\nMeshery is for engineering teams. Whether you are a Platform Engineer, Site Reliability Engineer, DevOps Engineer, Developer, or Operator, Meshery provides a platform for you to collaborate on the design and operation of your cloud native infrastructure.\n\nWhether making a Day 0 adoption choice, a Day 1 configuration and provisioning, or maintaining a Day 2 deployment, Meshery has useful capabilities in either circumstance. Targeted audience for Meshery project would be any technology operators that leverage Cloud and cloud native infrastructure.\n\nMeshery is like Google Docs for DevOps. Using Meshery extensions you can freely collaborate across projects and team with multi-player infrastructure design and operation.\n\nMeshery enables cloud native best practices with design patterns and the Meshery Catalog. Through Models, Meshery describes infrastructure under management, enabling you to define cloud native designs and patterns and then to export those designs and share within the Meshery Catalog.", "image_url": "https://summerofcode.withgoogle.com/media/org/meshery/4ywkbdszwd1sw2rq-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/meshery.webp", "logo_r2_url": null, "url": "https://meshery.io", "active_years": [ - 2025 + 2025, + 2026 ], "first_year": 2025, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "javascript", "golang", "kubernetes", - "visual design" + "visual design", + "ai" ], "topics": [ "collaboration", @@ -40,7 +42,8 @@ "year_2022": null, "year_2023": null, "year_2024": null, - "year_2025": 2 + "year_2025": 2, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -52,7 +55,8 @@ "year_2022": null, "year_2023": null, "year_2024": null, - "year_2025": 2 + "year_2025": 2, + "year_2026": null }, "total_students": 2 }, @@ -105,13 +109,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/meshery" - } + }, + "year_2026": null }, "first_time": true, "contact": { "email": "https://meshery.io/subscribe", "guide_url": "https://docs.meshery.io/project/contributing", - "ideas_url": "https://meshery.io/programs/gsoc/2025", + "ideas_url": "https://meshery.io/programs/gsoc/2026", "irc_channel": "https://slack.meshery.io", "mailing_list": "http://discuss.meshery.io" }, @@ -119,7 +124,7 @@ "blog": "https://meshery.io/blog", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/meshery", "gitlab": null, "instagram": null, "linkedin": null, @@ -134,6 +139,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.467Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/metabrainz-foundation-inc.json b/new-api-details/organizations/metabrainz-foundation-inc.json index d34b47cf..010d007e 100644 --- a/new-api-details/organizations/metabrainz-foundation-inc.json +++ b/new-api-details/organizations/metabrainz-foundation-inc.json @@ -3,7 +3,7 @@ "slug": "metabrainz-foundation-inc", "name": "MetaBrainz Foundation Inc", "category": "Data", - "description": "Open music / book metadata, music recommendations", + "description": "The MetaBrainz Foundation is a non-profit that believes in free, open access to data. It has been set up to build community maintained databases and make them available in the public domain or under Creative Commons licenses.\n\nOur data is mostly gathered by volunteers and verified by peer review to ensure it is consistent and correct. All non-commercial use of this data is free, but commercial users are asked to support us in order to help fund the project. We encourage all data users to contribute to the data gathering process so that our data can be as comprehensive as possible.\n\nWith this data we are building a music social network and bias free music recommendations.", "image_url": "https://summerofcode.withgoogle.com/media/org/metabrainz-foundation-inc/m7lax42edddowwnl-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/metabrainz-foundation-inc.webp", "logo_r2_url": null, @@ -18,10 +18,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -63,7 +64,8 @@ "year_2022": 7, "year_2023": 7, "year_2024": 8, - "year_2025": 6 + "year_2025": 6, + "year_2026": null }, "students_by_year": { "year_2016": 4, @@ -75,7 +77,8 @@ "year_2022": 7, "year_2023": 7, "year_2024": 8, - "year_2025": 6 + "year_2025": 6, + "year_2026": null }, "total_students": 56 }, @@ -1316,13 +1319,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/metabrainz-foundation-inc" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "suppport@metabrainz.org", "guide_url": "https://wiki.musicbrainz.org/Development/Summer_of_Code/2025", - "ideas_url": "https://wiki.musicbrainz.org/Development/Summer_of_Code/2025", + "ideas_url": "https://wiki.musicbrainz.org/Development/Summer_of_Code/2026", "irc_channel": "https://metabrainz.org/contact", "mailing_list": "https://community.metabrainz.org/" }, @@ -1330,7 +1334,7 @@ "blog": "https://blog.metabrainz.org", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/metabrainz", "gitlab": null, "instagram": null, "linkedin": null, @@ -1345,6 +1349,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.484Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/metacall.json b/new-api-details/organizations/metacall.json index 20c42d23..9d4d8b1a 100644 --- a/new-api-details/organizations/metacall.json +++ b/new-api-details/organizations/metacall.json @@ -3,7 +3,7 @@ "slug": "metacall", "name": "MetaCall", "category": "Programming languages", - "description": "Simplifying the embedding of programming languages", + "description": "When working with different technologies and developers of different programming languages, the productivity of the entire team worsens due to the lack of interoperability and communication between them. If the developers need two technologies which are written in different programming languages, for instance, a C/C++ library called from NodeJS, the team usually needs to port to one of the two languages or write a wrapper around them. Maintaining a port of a library or the plumbing code is frequently error-prone, time-consuming, and does not add any value to the final product.\n\nThe main objective of MetaCall is to provide a transparent interoperability in both ways, no matter what language you are using, so you feel like you are using a library written in the same language but in fact, it may be written in C, NodeJS or any other language.\n\nMetaCall currently provides a mechanism to introspect the types and function signatures, which allows us to provide this type info to the caller language. You can have type safety and at the same time avoid boilerplate in both directions.\n\nIt addresses the main shortcomings of embedding independent languages separately. Having a common implementation with a plugin architecture allows you to implement newer languages without rewriting more code. With a single solution you get C#, Ruby, Python or any other language you prefer. We can improve the core continuously and add new languages.\n\nFinally, we are using the polyglot runtime in cloud computing so we take advantage of the interoperability capabilities and allow to build complex polyglot distributed systems with ease. It is possible to build monolithic and mono-repo projects that can be distributed and scaled separately through our Function as a Service built on top of MetaCall, allowing the developer to maximize the productivity without the need of DevOps plumbing or thinking about intercommunication protocols and architectural details.", "image_url": "https://summerofcode.withgoogle.com/media/org/metacall/rezoq3uue7dpdzw5-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/metacall.webp", "logo_r2_url": null, @@ -12,11 +12,12 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ], "first_year": 2021, - "last_year": 2024, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ "python", "javascript", @@ -26,7 +27,8 @@ "guix", "rust", "node.js", - "docker" + "docker", + "nodejs" ], "topics": [ "programming languages", @@ -52,7 +54,8 @@ "year_2022": 5, "year_2023": 4, "year_2024": 7, - "year_2025": null + "year_2025": null, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -64,7 +67,8 @@ "year_2022": 5, "year_2023": 4, "year_2024": 7, - "year_2025": null + "year_2025": null, + "year_2026": null }, "total_students": 18 }, @@ -469,21 +473,22 @@ ], "projects_url": "https://summerofcode.withgoogle.com/archive/2024/organizations/metacall/" }, - "year_2025": null + "year_2025": null, + "year_2026": null }, "first_time": false, "contact": { "email": "contact@metacall.io", - "guide_url": null, - "ideas_url": null, - "irc_channel": "https://matrix.to/#/#metacall:matrix.org", + "guide_url": "https://github.com/metacall/gsoc-2026", + "ideas_url": "https://github.com/metacall/gsoc-2026", + "irc_channel": "https://discord.gg/upwP4mwJWa", "mailing_list": null }, "social": { "blog": null, "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/metacall", "gitlab": null, "instagram": null, "linkedin": null, @@ -498,6 +503,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.512Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/metadata.json b/new-api-details/organizations/metadata.json index 3bee7843..5dbbc45c 100644 --- a/new-api-details/organizations/metadata.json +++ b/new-api-details/organizations/metadata.json @@ -1,7 +1,11 @@ { "slug": "organizations-metadata", - "published_at": "2026-01-25T15:28:54.654Z", + "published_at": "2026-02-19T13:46:24.131Z", "technologies": [ + { + "name": ".net", + "count": 3 + }, { "name": "#js", "count": 1 @@ -23,4126 +27,3570 @@ "count": 1 }, { - "name": ".net", - "count": 3 - }, - { - "name": "ASIC", + "name": "a-frame", "count": 1 }, { - "name": "AST", + "name": "A2A", "count": 1 }, { - "name": "Akka", + "name": "advanced data structures", "count": 1 }, { - "name": "Apache Beam", + "name": "aerogear", "count": 1 }, { - "name": "AsyncAPI", - "count": 1 + "name": "ai", + "count": 15 }, { - "name": "Autonomous drive", + "name": "airflow", "count": 1 }, { - "name": "Bison", + "name": "ajax", "count": 1 }, { - "name": "Blockchain", + "name": "Akka", "count": 1 }, { - "name": "C++ template metaprogramming", - "count": 1 + "name": "android", + "count": 53 }, { - "name": "C/Rust/Go", + "name": "android/ios", "count": 1 }, { - "name": "CEL", - "count": 1 + "name": "angular", + "count": 13 }, { - "name": "C\\C++", + "name": "angular.js", "count": 1 }, { - "name": "Chromium", - "count": 1 + "name": "angularjs", + "count": 8 }, { - "name": "Cloud Storage", - "count": 1 + "name": "ansible", + "count": 4 }, { - "name": "Codec", - "count": 1 + "name": "antlr", + "count": 3 }, { - "name": "Colab", + "name": "apache airflow", "count": 1 }, { - "name": "Container", + "name": "apache arrow", "count": 1 }, { - "name": "Cryptography", + "name": "Apache Beam", "count": 1 }, { - "name": "Cypress", - "count": 1 + "name": "apache kafka", + "count": 2 }, { - "name": "DNS", - "count": 1 + "name": "apache spark", + "count": 4 }, { - "name": "DRM", - "count": 1 + "name": "api", + "count": 3 }, { - "name": "Data-Science", + "name": "apis", "count": 1 }, { - "name": "Distributed key-value store", + "name": "app", "count": 1 }, { - "name": "Django+PostgreSQL", + "name": "archc", "count": 1 }, { - "name": "Emscripten", - "count": 1 + "name": "arduino", + "count": 7 }, { - "name": "Fault tolerant", - "count": 1 + "name": "arm", + "count": 7 }, { - "name": "Firebase", - "count": 1 + "name": "arrow", + "count": 2 }, { - "name": "Flatpak", - "count": 1 + "name": "artificial intelligence", + "count": 8 }, { - "name": "GEGL", + "name": "artificial-intelligence", "count": 1 }, { - "name": "Gemma", + "name": "asciidoctor", "count": 1 }, { - "name": "Ghidra", + "name": "ASIC", "count": 1 }, { - "name": "Git/GitHub", - "count": 1 + "name": "asm", + "count": 6 }, { - "name": "GitHub Actions", + "name": "asm/c/c++", "count": 1 }, { - "name": "Google Earth", + "name": "asr", "count": 1 }, { - "name": "Graphics", - "count": 1 + "name": "assembler", + "count": 2 }, { - "name": "HDF5", - "count": 1 + "name": "assembly", + "count": 12 }, { - "name": "Hardware", + "name": "assembly language", "count": 1 }, { - "name": "Helm", + "name": "AST", "count": 1 }, { - "name": "HuggingFace", + "name": "AsyncAPI", "count": 1 }, { - "name": "Imaging", + "name": "asynchronous i/o", "count": 1 }, { - "name": "JSON Schema", + "name": "atom", "count": 2 }, { - "name": "Jax", + "name": "audio", "count": 3 }, { - "name": "Juice Shop", + "name": "audio procesing", "count": 1 }, { - "name": "LLM", - "count": 2 + "name": "audio processing", + "count": 1 }, { - "name": "LLMs", - "count": 2 + "name": "automated reasoning", + "count": 1 }, { - "name": "MERN", + "name": "automaton", "count": 1 }, { - "name": "Machine Learning (ML)", + "name": "automotive", "count": 1 }, { - "name": "Media", + "name": "Autonomous drive", "count": 1 }, { - "name": "Metadata management", - "count": 1 + "name": "autotools", + "count": 3 }, { - "name": "Multimodel AI", - "count": 1 + "name": "awk", + "count": 2 }, { - "name": "Multiplatform", - "count": 1 + "name": "aws", + "count": 3 }, { - "name": "NetCDF", + "name": "babel", "count": 1 }, { - "name": "Netty", + "name": "backend", "count": 1 }, { - "name": "NextJs", - "count": 2 + "name": "bash", + "count": 7 }, { - "name": "OAuth", + "name": "batman", "count": 1 }, { - "name": "OIDC", + "name": "bazel", "count": 1 }, { - "name": "Objective C", + "name": "beacon", "count": 1 }, { - "name": "Open-RMF", + "name": "beacons", "count": 1 }, { - "name": "OpenCASCADE", + "name": "beaglebone", "count": 1 }, { - "name": "OpenInventor", - "count": 1 + "name": "beam", + "count": 2 }, { - "name": "OpenStreetMap", + "name": "Bevy", "count": 1 }, { - "name": "OpenTelemetry", + "name": "bibtex", "count": 1 }, { - "name": "POSIX shell", - "count": 1 + "name": "big data", + "count": 5 }, { - "name": "Parsers & Compilers", - "count": 1 + "name": "big data science", + "count": 2 }, { - "name": "Phyton", + "name": "bigquery", "count": 1 }, { - "name": "Processor", + "name": "bioinformatics", "count": 1 }, { - "name": "Quarkus", + "name": "biojs", "count": 1 }, { - "name": "RAML", + "name": "bios", "count": 1 }, { - "name": "RFCs", + "name": "Bison", "count": 1 }, { - "name": "RISCV", - "count": 1 + "name": "blender", + "count": 2 }, { - "name": "React-Native", + "name": "Blockchain", "count": 1 }, { - "name": "Rxjava", + "name": "bluetooth", "count": 1 }, { - "name": "SBOM", + "name": "boinc", "count": 1 }, { - "name": "SCSS", - "count": 1 + "name": "boost", + "count": 3 }, { - "name": "SUnit", - "count": 1 + "name": "bootstrap", + "count": 3 }, { - "name": "Scipy", + "name": "bpm", "count": 1 }, { - "name": "Serverless", + "name": "breakpad", "count": 1 }, { - "name": "Spatial AI", - "count": 1 + "name": "browser extension", + "count": 2 }, { - "name": "SpringBoot", + "name": "browser extensions", "count": 1 }, { - "name": "TLS", - "count": 1 + "name": "bsd", + "count": 2 }, { - "name": "Technical writing", + "name": "bsd make", "count": 1 }, { - "name": "Testing", - "count": 1 + "name": "bsd unix", + "count": 3 }, { - "name": "VLSI", + "name": "buildbot", "count": 1 }, { - "name": "VST", + "name": "bundler", "count": 1 }, { - "name": "Vector Operations", - "count": 1 + "name": "bytecode", + "count": 2 }, { - "name": "Verification", - "count": 1 + "name": "c", + "count": 170 }, { - "name": "Vtk", - "count": 1 + "name": "c language", + "count": 2 }, { - "name": "VueJS", - "count": 1 + "name": "c programming", + "count": 2 }, { - "name": "WDL", - "count": 1 + "name": "c/c+", + "count": 2 }, { - "name": "WebDriver", - "count": 1 + "name": "c/c++", + "count": 10 }, { - "name": "XR", + "name": "C/Rust/Go", "count": 1 }, { - "name": "YAML", + "name": "C\\C++", "count": 1 }, { - "name": "Z3", - "count": 1 + "name": "c#", + "count": 6 }, { - "name": "ZAP", - "count": 1 + "name": "c++", + "count": 175 }, { - "name": "Zarr", - "count": 1 + "name": "c++ libraries c++11 c++14 c++17 c++20", + "count": 2 }, { - "name": "Zephyr RTOS", + "name": "C++ template metaprogramming", "count": 1 }, { - "name": "Zig", - "count": 1 + "name": "c++11", + "count": 12 }, { - "name": "a-frame", - "count": 1 + "name": "c++14", + "count": 5 }, { - "name": "advanced data structures", - "count": 1 + "name": "c++17", + "count": 6 }, { - "name": "aerogear", + "name": "c++17 parallel stl", "count": 1 }, { - "name": "ai", - "count": 13 + "name": "c++20", + "count": 2 }, { - "name": "airflow", - "count": 1 + "name": "c99", + "count": 3 }, { - "name": "ajax", + "name": "cabal", "count": 1 }, { - "name": "android", - "count": 52 - }, - { - "name": "android/ios", + "name": "cad", "count": 1 }, { - "name": "angular", - "count": 13 + "name": "caffe", + "count": 2 }, { - "name": "angular.js", + "name": "cakephp", "count": 1 }, { - "name": "angularjs", - "count": 8 + "name": "canvas", + "count": 1 }, { - "name": "ansible", - "count": 4 + "name": "cassandra", + "count": 1 }, { - "name": "antlr", - "count": 3 + "name": "CEL", + "count": 1 }, { - "name": "apache airflow", + "name": "celery", "count": 1 }, { - "name": "apache arrow", + "name": "ceph", "count": 1 }, { - "name": "apache kafka", - "count": 2 + "name": "cesium", + "count": 1 }, { - "name": "apache spark", - "count": 4 + "name": "cesiumjs", + "count": 1 }, { - "name": "api", - "count": 3 + "name": "céu", + "count": 1 }, { - "name": "apis", + "name": "chapel", "count": 1 }, { - "name": "app", + "name": "chatbots", "count": 1 }, { - "name": "archc", + "name": "che", "count": 1 }, { - "name": "arduino", - "count": 7 + "name": "chisel", + "count": 3 }, { - "name": "arm", - "count": 7 + "name": "Chromium", + "count": 1 }, { - "name": "arrow", + "name": "ci", "count": 2 }, { - "name": "artificial intelligence", - "count": 8 - }, - { - "name": "artificial-intelligence", + "name": "ci/cd", "count": 1 }, { - "name": "asciidoctor", + "name": "cifs", "count": 1 }, { - "name": "asm", - "count": 6 + "name": "clang", + "count": 4 }, { - "name": "asm/c/c++", + "name": "clickhouse", "count": 1 }, { - "name": "asr", - "count": 1 + "name": "clojure", + "count": 3 }, { - "name": "assembler", - "count": 2 + "name": "clojurescript", + "count": 1 }, { - "name": "assembly", - "count": 12 + "name": "cloud", + "count": 9 }, { - "name": "assembly language", + "name": "Cloud Storage", "count": 1 }, { - "name": "asynchronous i/o", - "count": 1 + "name": "cmake", + "count": 15 }, { - "name": "atom", + "name": "cms", "count": 2 }, { - "name": "audio", - "count": 3 - }, - { - "name": "audio procesing", + "name": "cocoa", "count": 1 }, { - "name": "audio processing", + "name": "Codec", "count": 1 }, { - "name": "automated reasoning", + "name": "codecs", "count": 1 }, { - "name": "automaton", + "name": "codeworld", "count": 1 }, { - "name": "automotive", + "name": "Colab", "count": 1 }, { - "name": "autotools", - "count": 3 + "name": "communication protocol", + "count": 1 }, { - "name": "awk", - "count": 2 + "name": "compiler", + "count": 4 }, { - "name": "aws", + "name": "compilers", "count": 3 }, { - "name": "babel", + "name": "component-based development", "count": 1 }, { - "name": "backend", + "name": "compression", "count": 1 }, { - "name": "bash", - "count": 7 + "name": "computer vision", + "count": 5 }, { - "name": "batman", - "count": 1 + "name": "concurrency", + "count": 2 }, { - "name": "bazel", + "name": "configuration management", "count": 1 }, { - "name": "beacon", + "name": "Container", "count": 1 }, { - "name": "beacons", + "name": "container orchestration", "count": 1 }, { - "name": "beaglebone", + "name": "Containerd", "count": 1 }, { - "name": "beam", - "count": 2 + "name": "containers", + "count": 3 }, { - "name": "bibtex", + "name": "content management system", "count": 1 }, { - "name": "big data", - "count": 5 + "name": "controller-runtime", + "count": 1 }, { - "name": "big data science", - "count": 2 + "name": "coq", + "count": 1 }, { - "name": "bigquery", - "count": 1 + "name": "couchdb", + "count": 2 }, { - "name": "bioinformatics", - "count": 1 + "name": "cpp", + "count": 7 }, { - "name": "biojs", + "name": "cross-platform", "count": 1 }, { - "name": "bios", + "name": "crossplatform", "count": 1 }, { - "name": "blender", - "count": 2 + "name": "Cryptography", + "count": 1 }, { - "name": "bluetooth", - "count": 1 + "name": "css", + "count": 36 }, { - "name": "boinc", + "name": "css3", "count": 1 }, { - "name": "boost", - "count": 3 + "name": "cuda", + "count": 8 }, { - "name": "bootstrap", - "count": 3 + "name": "cups", + "count": 1 }, { - "name": "bpm", + "name": "Cypress", "count": 1 }, { - "name": "breakpad", - "count": 1 + "name": "cython", + "count": 9 }, { - "name": "browser extension", + "name": "d", "count": 2 }, { - "name": "browser extensions", - "count": 1 + "name": "d3", + "count": 5 }, { - "name": "bsd", + "name": "d3.js", "count": 2 }, { - "name": "bsd make", + "name": "d3js", "count": 1 }, { - "name": "bsd unix", + "name": "dart", "count": 3 }, { - "name": "buildbot", + "name": "dart/flutter", "count": 1 }, { - "name": "bundler", + "name": "dash", "count": 1 }, { - "name": "bytecode", - "count": 2 + "name": "dask", + "count": 1 }, { - "name": "c", - "count": 167 + "name": "data", + "count": 1 }, { - "name": "c language", - "count": 2 + "name": "data analysis", + "count": 6 }, { - "name": "c programming", - "count": 2 + "name": "data science", + "count": 5 }, { - "name": "c#", - "count": 6 - }, - { - "name": "c++", - "count": 170 - }, - { - "name": "c++ libraries c++11 c++14 c++17 c++20", - "count": 2 - }, - { - "name": "c++11", - "count": 12 - }, - { - "name": "c++14", - "count": 5 - }, - { - "name": "c++17", - "count": 6 - }, - { - "name": "c++17 parallel stl", - "count": 1 - }, - { - "name": "c++20", - "count": 2 - }, - { - "name": "c/c+", - "count": 2 - }, - { - "name": "c99", - "count": 3 - }, - { - "name": "cabal", - "count": 1 - }, - { - "name": "cad", - "count": 1 - }, - { - "name": "caffe", - "count": 2 - }, - { - "name": "cakephp", - "count": 1 - }, - { - "name": "canvas", - "count": 1 - }, - { - "name": "cassandra", - "count": 1 - }, - { - "name": "celery", - "count": 1 - }, - { - "name": "ceph", - "count": 1 - }, - { - "name": "cesium", - "count": 1 - }, - { - "name": "cesiumjs", - "count": 1 - }, - { - "name": "chapel", - "count": 1 - }, - { - "name": "chatbots", - "count": 1 - }, - { - "name": "che", - "count": 1 - }, - { - "name": "chisel", - "count": 3 - }, - { - "name": "ci", - "count": 2 - }, - { - "name": "ci/cd", - "count": 1 - }, - { - "name": "cifs", - "count": 1 - }, - { - "name": "clang", - "count": 4 - }, - { - "name": "clickhouse", - "count": 1 - }, - { - "name": "clojure", - "count": 3 - }, - { - "name": "clojurescript", - "count": 1 - }, - { - "name": "cloud", - "count": 8 - }, - { - "name": "cmake", - "count": 15 - }, - { - "name": "cms", - "count": 2 - }, - { - "name": "cocoa", - "count": 1 - }, - { - "name": "codecs", - "count": 1 - }, - { - "name": "codeworld", - "count": 1 - }, - { - "name": "communication protocol", - "count": 1 - }, - { - "name": "compiler", - "count": 4 - }, - { - "name": "compilers", - "count": 3 - }, - { - "name": "component-based development", - "count": 1 - }, - { - "name": "compression", - "count": 1 - }, - { - "name": "computer vision", - "count": 5 - }, - { - "name": "concurrency", - "count": 2 - }, - { - "name": "configuration management", - "count": 1 - }, - { - "name": "container orchestration", - "count": 1 - }, - { - "name": "containers", - "count": 3 - }, - { - "name": "content management system", - "count": 1 - }, - { - "name": "controller-runtime", - "count": 1 - }, - { - "name": "coq", - "count": 1 - }, - { - "name": "couchdb", - "count": 2 - }, - { - "name": "cpp", - "count": 7 - }, - { - "name": "cross-platform", - "count": 1 - }, - { - "name": "crossplatform", - "count": 1 - }, - { - "name": "css", - "count": 33 - }, - { - "name": "css3", - "count": 1 - }, - { - "name": "cuda", - "count": 8 - }, - { - "name": "cups", - "count": 1 - }, - { - "name": "cython", - "count": 9 - }, - { - "name": "céu", - "count": 1 - }, - { - "name": "d", - "count": 2 - }, - { - "name": "d3", - "count": 5 - }, - { - "name": "d3.js", - "count": 2 - }, - { - "name": "d3js", - "count": 1 - }, - { - "name": "dart", - "count": 3 - }, - { - "name": "dart/flutter", - "count": 1 - }, - { - "name": "dash", - "count": 1 - }, - { - "name": "dask", - "count": 1 - }, - { - "name": "data", - "count": 1 - }, - { - "name": "data analysis", - "count": 6 - }, - { - "name": "data science", - "count": 5 - }, - { - "name": "data structures", - "count": 1 - }, - { - "name": "database", - "count": 2 - }, - { - "name": "databases", - "count": 4 - }, - { - "name": "datproject", - "count": 1 - }, - { - "name": "ddos", - "count": 1 - }, - { - "name": "decentralisation", - "count": 1 - }, - { - "name": "decode", - "count": 1 - }, - { - "name": "deep learning", - "count": 10 - }, - { - "name": "deeplearning", - "count": 2 - }, - { - "name": "devops", - "count": 2 - }, - { - "name": "dhcp", - "count": 1 - }, - { - "name": "dicom", - "count": 3 - }, - { - "name": "differential privacy", - "count": 1 - }, - { - "name": "directx", - "count": 1 - }, - { - "name": "distributed computing", - "count": 1 - }, - { - "name": "distributed systems", - "count": 4 - }, - { - "name": "django", - "count": 24 - }, - { - "name": "dlang", - "count": 1 - }, - { - "name": "docker", - "count": 27 - }, - { - "name": "documentation", - "count": 1 - }, - { - "name": "dpdk", - "count": 1 - }, - { - "name": "drones", - "count": 1 - }, - { - "name": "drupal", - "count": 1 - }, - { - "name": "drupal 8", - "count": 1 - }, - { - "name": "dsp", - "count": 2 - }, - { - "name": "dtrace", - "count": 1 - }, - { - "name": "ebpf", - "count": 3 - }, - { - "name": "eclipse", - "count": 1 - }, - { - "name": "eclipsejavaide", - "count": 1 - }, - { - "name": "eiffel", - "count": 1 - }, - { - "name": "elasicsearch", - "count": 1 - }, - { - "name": "elasticsearch", - "count": 9 - }, - { - "name": "electromobility", - "count": 1 - }, - { - "name": "electron", - "count": 2 - }, - { - "name": "elixir", - "count": 3 - }, - { - "name": "elk", - "count": 2 - }, - { - "name": "elm", - "count": 2 - }, - { - "name": "email", + "name": "data structures", "count": 1 }, { - "name": "embedded", - "count": 4 - }, - { - "name": "embedded systems", - "count": 2 - }, - { - "name": "ember", + "name": "Data-Science", "count": 1 }, { - "name": "emberjs", + "name": "database", "count": 2 }, { - "name": "encode", - "count": 1 - }, - { - "name": "envoy", - "count": 1 - }, - { - "name": "epbf", - "count": 1 - }, - { - "name": "erlang", + "name": "databases", "count": 4 }, { - "name": "esp32", - "count": 1 - }, - { - "name": "espresso", - "count": 1 - }, - { - "name": "euslisp", - "count": 1 - }, - { - "name": "event-loop", - "count": 1 - }, - { - "name": "f#", + "name": "datproject", "count": 1 }, { - "name": "fasm", + "name": "ddos", "count": 1 }, { - "name": "fast fluid dynamics", + "name": "decentralisation", "count": 1 }, { - "name": "federated learning", + "name": "decode", "count": 1 }, { - "name": "ffmpeg", - "count": 5 + "name": "deep learning", + "count": 10 }, { - "name": "fhir", + "name": "deeplearning", "count": 2 }, { - "name": "filesystems", + "name": "devops", "count": 2 }, { - "name": "finite-state technologies", - "count": 1 - }, - { - "name": "firewall", - "count": 1 - }, - { - "name": "firmware", - "count": 1 - }, - { - "name": "flask", - "count": 6 - }, - { - "name": "flat assembler", - "count": 1 - }, - { - "name": "fluentd", - "count": 1 - }, - { - "name": "flutter", - "count": 9 - }, - { - "name": "fonts", - "count": 1 - }, - { - "name": "formal methods", - "count": 1 - }, - { - "name": "fortran", - "count": 3 - }, - { - "name": "fossology", - "count": 1 - }, - { - "name": "fpga", - "count": 7 - }, - { - "name": "framework", - "count": 1 - }, - { - "name": "free/netbsd", - "count": 1 - }, - { - "name": "frontend", - "count": 1 - }, - { - "name": "fsts", + "name": "dhcp", "count": 1 }, { - "name": "functional programming", + "name": "dicom", "count": 3 }, { - "name": "fuzz-testing", - "count": 1 - }, - { - "name": "fuzzing", + "name": "differential privacy", "count": 1 }, { - "name": "game development", + "name": "directx", "count": 1 }, { - "name": "garbage-collection", + "name": "distributed computing", "count": 1 }, { - "name": "gawk", + "name": "Distributed key-value store", "count": 1 }, { - "name": "gazebo", - "count": 2 + "name": "distributed systems", + "count": 4 }, { - "name": "gcc", - "count": 3 + "name": "django", + "count": 26 }, { - "name": "gcp", + "name": "Django+PostgreSQL", "count": 1 }, { - "name": "gdal", + "name": "dlang", "count": 1 }, { - "name": "gdscript", + "name": "DNS", "count": 1 }, { - "name": "generative ai", - "count": 1 + "name": "docker", + "count": 28 }, { - "name": "geo", + "name": "documentation", "count": 1 }, { - "name": "geospatial", - "count": 2 - }, - { - "name": "ghc", + "name": "dpdk", "count": 1 }, { - "name": "gis", - "count": 5 - }, - { - "name": "git", - "count": 21 - }, - { - "name": "github", - "count": 11 - }, - { - "name": "github-actions", + "name": "DRM", "count": 1 }, { - "name": "gitops", + "name": "drones", "count": 1 }, { - "name": "glib", + "name": "drupal", "count": 1 }, { - "name": "gnss", + "name": "drupal 8", "count": 1 }, { - "name": "gnu autotools", - "count": 2 - }, - { - "name": "gnu make", - "count": 3 - }, - { - "name": "gnu/linux", + "name": "dsp", "count": 2 }, { - "name": "gnupg", + "name": "dtrace", "count": 1 }, { - "name": "go", - "count": 30 + "name": "ebpf", + "count": 3 }, { - "name": "gobject", + "name": "eclipse", "count": 1 }, { - "name": "golan", + "name": "eclipsejavaide", "count": 1 }, { - "name": "golang", - "count": 37 + "name": "eiffel", + "count": 1 }, { - "name": "google app engine", - "count": 3 + "name": "elasicsearch", + "count": 1 }, { - "name": "google cloud", - "count": 2 + "name": "elasticsearch", + "count": 9 }, { - "name": "google web toolkit", + "name": "electromobility", "count": 1 }, { - "name": "gpu", - "count": 5 + "name": "electron", + "count": 2 }, { - "name": "gradle", - "count": 4 + "name": "elixir", + "count": 3 }, { - "name": "grafana", - "count": 4 + "name": "elk", + "count": 2 }, { - "name": "graph", + "name": "elm", "count": 2 }, { - "name": "graphite", + "name": "email", "count": 1 }, { - "name": "graphql", + "name": "embedded", "count": 4 }, { - "name": "groovy", - "count": 3 - }, - { - "name": "grpc", - "count": 6 - }, - { - "name": "gstreamer", - "count": 4 + "name": "embedded systems", + "count": 2 }, { - "name": "gtk", - "count": 12 + "name": "ember", + "count": 1 }, { - "name": "gtk+", - "count": 4 + "name": "emberjs", + "count": 2 }, { - "name": "gtkmm", + "name": "Emscripten", "count": 1 }, { - "name": "gui", + "name": "encode", "count": 1 }, { - "name": "guile", + "name": "envoy", "count": 1 }, { - "name": "guix", + "name": "epbf", "count": 1 }, { - "name": "gwt", - "count": 3 + "name": "erlang", + "count": 4 }, { - "name": "hadoop", - "count": 5 + "name": "esp32", + "count": 1 }, { - "name": "hardware acceleration", - "count": 2 + "name": "espresso", + "count": 1 }, { - "name": "haskell", - "count": 6 + "name": "euslisp", + "count": 1 }, { - "name": "hg", + "name": "event-loop", "count": 1 }, { - "name": "hibernate", + "name": "f#", "count": 1 }, { - "name": "hid", + "name": "fasm", "count": 1 }, { - "name": "hidden markov models", + "name": "fast fluid dynamics", "count": 1 }, { - "name": "high performance computing", - "count": 4 + "name": "Fault tolerant", + "count": 1 }, { - "name": "high-resolution timers", + "name": "federated learning", "count": 1 }, { - "name": "hl7 fhir", - "count": 1 + "name": "ffmpeg", + "count": 5 }, { - "name": "homomorphic encryption", - "count": 1 + "name": "fhir", + "count": 2 }, { - "name": "honeypot", - "count": 1 + "name": "filesystems", + "count": 2 }, { - "name": "honeypots", + "name": "finite-state technologies", "count": 1 }, { - "name": "hpc", + "name": "Firebase", "count": 1 }, { - "name": "hpx", + "name": "firewall", "count": 1 }, { - "name": "htc vive", + "name": "firmware", "count": 1 }, { - "name": "html", - "count": 36 + "name": "flask", + "count": 6 }, { - "name": "html5", - "count": 11 + "name": "flat assembler", + "count": 1 }, { - "name": "html5 canvas", + "name": "Flatpak", "count": 1 }, { - "name": "html5/css3", - "count": 5 + "name": "fluentd", + "count": 1 }, { - "name": "htop", - "count": 1 + "name": "flutter", + "count": 9 }, { - "name": "http/2", + "name": "fonts", "count": 1 }, { - "name": "hydra", + "name": "formal methods", "count": 1 }, { - "name": "hyperledger aries", - "count": 1 + "name": "fortran", + "count": 3 }, { - "name": "hypervisor", + "name": "fossology", "count": 1 }, { - "name": "i386", - "count": 1 + "name": "fpga", + "count": 7 }, { - "name": "i586", + "name": "framework", "count": 1 }, { - "name": "iaccessible2", + "name": "free/netbsd", "count": 1 }, { - "name": "ice - zeroc", + "name": "frontend", "count": 1 }, { - "name": "ida-pro", + "name": "fsts", "count": 1 }, { - "name": "ide", + "name": "functional programming", "count": 3 }, { - "name": "ignition", + "name": "fuzz-testing", "count": 1 }, { - "name": "illumos", + "name": "fuzzing", "count": 1 }, { - "name": "influxdb", + "name": "game development", "count": 1 }, { - "name": "instrumentation", + "name": "garbage-collection", "count": 1 }, { - "name": "integer set library", + "name": "gawk", "count": 1 }, { - "name": "internationalization", - "count": 1 + "name": "gazebo", + "count": 2 }, { - "name": "internet of things", - "count": 1 + "name": "gcc", + "count": 3 }, { - "name": "ionic", + "name": "gcp", "count": 1 }, { - "name": "ios", - "count": 18 + "name": "GCS", + "count": 1 }, { - "name": "iot", - "count": 2 + "name": "gdal", + "count": 1 }, { - "name": "ipp", + "name": "gdscript", "count": 1 }, { - "name": "irc", + "name": "GEGL", "count": 1 }, { - "name": "isabelle proof assistant", + "name": "Gemma", "count": 1 }, { - "name": "isl", + "name": "GenAI", "count": 1 }, { - "name": "jakarta", + "name": "generative ai", "count": 1 }, { - "name": "jakartaee", + "name": "geo", "count": 1 }, { - "name": "java", - "count": 116 + "name": "geospatial", + "count": 2 }, { - "name": "java ee", + "name": "ghc", "count": 1 }, { - "name": "javacc", + "name": "Ghidra", "count": 1 }, { - "name": "javafx", - "count": 4 + "name": "gis", + "count": 6 }, { - "name": "javasc", - "count": 1 + "name": "git", + "count": 21 }, { - "name": "javascr", + "name": "Git/GitHub", "count": 1 }, { - "name": "javascript", - "count": 220 - }, - { - "name": "jenkins", - "count": 4 + "name": "github", + "count": 11 }, { - "name": "jinja2", + "name": "GitHub Actions", "count": 1 }, { - "name": "jni", + "name": "github-actions", "count": 1 }, { - "name": "jquery", - "count": 7 + "name": "gitops", + "count": 1 }, { - "name": "jruby", - "count": 2 + "name": "glib", + "count": 1 }, { - "name": "json", - "count": 6 + "name": "glTF", + "count": 1 }, { - "name": "json api", + "name": "gnss", "count": 1 }, { - "name": "json/json-ld", + "name": "GNU", "count": 1 }, { - "name": "jsonnet", - "count": 1 + "name": "gnu autotools", + "count": 2 }, { - "name": "juce", - "count": 1 + "name": "gnu make", + "count": 3 }, { - "name": "julia", - "count": 6 + "name": "gnu/linux", + "count": 2 }, { - "name": "julialang", + "name": "gnupg", "count": 1 }, { - "name": "junit", - "count": 1 + "name": "go", + "count": 31 }, { - "name": "jupyter", - "count": 9 + "name": "gobject", + "count": 1 }, { - "name": "jupyter hub", + "name": "golan", "count": 1 }, { - "name": "jupyter notebook", - "count": 1 + "name": "golang", + "count": 37 }, { - "name": "jvm", - "count": 8 + "name": "google app engine", + "count": 3 }, { - "name": "kafka", + "name": "google cloud", "count": 2 }, { - "name": "kconfig", + "name": "Google Earth", "count": 1 }, { - "name": "keras", + "name": "google web toolkit", "count": 1 }, { - "name": "kernel", - "count": 4 - }, - { - "name": "kibana", - "count": 1 + "name": "gpu", + "count": 5 }, { - "name": "kms", - "count": 1 + "name": "gradle", + "count": 4 }, { - "name": "kotlin", - "count": 13 + "name": "grafana", + "count": 4 }, { - "name": "kubernetes", - "count": 21 + "name": "graph", + "count": 2 }, { - "name": "kubernetes operators", + "name": "Graphics", "count": 1 }, { - "name": "kustomize", + "name": "graphite", "count": 1 }, { - "name": "kvm", - "count": 6 + "name": "graphql", + "count": 4 }, { - "name": "lamp", - "count": 1 + "name": "groovy", + "count": 3 }, { - "name": "language-agnostic", - "count": 1 + "name": "grpc", + "count": 6 }, { - "name": "latex", - "count": 1 + "name": "gstreamer", + "count": 4 }, { - "name": "leaflet", - "count": 1 + "name": "gtk", + "count": 12 }, { - "name": "lede/openwrt", - "count": 1 + "name": "gtk+", + "count": 4 }, { - "name": "lfe", + "name": "gtkmm", "count": 1 }, { - "name": "library", + "name": "gui", "count": 1 }, { - "name": "libusb", + "name": "guile", "count": 1 }, { - "name": "libuv", + "name": "guix", "count": 1 }, { - "name": "libxcam", + "name": "gVisor", "count": 1 }, { - "name": "linkerd", - "count": 1 + "name": "gwt", + "count": 3 }, { - "name": "linux", - "count": 35 + "name": "hadoop", + "count": 5 }, { - "name": "linux distribution", + "name": "Hardware", "count": 1 }, { - "name": "linux kernel", - "count": 8 + "name": "hardware acceleration", + "count": 2 }, { - "name": "lisp", - "count": 5 + "name": "haskell", + "count": 6 }, { - "name": "llvm", - "count": 13 + "name": "HDF5", + "count": 1 }, { - "name": "lua", - "count": 14 + "name": "Helm", + "count": 1 }, { - "name": "luarocks", - "count": 2 + "name": "hg", + "count": 1 }, { - "name": "lunatik", + "name": "hibernate", "count": 1 }, { - "name": "lwgjl", + "name": "hid", "count": 1 }, { - "name": "lwjgl", + "name": "hidden markov models", "count": 1 }, { - "name": "lxc", - "count": 1 + "name": "high performance computing", + "count": 4 }, { - "name": "machine learning", - "count": 36 + "name": "high-resolution timers", + "count": 1 }, { - "name": "machinelearning", - "count": 2 + "name": "hl7 fhir", + "count": 1 }, { - "name": "macos", + "name": "homomorphic encryption", "count": 1 }, { - "name": "make", - "count": 5 + "name": "honeypot", + "count": 1 }, { - "name": "many more", + "name": "honeypots", "count": 1 }, { - "name": "mapping", + "name": "hpc", "count": 1 }, { - "name": "maps api", + "name": "hpx", "count": 1 }, { - "name": "mariadb", - "count": 2 + "name": "htc vive", + "count": 1 }, { - "name": "materialui", - "count": 2 + "name": "html", + "count": 38 }, { - "name": "matlab", - "count": 3 + "name": "html5", + "count": 11 }, { - "name": "matlab/simulink", + "name": "html5 canvas", "count": 1 }, { - "name": "mbed", + "name": "html5/css3", + "count": 5 + }, + { + "name": "htop", "count": 1 }, { - "name": "mediawiki", + "name": "http/2", "count": 1 }, { - "name": "medical imaging", - "count": 4 + "name": "HuggingFace", + "count": 1 }, { - "name": "memory", + "name": "hydra", "count": 1 }, { - "name": "mercurial", + "name": "hyperledger aries", "count": 1 }, { - "name": "meson", + "name": "hypervisor", "count": 1 }, { - "name": "meteor.js", - "count": 2 + "name": "i386", + "count": 1 }, { - "name": "meteorJS", + "name": "i586", "count": 1 }, { - "name": "metrics", + "name": "iaccessible2", "count": 1 }, { - "name": "micro-services", - "count": 2 + "name": "ice - zeroc", + "count": 1 }, { - "name": "micropython", + "name": "ida-pro", "count": 1 }, { - "name": "microservices", + "name": "ide", "count": 3 }, { - "name": "middleware", - "count": 2 + "name": "ignition", + "count": 1 }, { - "name": "midi", - "count": 3 + "name": "illumos", + "count": 1 }, { - "name": "milp", + "name": "Imaging", "count": 1 }, { - "name": "mips", + "name": "influxdb", "count": 1 }, { - "name": "ml", + "name": "instrumentation", "count": 1 }, { - "name": "mlir", - "count": 2 + "name": "integer set library", + "count": 1 }, { - "name": "mobil", + "name": "internationalization", "count": 1 }, { - "name": "mobile", - "count": 3 + "name": "internet of things", + "count": 1 }, { - "name": "models", + "name": "ionic", "count": 1 }, { - "name": "mongo", - "count": 1 + "name": "ios", + "count": 18 }, { - "name": "mongodb", - "count": 9 + "name": "iot", + "count": 2 }, { - "name": "mp4", + "name": "ipp", "count": 1 }, { - "name": "mp4box", + "name": "irc", "count": 1 }, { - "name": "mpi", - "count": 3 + "name": "isabelle proof assistant", + "count": 1 }, { - "name": "mqtt", + "name": "isl", "count": 1 }, { - "name": "multi-core", + "name": "jakarta", "count": 1 }, { - "name": "multi-threading", + "name": "jakartaee", "count": 1 }, { - "name": "multimedia", - "count": 1 + "name": "java", + "count": 117 }, { - "name": "multimodal analysis", + "name": "java ee", "count": 1 }, { - "name": "music", + "name": "javacc", "count": 1 }, { - "name": "mysql", - "count": 33 + "name": "javafx", + "count": 4 }, { - "name": "named entity recognition", + "name": "javasc", "count": 1 }, { - "name": "namespaces", + "name": "javascipt", "count": 1 }, { - "name": "napari", + "name": "javascr", "count": 1 }, { - "name": "natural language processing", - "count": 2 + "name": "javascript", + "count": 225 }, { - "name": "neo4j", - "count": 2 + "name": "Jax", + "count": 3 }, { - "name": "net", - "count": 1 + "name": "jenkins", + "count": 4 }, { - "name": "netbsd", + "name": "jinja2", "count": 1 }, { - "name": "network stack", - "count": 2 + "name": "jni", + "count": 1 }, { - "name": "networking", + "name": "jquery", "count": 7 }, { - "name": "nextflow", + "name": "jruby", "count": 2 }, { - "name": "nix", - "count": 2 + "name": "json", + "count": 6 }, { - "name": "nlp", - "count": 3 + "name": "json api", + "count": 1 }, { - "name": "nltk", + "name": "JSON Schema", "count": 2 }, { - "name": "node.js", - "count": 40 - }, - { - "name": "nosql", - "count": 2 + "name": "json/json-ld", + "count": 1 }, { - "name": "nss", + "name": "jsonnet", "count": 1 }, { - "name": "nt", + "name": "juce", "count": 1 }, { - "name": "numba", - "count": 3 + "name": "Juice Shop", + "count": 1 }, { - "name": "numpy", - "count": 9 + "name": "julia", + "count": 6 }, { - "name": "object-oriented", + "name": "julialang", "count": 1 }, { - "name": "object-storage", + "name": "junit", "count": 1 }, { - "name": "ocaml", - "count": 3 + "name": "jupyter", + "count": 9 }, { - "name": "ocean science", + "name": "jupyter hub", "count": 1 }, { - "name": "ocean technology", + "name": "jupyter notebook", "count": 1 }, { - "name": "ogc standards", - "count": 2 + "name": "jvm", + "count": 8 }, { - "name": "olsr", - "count": 1 + "name": "kafka", + "count": 2 }, { - "name": "onnx", + "name": "kconfig", "count": 1 }, { - "name": "ontologies", + "name": "keras", "count": 1 }, { - "name": "open hardware", - "count": 3 + "name": "kernel", + "count": 5 }, { - "name": "open source databases", + "name": "kibana", "count": 1 }, { - "name": "open-sound-control", + "name": "kms", "count": 1 }, { - "name": "openapi", - "count": 2 - }, - { - "name": "opencl", - "count": 5 - }, - { - "name": "opencv", - "count": 11 + "name": "kotlin", + "count": 13 }, { - "name": "opengl", - "count": 32 + "name": "kubernetes", + "count": 23 }, { - "name": "openhrp", + "name": "kubernetes operators", "count": 1 }, { - "name": "openj9", + "name": "kustomize", "count": 1 }, { - "name": "openmp", - "count": 3 + "name": "kvm", + "count": 6 }, { - "name": "openpgp", + "name": "lamp", "count": 1 }, { - "name": "openrtm", + "name": "language-agnostic", "count": 1 }, { - "name": "openscenegraph", + "name": "latex", "count": 1 }, { - "name": "opentracing", + "name": "leaflet", "count": 1 }, { - "name": "opentype", + "name": "lede/openwrt", "count": 1 }, { - "name": "openvpn", + "name": "lfe", "count": 1 }, { - "name": "openwrt", - "count": 2 + "name": "libevent", + "count": 1 }, { - "name": "openxr", - "count": 2 + "name": "library", + "count": 1 }, { - "name": "openzfs", + "name": "libusb", "count": 1 }, { - "name": "operating systems", + "name": "libuv", "count": 1 }, { - "name": "operator", + "name": "libxcam", "count": 1 }, { - "name": "ordbms", + "name": "linkerd", "count": 1 }, { - "name": "ortelius", - "count": 1 + "name": "linux", + "count": 35 }, { - "name": "os", + "name": "linux distribution", "count": 1 }, { - "name": "osx", - "count": 2 + "name": "linux kernel", + "count": 10 }, { - "name": "pallene", - "count": 1 + "name": "lisp", + "count": 5 }, { - "name": "pandas", - "count": 4 + "name": "LLM", + "count": 3 }, { - "name": "parallel algorithms", + "name": "LLMs", "count": 2 }, { - "name": "parallel processing", - "count": 1 + "name": "llvm", + "count": 14 }, { - "name": "parallelization", - "count": 1 + "name": "lua", + "count": 14 }, { - "name": "patroni", - "count": 1 + "name": "luarocks", + "count": 2 }, { - "name": "pcap", + "name": "lunatik", "count": 1 }, { - "name": "pci", + "name": "lwgjl", "count": 1 }, { - "name": "pcl", + "name": "lwjgl", "count": 1 }, { - "name": "pencil", + "name": "lxc", "count": 1 }, { - "name": "perl", - "count": 15 + "name": "machine learning", + "count": 36 }, { - "name": "perl5", + "name": "Machine Learning (ML)", "count": 1 }, { - "name": "perl6", - "count": 1 + "name": "machinelearning", + "count": 2 }, { - "name": "pharo", + "name": "macos", "count": 1 }, { - "name": "php", - "count": 31 + "name": "make", + "count": 5 }, { - "name": "physical computing", + "name": "many more", "count": 1 }, { - "name": "physical web", + "name": "mapping", "count": 1 }, { - "name": "pixhawk", + "name": "maps api", "count": 1 }, { - "name": "polly", - "count": 1 + "name": "mariadb", + "count": 2 }, { - "name": "polymath", - "count": 1 + "name": "materialui", + "count": 2 }, { - "name": "polymer", - "count": 1 + "name": "matlab", + "count": 3 }, { - "name": "posix", - "count": 4 + "name": "matlab/simulink", + "count": 1 }, { - "name": "postgis", + "name": "mbed", "count": 1 }, { - "name": "postgres", - "count": 6 + "name": "MCP", + "count": 1 }, { - "name": "postgresql", - "count": 35 + "name": "Media", + "count": 1 }, { - "name": "ppcg", + "name": "mediawiki", "count": 1 }, { - "name": "programming languages", - "count": 1 + "name": "medical imaging", + "count": 4 }, { - "name": "programming-language", + "name": "memory", "count": 1 }, { - "name": "prolog", - "count": 2 + "name": "mercurial", + "count": 1 }, { - "name": "prometheus", - "count": 5 + "name": "MERN", + "count": 1 }, { - "name": "protobuf", + "name": "meson", "count": 1 }, { - "name": "protocol buffers", + "name": "Metadata management", "count": 1 }, { - "name": "pthon", - "count": 1 + "name": "meteor.js", + "count": 2 }, { - "name": "pygame", + "name": "meteorJS", "count": 1 }, { - "name": "pyqt", + "name": "metrics", "count": 1 }, { - "name": "pyth", + "name": "micro-services", + "count": 2 + }, + { + "name": "micropython", "count": 1 }, { - "name": "python", - "count": 277 + "name": "microservices", + "count": 3 }, { - "name": "python 3", - "count": 22 + "name": "middleware", + "count": 2 }, { - "name": "python deep learning frameworks", + "name": "midi", "count": 3 }, { - "name": "python gtk", + "name": "milp", "count": 1 }, { - "name": "pytorch", - "count": 12 - }, - { - "name": "qemu", - "count": 4 + "name": "mips", + "count": 1 }, { - "name": "qml", - "count": 3 + "name": "ml", + "count": 1 }, { - "name": "qt", - "count": 27 + "name": "mlir", + "count": 2 }, { - "name": "qt5", - "count": 6 + "name": "mobil", + "count": 1 }, { - "name": "r", - "count": 10 + "name": "mobile", + "count": 3 }, { - "name": "r-project", - "count": 3 + "name": "models", + "count": 1 }, { - "name": "rails", - "count": 2 + "name": "mongo", + "count": 1 }, { - "name": "raspberry pi", + "name": "mongodb", "count": 9 }, { - "name": "rdbms", + "name": "mp4", "count": 1 }, { - "name": "rdf", - "count": 4 - }, - { - "name": "react", - "count": 41 + "name": "mp4box", + "count": 1 }, { - "name": "react native", - "count": 5 + "name": "mpi", + "count": 3 }, { - "name": "react.js", + "name": "mqtt", "count": 1 }, { - "name": "reactive", + "name": "multi-core", "count": 1 }, { - "name": "reactive extensions", + "name": "multi-threading", "count": 1 }, { - "name": "reactjs", - "count": 14 + "name": "multimedia", + "count": 1 }, { - "name": "reactjs javascript", + "name": "multimodal analysis", "count": 1 }, { - "name": "reactnative", + "name": "Multimodel AI", "count": 1 }, { - "name": "real-time", - "count": 2 + "name": "Multiplatform", + "count": 1 }, { - "name": "recursive-descent", + "name": "music", "count": 1 }, { - "name": "redis", - "count": 3 + "name": "mysql", + "count": 33 }, { - "name": "redux", + "name": "named entity recognition", "count": 1 }, { - "name": "regular expressions", + "name": "namespaces", "count": 1 }, { - "name": "remote access", + "name": "napari", "count": 1 }, { - "name": "rest", - "count": 13 + "name": "natural language processing", + "count": 2 }, { - "name": "rest api", - "count": 1 + "name": "neo4j", + "count": 2 }, { - "name": "restful api", - "count": 2 + "name": "net", + "count": 1 }, { - "name": "rf", + "name": "netbsd", "count": 1 }, { - "name": "risc-v", - "count": 4 + "name": "NetCDF", + "count": 1 }, { - "name": "roassal", + "name": "Netty", "count": 1 }, { - "name": "robotics", - "count": 3 + "name": "network stack", + "count": 2 }, { - "name": "rom", + "name": "network topology", "count": 1 }, { - "name": "ros", - "count": 10 + "name": "networking", + "count": 7 }, { - "name": "ros/gazebo", - "count": 1 + "name": "nextflow", + "count": 2 }, { - "name": "routing", - "count": 1 + "name": "NextJs", + "count": 2 }, { - "name": "rpc", + "name": "nix", "count": 2 }, { - "name": "rpm", - "count": 2 + "name": "nlp", + "count": 3 }, { - "name": "rspec", - "count": 1 + "name": "nltk", + "count": 2 }, { - "name": "rtos", + "name": "node", "count": 2 }, { - "name": "ruby", - "count": 28 + "name": "node.js", + "count": 40 }, { - "name": "ruby on rail", - "count": 1 + "name": "nodejs", + "count": 5 }, { - "name": "ruby on rails", - "count": 16 + "name": "nosql", + "count": 2 }, { - "name": "rubygems", + "name": "nss", "count": 1 }, { - "name": "rust", - "count": 47 + "name": "nt", + "count": 1 }, { - "name": "sanitizers", - "count": 1 + "name": "numba", + "count": 3 }, { - "name": "scala", + "name": "numpy", "count": 10 }, { - "name": "scala native", + "name": "OAuth", "count": 1 }, { - "name": "scala.js", + "name": "object oriented programming", "count": 1 }, { - "name": "scalability", + "name": "object-oriented", "count": 1 }, { - "name": "scheme", + "name": "object-storage", "count": 1 }, { - "name": "science", + "name": "Objective C", "count": 1 }, { - "name": "scikit-learn", + "name": "ocaml", "count": 3 }, { - "name": "scilab", + "name": "ocean science", "count": 1 }, { - "name": "screwdriver", + "name": "ocean technology", "count": 1 }, { - "name": "screwdriver.cd", + "name": "ogc standards", + "count": 2 + }, + { + "name": "OIDC", "count": 1 }, { - "name": "scripting", - "count": 4 + "name": "olsr", + "count": 1 }, { - "name": "sdl", + "name": "onnx", "count": 1 }, { - "name": "sdr", + "name": "ontologies", + "count": 1 + }, + { + "name": "open hardware", "count": 3 }, { - "name": "search", + "name": "open source databases", "count": 1 }, { - "name": "secure multi-party computation", + "name": "Open-RMF", "count": 1 }, { - "name": "security", - "count": 2 + "name": "open-sound-control", + "count": 1 }, { - "name": "selenium", + "name": "openapi", "count": 2 }, { - "name": "semantic web", + "name": "OpenCASCADE", "count": 1 }, { - "name": "servant", + "name": "opencl", + "count": 5 + }, + { + "name": "opencv", + "count": 11 + }, + { + "name": "opengl", + "count": 32 + }, + { + "name": "openhrp", "count": 1 }, { - "name": "server", + "name": "OpenInventor", "count": 1 }, { - "name": "service mesh", + "name": "openj9", "count": 1 }, { - "name": "sftp", + "name": "openmp", + "count": 3 + }, + { + "name": "openpgp", "count": 1 }, { - "name": "shell", - "count": 8 + "name": "OpenRoad", + "count": 1 }, { - "name": "shell script", - "count": 10 + "name": "openrtm", + "count": 1 }, { - "name": "simd", + "name": "openscenegraph", "count": 1 }, { - "name": "singularity", - "count": 2 + "name": "OpenStreetMap", + "count": 1 }, { - "name": "sip", + "name": "OpenTelemetry", "count": 1 }, { - "name": "skala", + "name": "opentracing", "count": 1 }, { - "name": "smalltalk", + "name": "opentype", "count": 1 }, { - "name": "smb", + "name": "openvpn", "count": 1 }, { - "name": "smt", + "name": "openwrt", + "count": 2 + }, + { + "name": "openxr", + "count": 2 + }, + { + "name": "openzfs", "count": 1 }, { - "name": "smt solvers", + "name": "operating systems", "count": 1 }, { - "name": "soa", + "name": "operator", "count": 1 }, { - "name": "sockets", + "name": "ordbms", "count": 1 }, { - "name": "software defined radio", + "name": "ortelius", "count": 1 }, { - "name": "software radio", + "name": "os", "count": 1 }, { - "name": "softwaredefinedvehicles", - "count": 1 + "name": "osx", + "count": 2 }, { - "name": "solr", + "name": "pallene", "count": 1 }, { - "name": "some/ip", - "count": 1 + "name": "pandas", + "count": 4 }, { - "name": "sound open firmware", - "count": 1 + "name": "parallel algorithms", + "count": 2 }, { - "name": "space applications", + "name": "parallel processing", "count": 1 }, { - "name": "spark", - "count": 3 + "name": "parallelization", + "count": 1 }, { - "name": "sparql", + "name": "Parsers & Compilers", "count": 1 }, { - "name": "spec", + "name": "patroni", "count": 1 }, { - "name": "sphinx", - "count": 2 + "name": "pcap", + "count": 1 }, { - "name": "spi", + "name": "pci", "count": 1 }, { - "name": "spinnaker", + "name": "pcl", "count": 1 }, { - "name": "spir-v", + "name": "pencil", "count": 1 }, { - "name": "spring", - "count": 5 + "name": "perl", + "count": 15 }, { - "name": "sql", - "count": 17 + "name": "perl5", + "count": 1 }, { - "name": "sql/nosql", + "name": "perl6", "count": 1 }, { - "name": "sqlalchemy", + "name": "pharo", "count": 1 }, { - "name": "sqlite", - "count": 5 + "name": "php", + "count": 31 }, { - "name": "squeak", + "name": "physical computing", "count": 1 }, { - "name": "ssh", + "name": "physical web", "count": 1 }, { - "name": "standards", + "name": "Phyton", "count": 1 }, { - "name": "static analysis", + "name": "pixhawk", "count": 1 }, { - "name": "statistics", + "name": "polly", "count": 1 }, { - "name": "streaming", + "name": "polymath", "count": 1 }, { - "name": "subtitles", + "name": "polymer", "count": 1 }, { - "name": "supercollider", - "count": 1 + "name": "posix", + "count": 4 }, { - "name": "svelte", + "name": "POSIX shell", "count": 1 }, { - "name": "svg", - "count": 2 - }, - { - "name": "swift", - "count": 7 + "name": "postgis", + "count": 1 }, { - "name": "swig", - "count": 3 + "name": "postgres", + "count": 6 }, { - "name": "symfony", - "count": 4 + "name": "postgresql", + "count": 35 }, { - "name": "syntaxnet", + "name": "ppcg", "count": 1 }, { - "name": "synthesis", + "name": "Processor", "count": 1 }, { - "name": "sysstat", + "name": "programming languages", "count": 1 }, { - "name": "systemonchip", + "name": "programming-language", "count": 1 }, { - "name": "systemverilog", + "name": "prolog", "count": 2 }, { - "name": "tcl", - "count": 2 + "name": "prometheus", + "count": 5 }, { - "name": "tcl/tk", + "name": "protobuf", "count": 1 }, { - "name": "tcp", + "name": "protocol buffers", "count": 1 }, { - "name": "tcp/udp", + "name": "pthon", "count": 1 }, { - "name": "tekton", + "name": "pygame", "count": 1 }, { - "name": "templates", + "name": "pyqt", "count": 1 }, { - "name": "tensorflow", - "count": 20 - }, - { - "name": "terminal-kit", + "name": "pyth", "count": 1 }, { - "name": "terraform", - "count": 2 - }, - { - "name": "text mining", - "count": 1 + "name": "python", + "count": 293 }, { - "name": "textual", - "count": 1 + "name": "python 3", + "count": 22 }, { - "name": "tla+", - "count": 1 + "name": "python deep learning frameworks", + "count": 3 }, { - "name": "tokio_rs", + "name": "python gtk", "count": 1 }, { - "name": "torch", - "count": 1 + "name": "pytorch", + "count": 15 }, { - "name": "twig", - "count": 1 + "name": "qemu", + "count": 4 }, { - "name": "twisted", - "count": 1 + "name": "qml", + "count": 3 }, { - "name": "type systems", - "count": 1 + "name": "qt", + "count": 28 }, { - "name": "typescript", - "count": 31 + "name": "qt5", + "count": 6 }, { - "name": "uefi", + "name": "Quarkus", "count": 1 }, { - "name": "ui automation", - "count": 1 + "name": "r", + "count": 10 }, { - "name": "ui/ux", + "name": "r-project", "count": 3 }, { - "name": "unicode", + "name": "rails", "count": 2 }, { - "name": "unix", - "count": 4 + "name": "RAML", + "count": 1 }, { - "name": "unreal engine", - "count": 1 + "name": "raspberry pi", + "count": 9 }, { - "name": "v4l2", + "name": "rdbms", "count": 1 }, { - "name": "va-api", - "count": 1 + "name": "rdf", + "count": 4 }, { - "name": "vaapi", - "count": 1 + "name": "react", + "count": 42 }, { - "name": "vala", - "count": 3 + "name": "react native", + "count": 5 }, { - "name": "vectors", + "name": "React-Native", "count": 1 }, { - "name": "vega", + "name": "react.js", "count": 1 }, { - "name": "vega-lite", + "name": "reactive", "count": 1 }, { - "name": "velocity", + "name": "reactive extensions", "count": 1 }, { - "name": "verilog", - "count": 5 + "name": "reactjs", + "count": 14 }, { - "name": "vhdl", - "count": 4 + "name": "reactjs javascript", + "count": 1 }, { - "name": "video", - "count": 3 + "name": "reactnative", + "count": 1 }, { - "name": "video codecs", + "name": "real-time", "count": 2 }, { - "name": "vim", + "name": "recursive-descent", "count": 1 }, { - "name": "virtualization", - "count": 6 + "name": "redis", + "count": 3 }, { - "name": "virtuoso", + "name": "redux", "count": 1 }, { - "name": "vision", - "count": 2 + "name": "regular expressions", + "count": 1 }, { - "name": "visual design", + "name": "remote access", "count": 1 }, { - "name": "visual studio", + "name": "rest", + "count": 14 + }, + { + "name": "rest api", "count": 1 }, { - "name": "visualization", + "name": "restful api", "count": 2 }, { - "name": "voctomix", + "name": "rf", "count": 1 }, { - "name": "vpp", + "name": "RFCs", "count": 1 }, { - "name": "vue", + "name": "risc-v", "count": 4 }, { - "name": "vue.js", - "count": 7 - }, - { - "name": "vulkan", - "count": 9 - }, - { - "name": "waf", - "count": 2 + "name": "RISCV", + "count": 1 }, { - "name": "wasm", + "name": "roassal", "count": 1 }, { - "name": "wayland", - "count": 4 + "name": "robotics", + "count": 3 }, { - "name": "web", - "count": 11 + "name": "rom", + "count": 1 }, { - "name": "web application firewall", - "count": 1 + "name": "ros", + "count": 10 }, { - "name": "web apps", + "name": "ros/gazebo", "count": 1 }, { - "name": "web bluetooth", + "name": "routing", "count": 1 }, { - "name": "web development", - "count": 8 + "name": "rpc", + "count": 2 }, { - "name": "web services", - "count": 3 + "name": "rpm", + "count": 2 }, { - "name": "webassembly", - "count": 5 + "name": "rspec", + "count": 1 }, { - "name": "webasssembly", - "count": 1 + "name": "rtos", + "count": 2 }, { - "name": "webcomponents", - "count": 1 + "name": "ruby", + "count": 28 }, { - "name": "webgl", - "count": 3 + "name": "ruby on rail", + "count": 1 }, { - "name": "webgpu", - "count": 2 + "name": "ruby on rails", + "count": 16 }, { - "name": "webkit", + "name": "rubygems", "count": 1 }, { - "name": "webpack", - "count": 2 + "name": "rust", + "count": 49 }, { - "name": "webrtc", - "count": 5 + "name": "Rxjava", + "count": 1 }, { - "name": "webs", + "name": "Sandbox", "count": 1 }, { - "name": "wiki", + "name": "sanitizers", "count": 1 }, { - "name": "win32", - "count": 3 + "name": "SBOM", + "count": 1 }, { - "name": "win32 api", - "count": 1 + "name": "scala", + "count": 10 }, { - "name": "windows", - "count": 4 + "name": "scala native", + "count": 1 }, { - "name": "wordpress", + "name": "scala.js", "count": 1 }, { - "name": "workflows", + "name": "scalability", "count": 1 }, { - "name": "wxwidgets", + "name": "scheme", "count": 2 }, { - "name": "x11", - "count": 2 + "name": "science", + "count": 1 }, { - "name": "x86", - "count": 6 + "name": "scikit-learn", + "count": 4 }, { - "name": "x86 assembly", + "name": "scilab", "count": 1 }, { - "name": "xarray", + "name": "Scipy", "count": 1 }, { - "name": "xcode", + "name": "screwdriver", "count": 1 }, { - "name": "xen", + "name": "screwdriver.cd", + "count": 1 + }, + { + "name": "scripting", "count": 4 }, { - "name": "xia", + "name": "SCSS", "count": 1 }, { - "name": "xilinx", + "name": "sdl", "count": 1 }, { - "name": "xml", - "count": 8 + "name": "sdr", + "count": 3 }, { - "name": "xmpp", - "count": 5 + "name": "search", + "count": 1 }, { - "name": "xpath", + "name": "secure multi-party computation", + "count": 1 + }, + { + "name": "security", "count": 2 }, { - "name": "xtext", - "count": 1 + "name": "selenium", + "count": 2 }, { - "name": "yocto", + "name": "semantic web", "count": 1 }, { - "name": "zeroc ice", + "name": "servant", "count": 1 }, { - "name": "zeromq", + "name": "server", "count": 1 }, { - "name": "zfs", + "name": "Serverless", "count": 1 }, { - "name": "zmq", + "name": "service mesh", "count": 1 }, { - "name": "zope", + "name": "sftp", "count": 1 - } - ], - "topics": [ - { - "name": "#compilers", - "count": 2 }, { - "name": "#education", - "count": 2 + "name": "shell", + "count": 9 }, { - "name": "#functional-programming", - "count": 2 + "name": "shell script", + "count": 10 }, { - "name": "#programming-languages", + "name": "simd", "count": 2 }, { - "name": "#programming-tools", + "name": "singularity", "count": 2 }, { - "name": "2d acceleration", + "name": "sip", "count": 1 }, { - "name": "2d animation", + "name": "skala", "count": 1 }, { - "name": "2d/3d graphics", - "count": 7 + "name": "smalltalk", + "count": 1 }, { - "name": "360 stereo video", + "name": "smb", "count": 1 }, { - "name": "3D Geometry", + "name": "smt", "count": 1 }, { - "name": "3D Reconstruction", + "name": "smt solvers", "count": 1 }, { - "name": "3D data processing", + "name": "soa", "count": 1 }, { - "name": "3D machine learning", + "name": "sockets", "count": 1 }, { - "name": "3D visualization", + "name": "Software Agent", "count": 1 }, { - "name": "3d", - "count": 9 + "name": "software defined radio", + "count": 1 }, { - "name": "3d acceleration", + "name": "software radio", "count": 1 }, { - "name": "3d animation", + "name": "softwaredefinedvehicles", "count": 1 }, { - "name": "3d cad geometry", + "name": "Solidity", "count": 1 }, { - "name": "3d computer vision", + "name": "solr", "count": 1 }, { - "name": "3d printing", + "name": "some/ip", "count": 1 }, { - "name": "3d tools", + "name": "sound open firmware", "count": 1 }, { - "name": "3dui", + "name": "space applications", "count": 1 }, { - "name": "AGI", - "count": 1 + "name": "spark", + "count": 3 }, { - "name": "AI Testing Agent", + "name": "sparql", "count": 1 }, { - "name": "AI in Health", + "name": "Spatial AI", "count": 1 }, { - "name": "AI,", + "name": "spec", "count": 1 }, { - "name": "AI/ML", - "count": 8 + "name": "sphinx", + "count": 2 }, { - "name": "AI/ML Networking", + "name": "spi", "count": 1 }, { - "name": "AIML", + "name": "spinnaker", "count": 1 }, { - "name": "API Testing", + "name": "spir-v", "count": 1 }, { - "name": "AR", - "count": 1 + "name": "spring", + "count": 5 }, { - "name": "ASIC design", + "name": "SpringBoot", "count": 1 }, { - "name": "Adjoint Design Optimization", - "count": 1 + "name": "sql", + "count": 18 }, { - "name": "Agent Based Models", + "name": "sql/nosql", "count": 1 }, { - "name": "Application Development", - "count": 1 + "name": "sqlalchemy", + "count": 2 }, { - "name": "Architectures", - "count": 1 + "name": "sqlite", + "count": 5 }, { - "name": "Artificial Inteligence", + "name": "squeak", "count": 1 }, { - "name": "Arts", + "name": "ssh", "count": 1 }, { - "name": "Authentication", + "name": "standards", "count": 1 }, { - "name": "Authoritative DNS software", + "name": "static analysis", "count": 1 }, { - "name": "Automated Testing", + "name": "statistics", "count": 1 }, { - "name": "Autonomous Drive", + "name": "streaming", "count": 1 }, { - "name": "BIM", + "name": "Streamlit", "count": 1 }, { - "name": "BIOS", - "count": 2 + "name": "subtitles", + "count": 1 }, { - "name": "Backup", + "name": "SUnit", "count": 1 }, { - "name": "Benchmark", + "name": "supercollider", "count": 1 }, { - "name": "CAM", + "name": "svelte", "count": 1 }, { - "name": "CI/CD", + "name": "svg", "count": 2 }, { - "name": "Chat platform", - "count": 1 + "name": "swift", + "count": 7 + }, + { + "name": "swig", + "count": 3 + }, + { + "name": "symfony", + "count": 4 }, { - "name": "Checkpoint/Restore", + "name": "syntaxnet", "count": 1 }, { - "name": "Circumvention", + "name": "synthesis", "count": 1 }, { - "name": "Climate", + "name": "sysstat", "count": 1 }, { - "name": "CloudNative", + "name": "systemonchip", "count": 1 }, { - "name": "Codec", - "count": 1 + "name": "systemverilog", + "count": 2 }, { - "name": "Communication Protocols", - "count": 1 + "name": "tcl", + "count": 3 }, { - "name": "Component testing", + "name": "tcl/tk", "count": 1 }, { - "name": "Computational Fluid Dynamics", + "name": "tcp", "count": 1 }, { - "name": "Computational Science", + "name": "tcp/udp", "count": 1 }, { - "name": "Computer-Vision", + "name": "Technical writing", "count": 1 }, { - "name": "Control", - "count": 1 + "name": "tekton", + "count": 2 }, { - "name": "DL-inference", + "name": "templates", "count": 1 }, { - "name": "DNS recursive solutions", - "count": 1 + "name": "tensorflow", + "count": 20 }, { - "name": "DTLS", + "name": "terminal-kit", "count": 1 }, { - "name": "DXP", + "name": "terraform", "count": 2 }, { - "name": "Data Infrastructure", + "name": "Testing", "count": 1 }, { - "name": "Data Meshes", + "name": "text mining", "count": 1 }, { - "name": "Data cataloging", + "name": "textual", "count": 1 }, { - "name": "Database Engines", + "name": "tla+", "count": 1 }, { - "name": "Database systems", + "name": "TLS", "count": 1 }, { - "name": "Desktop Portals", + "name": "tokio_rs", "count": 1 }, { - "name": "Dev Tool", + "name": "torch", "count": 1 }, { - "name": "DevSecOps", - "count": 2 + "name": "twig", + "count": 1 }, { - "name": "Digital Marketing", + "name": "twisted", "count": 1 }, { - "name": "Digital Public Goods", + "name": "type systems", "count": 1 }, { - "name": "Diversity Equity and Inclusion", - "count": 1 + "name": "typescript", + "count": 33 }, { - "name": "Drone", + "name": "uefi", "count": 1 }, { - "name": "Drug Discovery", + "name": "ui automation", "count": 1 }, { - "name": "Ecological Forecasting,", - "count": 1 + "name": "ui/ux", + "count": 3 }, { - "name": "Edge AI", - "count": 1 + "name": "unicode", + "count": 2 }, { - "name": "Effects", - "count": 1 + "name": "unix", + "count": 4 }, { - "name": "Electronic Medical Record System", + "name": "unreal engine", "count": 1 }, { - "name": "Embedded System", + "name": "v4l2", "count": 1 }, { - "name": "Embodied AI", + "name": "va-api", "count": 1 }, { - "name": "End-To-End Testing", + "name": "vaapi", "count": 1 }, { - "name": "Eye Tracking", - "count": 1 + "name": "vala", + "count": 3 }, { - "name": "Fairness", + "name": "Vector Operations", "count": 1 }, { - "name": "Film", + "name": "vectors", "count": 1 }, { - "name": "Flashcards", + "name": "vega", "count": 1 }, { - "name": "Fluid Dynamics", + "name": "vega-lite", "count": 1 }, { - "name": "Forecasting", + "name": "velocity", "count": 1 }, { - "name": "Fortran", + "name": "Verification", "count": 1 }, { - "name": "Functional Testing", - "count": 2 + "name": "verilog", + "count": 6 }, { - "name": "Gemma", - "count": 1 + "name": "vhdl", + "count": 4 }, { - "name": "GenAI", - "count": 1 + "name": "video", + "count": 3 }, { - "name": "Generative Science", - "count": 1 + "name": "video codecs", + "count": 2 }, { - "name": "Geoinformation", + "name": "vim", "count": 1 }, { - "name": "HDL", - "count": 1 + "name": "virtualization", + "count": 6 }, { - "name": "HMIS", + "name": "virtuoso", "count": 1 }, { - "name": "Health Care", - "count": 1 + "name": "vision", + "count": 2 }, { - "name": "History", + "name": "visual design", "count": 1 }, { - "name": "Human Rights", + "name": "visual studio", "count": 1 }, { - "name": "Humanities", - "count": 1 + "name": "visualization", + "count": 3 }, { - "name": "IAM", + "name": "VLSI", "count": 1 }, { - "name": "IMDG", + "name": "voctomix", "count": 1 }, { - "name": "IP cores", + "name": "vpp", "count": 1 }, { - "name": "In-memory", + "name": "VST", "count": 1 }, { - "name": "Inclusive", + "name": "Vtk", "count": 1 }, { - "name": "InfrastrucutreAsCode", - "count": 1 + "name": "vue", + "count": 4 }, { - "name": "Interpretibility", - "count": 1 + "name": "vue.js", + "count": 7 }, { - "name": "JIT", + "name": "VueJS", "count": 1 }, { - "name": "Jax", - "count": 2 + "name": "vulkan", + "count": 9 }, { - "name": "Jingle", - "count": 1 + "name": "waf", + "count": 2 }, { - "name": "Kubernetes Operator", + "name": "wasm", "count": 1 }, { - "name": "LLM", - "count": 1 + "name": "wayland", + "count": 4 }, { - "name": "Laboratory Information System", + "name": "WDL", "count": 1 }, { - "name": "License", - "count": 1 + "name": "web", + "count": 11 }, { - "name": "Live music", + "name": "web application firewall", "count": 1 }, { - "name": "Logic bugs", + "name": "web apps", "count": 1 }, { - "name": "ML/AL", + "name": "web bluetooth", "count": 1 }, { - "name": "MLOps", - "count": 1 + "name": "web development", + "count": 8 }, { - "name": "Marine Biodiversity", - "count": 1 + "name": "web services", + "count": 3 }, { - "name": "Marketing", - "count": 1 + "name": "webassembly", + "count": 5 }, { - "name": "Marketing Automation", + "name": "webasssembly", "count": 1 }, { - "name": "Massive community", + "name": "webcomponents", "count": 1 }, { - "name": "Mock and Stubs Generation", + "name": "WebDriver", "count": 1 }, { - "name": "Modelling", - "count": 1 + "name": "webgl", + "count": 3 }, { - "name": "Mulitmodel Data", - "count": 1 + "name": "webgpu", + "count": 2 }, { - "name": "Multi-Disciplinary Optimization", + "name": "webkit", "count": 1 }, { - "name": "Multi-agent Systems", - "count": 1 + "name": "webpack", + "count": 2 }, { - "name": "Music recommendation", - "count": 1 + "name": "webrtc", + "count": 5 }, { - "name": "Native mobile app testing", + "name": "webs", "count": 1 }, { - "name": "NetworkManager", + "name": "wiki", "count": 1 }, { - "name": "Neural networks", - "count": 2 + "name": "win32", + "count": 3 }, { - "name": "Neuronavigation", + "name": "win32 api", "count": 1 }, { - "name": "No code platform", - "count": 1 + "name": "windows", + "count": 4 }, { - "name": "NoSQL Database", + "name": "wordpress", "count": 1 }, { - "name": "Node.js", + "name": "workflows", "count": 1 }, { - "name": "OLAP", - "count": 1 + "name": "wxwidgets", + "count": 3 }, { - "name": "OS", - "count": 3 + "name": "x11", + "count": 2 }, { - "name": "Oceanography", + "name": "x86", + "count": 6 + }, + { + "name": "x86 assembly", "count": 1 }, { - "name": "Open Source Bioinformatics", + "name": "xarray", + "count": 2 + }, + { + "name": "xcode", "count": 1 }, { - "name": "Operational Analytics", - "count": 1 + "name": "xen", + "count": 4 }, { - "name": "Operations", + "name": "xia", "count": 1 }, { - "name": "PYTHON LIBRARY", + "name": "xilinx", "count": 1 }, { - "name": "Packages", - "count": 1 + "name": "xml", + "count": 8 }, { - "name": "Performance Optimisation", - "count": 1 + "name": "xmpp", + "count": 5 }, { - "name": "Personal Server", - "count": 1 + "name": "xpath", + "count": 2 }, { - "name": "Platform Engineering", + "name": "XR", "count": 1 }, { - "name": "Polar Science", + "name": "xtext", "count": 1 }, { - "name": "Processor", + "name": "YAML", "count": 1 }, { - "name": "Programming & Build Tools", + "name": "yocto", "count": 1 }, { - "name": "Python MLOps Framework", + "name": "Z3", "count": 1 }, { - "name": "Python Robotics", + "name": "ZAP", "count": 1 }, { - "name": "QA automation", - "count": 1 + "name": "Zarr", + "count": 2 }, { - "name": "RISC-V", + "name": "Zephyr RTOS", "count": 1 }, { - "name": "Real-Time Communication", + "name": "zeroc ice", "count": 1 }, { - "name": "Robot Dataflow", + "name": "zeromq", "count": 1 }, { - "name": "Robustness", + "name": "zfs", "count": 1 }, { - "name": "Rover", + "name": "Zig", "count": 1 }, { - "name": "SAT & SMT solving", + "name": "zmq", "count": 1 }, { - "name": "SBOM", + "name": "zope", "count": 2 - }, + } + ], + "topics": [ { - "name": "SDR", - "count": 1 + "name": "#compilers", + "count": 2 }, { - "name": "SQL Features", - "count": 1 + "name": "#education", + "count": 2 }, { - "name": "Safety", - "count": 1 + "name": "#functional-programming", + "count": 2 }, { - "name": "ScreenCapture", - "count": 1 + "name": "#programming-languages", + "count": 2 }, { - "name": "Search Engines", + "name": "#programming-tools", "count": 2 }, { - "name": "Secure Messaging", + "name": "2d acceleration", "count": 1 }, { - "name": "Security Cryptography", + "name": "2d animation", "count": 1 }, { - "name": "Security Defense", - "count": 1 + "name": "2d/3d graphics", + "count": 7 }, { - "name": "Sentimental Analysis", + "name": "360 stereo video", "count": 1 }, { - "name": "Server development", - "count": 1 + "name": "3d", + "count": 9 }, { - "name": "Serverless Computing", + "name": "3d acceleration", "count": 1 }, { - "name": "Social participation", + "name": "3d animation", "count": 1 }, { - "name": "Software-Defined Radio", + "name": "3d cad geometry", "count": 1 }, { - "name": "Software-Defined-Storage", + "name": "3d computer vision", "count": 1 }, { - "name": "SoftwareCompositionAnalysis", + "name": "3D data processing", "count": 1 }, { - "name": "Sound", + "name": "3D Geometry", "count": 1 }, { - "name": "Standard Libraries", + "name": "3D machine learning", "count": 1 }, { - "name": "Structural engineering", + "name": "3d printing", "count": 1 }, { - "name": "Surveillance", + "name": "3D Reconstruction", "count": 1 }, { - "name": "System on Chip", + "name": "3d tools", "count": 1 }, { - "name": "TLS", + "name": "3D visualization", "count": 1 }, { - "name": "Team Collaboration", + "name": "3dui", "count": 1 }, { - "name": "Telemedicine and Remote Care", + "name": "academia", "count": 1 }, { - "name": "Telepresence", - "count": 1 + "name": "academic projects", + "count": 2 }, { - "name": "Threat Intelligence", + "name": "academic research", "count": 1 }, { - "name": "Transit", + "name": "accelerated media", "count": 1 }, { - "name": "UGV", + "name": "accesibility", "count": 1 }, { - "name": "UX/UI", - "count": 1 + "name": "accessibility", + "count": 6 }, { - "name": "Usability", + "name": "acoustics", "count": 1 }, { - "name": "User Evaluation", + "name": "acpi", "count": 1 }, { - "name": "Vector Database", + "name": "actor model", "count": 1 }, { - "name": "Visual Effects", + "name": "Adjoint Design Optimization", "count": 1 }, { - "name": "Wayland", + "name": "administrator", "count": 1 }, { - "name": "WebRTC", + "name": "aerodynamics", "count": 2 }, { - "name": "academia", + "name": "aeroelasticity", "count": 1 }, { - "name": "academic projects", - "count": 2 + "name": "aerogear", + "count": 1 }, { - "name": "academic research", + "name": "aeronautics", "count": 1 }, { - "name": "accelerated media", + "name": "aerospace", "count": 1 }, { - "name": "accesibility", + "name": "agent", "count": 1 }, { - "name": "accessibility", - "count": 6 + "name": "Agent Based Models", + "count": 1 }, { - "name": "acoustics", + "name": "agent sandbox", "count": 1 }, { - "name": "acpi", + "name": "Agentic AI", "count": 1 }, { - "name": "actor model", + "name": "Agents", "count": 1 }, { - "name": "administrator", + "name": "AGI", "count": 1 }, { - "name": "aerodynamics", - "count": 2 + "name": "ai", + "count": 35 }, { - "name": "aeroelasticity", + "name": "AI Agent", "count": 1 }, { - "name": "aerogear", + "name": "AI for math", "count": 1 }, { - "name": "aeronautics", + "name": "AI in Health", "count": 1 }, { - "name": "aerospace", + "name": "AI Testing Agent", "count": 1 }, { - "name": "agent", + "name": "AI,", "count": 1 }, { - "name": "ai", - "count": 32 + "name": "AI/ML", + "count": 8 + }, + { + "name": "AI/ML Networking", + "count": 1 + }, + { + "name": "AIML", + "count": 1 }, { "name": "alerting", @@ -4162,7 +3610,7 @@ }, { "name": "algorithms", - "count": 11 + "count": 12 }, { "name": "analysis", @@ -4170,7 +3618,7 @@ }, { "name": "analytics", - "count": 3 + "count": 4 }, { "name": "analyzing", @@ -4178,7 +3626,7 @@ }, { "name": "android", - "count": 5 + "count": 6 }, { "name": "android-sdk", @@ -4212,18 +3660,26 @@ "name": "api management", "count": 2 }, + { + "name": "API Testing", + "count": 1 + }, { "name": "apis", "count": 6 }, { "name": "app development", - "count": 3 + "count": 4 }, { "name": "application", "count": 3 }, + { + "name": "Application Development", + "count": 1 + }, { "name": "application security", "count": 3 @@ -4240,14 +3696,26 @@ "name": "appsec", "count": 1 }, + { + "name": "AR", + "count": 1 + }, { "name": "architecture", "count": 2 }, + { + "name": "Architectures", + "count": 1 + }, { "name": "archive", "count": 1 }, + { + "name": "archives", + "count": 1 + }, { "name": "archiving", "count": 1 @@ -4260,9 +3728,13 @@ "name": "art", "count": 2 }, + { + "name": "Artificial Inteligence", + "count": 1 + }, { "name": "artificial intelligence", - "count": 20 + "count": 23 }, { "name": "artificial-intelligence", @@ -4272,10 +3744,22 @@ "name": "artist tools", "count": 1 }, + { + "name": "Arts", + "count": 1 + }, + { + "name": "ASIC design", + "count": 2 + }, { "name": "assembly", "count": 1 }, + { + "name": "assyriology", + "count": 1 + }, { "name": "ast", "count": 1 @@ -4328,6 +3812,14 @@ "name": "audio processing", "count": 2 }, + { + "name": "Authentication", + "count": 1 + }, + { + "name": "Authoritative DNS software", + "count": 1 + }, { "name": "authorization", "count": 1 @@ -4336,6 +3828,10 @@ "name": "automated program repair", "count": 1 }, + { + "name": "Automated Testing", + "count": 1 + }, { "name": "automation", "count": 13 @@ -4348,6 +3844,10 @@ "name": "automotive", "count": 4 }, + { + "name": "Autonomous Drive", + "count": 1 + }, { "name": "autonomous vehicle", "count": 1 @@ -4364,6 +3864,10 @@ "name": "backend", "count": 3 }, + { + "name": "Backup", + "count": 1 + }, { "name": "backups", "count": 1 @@ -4376,6 +3880,10 @@ "name": "beatdetection", "count": 1 }, + { + "name": "Benchmark", + "count": 1 + }, { "name": "benchmarking", "count": 1 @@ -4394,7 +3902,7 @@ }, { "name": "big data", - "count": 19 + "count": 21 }, { "name": "big data science", @@ -4412,6 +3920,10 @@ "name": "bigdata", "count": 1 }, + { + "name": "BIM", + "count": 1 + }, { "name": "binary tools", "count": 1 @@ -4452,6 +3964,10 @@ "name": "biophysics", "count": 1 }, + { + "name": "BIOS", + "count": 2 + }, { "name": "bittorrent", "count": 1 @@ -4462,7 +3978,7 @@ }, { "name": "blockchain", - "count": 2 + "count": 3 }, { "name": "bookmarking", @@ -4528,6 +4044,10 @@ "name": "build tools", "count": 6 }, + { + "name": "buildfarms", + "count": 1 + }, { "name": "bus", "count": 1 @@ -4536,6 +4056,10 @@ "name": "c", "count": 1 }, + { + "name": "c- c+", + "count": 1 + }, { "name": "c++", "count": 4 @@ -4564,10 +4088,6 @@ "name": "c++ tools", "count": 2 }, - { - "name": "c- c+", - "count": 1 - }, { "name": "cad", "count": 2 @@ -4580,6 +4100,10 @@ "name": "callibration", "count": 1 }, + { + "name": "CAM", + "count": 1 + }, { "name": "camera", "count": 3 @@ -4608,6 +4132,10 @@ "name": "cats", "count": 1 }, + { + "name": "Causal Inference", + "count": 1 + }, { "name": "censorship", "count": 1 @@ -4628,6 +4156,10 @@ "name": "chat", "count": 6 }, + { + "name": "Chat platform", + "count": 1 + }, { "name": "chatbot", "count": 1 @@ -4640,6 +4172,10 @@ "name": "checkpoint-restore", "count": 1 }, + { + "name": "Checkpoint/Restore", + "count": 1 + }, { "name": "cheminformatics", "count": 3 @@ -4656,10 +4192,18 @@ "name": "ci", "count": 1 }, + { + "name": "CI/CD", + "count": 3 + }, { "name": "cinematography", "count": 1 }, + { + "name": "Circumvention", + "count": 1 + }, { "name": "citizen science", "count": 3 @@ -4688,6 +4232,10 @@ "name": "cli", "count": 2 }, + { + "name": "Climate", + "count": 1 + }, { "name": "climate monitoring", "count": 1 @@ -4710,7 +4258,7 @@ }, { "name": "cloud", - "count": 60 + "count": 62 }, { "name": "cloud computing", @@ -4750,6 +4298,10 @@ }, { "name": "cloud-native", + "count": 2 + }, + { + "name": "CloudNative", "count": 1 }, { @@ -4796,6 +4348,10 @@ "name": "code scan and matching", "count": 1 }, + { + "name": "Codec", + "count": 1 + }, { "name": "codecs", "count": 1 @@ -4838,7 +4394,11 @@ }, { "name": "communication", - "count": 12 + "count": 13 + }, + { + "name": "Communication Protocols", + "count": 1 }, { "name": "communication system", @@ -4890,7 +4450,7 @@ }, { "name": "compilers", - "count": 28 + "count": 30 }, { "name": "compliance", @@ -4904,6 +4464,10 @@ "name": "component repository", "count": 1 }, + { + "name": "Component testing", + "count": 1 + }, { "name": "component-based development", "count": 1 @@ -4916,6 +4480,10 @@ "name": "composing", "count": 1 }, + { + "name": "Compostion AI", + "count": 1 + }, { "name": "compress", "count": 1 @@ -4944,6 +4512,10 @@ "name": "computational chemistry", "count": 2 }, + { + "name": "Computational Fluid Dynamics", + "count": 1 + }, { "name": "computational geometry", "count": 3 @@ -4960,6 +4532,10 @@ "name": "computational photography", "count": 1 }, + { + "name": "Computational Science", + "count": 1 + }, { "name": "computational-chemistry", "count": 1 @@ -4996,6 +4572,10 @@ "name": "computer-assisted translation", "count": 1 }, + { + "name": "Computer-Vision", + "count": 1 + }, { "name": "concurrency", "count": 5 @@ -5026,7 +4606,7 @@ }, { "name": "containers", - "count": 7 + "count": 8 }, { "name": "containers kubernetes", @@ -5052,6 +4632,10 @@ "name": "contributor activity", "count": 1 }, + { + "name": "Control", + "count": 1 + }, { "name": "conversational", "count": 1 @@ -5158,11 +4742,11 @@ }, { "name": "data", - "count": 12 + "count": 13 }, { "name": "data analysis", - "count": 8 + "count": 9 }, { "name": "data analytics", @@ -5172,6 +4756,10 @@ "name": "data and databases", "count": 2 }, + { + "name": "Data cataloging", + "count": 1 + }, { "name": "data discovery", "count": 3 @@ -5184,6 +4772,10 @@ "name": "data fusion", "count": 1 }, + { + "name": "Data Infrastructure", + "count": 1 + }, { "name": "data integration", "count": 4 @@ -5192,6 +4784,10 @@ "name": "data management", "count": 4 }, + { + "name": "Data Meshes", + "count": 1 + }, { "name": "data mining", "count": 4 @@ -5218,7 +4814,7 @@ }, { "name": "data science", - "count": 31 + "count": 32 }, { "name": "data security", @@ -5276,6 +4872,10 @@ "name": "database", "count": 17 }, + { + "name": "Database Engines", + "count": 1 + }, { "name": "database optimization", "count": 1 @@ -5284,6 +4884,10 @@ "name": "database services", "count": 1 }, + { + "name": "Database systems", + "count": 1 + }, { "name": "databases", "count": 15 @@ -5350,7 +4954,7 @@ }, { "name": "deep learning", - "count": 16 + "count": 17 }, { "name": "deep neural net rendering", @@ -5384,6 +4988,10 @@ "name": "desktop", "count": 14 }, + { + "name": "Desktop App Development", + "count": 1 + }, { "name": "desktop application", "count": 2 @@ -5400,6 +5008,14 @@ "name": "desktop integration", "count": 2 }, + { + "name": "Desktop Portals", + "count": 1 + }, + { + "name": "Dev Tool", + "count": 1 + }, { "name": "dev-ops", "count": 1 @@ -5414,7 +5030,7 @@ }, { "name": "developer tools", - "count": 15 + "count": 16 }, { "name": "developing countries", @@ -5428,6 +5044,10 @@ "name": "development", "count": 3 }, + { + "name": "development framework", + "count": 1 + }, { "name": "development tools", "count": 9 @@ -5440,6 +5060,10 @@ "name": "devops", "count": 13 }, + { + "name": "DevSecOps", + "count": 2 + }, { "name": "devtools", "count": 3 @@ -5500,10 +5124,18 @@ "name": "digital logic design", "count": 1 }, + { + "name": "Digital Marketing", + "count": 1 + }, { "name": "digital preservation", "count": 1 }, + { + "name": "Digital Public Goods", + "count": 1 + }, { "name": "digital rights", "count": 1 @@ -5576,6 +5208,10 @@ "name": "diversity and inclusion", "count": 1 }, + { + "name": "Diversity Equity and Inclusion", + "count": 1 + }, { "name": "diy", "count": 1 @@ -5588,10 +5224,18 @@ "name": "django", "count": 1 }, + { + "name": "DL-inference", + "count": 1 + }, { "name": "dns", "count": 1 }, + { + "name": "DNS recursive solutions", + "count": 1 + }, { "name": "docker", "count": 1 @@ -5612,10 +5256,18 @@ "name": "drivers", "count": 8 }, + { + "name": "Drone", + "count": 1 + }, { "name": "drones", "count": 2 }, + { + "name": "Drug Discovery", + "count": 1 + }, { "name": "drupal 8", "count": 1 @@ -5628,10 +5280,18 @@ "name": "dsp", "count": 3 }, + { + "name": "DTLS", + "count": 1 + }, { "name": "dvcs", "count": 1 }, + { + "name": "DXP", + "count": 2 + }, { "name": "dynamic environment", "count": 1 @@ -5662,7 +5322,7 @@ }, { "name": "earth science", - "count": 1 + "count": 2 }, { "name": "earth sciences", @@ -5680,6 +5340,10 @@ "name": "ecological forecasting", "count": 1 }, + { + "name": "Ecological Forecasting,", + "count": 1 + }, { "name": "ecosystem models", "count": 1 @@ -5696,6 +5360,10 @@ "name": "edge", "count": 1 }, + { + "name": "Edge AI", + "count": 1 + }, { "name": "edit", "count": 1 @@ -5706,7 +5374,7 @@ }, { "name": "editor", - "count": 3 + "count": 4 }, { "name": "edk2", @@ -5718,12 +5386,16 @@ }, { "name": "education", - "count": 32 + "count": 33 }, { "name": "educational technology", "count": 2 }, + { + "name": "Effects", + "count": 1 + }, { "name": "ehealth", "count": 2 @@ -5736,6 +5408,10 @@ "name": "electronic design tools", "count": 2 }, + { + "name": "Electronic Medical Record System", + "count": 1 + }, { "name": "electronic medical records", "count": 2 @@ -5758,7 +5434,7 @@ }, { "name": "email", - "count": 4 + "count": 5 }, { "name": "embeddable widget", @@ -5776,6 +5452,10 @@ "name": "embedded hardware", "count": 2 }, + { + "name": "Embedded System", + "count": 1 + }, { "name": "embedded systems", "count": 12 @@ -5784,6 +5464,10 @@ "name": "embedded/automotive", "count": 1 }, + { + "name": "Embodied AI", + "count": 1 + }, { "name": "emulation", "count": 4 @@ -5816,6 +5500,10 @@ "name": "end user applications", "count": 3 }, + { + "name": "End-To-End Testing", + "count": 1 + }, { "name": "end-user application", "count": 1 @@ -5896,10 +5584,18 @@ "name": "extensions", "count": 1 }, + { + "name": "Eye Tracking", + "count": 1 + }, { "name": "faas", "count": 2 }, + { + "name": "Fairness", + "count": 1 + }, { "name": "fake-news", "count": 1 @@ -5950,7 +5646,11 @@ }, { "name": "filesystems", - "count": 2 + "count": 3 + }, + { + "name": "Film", + "count": 1 }, { "name": "filmmaking", @@ -6000,6 +5700,10 @@ "name": "flashcard", "count": 1 }, + { + "name": "Flashcards", + "count": 1 + }, { "name": "fleet management", "count": 1 @@ -6012,6 +5716,10 @@ "name": "floss", "count": 1 }, + { + "name": "Fluid Dynamics", + "count": 1 + }, { "name": "fonts", "count": 2 @@ -6020,6 +5728,10 @@ "name": "food", "count": 1 }, + { + "name": "Forecasting", + "count": 1 + }, { "name": "foreign function interface", "count": 1 @@ -6032,6 +5744,10 @@ "name": "formal methods", "count": 3 }, + { + "name": "Fortran", + "count": 1 + }, { "name": "forum", "count": 3 @@ -6078,7 +5794,7 @@ }, { "name": "full stack", - "count": 1 + "count": 2 }, { "name": "full stack web and mobile", @@ -6096,6 +5812,10 @@ "name": "functional safety", "count": 1 }, + { + "name": "Functional Testing", + "count": 2 + }, { "name": "functional-programming", "count": 4 @@ -6134,20 +5854,28 @@ }, { "name": "game theory", - "count": 1 + "count": 2 }, { "name": "games", - "count": 9 + "count": 10 }, { "name": "gaming", "count": 4 }, + { + "name": "Gemma", + "count": 1 + }, { "name": "gen ai", "count": 1 }, + { + "name": "GenAI", + "count": 2 + }, { "name": "general purpose os", "count": 1 @@ -6156,6 +5884,10 @@ "name": "generative AI", "count": 3 }, + { + "name": "Generative Science", + "count": 1 + }, { "name": "generative text", "count": 1 @@ -6178,7 +5910,7 @@ }, { "name": "genomics", - "count": 13 + "count": 14 }, { "name": "geo", @@ -6196,6 +5928,10 @@ "name": "geoinformatics", "count": 3 }, + { + "name": "Geoinformation", + "count": 1 + }, { "name": "geoinformation systems", "count": 1 @@ -6364,14 +6100,26 @@ "name": "hardware accelerated media processing", "count": 1 }, + { + "name": "Hardware Control", + "count": 1 + }, { "name": "haskell", "count": 1 }, + { + "name": "HDL", + "count": 1 + }, { "name": "health", "count": 8 }, + { + "name": "Health Care", + "count": 1 + }, { "name": "healthcare", "count": 1 @@ -6424,6 +6172,14 @@ "name": "high-performance-computing", "count": 1 }, + { + "name": "History", + "count": 1 + }, + { + "name": "HMIS", + "count": 1 + }, { "name": "home servers", "count": 1 @@ -6480,10 +6236,18 @@ "name": "human language technologies", "count": 2 }, + { + "name": "Human Rights", + "count": 1 + }, { "name": "humanitarian", "count": 3 }, + { + "name": "Humanities", + "count": 1 + }, { "name": "humanrights", "count": 1 @@ -6504,6 +6268,10 @@ "name": "i18n", "count": 1 }, + { + "name": "IAM", + "count": 1 + }, { "name": "ictd", "count": 1 @@ -6560,10 +6328,18 @@ "name": "imaging", "count": 2 }, + { + "name": "IMDG", + "count": 1 + }, { "name": "in memory data grid", "count": 1 }, + { + "name": "In-memory", + "count": 1 + }, { "name": "in-memory data grid", "count": 1 @@ -6572,6 +6348,10 @@ "name": "inclusion", "count": 1 }, + { + "name": "Inclusive", + "count": 1 + }, { "name": "inclusivity", "count": 1 @@ -6616,6 +6396,10 @@ "name": "infrastructure as design", "count": 1 }, + { + "name": "InfrastrucutreAsCode", + "count": 1 + }, { "name": "init", "count": 1 @@ -6626,7 +6410,7 @@ }, { "name": "innovation", - "count": 1 + "count": 2 }, { "name": "input methods", @@ -6688,14 +6472,30 @@ "name": "internet freedom", "count": 2 }, + { + "name": "Internet measurements", + "count": 1 + }, { "name": "internet of things", "count": 5 }, + { + "name": "Internet quality", + "count": 1 + }, { "name": "interoperability", "count": 2 }, + { + "name": "interpreters", + "count": 1 + }, + { + "name": "Interpretibility", + "count": 1 + }, { "name": "ion mobility", "count": 1 @@ -6716,6 +6516,10 @@ "name": "iot cps", "count": 1 }, + { + "name": "IP cores", + "count": 1 + }, { "name": "ipc", "count": 1 @@ -6752,6 +6556,18 @@ "name": "javascript", "count": 5 }, + { + "name": "Jax", + "count": 2 + }, + { + "name": "Jingle", + "count": 1 + }, + { + "name": "JIT", + "count": 1 + }, { "name": "journalism", "count": 1 @@ -6800,6 +6616,14 @@ "name": "kubernetes", "count": 7 }, + { + "name": "Kubernetes Operator", + "count": 1 + }, + { + "name": "Laboratory Information System", + "count": 1 + }, { "name": "land rights", "count": 1 @@ -6834,7 +6658,7 @@ }, { "name": "latex", - "count": 1 + "count": 2 }, { "name": "law", @@ -6876,14 +6700,22 @@ "name": "level", "count": 1 }, + { + "name": "Level Editor", + "count": 1 + }, { "name": "libraries", - "count": 6 + "count": 7 }, { "name": "library", "count": 7 }, + { + "name": "License", + "count": 1 + }, { "name": "license compliance", "count": 3 @@ -6912,6 +6744,10 @@ "name": "lightweight", "count": 1 }, + { + "name": "lightweight framework", + "count": 1 + }, { "name": "linear algebra", "count": 4 @@ -6944,6 +6780,10 @@ "name": "linux kernel", "count": 1 }, + { + "name": "list management", + "count": 1 + }, { "name": "literature", "count": 1 @@ -6952,6 +6792,10 @@ "name": "live migration", "count": 1 }, + { + "name": "Live music", + "count": 1 + }, { "name": "live programming", "count": 1 @@ -6960,6 +6804,14 @@ "name": "live streaming", "count": 2 }, + { + "name": "LLM", + "count": 1 + }, + { + "name": "LLM chip design", + "count": 1 + }, { "name": "load testing", "count": 1 @@ -6992,6 +6844,10 @@ "name": "logic", "count": 2 }, + { + "name": "Logic bugs", + "count": 1 + }, { "name": "low level programming", "count": 1 @@ -7018,7 +6874,7 @@ }, { "name": "machine learning", - "count": 65 + "count": 69 }, { "name": "machine trans", @@ -7076,13 +6932,29 @@ "name": "maps", "count": 6 }, + { + "name": "Marine Biodiversity", + "count": 1 + }, + { + "name": "Marketing", + "count": 1 + }, + { + "name": "Marketing Automation", + "count": 1 + }, { "name": "martech", "count": 1 }, { "name": "mass spectrometry", - "count": 2 + "count": 3 + }, + { + "name": "Massive community", + "count": 1 }, { "name": "material design", @@ -7100,6 +6972,10 @@ "name": "math", "count": 4 }, + { + "name": "mathematical optimizaton", + "count": 1 + }, { "name": "mathematical software", "count": 4 @@ -7284,14 +7160,26 @@ "name": "mission control", "count": 1 }, + { + "name": "ML Ops", + "count": 1 + }, { "name": "ml-inference", "count": 1 }, + { + "name": "ML/AL", + "count": 1 + }, { "name": "mlearning", "count": 1 }, + { + "name": "MLOps", + "count": 1 + }, { "name": "mobian", "count": 1 @@ -7340,6 +7228,10 @@ "name": "mobile-apps", "count": 4 }, + { + "name": "Mock and Stubs Generation", + "count": 1 + }, { "name": "modding", "count": 1 @@ -7348,6 +7240,10 @@ "name": "model checking", "count": 1 }, + { + "name": "Model Serving", + "count": 1 + }, { "name": "modeling", "count": 2 @@ -7356,6 +7252,10 @@ "name": "modeling & optimization", "count": 1 }, + { + "name": "Modelling", + "count": 1 + }, { "name": "molecular analysis", "count": 1 @@ -7400,10 +7300,22 @@ "name": "mozilla", "count": 1 }, + { + "name": "Mulitmodel Data", + "count": 1 + }, { "name": "multi-agent system", "count": 1 }, + { + "name": "Multi-agent Systems", + "count": 1 + }, + { + "name": "Multi-Disciplinary Optimization", + "count": 1 + }, { "name": "multibody dynamics", "count": 1 @@ -7460,6 +7372,10 @@ "name": "music notation", "count": 1 }, + { + "name": "Music recommendation", + "count": 1 + }, { "name": "music social network", "count": 1 @@ -7476,6 +7392,10 @@ "name": "mysql", "count": 1 }, + { + "name": "Native mobile app testing", + "count": 1 + }, { "name": "natural language processing", "count": 13 @@ -7552,6 +7472,10 @@ "name": "networking security", "count": 1 }, + { + "name": "NetworkManager", + "count": 1 + }, { "name": "networks", "count": 2 @@ -7560,6 +7484,10 @@ "name": "neural network", "count": 1 }, + { + "name": "Neural networks", + "count": 2 + }, { "name": "neural search", "count": 1 @@ -7576,6 +7504,10 @@ "name": "neuroimaging", "count": 1 }, + { + "name": "Neuronavigation", + "count": 1 + }, { "name": "neuroscience", "count": 5 @@ -7596,6 +7528,14 @@ "name": "nlp", "count": 7 }, + { + "name": "No code platform", + "count": 1 + }, + { + "name": "Node.js", + "count": 1 + }, { "name": "nodered", "count": 1 @@ -7624,6 +7564,10 @@ "name": "nosql", "count": 1 }, + { + "name": "NoSQL Database", + "count": 1 + }, { "name": "notation", "count": 1 @@ -7676,6 +7620,10 @@ "name": "observability", "count": 4 }, + { + "name": "Oceanography", + "count": 1 + }, { "name": "offensive security", "count": 1 @@ -7704,6 +7652,10 @@ "name": "ogc standards", "count": 1 }, + { + "name": "OLAP", + "count": 1 + }, { "name": "omics data", "count": 1 @@ -7720,6 +7672,10 @@ "name": "open data", "count": 8 }, + { + "name": "Open EDA", + "count": 1 + }, { "name": "open education", "count": 2 @@ -7738,12 +7694,16 @@ }, { "name": "open science", - "count": 7 + "count": 8 }, { "name": "open source", "count": 8 }, + { + "name": "Open Source Bioinformatics", + "count": 1 + }, { "name": "open source medical records", "count": 1 @@ -7768,6 +7728,10 @@ "name": "open-science", "count": 1 }, + { + "name": "Open-source Design", + "count": 1 + }, { "name": "opendata", "count": 1 @@ -7780,6 +7744,10 @@ "name": "openmp", "count": 1 }, + { + "name": "OpenROAD chip design", + "count": 1 + }, { "name": "openshift", "count": 1 @@ -7798,7 +7766,7 @@ }, { "name": "operating system", - "count": 11 + "count": 12 }, { "name": "operating system developer tools", @@ -7812,6 +7780,14 @@ "name": "operating-system", "count": 1 }, + { + "name": "Operational Analytics", + "count": 1 + }, + { + "name": "Operations", + "count": 1 + }, { "name": "optimisation", "count": 1 @@ -7832,6 +7808,14 @@ "name": "orbital mechanics", "count": 1 }, + { + "name": "Orchestrator", + "count": 1 + }, + { + "name": "OS", + "count": 4 + }, { "name": "oss compliance", "count": 1 @@ -7846,6 +7830,10 @@ }, { "name": "other", + "count": 2 + }, + { + "name": "Outreach", "count": 1 }, { @@ -7880,6 +7868,10 @@ "name": "package vulnerabilities and security", "count": 1 }, + { + "name": "Packages", + "count": 1 + }, { "name": "packaging", "count": 4 @@ -7954,7 +7946,11 @@ }, { "name": "performance", - "count": 4 + "count": 5 + }, + { + "name": "Performance Optimisation", + "count": 1 }, { "name": "performance optimization", @@ -7968,6 +7964,10 @@ "name": "personal assistants", "count": 1 }, + { + "name": "Personal Server", + "count": 1 + }, { "name": "pharmacological modeling", "count": 1 @@ -8012,6 +8012,10 @@ "name": "platform", "count": 3 }, + { + "name": "Platform Engineering", + "count": 1 + }, { "name": "playback", "count": 1 @@ -8032,6 +8036,10 @@ "name": "point set processing", "count": 1 }, + { + "name": "Polar Science", + "count": 1 + }, { "name": "pollution", "count": 1 @@ -8100,6 +8108,10 @@ "name": "process automation", "count": 1 }, + { + "name": "Processor", + "count": 1 + }, { "name": "processor design", "count": 1 @@ -8128,6 +8140,10 @@ "name": "programming", "count": 7 }, + { + "name": "Programming & Build Tools", + "count": 1 + }, { "name": "programming language", "count": 7 @@ -8180,10 +8196,26 @@ "name": "python", "count": 7 }, + { + "name": "PYTHON LIBRARY", + "count": 1 + }, + { + "name": "Python MLOps Framework", + "count": 1 + }, + { + "name": "Python Robotics", + "count": 1 + }, { "name": "qa", "count": 1 }, + { + "name": "QA automation", + "count": 1 + }, { "name": "quantum chemistry", "count": 2 @@ -8256,6 +8288,10 @@ "name": "real-time", "count": 10 }, + { + "name": "Real-Time Communication", + "count": 1 + }, { "name": "real-time computer graphics", "count": 1 @@ -8352,6 +8388,10 @@ "name": "research and development", "count": 1 }, + { + "name": "research software", + "count": 1 + }, { "name": "rest apis", "count": 1 @@ -8372,10 +8412,18 @@ "name": "reverse-engineering", "count": 1 }, + { + "name": "RISC-V", + "count": 1 + }, { "name": "robot", "count": 1 }, + { + "name": "Robot Dataflow", + "count": 1 + }, { "name": "robot perception", "count": 1 @@ -8392,6 +8440,10 @@ "name": "robotics simulation", "count": 1 }, + { + "name": "Robustness", + "count": 1 + }, { "name": "ros", "count": 2 @@ -8404,6 +8456,10 @@ "name": "routing protocols", "count": 1 }, + { + "name": "Rover", + "count": 1 + }, { "name": "rovers", "count": 1 @@ -8436,6 +8492,10 @@ "name": "saas", "count": 1 }, + { + "name": "Safety", + "count": 1 + }, { "name": "samba", "count": 1 @@ -8444,6 +8504,10 @@ "name": "sandbox", "count": 3 }, + { + "name": "SAT & SMT solving", + "count": 1 + }, { "name": "satellite data", "count": 1 @@ -8452,6 +8516,10 @@ "name": "save/restore", "count": 1 }, + { + "name": "SBOM", + "count": 2 + }, { "name": "scalability", "count": 1 @@ -8486,7 +8554,7 @@ }, { "name": "scientific computing", - "count": 11 + "count": 12 }, { "name": "scientific visualization", @@ -8504,6 +8572,10 @@ "name": "screen reader", "count": 1 }, + { + "name": "ScreenCapture", + "count": 1 + }, { "name": "scripting", "count": 1 @@ -8520,6 +8592,10 @@ "name": "sdn", "count": 1 }, + { + "name": "SDR", + "count": 1 + }, { "name": "seamless", "count": 1 @@ -8528,10 +8604,18 @@ "name": "search", "count": 5 }, + { + "name": "Search Engines", + "count": 2 + }, { "name": "secure development", "count": 2 }, + { + "name": "Secure Messaging", + "count": 1 + }, { "name": "security", "count": 31 @@ -8544,6 +8628,14 @@ "name": "security and software bill of materials", "count": 1 }, + { + "name": "Security Cryptography", + "count": 1 + }, + { + "name": "Security Defense", + "count": 1 + }, { "name": "self-hosted", "count": 1 @@ -8572,6 +8664,10 @@ "name": "sensorweb", "count": 1 }, + { + "name": "Sentimental Analysis", + "count": 1 + }, { "name": "sepsis detection", "count": 1 @@ -8584,6 +8680,14 @@ "name": "server", "count": 2 }, + { + "name": "Server development", + "count": 1 + }, + { + "name": "Serverless Computing", + "count": 1 + }, { "name": "service mesh", "count": 2 @@ -8606,7 +8710,7 @@ }, { "name": "simulation", - "count": 17 + "count": 19 }, { "name": "simulation software", @@ -8628,6 +8732,10 @@ "name": "slam", "count": 2 }, + { + "name": "SLSA", + "count": 1 + }, { "name": "smart cities", "count": 1 @@ -8660,6 +8768,10 @@ "name": "social impact", "count": 2 }, + { + "name": "Social participation", + "count": 1 + }, { "name": "social science", "count": 1 @@ -8772,6 +8884,18 @@ "name": "software-defined networking", "count": 1 }, + { + "name": "Software-Defined Radio", + "count": 1 + }, + { + "name": "Software-Defined-Storage", + "count": 1 + }, + { + "name": "SoftwareCompositionAnalysis", + "count": 1 + }, { "name": "solar physics", "count": 1 @@ -8788,6 +8912,10 @@ "name": "solver", "count": 1 }, + { + "name": "Sound", + "count": 1 + }, { "name": "source code analyzer", "count": 1 @@ -8852,14 +8980,26 @@ "name": "speech recognition", "count": 1 }, + { + "name": "speed test", + "count": 1 + }, { "name": "sql", "count": 5 }, + { + "name": "SQL Features", + "count": 1 + }, { "name": "sre", "count": 2 }, + { + "name": "Standard Libraries", + "count": 1 + }, { "name": "standards", "count": 4 @@ -8908,6 +9048,10 @@ "name": "streaming", "count": 7 }, + { + "name": "Structural engineering", + "count": 1 + }, { "name": "structured data", "count": 1 @@ -8924,6 +9068,14 @@ "name": "supernova", "count": 1 }, + { + "name": "supplychain", + "count": 1 + }, + { + "name": "Surveillance", + "count": 1 + }, { "name": "sustainability", "count": 1 @@ -8960,6 +9112,10 @@ "name": "system modelling", "count": 1 }, + { + "name": "System on Chip", + "count": 1 + }, { "name": "system programming", "count": 3 @@ -9012,10 +9168,22 @@ "name": "team chat", "count": 3 }, + { + "name": "Team Collaboration", + "count": 1 + }, { "name": "technical computing", "count": 1 }, + { + "name": "Technology", + "count": 1 + }, + { + "name": "Tekton", + "count": 1 + }, { "name": "telecom", "count": 1 @@ -9024,10 +9192,18 @@ "name": "telecommunications", "count": 1 }, + { + "name": "Telemedicine and Remote Care", + "count": 1 + }, { "name": "telephony", "count": 1 }, + { + "name": "Telepresence", + "count": 1 + }, { "name": "television", "count": 1 @@ -9076,18 +9252,26 @@ "name": "text-editor", "count": 1 }, + { + "name": "Threat Intelligence", + "count": 1 + }, { "name": "time series", "count": 2 }, { "name": "time-series", - "count": 1 + "count": 2 }, { "name": "timeseries", "count": 1 }, + { + "name": "TLS", + "count": 1 + }, { "name": "toolbox", "count": 1 @@ -9136,6 +9320,10 @@ "name": "transcoding", "count": 1 }, + { + "name": "Transit", + "count": 1 + }, { "name": "travel", "count": 1 @@ -9172,6 +9360,10 @@ "name": "uefi", "count": 1 }, + { + "name": "UGV", + "count": 1 + }, { "name": "ui", "count": 6 @@ -9220,10 +9412,18 @@ "name": "upstream", "count": 1 }, + { + "name": "Usability", + "count": 1 + }, { "name": "usabilty", "count": 1 }, + { + "name": "User Evaluation", + "count": 1 + }, { "name": "user experience", "count": 3 @@ -9248,6 +9448,14 @@ "name": "ux", "count": 2 }, + { + "name": "UX/UI", + "count": 1 + }, + { + "name": "Vector Database", + "count": 1 + }, { "name": "vector graphics", "count": 2 @@ -9352,6 +9560,10 @@ "name": "visual design", "count": 1 }, + { + "name": "Visual Effects", + "count": 1 + }, { "name": "visual programming", "count": 3 @@ -9408,9 +9620,17 @@ "name": "vulnerabilities management", "count": 1 }, + { + "name": "Wayland", + "count": 1 + }, + { + "name": "Weather Forecasting", + "count": 1 + }, { "name": "web", - "count": 90 + "count": 93 }, { "name": "web application", @@ -9520,6 +9740,10 @@ "name": "webpack", "count": 1 }, + { + "name": "WebRTC", + "count": 2 + }, { "name": "webvr", "count": 1 @@ -9616,19 +9840,19 @@ }, { "name": "Data", - "count": 47 + "count": 49 }, { "name": "Development tools", - "count": 5 + "count": 6 }, { "name": "End user applications", - "count": 68 + "count": 73 }, { "name": "Infrastructure and cloud", - "count": 19 + "count": 21 }, { "name": "Media", @@ -9636,7 +9860,7 @@ }, { "name": "Operating systems", - "count": 35 + "count": 36 }, { "name": "Other", @@ -9644,11 +9868,11 @@ }, { "name": "Programming languages", - "count": 89 + "count": 90 }, { "name": "Science and medicine", - "count": 117 + "count": 120 }, { "name": "Security", @@ -9656,14 +9880,18 @@ }, { "name": "Social and communication", - "count": 10 + "count": 11 }, { "name": "Web", - "count": 28 + "count": 30 } ], "years": [ + { + "year": 2026, + "count": 185 + }, { "year": 2025, "count": 185 @@ -9706,14 +9934,14 @@ } ], "totals": { - "organizations": 504, - "technologies": 823, - "topics": 1578, + "organizations": 522, + "technologies": 844, + "topics": 1613, "categories": 13, - "years": 10 + "years": 11 }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.658Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/metaflow.json b/new-api-details/organizations/metaflow.json new file mode 100644 index 00000000..ab48f6d8 --- /dev/null +++ b/new-api-details/organizations/metaflow.json @@ -0,0 +1,100 @@ +{ + "id": "new_2026_metaflow", + "slug": "metaflow", + "name": "Metaflow", + "category": "Infrastructure and cloud", + "description": "Metaflow is a human-friendly Python library that makes it straightforward to develop, deploy, and operate various kinds of data-intensive applications, in particular those involving data science, ML, and AI. Metaflow was originally developed at Netflix to boost the productivity of data scientists who work on a wide variety of projects, from classical statistics to state-of-the-art deep learning. \n\nMetaflow provides a unified API across the entire infrastructure stack required to execute data science projects from prototype to production.", + "image_url": "https://summerofcode.withgoogle.com/media/org/metaflow/lxpx64opqtnss7yx-360.png", + "img_r2_url": "https://summerofcode.withgoogle.com/media/org/metaflow/lxpx64opqtnss7yx-360.png", + "logo_r2_url": null, + "url": "https://metaflow.org/", + "active_years": [ + 2026 + ], + "first_year": 2026, + "last_year": 2026, + "is_currently_active": true, + "technologies": [ + "python", + "javascript", + "kubernetes" + ], + "topics": [ + "machine learning", + "data science", + "ML Ops", + "Orchestrator" + ], + "total_projects": 0, + "stats": { + "avg_projects_per_appeared_year": 0, + "projects_by_year": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "students_by_year": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "total_students": 0 + }, + "years": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "contact": { + "email": "help@metaflow.org", + "guide_url": "https://github.com/Netflix/metaflow/blob/master/GSOC_CONTRIBUTOR_GUIDANCE.md", + "ideas_url": "https://github.com/Netflix/metaflow/blob/master/GSOC_2026_PROPOSALS.md", + "irc_channel": null, + "mailing_list": "http://chat.metaflow.org/" + }, + "social": { + "blog": null, + "discord": null, + "facebook": null, + "github": "https://github.com/Netflix/metaflow", + "gitlab": null, + "instagram": null, + "linkedin": null, + "mastodon": null, + "medium": null, + "reddit": null, + "slack": null, + "stackoverflow": null, + "twitch": null, + "twitter": "https://x.com/MetaflowOSS", + "youtube": null + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:46:24.131Z" + } +} \ No newline at end of file diff --git a/new-api-details/organizations/metasploit.json b/new-api-details/organizations/metasploit.json index c8a47b0e..1ac1c3a8 100644 --- a/new-api-details/organizations/metasploit.json +++ b/new-api-details/organizations/metasploit.json @@ -3,7 +3,7 @@ "slug": "metasploit", "name": "Metasploit", "category": "Security", - "description": "World’s most used penetration testing framework", + "description": "The Metasploit Framework is both a penetration testing system and a development platform for creating security tools and exploits. The framework is used by network security professionals to perform penetration tests, system administrators to verify patch installations, product vendors to perform regression testing, and security researchers world-wide. The framework is written in the Ruby programming language and includes components written in C, many flavors of Assembly, Python, Powershell, PHP, and other languages.\n\nThe framework consists of tools, libraries, modules, and user interfaces. The basic function of the framework is a module launcher, allowing the user to configure an exploit module and launch it at a target system. If the exploit succeeds, the payload is executed on the target and the user is provided with a shell to interact with the payload. Hundreds of exploits and dozens of payload options are available.", "image_url": "https://summerofcode.withgoogle.com/media/org/metasploit/ggisatrqgjavuwd7-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/metasploit.webp", "logo_r2_url": null, @@ -14,11 +14,12 @@ 2020, 2021, 2022, - 2023 + 2023, + 2026 ], "first_year": 2017, - "last_year": 2023, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ "c", "ruby", @@ -46,7 +47,8 @@ "year_2022": 1, "year_2023": 1, "year_2024": null, - "year_2025": null + "year_2025": null, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -58,7 +60,8 @@ "year_2022": 1, "year_2023": 1, "year_2024": null, - "year_2025": null + "year_2025": null, + "year_2026": null }, "total_students": 12 }, @@ -322,13 +325,14 @@ "projects_url": "https://summerofcode.withgoogle.com/programs/2023/organizations/metasploit" }, "year_2024": null, - "year_2025": null + "year_2025": null, + "year_2026": null }, "first_time": false, "contact": { "email": "msfdev@metasploit.com", - "guide_url": null, - "ideas_url": null, + "guide_url": "https://github.com/rapid7/metasploit-framework/wiki/How-to-Apply-to-GSoC", + "ideas_url": "https://github.com/rapid7/metasploit-framework/blob/master/docs/metasploit-framework.wiki/GSoC-2026-Project-Ideas.md", "irc_channel": "https://metasploit.com/slack", "mailing_list": "https://groups.google.com/forum/#!forum/metasploit-hackers" }, @@ -336,7 +340,7 @@ "blog": "https://blog.rapid7.com/tag/metasploit/", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/rapid7/metasploit-framework", "gitlab": null, "instagram": null, "linkedin": null, @@ -351,6 +355,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.532Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/micro-electronics-research-lab-uitu.json b/new-api-details/organizations/micro-electronics-research-lab-uitu.json index 010f4389..d4abe94c 100644 --- a/new-api-details/organizations/micro-electronics-research-lab-uitu.json +++ b/new-api-details/organizations/micro-electronics-research-lab-uitu.json @@ -16,7 +16,7 @@ ], "first_year": 2022, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "RISCV", "Processor", @@ -342,6 +342,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.550Z" + "generated_at": "2026-02-19T12:41:12.412Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/mit-app-inventor.json b/new-api-details/organizations/mit-app-inventor.json index d9f5c0a8..bc4a0f81 100644 --- a/new-api-details/organizations/mit-app-inventor.json +++ b/new-api-details/organizations/mit-app-inventor.json @@ -3,7 +3,7 @@ "slug": "mit-app-inventor", "name": "MIT App Inventor", "category": "Development tools", - "description": "Anyone can build apps with global impact", + "description": "MIT App Inventor is a free, open source web app that anyone can use to build mobile apps. It has been used by over 8 million people worldwide who have built more than 30 million apps. It is available in twelve different languages and used by people from ages 13 and up.", "image_url": "https://summerofcode.withgoogle.com/media/org/mit-app-inventor/8ppq0spvr3j3gx8q-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mit-app-inventor.webp", "logo_r2_url": null, @@ -17,10 +17,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "android", @@ -63,7 +64,8 @@ "year_2022": 5, "year_2023": 6, "year_2024": 5, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "students_by_year": { "year_2016": 5, @@ -75,7 +77,8 @@ "year_2022": 5, "year_2023": 6, "year_2024": 5, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "total_students": 42 }, @@ -985,13 +988,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/mit-app-inventor" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "gsoc-2021@appinventor.mit.edu", "guide_url": "https://github.com/mit-cml/appinventor-sources/wiki/Google-Summer-of-Code-2025", - "ideas_url": "https://github.com/mit-cml/appinventor-sources/wiki/Google-Summer-of-Code-2025", + "ideas_url": "https://docs.google.com/document/d/1hxtNVrg58HSPTyPsJDTi8BcOePXlpojC_1BzfcqXrm8/edit?tab=t.", "irc_channel": "https://groups.google.com/forum/#!forum/app-inventor-open-source-dev", "mailing_list": "https://community.appinventor.mit.edu" }, @@ -999,7 +1003,7 @@ "blog": "https://appinventor.mit.edu/explore/blog", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/mit-cml/appinventor-sources", "gitlab": null, "instagram": null, "linkedin": null, @@ -1014,6 +1018,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.400Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/mixxx.json b/new-api-details/organizations/mixxx.json index 018200ad..8ee06a98 100644 --- a/new-api-details/organizations/mixxx.json +++ b/new-api-details/organizations/mixxx.json @@ -3,7 +3,7 @@ "slug": "mixxx", "name": "Mixxx", "category": "End user applications", - "description": "DJ Mixing App With Powerful Features For All DJs", + "description": "Mixxx is a feature rich DJ mixing application. It supports many MIDI and HID DJ controllers, runs on Win Linux and MacOs. It supports effects, harmonic mixing and beatmatching.\n\nMixxx has an unusually broad community for an open-source project, encompassing performing musicians, C++ addicts, amateur DJs, Internet radio broadcasters, and casual users.", "image_url": "https://summerofcode.withgoogle.com/media/org/mixxx/ivlj1kl8jabpmfs9-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mixxx.webp", "logo_r2_url": null, @@ -15,10 +15,11 @@ 2020, 2022, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "opengl", @@ -60,7 +61,8 @@ "year_2022": 2, "year_2023": null, "year_2024": 2, - "year_2025": 3 + "year_2025": 3, + "year_2026": null }, "students_by_year": { "year_2016": 2, @@ -72,7 +74,8 @@ "year_2022": 2, "year_2023": null, "year_2024": 2, - "year_2025": 3 + "year_2025": 3, + "year_2026": null }, "total_students": 16 }, @@ -409,13 +412,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/mixxx" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "daschuer@mixxx.org", "guide_url": "https://github.com/mixxxdj/mixxx/wiki/Gsocadvice", - "ideas_url": "https://github.com/mixxxdj/mixxx/wiki/GSOC-2025-Ideas", + "ideas_url": "https://github.com/mixxxdj/mixxx/wiki/GSOC-2026-Ideas", "irc_channel": "https://mixxx.zulipchat.com/", "mailing_list": "https://www.mixxx.org/contact" }, @@ -423,7 +427,7 @@ "blog": "https://mixxx.org/news/", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/mixxxdj/mixxx", "gitlab": null, "instagram": null, "linkedin": null, @@ -438,6 +442,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.587Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/mllam.json b/new-api-details/organizations/mllam.json new file mode 100644 index 00000000..c32e66e3 --- /dev/null +++ b/new-api-details/organizations/mllam.json @@ -0,0 +1,103 @@ +{ + "id": "new_2026_mllam", + "slug": "mllam", + "name": "MLLAM", + "category": "Science and medicine", + "description": "MLLAM is a collaborative community dedicated to advancing machine learning applications in weather forecasting, specifically for Limited Area Modeling (LAM). The organization hosts several open-source key repositories, including neural-lam, which focuses on neural weather prediction using graph-based models. Members are from various research institutions and national weather services committed to improve weather forecasting at regional, high-resolution scale.", + "image_url": "https://summerofcode.withgoogle.com/media/org/mllam/ltm3mtlosvdcrw0c.png", + "img_r2_url": "https://summerofcode.withgoogle.com/media/org/mllam/ltm3mtlosvdcrw0c.png", + "logo_r2_url": null, + "url": "https://github.com/mllam", + "active_years": [ + 2026 + ], + "first_year": 2026, + "last_year": 2026, + "is_currently_active": true, + "technologies": [ + "python", + "numpy", + "pytorch", + "xarray", + "Zarr" + ], + "topics": [ + "machine learning", + "ai", + "deep learning", + "earth science", + "Weather Forecasting" + ], + "total_projects": 0, + "stats": { + "avg_projects_per_appeared_year": 0, + "projects_by_year": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "students_by_year": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "total_students": 0 + }, + "years": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "contact": { + "email": null, + "guide_url": "https://github.com/mllam/neural-lam/wiki/GSoC-ideas", + "ideas_url": "https://github.com/mllam/neural-lam/wiki/GSoC-ideas", + "irc_channel": "https://kutt.it/mllam", + "mailing_list": null + }, + "social": { + "blog": "https://github.com/mllam/neural-lam/wiki", + "discord": null, + "facebook": null, + "github": "https://github.com/mllam/neural-lam", + "gitlab": null, + "instagram": null, + "linkedin": null, + "mastodon": null, + "medium": null, + "reddit": null, + "slack": null, + "stackoverflow": null, + "twitch": null, + "twitter": null, + "youtube": null + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:46:24.131Z" + } +} \ No newline at end of file diff --git a/new-api-details/organizations/mofa-org.json b/new-api-details/organizations/mofa-org.json new file mode 100644 index 00000000..e5c57522 --- /dev/null +++ b/new-api-details/organizations/mofa-org.json @@ -0,0 +1,98 @@ +{ + "id": "new_2026_mofa-org", + "slug": "mofa-org", + "name": "MoFA Org", + "category": "Development tools", + "description": "mofa-org is an open-source organization that builds and maintains the MoFA ecosystem — a modular AI agent framework that makes it easy to build, compose, and run complex AI applications & a collection of open-source tools and frameworks designed to:\n\n- Allow developers to compose AI agents like building blocks\n- Enable complex AI systems without heavy boilerplate or bespoke pipelines\n- Provide visual tooling (like MoFA Stage) for developer productivity", + "image_url": "https://summerofcode.withgoogle.com/media/org/mofa-org/fa7e34trht3ou7yo-360.png", + "img_r2_url": "https://summerofcode.withgoogle.com/media/org/mofa-org/fa7e34trht3ou7yo-360.png", + "logo_r2_url": null, + "url": "https://mofa.ai", + "active_years": [ + 2026 + ], + "first_year": 2026, + "last_year": 2026, + "is_currently_active": true, + "technologies": [ + "python", + "rust" + ], + "topics": [ + "development framework", + "AI Agent", + "Compostion AI" + ], + "total_projects": 0, + "stats": { + "avg_projects_per_appeared_year": 0, + "projects_by_year": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "students_by_year": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "total_students": 0 + }, + "years": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "contact": { + "email": "dev@mofa.ai", + "guide_url": "https://github.com/mofa-org/GSoC/blob/main/README.md", + "ideas_url": "https://github.com/mofa-org/GSoC/blob/main/ideas-list.md", + "irc_channel": "https://discord.gg/hKJZzDMMm9", + "mailing_list": null + }, + "social": { + "blog": "https://mofa.ai/blog/", + "discord": null, + "facebook": null, + "github": "https://github.com/mofa-org", + "gitlab": null, + "instagram": null, + "linkedin": null, + "mastodon": null, + "medium": null, + "reddit": null, + "slack": null, + "stackoverflow": null, + "twitch": null, + "twitter": "https://x.com/mofa_ai", + "youtube": null + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:46:24.131Z" + } +} \ No newline at end of file diff --git a/new-api-details/organizations/moganlab.json b/new-api-details/organizations/moganlab.json new file mode 100644 index 00000000..22981487 --- /dev/null +++ b/new-api-details/organizations/moganlab.json @@ -0,0 +1,99 @@ +{ + "id": "new_2026_moganlab", + "slug": "moganlab", + "name": "MoganLab", + "category": "Programming languages", + "description": "Moganlab develops Mogan STEM, a professional scientific writing platform specifically designed for mathematics, physics, statistics, and computer science, targeting complex formula-based documents. It is deeply optimized from GNU TeXmacs, with emphasis on performance and user experience. With Mogan STEM, you can create documents 100 times faster than LaTeX", + "image_url": "https://summerofcode.withgoogle.com/media/org/moganlab/tuz5k2kmoivlkods-360.png", + "img_r2_url": "https://summerofcode.withgoogle.com/media/org/moganlab/tuz5k2kmoivlkods-360.png", + "logo_r2_url": null, + "url": "https://mogan.app/en/", + "active_years": [ + 2026 + ], + "first_year": 2026, + "last_year": 2026, + "is_currently_active": true, + "technologies": [ + "c++", + "qt", + "scheme" + ], + "topics": [ + "editor", + "latex", + "AI for math" + ], + "total_projects": 0, + "stats": { + "avg_projects_per_appeared_year": 0, + "projects_by_year": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "students_by_year": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "total_students": 0 + }, + "years": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "contact": { + "email": null, + "guide_url": "https://github.com/XmacsLabs/mogan/blob/main/devel/Develop_on_Linux.md", + "ideas_url": "https://github.com/MoganLab/GSoC-2026-MoganLab/blob/main/idelas/main.md", + "irc_channel": null, + "mailing_list": "yansong@liii.pro" + }, + "social": { + "blog": "https://www.reddit.com/r/TeXmacs/", + "discord": null, + "facebook": null, + "github": "https://github.com/XmacsLabs/mogan", + "gitlab": null, + "instagram": null, + "linkedin": null, + "mastodon": null, + "medium": null, + "reddit": null, + "slack": null, + "stackoverflow": null, + "twitch": null, + "twitter": null, + "youtube": null + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:46:24.131Z" + } +} \ No newline at end of file diff --git a/new-api-details/organizations/national-resource-for-network-biology-nrnb.json b/new-api-details/organizations/national-resource-for-network-biology-nrnb.json index f9aa8928..c873d013 100644 --- a/new-api-details/organizations/national-resource-for-network-biology-nrnb.json +++ b/new-api-details/organizations/national-resource-for-network-biology-nrnb.json @@ -3,11 +3,11 @@ "slug": "national-resource-for-network-biology-nrnb", "name": "National Resource for Network Biology (NRNB)", "category": "Science and medicine", - "description": "Developing open source tools for network biology", + "description": "The National Resource for Network Biology (NRNB, https://nrnb.org) organizes the development of free, open-source software technologies to enable network-based visualization, analysis, and biomedical discovery. Biomedical research is increasingly dependent on knowledge expressed in terms of networks, including gene, protein and drug interactions, cell-cell and viral-host communication, and vast social networks. Our technologies enable researchers to assemble and analyze these networks and to use them to better understand biological systems and, in particular, how they fail in disease. \nThe NRNB mentoring organization includes projects such as Cytoscape (https://cytoscape.org/), WikiPathways (https://wikipathways.org/), SBML (https://sbml.org/), SBGN (https://sbgn.github.io/) and others. This is a great opportunity to work at the intersection of biology and computing! For example, Cytoscape is downloaded over 24,000 times per month by researchers. We take mentoring seriously and are proud of our 96% success rate (https://nrnb.org/alumni.html#gsoc-tab) with former students and projects. But don’t take our word for it, read testimonials from prior NRNB students (https://nrnb.org/testimonials.html#student-tab) and mentors (https://nrnb.org/testimonials.html#mentor-tab). \nFind out more about the software projects being developed in coordination with NRNB at our website (https://nrnb.org). Also refer to our GSoC page (https://nrnb.org/gsoc.html) for additional resources and application tips.", "image_url": "https://summerofcode.withgoogle.com/media/org/national-resource-for-network-biology-nrnb/5uobjboaxnzrxyoj-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/national-resource-for-network-biology-nrnb.webp", "logo_r2_url": null, - "url": "https://nrnb.org/gsoc.html", + "url": "https://nrnb.org", "active_years": [ 2016, 2017, @@ -18,10 +18,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -36,7 +37,8 @@ "rest", "xml", "json", - "css" + "css", + "LLM" ], "topics": [ "web", @@ -70,7 +72,8 @@ "year_2022": 8, "year_2023": 8, "year_2024": 11, - "year_2025": 8 + "year_2025": 8, + "year_2026": null }, "students_by_year": { "year_2016": 15, @@ -82,7 +85,8 @@ "year_2022": 8, "year_2023": 8, "year_2024": 11, - "year_2025": 8 + "year_2025": 8, + "year_2026": null }, "total_students": 112 }, @@ -2468,21 +2472,22 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/national-resource-for-network-biology-nrnb" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "kristina.hanspers@gladstone.ucsf.edu", - "guide_url": "https://docs.google.com/document/d/1Zi6L38CHEeq2aL6xzv0Ozhd_Y6D71W3yCBGHplmxr6k/edit?usp=sharing", + "guide_url": "https://docs.google.com/document/d/1UdlsHvWoP3lU7QAPzlqs1ctQKeaWrXwdcOEuSIkdmio/edit?usp=sharing", "ideas_url": "https://github.com/nrnb/GoogleSummerOfCode/issues", "irc_channel": "https://github.com/nrnb/GoogleSummerOfCode/issues", "mailing_list": "https://groups.google.com/g/cytoscape-helpdesk" }, "social": { - "blog": "https://nrnb.org/testimonials.html#profile-tab", + "blog": "https://groups.google.com/g/cytoscape-helpdesk", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/nrnb", "gitlab": null, "instagram": null, "linkedin": null, @@ -2497,6 +2502,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.716Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/neovim.json b/new-api-details/organizations/neovim.json index 9003de43..252bb71f 100644 --- a/new-api-details/organizations/neovim.json +++ b/new-api-details/organizations/neovim.json @@ -3,7 +3,7 @@ "slug": "neovim", "name": "Neovim", "category": "End user applications", - "description": "hyperextensible Vim-based text editor", + "description": "Neovim is a fork of the Vim text editor, designed for extensibility and usability.", "image_url": "https://summerofcode.withgoogle.com/media/org/neovim/wsjrusphcrjmo5tf-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/neovim.webp", "logo_r2_url": null, @@ -12,10 +12,11 @@ 2018, 2019, 2020, - 2025 + 2025, + 2026 ], "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "c", @@ -51,7 +52,8 @@ "year_2022": null, "year_2023": null, "year_2024": null, - "year_2025": 3 + "year_2025": 3, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -63,7 +65,8 @@ "year_2022": null, "year_2023": null, "year_2024": null, - "year_2025": 3 + "year_2025": 3, + "year_2026": null }, "total_students": 8 }, @@ -253,13 +256,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/neovim" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "justinkz+gsoc@gmail.com", "guide_url": "https://github.com/neovim/neovim/wiki/Google-Summer-of-Code", - "ideas_url": "https://github.com/neovim/neovim/wiki/Google-Summer-of-Code#gsoc-ideas-2025", + "ideas_url": "https://github.com/neovim/neovim/wiki/Google-Summer-of-Code", "irc_channel": "https://matrix.to/#/#neovim:matrix.org", "mailing_list": "https://github.com/neovim/neovim/discussions" }, @@ -267,7 +271,7 @@ "blog": "https://neovim.io/news/", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/neovim/neovim", "gitlab": null, "instagram": null, "linkedin": null, @@ -277,11 +281,11 @@ "slack": null, "stackoverflow": null, "twitch": null, - "twitter": "https://bsky.app/profile/neovim.io", + "twitter": "https://x.com/neovim", "youtube": null }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.744Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/neuroinformatics-unit.json b/new-api-details/organizations/neuroinformatics-unit.json index a891aef3..7b9cf339 100644 --- a/new-api-details/organizations/neuroinformatics-unit.json +++ b/new-api-details/organizations/neuroinformatics-unit.json @@ -3,16 +3,17 @@ "slug": "neuroinformatics-unit", "name": "Neuroinformatics Unit", "category": "Science and medicine", - "description": "Open-source tools for neuroscience and ML", + "description": "The Neuroinformatics Unit is dedicated to the development of high quality, accurate, robust, easy to use and maintainable open-source software for neuroscience and machine learning. We collaborate with researchers and other software engineers to advance neuroscience research and make new algorithms and tools available to the global community.", "image_url": "https://summerofcode.withgoogle.com/media/org/neuroinformatics-unit/ebzgcbxkxvbe9igk.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/neuroinformatics-unit.webp", "logo_r2_url": null, "url": "https://neuroinformatics.dev", "active_years": [ - 2025 + 2025, + 2026 ], "first_year": 2025, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -41,7 +42,8 @@ "year_2022": null, "year_2023": null, "year_2024": null, - "year_2025": 2 + "year_2025": 2, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -53,7 +55,8 @@ "year_2022": null, "year_2023": null, "year_2024": null, - "year_2025": 2 + "year_2025": 2, + "year_2026": null }, "total_students": 2 }, @@ -113,21 +116,22 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/neuroinformatics-unit" - } + }, + "year_2026": null }, "first_time": true, "contact": { - "email": "code@adamltyson.com", + "email": "hello@neuroinformatics.dev", "guide_url": "https://neuroinformatics.dev/get-involved/gsoc/guidelines", - "ideas_url": "https://neuroinformatics.dev/get-involved/gsoc", + "ideas_url": "https://neuroinformatics.dev/get-involved/gsoc/2026", "irc_channel": "https://neuroinformatics.zulipchat.com", "mailing_list": null }, "social": { - "blog": null, + "blog": "https://neuroinformatics.dev/blog/index.html", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/neuroinformatics-unit", "gitlab": null, "instagram": null, "linkedin": null, @@ -142,6 +146,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.764Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/neutralinojs.json b/new-api-details/organizations/neutralinojs.json index cdd6de34..ab1992d7 100644 --- a/new-api-details/organizations/neutralinojs.json +++ b/new-api-details/organizations/neutralinojs.json @@ -3,18 +3,19 @@ "slug": "neutralinojs", "name": "Neutralinojs", "category": "Web", - "description": "Lightweight cross-platform desktop app framework", + "description": "Neutralinojs is a lightweight and portable desktop application development framework. It lets you develop lightweight cross-platform desktop applications using JavaScript, HTML, and CSS. You can extend Neutralinojs with any programming language (via extensions IPC) and use Neutralinojs as a part of any source file (via child processes IPC).", "image_url": "https://summerofcode.withgoogle.com/media/org/neutralinojs/thloxs47w1aa1uts-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/neutralinojs.webp", "logo_r2_url": null, "url": "https://neutralino.js.org", "active_years": [ 2022, - 2024 + 2024, + 2026 ], "first_year": 2022, - "last_year": 2024, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ "c", "javascript", @@ -26,7 +27,10 @@ "desktop", "framework", "cross-platform", - "Application Development" + "Application Development", + "app development", + "Desktop App Development", + "lightweight framework" ], "total_projects": 4, "stats": { @@ -41,7 +45,8 @@ "year_2022": 1, "year_2023": null, "year_2024": 3, - "year_2025": null + "year_2025": null, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -53,7 +58,8 @@ "year_2022": 1, "year_2023": null, "year_2024": 3, - "year_2025": null + "year_2025": null, + "year_2026": null }, "total_students": 4 }, @@ -159,13 +165,14 @@ ], "projects_url": "https://summerofcode.withgoogle.com/archive/2024/organizations/neutralinojs/" }, - "year_2025": null + "year_2025": null, + "year_2026": null }, "first_time": false, "contact": { "email": "neutralinojs@gmail.com", - "guide_url": null, - "ideas_url": null, + "guide_url": "https://neutralino.js.org/docs/contributing/framework-developer-guide/", + "ideas_url": "https://github.com/neutralinojs/gsoc2026/blob/main/project-ideas.md", "irc_channel": "https://discord.gg/cybpp4guTJ", "mailing_list": null }, @@ -173,7 +180,7 @@ "blog": null, "discord": "https://discord.gg/cybpp4guTJ", "facebook": null, - "github": null, + "github": "https://github.com/neutralinojs", "gitlab": null, "instagram": null, "linkedin": null, @@ -188,6 +195,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.768Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/nixos-foundation.json b/new-api-details/organizations/nixos-foundation.json index 78a7a679..f7673191 100644 --- a/new-api-details/organizations/nixos-foundation.json +++ b/new-api-details/organizations/nixos-foundation.json @@ -3,17 +3,18 @@ "slug": "nixos-foundation", "name": "NixOS Foundation", "category": "Programming languages", - "description": "Declarative builds and deployments", + "description": "Our role is to support the infrastructure and development of the NixOS project as a whole.\n\nMost of the development is happening here:\nhttps://github.com/nixos/nix - the Nix cli and language reference implementation\n\nhttps://github.com/nixos/nixpkgs - package definitions for the Nix package manager and NixOS source code\n\nA few key points are:\n- keeping our ci up and running\n- hosting a trustworthy binary cache for the public\n- providing documentation for everything Nix\n- unblocking contributors and keeping things civil", "image_url": "https://summerofcode.withgoogle.com/media/org/nixos-foundation/kvnnwp7viwupdsep.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/nixos-foundation.webp", "logo_r2_url": null, "url": "https://nixos.org/", "active_years": [ - 2024 + 2024, + 2026 ], "first_year": 2024, - "last_year": 2024, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ "git", "nix" @@ -36,7 +37,8 @@ "year_2022": null, "year_2023": null, "year_2024": 3, - "year_2025": null + "year_2025": null, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -48,7 +50,8 @@ "year_2022": null, "year_2023": null, "year_2024": 3, - "year_2025": null + "year_2025": null, + "year_2026": null }, "total_students": 3 }, @@ -124,13 +127,14 @@ ], "projects_url": "https://summerofcode.withgoogle.com/archive/2024/organizations/nixos-foundation/" }, - "year_2025": null + "year_2025": null, + "year_2026": null }, "first_time": false, "contact": { "email": null, - "guide_url": null, - "ideas_url": null, + "guide_url": "https://github.com/NixOS/GSoC/blob/main/contributor-guide.md", + "ideas_url": "https://github.com/NixOS/GSoC/blob/main/ideas/2026.md", "irc_channel": "https://matrix.to/#/#community:nixos.org", "mailing_list": "https://discourse.nixos.org/" }, @@ -138,7 +142,7 @@ "blog": "https://chaos.social/@nixos_org/", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/nixos/nixpkgs", "gitlab": null, "instagram": null, "linkedin": null, @@ -153,6 +157,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.773Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/numfocus.json b/new-api-details/organizations/numfocus.json index 40748114..b8308a1d 100644 --- a/new-api-details/organizations/numfocus.json +++ b/new-api-details/organizations/numfocus.json @@ -3,7 +3,7 @@ "slug": "numfocus", "name": "NumFOCUS", "category": "Science and medicine", - "description": "NumFOCUS promotes open source scientific software.", + "description": "NumFOCUS supports and promotes world-class, innovative, open source scientific software. Most individual projects, even the wildly successful ones, find the overhead of a non-profit to be too large for their community to bear. NumFOCUS provides a critical service as an umbrella organization for this projects.", "image_url": "https://summerofcode.withgoogle.com/media/org/numfocus/wimcwc2v6kjlidqc-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/numfocus.webp", "logo_r2_url": null, @@ -18,10 +18,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -58,7 +59,8 @@ "year_2022": 37, "year_2023": 24, "year_2024": 35, - "year_2025": 32 + "year_2025": 32, + "year_2026": null }, "students_by_year": { "year_2016": 7, @@ -70,7 +72,8 @@ "year_2022": 37, "year_2023": 24, "year_2024": 35, - "year_2025": 32 + "year_2025": 32, + "year_2026": null }, "total_students": 270 }, @@ -5379,13 +5382,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/numfocus" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "info@numfocus.org", "guide_url": "https://github.com/numfocus/gsoc/blob/master/CONTRIBUTING-students.md", - "ideas_url": "https://github.com/numfocus/gsoc/blob/master/2025/ideas-list.md", + "ideas_url": "https://github.com/numfocus/gsoc/blob/master/2026/ideas-list.md", "irc_channel": null, "mailing_list": "https://groups.google.com/a/numfocus.org/forum/#!forum/gsoc" }, @@ -5393,7 +5397,7 @@ "blog": "http://www.numfocus.org/blog", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/numfocus/gsoc#organizations-confirmed-under-numfocus-umbrella", "gitlab": null, "instagram": null, "linkedin": null, @@ -5408,6 +5412,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.780Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/omegaup.json b/new-api-details/organizations/omegaup.json index 6b92d9e7..117274de 100644 --- a/new-api-details/organizations/omegaup.json +++ b/new-api-details/organizations/omegaup.json @@ -3,7 +3,7 @@ "slug": "omegaup", "name": "omegaUp", "category": "End user applications", - "description": "Open CS Education as a catalyst for social change", + "description": "omegaUp is a non-profit organization (501c3) aimed to increase the number of talented Software Engineers in Latin America. Our open source platform omegaUp.com lets students immerse in a learning environment that fosters self paced learning of computer science skills with a democratic access to state-of-the-art learning tools.\n\nTeachers and tutors can create new coding challenges or use existing ones to start online programming competitions with local, national or even international reach, with automated grading of student's coding solutions. The omegaUp.com platform also enables teachers to leverage Competitive Programming tools and concepts inside the classroom to improve their educational experience.", "image_url": "https://summerofcode.withgoogle.com/media/org/omegaup/uvgilx7vyspavjox-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/omegaup.webp", "logo_r2_url": null, @@ -13,10 +13,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -47,7 +48,8 @@ "year_2022": 1, "year_2023": 3, "year_2024": 2, - "year_2025": 3 + "year_2025": 3, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -59,7 +61,8 @@ "year_2022": 1, "year_2023": 3, "year_2024": 2, - "year_2025": 3 + "year_2025": 3, + "year_2026": null }, "total_students": 10 }, @@ -291,13 +294,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/omegaup" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "googlesummerofcode@omegaup.com", "guide_url": "https://github.com/omegaup/omegaup/wiki/Google-Summer-of-Code-2025", - "ideas_url": "https://github.com/omegaup/omegaup/wiki/Google-Summer-of-Code-2025", + "ideas_url": "https://github.com/omegaup/omegaup/blob/main/frontend/www/docs/Google-Summer-of-Code-2026.md", "irc_channel": "https://discord.com/invite/gMEMX7Mrwe", "mailing_list": "https://github.com/omegaup/omegaup/wiki/Google-Summer-of-Code-2018-Ideas-List#our-mailing-list-and-slack-channel" }, @@ -305,7 +309,7 @@ "blog": "https://blog.omegaup.com/", "discord": "https://discord.com/invite/gMEMX7Mrwe", "facebook": null, - "github": null, + "github": "https://github.com/omegaup", "gitlab": null, "instagram": null, "linkedin": null, @@ -320,6 +324,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.614Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/open-climate-fix.json b/new-api-details/organizations/open-climate-fix.json index e2695f4e..413d771a 100644 --- a/new-api-details/organizations/open-climate-fix.json +++ b/new-api-details/organizations/open-climate-fix.json @@ -14,7 +14,7 @@ ], "first_year": 2024, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "python", "pytorch" @@ -298,6 +298,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.822Z" + "generated_at": "2026-02-19T12:41:12.412Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/open-food-facts.json b/new-api-details/organizations/open-food-facts.json index 5696e4cf..4ec32be5 100644 --- a/new-api-details/organizations/open-food-facts.json +++ b/new-api-details/organizations/open-food-facts.json @@ -3,7 +3,7 @@ "slug": "open-food-facts", "name": "Open Food Facts", "category": "Science and medicine", - "description": "Better food choices for your health & the planet", + "description": "Open Food Facts is the \"Wikipedia of food\". Our community collects information about all the food products in the world, using mobile phones to help people make better choices for themselves and the planet, and to transform the whole food system along the way.\nWe do so using mobile crowdsourcing, community involvement and machine learning,", "image_url": "https://summerofcode.withgoogle.com/media/org/open-food-facts/ypo4wfmbo5ueujuf-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-food-facts.webp", "logo_r2_url": null, @@ -11,10 +11,11 @@ "active_years": [ 2018, 2022, - 2025 + 2025, + 2026 ], "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "android", @@ -49,7 +50,8 @@ "year_2022": 4, "year_2023": null, "year_2024": null, - "year_2025": 4 + "year_2025": 4, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -61,7 +63,8 @@ "year_2022": 4, "year_2023": null, "year_2024": null, - "year_2025": 4 + "year_2025": 4, + "year_2026": null }, "total_students": 10 }, @@ -293,13 +296,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/open-food-facts" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "contact@openfoodfacts.org", "guide_url": "https://world.openfoodfacts.org/google-summer-of-code", - "ideas_url": "https://wiki.openfoodfacts.org/GSOC/2025_ideas_list", + "ideas_url": "https://wiki.openfoodfacts.org/GSOC/2026_ideas_list", "irc_channel": "https://slack.openfoodfacts.org", "mailing_list": null }, @@ -307,7 +311,7 @@ "blog": "https://blog.openfoodfacts.org/en/news/tis-the-season", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/openfoodfacts", "gitlab": null, "instagram": null, "linkedin": null, @@ -322,6 +326,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.829Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/open-genome-informatics.json b/new-api-details/organizations/open-genome-informatics.json index f113921c..1c86492f 100644 --- a/new-api-details/organizations/open-genome-informatics.json +++ b/new-api-details/organizations/open-genome-informatics.json @@ -3,7 +3,7 @@ "slug": "open-genome-informatics", "name": "Open Genome Informatics", "category": "Science and medicine", - "description": "Open access genomics and bioinformatics projects", + "description": "The Open Genome Informatics group represents an umbrella organization consisting of several open source and open access genomics and bioinformatics projects worldwide. Our goals are to develop and maintain a collection of sustainable software tools for managing, analyzing, visualizing, storing, and disseminating genomic data.", "image_url": "https://summerofcode.withgoogle.com/media/org/open-genome-informatics/p6nhalhjwargwd5s-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-genome-informatics.webp", "logo_r2_url": null, @@ -14,11 +14,12 @@ 2020, 2021, 2022, - 2023 + 2023, + 2026 ], "first_year": 2016, - "last_year": 2023, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ "python", "java", @@ -59,7 +60,8 @@ "year_2022": 2, "year_2023": 1, "year_2024": null, - "year_2025": null + "year_2025": null, + "year_2026": null }, "students_by_year": { "year_2016": 6, @@ -71,7 +73,8 @@ "year_2022": 2, "year_2023": 1, "year_2024": null, - "year_2025": null + "year_2025": null, + "year_2026": null }, "total_students": 27 }, @@ -678,18 +681,19 @@ "projects_url": "https://summerofcode.withgoogle.com/programs/2023/organizations/open-genome-informatics" }, "year_2024": null, - "year_2025": null + "year_2025": null, + "year_2026": null }, "first_time": false, "contact": { - "email": "help@gmod.org", - "guide_url": null, - "ideas_url": null, + "email": "rhaw@oicr.on.ca", + "guide_url": "http://gmod.org/wiki/GSoC", + "ideas_url": "https://gmod.org/wiki/GSOC_Project_Ideas_2026", "irc_channel": "http://irc.lc/freenode/genomeinformatics/", "mailing_list": "http://groups.google.com/group/genome-informatics" }, "social": { - "blog": "http://gmod.org/wiki/GMOD_News", + "blog": "https://gmod.org/", "discord": null, "facebook": null, "github": null, @@ -707,6 +711,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.831Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/open-healthcare-network.json b/new-api-details/organizations/open-healthcare-network.json index 5de206e0..2a59c3a5 100644 --- a/new-api-details/organizations/open-healthcare-network.json +++ b/new-api-details/organizations/open-healthcare-network.json @@ -3,17 +3,18 @@ "slug": "open-healthcare-network", "name": "Open HealthCare Network", "category": "Science and medicine", - "description": "Reimagining Healthcare Delivery", + "description": "Open Healthcare Network (OHC), originally established as Coronasafe Network, is a pioneering open-source organization dedicated to enhancing healthcare delivery and management. At the core of OHC's innovation is its flagship Electronic Medical Record (EMR) system, recognized as the 50th Digital Public Good by the United Nations. This system transcends being merely a digital repository of patient records, evolving into a platform that supports advanced TeleICU capabilities.\n\nOHC represents a unique fusion of professional expertise and community-driven innovation, primarily fueled by a small team of dedicated developers and a dynamic community of college students. This collaborative model showcases a new paradigm in healthcare technology, emphasizing impactful, sustainable, and scalable solutions.\n\nOriginally a volunteer-driven initiative during the COVID-19 pandemic, OHC has continually addressed citizen-level healthcare problems. Its CARE software, adopted by several Indian states, played a crucial role in optimizing healthcare resource management during the pandemic. As the pandemic waned, CARE evolved to support the 10BedICU Project, enabling technology-driven ICU care in rural India and providing TeleICU services to the remotest regions, impacting thousands of lives.\n\nToday, beyond the 10BedICU Project, CARE is being adopted for various healthcare applications, including palliative care digitization, demonstrating its adaptability and growing significance in improving healthcare delivery across diverse settings. OHC's journey is a testament to the transformative impact of youth-driven initiatives in healthcare, touching the lives of millions across India.", "image_url": "https://summerofcode.withgoogle.com/media/org/open-healthcare-network/eutslgqeknc9vlgd-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-healthcare-network.webp", "logo_r2_url": null, "url": "https://ohc.network/", "active_years": [ 2024, - 2025 + 2025, + 2026 ], "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -42,7 +43,8 @@ "year_2022": null, "year_2023": null, "year_2024": 3, - "year_2025": 6 + "year_2025": 6, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -54,7 +56,8 @@ "year_2022": null, "year_2023": null, "year_2024": 3, - "year_2025": 6 + "year_2025": 6, + "year_2026": null }, "total_students": 9 }, @@ -262,13 +265,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/open-healthcare-network" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "mohammed.nihal@egovernments.org", "guide_url": "https://oss.ohc.network/", - "ideas_url": "https://contributors.ohc.network/projects", + "ideas_url": "https://github.com/ohcnetwork/care_fe/issues?q=is%3Aissue%20state%3Aopen%20label%3AGSoC", "irc_channel": "https://slack.ohc.network/", "mailing_list": "Info@ohc.network" }, @@ -276,7 +280,7 @@ "blog": "https://www.linkedin.com/company/ohcnetwork/", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/ohcnetwork/", "gitlab": null, "instagram": null, "linkedin": null, @@ -291,6 +295,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.835Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/open-robotics.json b/new-api-details/organizations/open-robotics.json index 0092a5bb..f32d5069 100644 --- a/new-api-details/organizations/open-robotics.json +++ b/new-api-details/organizations/open-robotics.json @@ -3,7 +3,7 @@ "slug": "open-robotics", "name": "Open Robotics", "category": "End user applications", - "description": "Open source robotics and a whole lot more!", + "description": "Open Robotics supports the development, distribution, and adoption of open source software for use in robotics research, education, and product development. Open Robotics is an umbrella organization encompassing five projects: \n- Robot Operating System (ROS), a robot development framework.\n- Gazebo, a robot simulation framework.\n- Open-RMF, a framework for coordinating multiple fleets of robots.\n- ros-controls, an extensive control framework built for ROS.\n- The ROS Infrastructure that is used to build and distribute ROS packages.", "image_url": "https://summerofcode.withgoogle.com/media/org/open-robotics/6pg3nwfpieq1qmqw-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-robotics.webp", "logo_r2_url": null, @@ -17,10 +17,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "ros", @@ -30,14 +31,17 @@ "c", "c++", "ignition", - "Open-RMF" + "Open-RMF", + "Bevy" ], "topics": [ "robotics", "simulation", "middleware", "fleet management", - "Control" + "Control", + "Hardware Control", + "buildfarms" ], "total_projects": 46, "stats": { @@ -52,7 +56,8 @@ "year_2022": 2, "year_2023": 3, "year_2024": 5, - "year_2025": 9 + "year_2025": 9, + "year_2026": null }, "students_by_year": { "year_2016": 7, @@ -64,7 +69,8 @@ "year_2022": 2, "year_2023": 3, "year_2024": 5, - "year_2025": 9 + "year_2025": 9, + "year_2026": null }, "total_students": 44 }, @@ -967,21 +973,22 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/open-robotics" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "gsoc@openrobotics.org", - "guide_url": "https://github.com/osrf/osrf_wiki/wiki/GSoC25#application-template-for-students", - "ideas_url": "https://github.com/osrf/osrf_wiki/wiki/GSoC25", + "guide_url": "https://github.com/osrf/osrf_wiki/wiki/GSoC-2026#application-template-for-students", + "ideas_url": "https://github.com/osrf/osrf_wiki/wiki/GSoC-2026", "irc_channel": "http://wiki.ros.org/Get%20Involved", "mailing_list": "http://www.ros.org/contribute/" }, "social": { - "blog": "https://discourse.ros.org/", + "blog": "https://www.openrobotics.org/blog", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/openrobotics", "gitlab": null, "instagram": null, "linkedin": null, @@ -991,11 +998,11 @@ "slack": null, "stackoverflow": null, "twitch": null, - "twitter": "https://twitter.com/OpenRoboticsOrg", + "twitter": "https://openrobotics.zulipchat.com/", "youtube": null }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.839Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/open-science-initiative-for-perfusion-imaging.json b/new-api-details/organizations/open-science-initiative-for-perfusion-imaging.json index 9e8cb26d..a28be714 100644 --- a/new-api-details/organizations/open-science-initiative-for-perfusion-imaging.json +++ b/new-api-details/organizations/open-science-initiative-for-perfusion-imaging.json @@ -3,17 +3,18 @@ "slug": "open-science-initiative-for-perfusion-imaging", "name": "Open Science Initiative for Perfusion Imaging", "category": "Science and medicine", - "description": "Open access resources for perfusion imaging", + "description": "Perfusion Magnetic Resonance Imaging (MRI) is a vital medical imaging technique that assesses blood flow in tissues and thus contributes crucial information for diagnosing conditions such as stroke, tumors, and neurological disorders. Unlike the standard MRI methods that are daily used in hospitals, raw perfusion MRI data require further processing and quantification. This requires dedicated software tools. However, the lack of standardization and the availability of standardized and tested analysis code makes perfusion MRI less accessible and hinders its widespread use. The ISMRM Open Science Initiative for Perfusion Imaging (OSIPI) aims to address this gap and create resources for best practices in perfusion MRI including software and data inventories, code repositories, challenges, and educational material.", "image_url": "https://summerofcode.withgoogle.com/media/org/open-science-initiative-for-perfusion-imaging/bxlqptrs5g0ovtqz-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-science-initiative-for-perfusion-imaging.webp", "logo_r2_url": null, "url": "https://osipi.ismrm.org/", "active_years": [ 2024, - 2025 + 2025, + 2026 ], "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -39,7 +40,8 @@ "year_2022": null, "year_2023": null, "year_2024": 4, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -51,7 +53,8 @@ "year_2022": null, "year_2023": null, "year_2024": 4, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "total_students": 9 }, @@ -254,21 +257,22 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/open-science-initiative-for-perfusion-imaging" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "ismrmosipi@gmail.com", "guide_url": "https://docs.google.com/document/d/e/2PACX-1vSa8Nvl_Ays9ZL3nYO1UL4hSB9vG2QXfSzWcEaN4jnuWNRJ3Vj58YX0FWI02llw17JaC_jMquAmBoAk/pub", - "ideas_url": "https://docs.google.com/document/d/e/2PACX-1vSuYh57hsLUXbmrA5tozX4Ucne0sRXnmFt5xBA88gzDZJKZYD4-Bq04J9acer2d_i6NP6xhimmz4m5i/pub", - "irc_channel": "https://join.slack.com/t/osipi/shared_invite/zt-3112fcp6p-yKIpC9r~N0vMJIBoSQA42w", + "ideas_url": "https://docs.google.com/document/d/e/2PACX-1vTs3n_pm3ZM7t-6rKooThwrBtCRQMCkYJcbIyl0ekhm5O4jBgC0BqdBDFKVUDhDvbFM1ShBoV3Q2pFM/pub", + "irc_channel": "https://join.slack.com/t/osipi/shared_invite/zt-3ozv2ba4i-KwIExrRmqd1riAC0icZrKw", "mailing_list": null }, "social": { "blog": null, "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/OSIPI", "gitlab": null, "instagram": null, "linkedin": null, @@ -283,6 +287,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.841Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/open-science-labs.json b/new-api-details/organizations/open-science-labs.json index 54b696cc..caa1e2ff 100644 --- a/new-api-details/organizations/open-science-labs.json +++ b/new-api-details/organizations/open-science-labs.json @@ -3,28 +3,32 @@ "slug": "open-science-labs", "name": "Open Science Labs", "category": "Science and medicine", - "description": "The community open to science and technology.", + "description": "Open Science Labs is a global community dedicated to creating an open space for\nteaching, learning, and sharing information about open science and computational\ntools. Our community develops tools that address real-world problems and\ncollaborates with other projects and workgroups to improve technology and create\ninternational opportunities for our community. Although our focus may seem\nbroad, we initially prioritize supporting Research Software Engineers (RSEs) who\noften face computational challenges in their work. We recognize that many\ncolleagues in scientific fields may not be familiar with programming languages,\ncomputational libraries, version control systems, databases, DevOps, and other\ncomputational tools. Therefore, we aim to provide a safe and open space for\nindividuals to learn and share their knowledge. Our community is open to\neveryone, including students, professors, and industry professionals, as we\nbelieve that the challenges and technologies used in these fields are frequently\nsimilar, if not the same (in many cases).", "image_url": "https://summerofcode.withgoogle.com/media/org/open-science-labs/rjv8l7mrkiwlv9ab-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-science-labs.webp", "logo_r2_url": null, "url": "https://opensciencelabs.org", "active_years": [ - 2025 + 2025, + 2026 ], "first_year": 2025, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", "javascript", "c++", "docker", - "AST" + "AST", + "llvm" ], "topics": [ "devops", "devtools", - "open-science" + "open-science", + "web", + "ai" ], "total_projects": 4, "stats": { @@ -39,7 +43,8 @@ "year_2022": null, "year_2023": null, "year_2024": null, - "year_2025": 4 + "year_2025": 4, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -51,7 +56,8 @@ "year_2022": null, "year_2023": null, "year_2024": null, - "year_2025": 4 + "year_2025": 4, + "year_2026": null }, "total_students": 4 }, @@ -146,13 +152,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/open-science-labs" - } + }, + "year_2026": null }, "first_time": true, "contact": { "email": null, "guide_url": "https://opensciencelabs.org/opportunities/gsoc/guides/contributor/", - "ideas_url": "https://opensciencelabs.org/opportunities/gsoc/project-ideas/", + "ideas_url": "https://opensciencelabs.org/opportunities/gsoc/project-ideas", "irc_channel": "https://opensciencelabs.org/discord", "mailing_list": null }, @@ -160,7 +167,7 @@ "blog": "https://opensciencelabs.org/blog/", "discord": "https://opensciencelabs.org/discord", "facebook": null, - "github": null, + "github": "https://github.com/OpenScienceLabs", "gitlab": null, "instagram": null, "linkedin": null, @@ -175,6 +182,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.843Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/open-technologies-alliance-gfoss.json b/new-api-details/organizations/open-technologies-alliance-gfoss.json index 20ec007c..c0781d87 100644 --- a/new-api-details/organizations/open-technologies-alliance-gfoss.json +++ b/new-api-details/organizations/open-technologies-alliance-gfoss.json @@ -2,8 +2,8 @@ "id": "692251e053dd9d7326d33e53", "slug": "open-technologies-alliance-gfoss", "name": "Open Technologies Alliance - GFOSS", - "category": "Development tools", - "description": "Promote Open Standards and Open Source", + "category": "Science and medicine", + "description": "Open Technologies Alliance (GFOSS) is a non-profit organization, with 37 Universities and Research Centers as its shareholders. Our main goal is to promote Openness.\nGFOSS – Open Technologies Alliance is a platform for Open Standards, Free Software, Open Content, Open Data & Open Hardware in Greece. The major Greek Universities and Research Centers participate in GFOSS – Open Technologies Alliance, while leading members of the Greek community of developers play a key role in the implementation of our policies. Through our initiatives we aspire to contribute and coordinate the efforts of groups of volunteers, public servants, university researchers and students enabling them to form the backbone of Greek FOSS development and implementation. GFOSS is one of the strategic actors for the promotion of OSS throughout Greece (see https://joinup.ec.europa.eu/sites/default/files/inline-files/OSS%20Country%20Intelligence%20Report_GR.pdf ). Many public administrations and academic institutions collaborate with GFOSS to implement open source projects and through Google Summer of Code we give the opportunity to students to actively engage in the production and the actual implementation of an open source project. GFOSS also contributes and advises on the development of various open source projects related to e-government and digital transformation in Greece (e.g. https://howto.gov.gr/ - https://forma.gov.gr/) and actively promotes the use of Open Source software and hardware in the Greek primary and secondary education through the Open Educational Technologies Competition (https://openedtech.ellak.gr/ )", "image_url": "https://summerofcode.withgoogle.com/media/org/open-technologies-alliance-gfoss/kiyijull8pfdypve-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-technologies-alliance-gfoss.webp", "logo_r2_url": null, @@ -16,10 +16,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -39,7 +40,9 @@ "perl", "python deep learning frameworks", "node.js", - "Machine Learning (ML)" + "Machine Learning (ML)", + "c/c++", + "nodejs" ], "topics": [ "hardware", @@ -75,7 +78,8 @@ "year_2022": 9, "year_2023": 7, "year_2024": 9, - "year_2025": 9 + "year_2025": 9, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -87,7 +91,8 @@ "year_2022": 9, "year_2023": 7, "year_2024": 9, - "year_2025": 9 + "year_2025": 9, + "year_2026": null }, "total_students": 69 }, @@ -1510,13 +1515,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/open-technologies-alliance-gfoss" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "info@eellak.gr", "guide_url": "https://ellak.gr/wiki/index.php?title=Google_Summer_of_Code_2025_proposed_ideas", - "ideas_url": "https://ellak.gr/wiki/index.php?title=Google_Summer_of_Code_2025_proposed_ideas", + "ideas_url": "https://ellak.gr/wiki/index.php?title=Google_Summer_of_Code_2026_proposed_ideas", "irc_channel": "https://chat.ellak.gr", "mailing_list": "https://lists.ellak.gr/gsoc-developers/listinfo.html" }, @@ -1524,7 +1530,7 @@ "blog": "https://gfoss.eu/", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/eellak", "gitlab": null, "instagram": null, "linkedin": null, @@ -1539,6 +1545,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.846Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/open-transit-software-foundation.json b/new-api-details/organizations/open-transit-software-foundation.json index e380ba23..b8fa0132 100644 --- a/new-api-details/organizations/open-transit-software-foundation.json +++ b/new-api-details/organizations/open-transit-software-foundation.json @@ -3,17 +3,18 @@ "slug": "open-transit-software-foundation", "name": "Open Transit Software Foundation", "category": "End user applications", - "description": "Help make public transit better", + "description": "We are the home for the OneBusAway project. OneBusAway is a suite of open source transit information tools based on real-time vehicle data.\n\nOneBusAway is a suite of open source transit information tools that enable transit agencies to provide real-time vehicle locations, alerts, and arrival information to riders, with iOS and Android apps, a web platform, and robust APIs, as well as back office support. OneBusAway lets transit agencies be in control, without needing to build everything themselves and without cutting corners.", "image_url": "https://summerofcode.withgoogle.com/media/org/open-transit-software-foundation/uz3p7k5vsxduhrhk-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-transit-software-foundation.webp", "logo_r2_url": null, "url": "https://opentransitsoftwarefoundation.org", "active_years": [ 2024, - 2025 + 2025, + 2026 ], "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "android", @@ -42,7 +43,8 @@ "year_2022": null, "year_2023": null, "year_2024": 5, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -54,7 +56,8 @@ "year_2022": null, "year_2023": null, "year_2024": 5, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "total_students": 10 }, @@ -282,13 +285,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/open-transit-software-foundation" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": null, "guide_url": "https://opentransitsoftwarefoundation.org/2024/02/how-to-craft-a-successful-gsoc-proposal/", - "ideas_url": "https://opentransitsoftwarefoundation.org/2025/01/google-summer-of-code-2025-project-ideas/", + "ideas_url": "https://opentransitsoftwarefoundation.org/2026/01/google-summer-of-code-2026-project-ideas/", "irc_channel": "https://join.slack.com/t/onebusaway/shared_invite/zt-2jve26vs6-~qXjgxv_HkTliUKhAnuSDA", "mailing_list": null }, @@ -296,7 +300,7 @@ "blog": "https://opentransitsoftwarefoundation.org/blog/", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/onebusaway", "gitlab": null, "instagram": null, "linkedin": null, @@ -311,6 +315,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.855Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/openafs.json b/new-api-details/organizations/openafs.json index 1c005475..06f2f565 100644 --- a/new-api-details/organizations/openafs.json +++ b/new-api-details/organizations/openafs.json @@ -3,17 +3,18 @@ "slug": "openafs", "name": "OpenAFS", "category": "Operating systems", - "description": "An opensource distributed filesystem product.", + "description": "OpenAFS is a distributed filesystem originally developed at Carnegie Mellon University and IBM. It offers a client-server architecture for federated file sharing and replicated read-only content distribution, providing location independence, scalability, security, and transparent migration capabilities. OpenAFS is available for a broad range of systems including UNIX, Linux, MacOS X, and Microsoft Windows.", "image_url": "https://summerofcode.withgoogle.com/media/org/openafs/hhf0h2zemmqes7kt-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/openafs.webp", "logo_r2_url": null, "url": "https://www.openafs.org", "active_years": [ 2022, - 2025 + 2025, + 2026 ], "first_year": 2022, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "c", @@ -44,7 +45,8 @@ "year_2022": 2, "year_2023": null, "year_2024": null, - "year_2025": 2 + "year_2025": 2, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -56,7 +58,8 @@ "year_2022": 2, "year_2023": null, "year_2024": null, - "year_2025": 2 + "year_2025": 2, + "year_2026": null }, "total_students": 4 }, @@ -158,7 +161,8 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/openafs" - } + }, + "year_2026": null }, "first_time": false, "contact": { @@ -187,6 +191,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.859Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/openastronomy.json b/new-api-details/organizations/openastronomy.json index 797ccfa5..d6b8dcfc 100644 --- a/new-api-details/organizations/openastronomy.json +++ b/new-api-details/organizations/openastronomy.json @@ -3,7 +3,7 @@ "slug": "openastronomy", "name": "OpenAstronomy", "category": "Science and medicine", - "description": "Look at the Universe with the power of Open Source", + "description": "OpenAstronomy is a collaboration between open source astronomy, astrophysics & heliophysics projects that are used by researchers and software engineers around the world to study our universe either by analysing the data obtained from amazing instruments like the [James Webb Space telescope](https://jwst.nasa.gov/), the [Square Kilometer Array](https://www.skatelescope.org/) or the [Solar Dynamic Observatory](http://sdo.gsfc.nasa.gov/), developing very sophisticated numerical models (eg., [FLASH](http://flash.uchicago.edu/)) or designing interplanetary trajectories for human-made spacecraft. The analysis of such data helps multiple types of research, from being able to forecast solar storms to detecting planets in other stars, to understanding how galaxies are formed to explain the expansion and the origin of the universe.\n\nOpenAstronomy currently consists of [18 projects](https://openastronomy.org/members/) that develop tools, the range of which is wide. \nFor example: \n- [Astropy](https://www.astropy.org/) is a general Python library for astronomy, providing common tools such as celestial coordinates, image processing, tabular data, reading and writing, units and support for astronomy-specific file formats; \n- [SunPy](https://sunpy.org/) provides utilities for obtaining and representing solar physics data, with access to the largest online solar physics data archives and solar specific analysis tools and visualisation code;\n- [Julia Astro](https://juliaastro.org/dev/index.html) is a set of packages for general astronomy and astrophysics analysis using Julia;\n- And more!\n\nAs a single organisation, we strive to strengthen collaborations between each sub-organisation, and at the same time increase the awareness among our users on the capabilities of our \"sister\" projects. With the goal being unification of standards and libraries to enable true multidisciplinary research.", "image_url": "https://summerofcode.withgoogle.com/media/org/openastronomy/3wvadxwxjc2arepg-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/openastronomy.webp", "logo_r2_url": null, @@ -18,10 +18,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "c", @@ -64,7 +65,8 @@ "year_2022": 8, "year_2023": 6, "year_2024": 8, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "students_by_year": { "year_2016": 7, @@ -76,7 +78,8 @@ "year_2022": 8, "year_2023": 6, "year_2024": 8, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "total_students": 74 }, @@ -1603,13 +1606,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/openastronomy" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "openastronomy.organization@gmail.com", "guide_url": "https://openastronomy.org/gsoc/student_guidelines.html", - "ideas_url": "https://openastronomy.org/gsoc/gsoc2025/#/projects", + "ideas_url": "https://openastronomy.org/gsoc/gsoc2026/#/projects", "irc_channel": "https://openastronomy.element.io/#/room/#openastronomy:openastronomy.org", "mailing_list": "https://community.openastronomy.org/" }, @@ -1632,6 +1636,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.861Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/opencv.json b/new-api-details/organizations/opencv.json index 5437e0a5..9fff9f64 100644 --- a/new-api-details/organizations/opencv.json +++ b/new-api-details/organizations/opencv.json @@ -21,7 +21,7 @@ ], "first_year": 2016, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "python", "machine learning", @@ -1886,6 +1886,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.864Z" + "generated_at": "2026-02-19T12:41:12.412Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/openelis-global.json b/new-api-details/organizations/openelis-global.json index 9cfa5a91..c78abf19 100644 --- a/new-api-details/organizations/openelis-global.json +++ b/new-api-details/organizations/openelis-global.json @@ -3,17 +3,18 @@ "slug": "openelis-global", "name": "OpenELIS Global", "category": "Science and medicine", - "description": "Empowering labs to Ensure Quality Health Care", + "description": "OpenELIS Global (Open Enterprise laboratory Information System) is an open-source, standards-based, and secure lab information system for labs of any size and need.\n\nIt is an enterprise-level laboratory information system built on open-source web-based technologies that has been tailored for low- and middle-income country public health laboratories.\n\nThe software serves as both an effective laboratory software solution and a business process framework. It supports the effective functioning of public health laboratories for best laboratory practice and accreditation.", "image_url": "https://summerofcode.withgoogle.com/media/org/openelis-global/k6rnzk3hcktzabst-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/openelis-global.webp", "logo_r2_url": null, "url": "https://openelis-global.org/", "active_years": [ 2024, - 2025 + 2025, + 2026 ], "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "postgresql", @@ -39,7 +40,8 @@ "year_2022": null, "year_2023": null, "year_2024": 5, - "year_2025": 4 + "year_2025": 4, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -51,7 +53,8 @@ "year_2022": null, "year_2023": null, "year_2024": 5, - "year_2025": 4 + "year_2025": 4, + "year_2026": null }, "total_students": 8 }, @@ -254,13 +257,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/openelis-global" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": null, "guide_url": "https://uwdigi.atlassian.net/wiki/spaces/OG/pages/245694473/GSoC+Guidelines+for+Students", - "ideas_url": "https://uwdigi.atlassian.net/wiki/spaces/OG/pages/321224705/GSoC+2025", + "ideas_url": "https://uwdigi.atlassian.net/wiki/spaces/OG/pages/931594241/GSoC+2026", "irc_channel": "https://digi-team-uw.slack.com/archives/CFUH9HLUF", "mailing_list": "https://talk.openelis-global.org/" }, @@ -268,7 +272,7 @@ "blog": "https://openelis-global.org/blog/", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/I-TECH-UW/OpenELIS-Global-2", "gitlab": null, "instagram": null, "linkedin": null, @@ -283,6 +287,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.882Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/openmrs.json b/new-api-details/organizations/openmrs.json index 90d48973..6f300fc6 100644 --- a/new-api-details/organizations/openmrs.json +++ b/new-api-details/organizations/openmrs.json @@ -3,7 +3,7 @@ "slug": "openmrs", "name": "OpenMRS", "category": "Science and medicine", - "description": "Write Code, Save Lives.", + "description": "OpenMRS provides the foundational, electronic medical record technology for more than 6,500 health facilities in over 80 countries, touching and helping millions of patients throughout the world. \n\nThe OpenMRS Community’s mission is to improve healthcare delivery in resource-constrained environments. \n\nWe coordinate a global community that creates and sustains a robust, scalable, user-driven and open-source medical record platform and reference frontend application.\n\nWe maintain a platform that countries and implementers use to create a customized EMR system in response to actual needs on the ground.", "image_url": "https://summerofcode.withgoogle.com/media/org/openmrs/evthgp3dhsqx5kyx-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/openmrs.webp", "logo_r2_url": null, @@ -18,10 +18,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "java", @@ -72,7 +73,8 @@ "year_2022": 5, "year_2023": 9, "year_2024": 6, - "year_2025": 8 + "year_2025": 8, + "year_2026": null }, "students_by_year": { "year_2016": 9, @@ -84,7 +86,8 @@ "year_2022": 5, "year_2023": 9, "year_2024": 6, - "year_2025": 8 + "year_2025": 8, + "year_2026": null }, "total_students": 88 }, @@ -1918,13 +1921,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/openmrs" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "community@openmrs.org", "guide_url": "https://wiki.openmrs.org/display/RES/GSoC+-+Proposal+Guidelines", - "ideas_url": "https://openmrs.atlassian.net/wiki/spaces/RES/pages/322404353/Summer+of+Code+2025", + "ideas_url": "https://openmrs.atlassian.net/wiki/spaces/RES/pages/752844801/Summer+of+Code+2026", "irc_channel": "https://slack.openmrs.org/", "mailing_list": "https://talk.openmrs.org/" }, @@ -1932,7 +1936,7 @@ "blog": "https://blog.openmrs.org/", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/openmrs", "gitlab": null, "instagram": null, "linkedin": null, @@ -1947,6 +1951,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.908Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/openms.json b/new-api-details/organizations/openms.json index 4c58e4aa..0f962573 100644 --- a/new-api-details/organizations/openms.json +++ b/new-api-details/organizations/openms.json @@ -3,29 +3,33 @@ "slug": "openms", "name": "OpenMS", "category": "Science and medicine", - "description": "OpenMS GSoC: Advancing Algorithms & AI for Biomedical Insights", - "image_url": "https://summerofcode.withgoogle.com/media/org/openms/fwdw8iqmudobrij3-360.png", + "description": "OpenMS is an open-source C++ software library for mass spectrometry data management and analysis with python wrappers. OpenMS houses an expansive modular toolset and ready-to-use scientific workflows in Galaxy, KNIME and nextflow.", + "image_url": "https://summerofcode.withgoogle.com/media/org/openms-inc/qhamer7p2auro5cs-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/openms.webp", "logo_r2_url": null, - "url": "https://openms.de", + "url": "https://OpenMS.org", "active_years": [ - 2025 + 2025, + 2026 ], "first_year": 2025, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", "cython", "c++", "r", - "pytorch" + "pytorch", + "Streamlit" ], "topics": [ "automation", "deep learning", "algorithms", - "webdev" + "webdev", + "open science", + "mass spectrometry" ], "total_projects": 2, "stats": { @@ -40,7 +44,8 @@ "year_2022": null, "year_2023": null, "year_2024": null, - "year_2025": 2 + "year_2025": 2, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -52,7 +57,8 @@ "year_2022": null, "year_2023": null, "year_2024": null, - "year_2025": 2 + "year_2025": 2, + "year_2026": null }, "total_students": 2 }, @@ -108,21 +114,22 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/openms" - } + }, + "year_2026": null }, "first_time": true, "contact": { "email": null, - "guide_url": "https://openms.de/news/gsoc2025/", - "ideas_url": "https://www.openms.org/news/gsoc2025/", + "guide_url": "https://openms.de/news/gsoc2026/", + "ideas_url": "https://openms.de/news/gsoc2026/", "irc_channel": "https://discord.com/invite/4TAGhqJ7s5", "mailing_list": null }, "social": { - "blog": null, + "blog": "https://openms.de/news/", "discord": "https://discord.com/invite/4TAGhqJ7s5", "facebook": null, - "github": null, + "github": "https://github.com/OpenMS/OpenMS", "gitlab": null, "instagram": null, "linkedin": null, @@ -137,6 +144,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.916Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/openstreetmap.json b/new-api-details/organizations/openstreetmap.json index 761737c5..3366a7ff 100644 --- a/new-api-details/organizations/openstreetmap.json +++ b/new-api-details/organizations/openstreetmap.json @@ -3,7 +3,7 @@ "slug": "openstreetmap", "name": "OpenStreetMap", "category": "Data", - "description": "Create and distribute free geodata for the world", + "description": "OpenStreetMap is a crowdsourcing project that creates and distributes free geographic data for the world. Our data is collected by hundreds of thousands of contributors around the globe and released with an open-content license. We allow free access not only to our map products, but all the underlying map data, which powers websites and apps used by billions of people worldwide.\n\nOSM data can be freely used in both open and closed source software, and has attracted many commercial users. Still, the success of OSM wouldn't be possible without open source software and volunteer developers. The database, website and API running on our own servers, the editing tools used by contributors to improve the map, and many of the most popular libraries and end-user applications within the OSM software ecosystem are all open source software, and developed through a community-driven process.\n\nAs our Google Summer of Code participation spans this diverse set of software projects, most of which are maintained as independent efforts under the OSM umbrella, contributors will encounter a wide range of programming languages, paradigms and use cases. We hope that we have interesting challenges to offer for any developer, no matter their background!", "image_url": "https://summerofcode.withgoogle.com/media/org/openstreetmap/ihw4tczyumj0yx81-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/openstreetmap.webp", "logo_r2_url": null, @@ -18,10 +18,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "javascript", @@ -35,7 +36,8 @@ "sql", "docker", "postgresql", - "rust" + "rust", + "glTF" ], "topics": [ "geoinformatics", @@ -63,7 +65,8 @@ "year_2022": 4, "year_2023": 4, "year_2024": 4, - "year_2025": 6 + "year_2025": 6, + "year_2026": null }, "students_by_year": { "year_2016": 4, @@ -75,7 +78,8 @@ "year_2022": 4, "year_2023": 4, "year_2024": 4, - "year_2025": 6 + "year_2025": 6, + "year_2026": null }, "total_students": 44 }, @@ -977,13 +981,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/openstreetmap" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": null, - "guide_url": "https://wiki.openstreetmap.org/wiki/Google_Summer_of_Code/2025", - "ideas_url": "https://wiki.openstreetmap.org/wiki/Google_Summer_of_Code/2025/Project_ideas", + "guide_url": "https://wiki.openstreetmap.org/wiki/Google_Summer_of_Code/2026", + "ideas_url": "https://wiki.openstreetmap.org/wiki/Google_Summer_of_Code/2026/Project_ideas", "irc_channel": "https://wiki.openstreetmap.org/wiki/Google_Summer_of_Code/2021#Contact", "mailing_list": "https://community.openstreetmap.org/" }, @@ -991,7 +996,7 @@ "blog": "https://blogs.openstreetmap.org/", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/openstreetmap/", "gitlab": null, "instagram": null, "linkedin": null, @@ -1006,6 +1011,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.926Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/opensuse-project.json b/new-api-details/organizations/opensuse-project.json index 856ae8cd..df47a3b7 100644 --- a/new-api-details/organizations/opensuse-project.json +++ b/new-api-details/organizations/opensuse-project.json @@ -3,7 +3,7 @@ "slug": "opensuse-project", "name": "openSUSE Project", "category": "Operating systems", - "description": "Makers' choice for sysadmins, developers & users", + "description": "The openSUSE Project is a worldwide effort that promotes the use of Linux, tools around it, and open source. The openSUSE community is made up of multiple contributing communities that collaborate as part of a global open-source network. The openSUSE community develops, builds and maintains many of the packages, tools and infrastructure for the distribution. The community works together in an open, transparent and friendly manner as part of the global Free and Open Source Software community. openSUSE creates one of the world's best Linux distributions, as well as a variety of tools, such as OBS, OpenQA, Kiwi, YaST, OSEM and Uyuni. Distributions include a rolling release (Tumbleweed), a stable annual release (Leap) and operating systems for edge, embedded, cloud and containers through MicroOS and ALP.\n\nThe project is controlled by its community and relies on the contributions of individuals, working as testers, writers, translators, usability experts, artists and ambassadors or developers. The project embraces a wide variety of technology, people with different levels of expertise, speaking different languages and having different cultural backgrounds.", "image_url": "https://summerofcode.withgoogle.com/media/org/opensuse-project/zq11ebxj038xotbe-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/opensuse-project.webp", "logo_r2_url": null, @@ -17,10 +17,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "linux", @@ -43,7 +44,8 @@ "Testing", "configuration management", "reactjs javascript", - "go" + "go", + "c/c++" ], "topics": [ "virtualization", @@ -85,7 +87,8 @@ "year_2022": 4, "year_2023": 8, "year_2024": 11, - "year_2025": 7 + "year_2025": 7, + "year_2026": null }, "students_by_year": { "year_2016": 6, @@ -97,7 +100,8 @@ "year_2022": 4, "year_2023": 8, "year_2024": 11, - "year_2025": 7 + "year_2025": 7, + "year_2026": null }, "total_students": 48 }, @@ -1154,21 +1158,22 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/opensuse-project" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "ddemaio@opensuse.org", "guide_url": "https://github.com/openSUSE/mentoring/wiki/Contributor-Guidance-for-Google-Summer-of-Code", "ideas_url": "https://github.com/openSUSE/mentoring/issues", - "irc_channel": "https://discord.com/invite/opensuse", - "mailing_list": "https://lists.opensuse.org/archives/list/factory@lists.opensuse.org/" + "irc_channel": "https://chat.opensuse.org/", + "mailing_list": "https://lists.opensuse.org/archives/list/project@lists.opensuse.org/" }, "social": { "blog": "https://news.opensuse.org/", "discord": "https://discord.com/invite/opensuse", "facebook": null, - "github": null, + "github": "https://github.com/openSUSE", "gitlab": null, "instagram": null, "linkedin": null, @@ -1178,11 +1183,11 @@ "slack": null, "stackoverflow": null, "twitch": null, - "twitter": "https://twitter.com/openSUSE", + "twitter": "https://x.com/openSUSE", "youtube": null }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.616Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/openvino-toolkit.json b/new-api-details/organizations/openvino-toolkit.json index 2d2289bc..8d2ef81a 100644 --- a/new-api-details/organizations/openvino-toolkit.json +++ b/new-api-details/organizations/openvino-toolkit.json @@ -3,7 +3,7 @@ "slug": "openvino-toolkit", "name": "OpenVINO Toolkit", "category": "Development tools", - "description": "Make AI inference faster and easier to deploy!", + "description": "OpenVINO is an open‑source toolkit designed to optimize and deploy deep learning models from cloud to edge. It accelerates inference for a wide range of use cases—including computer vision, generative AI, and agentic AI—supporting models from popular frameworks such as PyTorch, TensorFlow, ONNX, and more. With OpenVINO, you can convert and optimize models, then deploy them across diverse Intel hardware and environments, whether on-premises, at the edge, on AI PCs, or in the cloud.", "image_url": "https://summerofcode.withgoogle.com/media/org/openvino-toolkit/ivzvok335ujezk2z-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/openvino-toolkit.webp", "logo_r2_url": null, @@ -12,10 +12,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2022, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -32,7 +33,9 @@ "ai", "neural network", "inference", - "gen ai" + "gen ai", + "Agentic AI", + "Model Serving" ], "total_projects": 32, "stats": { @@ -47,7 +50,8 @@ "year_2022": 3, "year_2023": 5, "year_2024": 8, - "year_2025": 16 + "year_2025": 16, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -59,7 +63,8 @@ "year_2022": 3, "year_2023": 5, "year_2024": 8, - "year_2025": 16 + "year_2025": 16, + "year_2026": null }, "total_students": 32 }, @@ -726,21 +731,22 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/openvino-toolkit" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": null, "guide_url": "https://github.com/openvinotoolkit/openvino/wiki/Google-Summer-Of-Code#application-template", - "ideas_url": "https://github.com/openvinotoolkit/openvino/wiki/Google-Summer-Of-Code#project-ideas-for-2025", + "ideas_url": "https://github.com/openvinotoolkit/openvino/wiki/Google-Summer-Of-Code#project-ideas-for-2026", "irc_channel": null, "mailing_list": "https://github.com/openvinotoolkit/openvino/discussions/categories/google-summer-of-code" }, "social": { - "blog": null, + "blog": "https://medium.com/openvino-toolkit", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/openvinotoolkit", "gitlab": null, "instagram": null, "linkedin": null, @@ -755,6 +761,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.932Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/openwisp.json b/new-api-details/organizations/openwisp.json index 4ee5bb03..1d6b5934 100644 --- a/new-api-details/organizations/openwisp.json +++ b/new-api-details/organizations/openwisp.json @@ -3,7 +3,7 @@ "slug": "openwisp", "name": "OpenWISP", "category": "End user applications", - "description": "The Hackable Network Management System", + "description": "OpenWISP is an open source network management system which runs on low cost hardware and can be used to manage networks: from public wifi, university wifi, to mesh networks and IoT.", "image_url": "https://summerofcode.withgoogle.com/media/org/openwisp/xgfy0r7femccwzvj-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/openwisp.webp", "logo_r2_url": null, @@ -17,10 +17,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -66,7 +67,8 @@ "year_2022": 2, "year_2023": 1, "year_2024": 1, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -78,7 +80,8 @@ "year_2022": 2, "year_2023": 1, "year_2024": 1, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "total_students": 23 }, @@ -632,21 +635,22 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/openwisp" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "support@openwisp.io", "guide_url": "https://openwisp.io/docs/developer/contributing.html", - "ideas_url": "https://openwisp.io/docs/dev/developer/gsoc-ideas-2025.html", - "irc_channel": "https://gitter.im/openwisp/general", + "ideas_url": "https://openwisp.io/docs/dev/developer/gsoc-ideas-2026.html", + "irc_channel": "https://gitter.im/openwisp/development", "mailing_list": "https://groups.google.com/forum/#!aboutgroup/openwisp" }, "social": { "blog": "https://openwisp.org/blog/", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/openwisp", "gitlab": null, "instagram": null, "linkedin": null, @@ -656,11 +660,11 @@ "slack": null, "stackoverflow": null, "twitch": null, - "twitter": "https://www.linkedin.com/company/openwisp/", + "twitter": "https://twitter.com/openwisp", "youtube": null }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.937Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/oppia-foundation.json b/new-api-details/organizations/oppia-foundation.json index 332f7b88..cc23f231 100644 --- a/new-api-details/organizations/oppia-foundation.json +++ b/new-api-details/organizations/oppia-foundation.json @@ -3,7 +3,7 @@ "slug": "oppia-foundation", "name": "Oppia Foundation", "category": "End user applications", - "description": "Free platform for interactive, tutor-like lessons", + "description": "The Oppia project aims to empower learners across the globe by providing access to high-quality, engaging education. We envision a world where access to high-quality education is not a privilege but a human right. \n\nThe team works on two platforms: \n\n (a) Oppia Web, which provides an online learning tool that enables anyone to learn from effective and engaging interactive lessons (called 'explorations'), which simulate a one-on-one conversation with a tutor. This format makes it possible for students to learn by doing while getting feedback. The Oppia Web platform also provides the infrastructure needed to support lesson creation and translation.\n\n (b) Oppia Android, which provides a way for these lessons to be played offline on an Android app that supports low-end devices and does not require Internet connectivity. \n\nAs a community, we are also aware that millions of students in underserved communities lack access to the educational resources necessary to effectively learn key skills like basic numeracy. Thus, in addition to developing the Oppia platform, the team has launched and continues to develop a set of free and effective lessons on basic mathematics, supplemented by translations and voiceovers. Students using these lessons have shown strong improvements between pre-and post-tests, and we’ve received lots of positive feedback on them. We are planning to extend this offering to other subjects, based on what students (and the nonprofits working with them) tell us would be most useful.", "image_url": "https://summerofcode.withgoogle.com/media/org/oppia-foundation/nqvgy9fm3aqshwtv-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/oppia-foundation.webp", "logo_r2_url": null, @@ -18,10 +18,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -61,7 +62,8 @@ "year_2022": 14, "year_2023": 5, "year_2024": 7, - "year_2025": 6 + "year_2025": 6, + "year_2026": null }, "students_by_year": { "year_2016": 1, @@ -73,7 +75,8 @@ "year_2022": 14, "year_2023": 5, "year_2024": 7, - "year_2025": 6 + "year_2025": 6, + "year_2026": null }, "total_students": 76 }, @@ -1600,13 +1603,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/oppia-foundation" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "oppia-gsoc-discuss@googlegroups.com", - "guide_url": "https://github.com/oppia/oppia/wiki/Google-Summer-of-Code-2025#getting-started", - "ideas_url": "https://github.com/oppia/oppia/wiki/Google-Summer-of-Code-2025#oppias-project-ideas-list", + "guide_url": "https://github.com/oppia/oppia/wiki/Google-Summer-of-Code-2026#getting-started", + "ideas_url": "https://github.com/oppia/oppia/wiki/Google-Summer-of-Code-2026", "irc_channel": "https://github.com/oppia/oppia/wiki/Google-Summer-of-Code-2021#communication", "mailing_list": "https://github.com/oppia/oppia/discussions" }, @@ -1614,7 +1618,7 @@ "blog": "https://www.oppia.org/blog", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/oppia/oppia", "gitlab": null, "instagram": null, "linkedin": null, @@ -1629,6 +1633,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.942Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/organic-maps.json b/new-api-details/organizations/organic-maps.json index 6200e4e6..a8092d90 100644 --- a/new-api-details/organizations/organic-maps.json +++ b/new-api-details/organizations/organic-maps.json @@ -16,7 +16,7 @@ ], "first_year": 2022, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "android", "java", @@ -310,6 +310,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.950Z" + "generated_at": "2026-02-19T12:41:12.412Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/osgeo-open-source-geospatial-foundation.json b/new-api-details/organizations/osgeo-open-source-geospatial-foundation.json index 990ddb14..cb1944a8 100644 --- a/new-api-details/organizations/osgeo-open-source-geospatial-foundation.json +++ b/new-api-details/organizations/osgeo-open-source-geospatial-foundation.json @@ -3,7 +3,7 @@ "slug": "osgeo-open-source-geospatial-foundation", "name": "OSGeo (Open Source Geospatial Foundation)", "category": "End user applications", - "description": "The Open Source Geospatial Foundation", + "description": "The Open Source Geospatial Foundation (OSGeo) is a not-for-profit organization whose mission is to foster global adoption of open geospatial technology by being an inclusive software foundation devoted to an open philosophy and participatory community-driven development.\n\nOSGeo serves as an umbrella organization for the Open Source Geospatial community in general and several code projects in particular:\n* Web Mapping: deegree, geomajas, GeoMOOSE, GeoServer, Mapbender, MapFish, MapGuide Open Source, MapServer, OpenLayers.\n* Desktop Applications: GRASS GIS, gvSIG, Marble, QGIS.\n* Geospatial Libraries: FDO, GDAL/OGR, GEOS, GeoTools, OSSIM, PostGIS.\n* Metadata Catalogues: GeoNetwork, pycsw.\n* Content Management Systems: GeoNode.\n* Community Projects: pgRouting, istSOS, MetaCRS, Opticks, Orfeo ToolBox (OTB), PyWPS, Team Engine, ZOO-Project.\n* Other (non-code) Projects: GeoForAll (Education and Curriculum), OSGeoLive DVD, Public Geospatial Data.\n\nWe host regional and international FOSS4G conferences with typical attendance of 500-1100+ geospatial developers, industry and government leaders, and researchers. Our mailing lists collectively go out to ~ 30,000 unique subscribers.", "image_url": "https://summerofcode.withgoogle.com/media/org/osgeo-open-source-geospatial-foundation/yundulx00fbd1akm-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/osgeo-open-source-geospatial-foundation.webp", "logo_r2_url": null, @@ -18,10 +18,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "c", @@ -63,7 +64,8 @@ "year_2022": 6, "year_2023": 7, "year_2024": 7, - "year_2025": 9 + "year_2025": 9, + "year_2026": null }, "students_by_year": { "year_2016": 20, @@ -75,7 +77,8 @@ "year_2022": 6, "year_2023": 7, "year_2024": 7, - "year_2025": 9 + "year_2025": 9, + "year_2026": null }, "total_students": 94 }, @@ -2030,13 +2033,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/osgeo-open-source-geospatial-foundation" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "gsoc-admin@osgeo.org", "guide_url": "https://wiki.osgeo.org/wiki/Google_Summer_of_Code_Recommendations_for_Students", - "ideas_url": "https://wiki.osgeo.org/wiki/Google_Summer_of_Code_2025_Ideas", + "ideas_url": "https://wiki.osgeo.org/wiki/Google_Summer_of_Code_2026_Ideas", "irc_channel": "https://wiki.osgeo.org/wiki/Google_Summer_of_Code_Recommendations_for_Students#How_to_get_in_contact_via_IRC", "mailing_list": "https://www.osgeo.org/community/communications/" }, @@ -2044,7 +2048,7 @@ "blog": "http://planet.osgeo.org/", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/OSGeo", "gitlab": null, "instagram": null, "linkedin": null, @@ -2059,6 +2063,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.790Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/owasp-foundation.json b/new-api-details/organizations/owasp-foundation.json index 8fcc2db9..47529c3b 100644 --- a/new-api-details/organizations/owasp-foundation.json +++ b/new-api-details/organizations/owasp-foundation.json @@ -3,7 +3,7 @@ "slug": "owasp-foundation", "name": "OWASP Foundation", "category": "Security", - "description": "No more insecure software.", + "description": "As the world’s largest non-profit organization concerned with software security, OWASP:\n\n* Supports the building of impactful projects; \n* Develops & nurtures communities through events and chapter meetings worldwide; \n* Provides educational publications & resources\n\nin order to enable developers to write better software, and security professionals to make the world's software more secure.", "image_url": "https://summerofcode.withgoogle.com/media/org/owasp-foundation/haks8qbp0yvjvzge-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/owasp-foundation.webp", "logo_r2_url": null, @@ -17,10 +17,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -69,7 +70,8 @@ "year_2022": 15, "year_2023": 11, "year_2024": 10, - "year_2025": 15 + "year_2025": 15, + "year_2026": null }, "students_by_year": { "year_2016": 5, @@ -81,7 +83,8 @@ "year_2022": 15, "year_2023": 11, "year_2024": 10, - "year_2025": 15 + "year_2025": 15, + "year_2026": null }, "total_students": 97 }, @@ -2115,13 +2118,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/owasp-foundation" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "gsoc-admins@owasp.org", "guide_url": null, - "ideas_url": "https://owasp.org/www-community/initiatives/gsoc/gsoc2025ideas", + "ideas_url": "https://owasp.org/www-community/initiatives/gsoc/gsoc2026ideas", "irc_channel": "https://owasp.org/slack/invite", "mailing_list": "https://groups.google.com/g/owasp-gsoc?pli=1" }, @@ -2129,7 +2133,7 @@ "blog": "https://owasp.org", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/owasp", "gitlab": null, "instagram": null, "linkedin": null, @@ -2144,6 +2148,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.806Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/pal-robotics.json b/new-api-details/organizations/pal-robotics.json index bdfec66d..c680c339 100644 --- a/new-api-details/organizations/pal-robotics.json +++ b/new-api-details/organizations/pal-robotics.json @@ -13,7 +13,7 @@ ], "first_year": 2025, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "python", "javascript", @@ -135,6 +135,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.957Z" + "generated_at": "2026-02-19T12:41:12.412Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/pecan-project.json b/new-api-details/organizations/pecan-project.json index a12a199a..7b0d9416 100644 --- a/new-api-details/organizations/pecan-project.json +++ b/new-api-details/organizations/pecan-project.json @@ -3,7 +3,7 @@ "slug": "pecan-project", "name": "PEcAn Project", "category": "Science and medicine", - "description": "Develop and promote tools for ecosystem modeling", + "description": "Climate change science has witnessed an explosion in the amount and types of data that can be brought to bear on the potential responses of the terrestrial carbon cycle and biodiversity to global change. Many of the most pressing questions about global change are not necessarily limited by the need to collect new data as much as by our ability to synthesize existing data. This project specifically seeks to improve this ability. Because no one measurement provides a complete picture, multiple data sources must be integrated in a sensible manner. Process-based models represent an ideal framework for integrating these data streams because they represent multiple processes at different spatial and temporal scales in ways that capture our current understanding of the causal connections across scales and among data types. Three components are required to bridge this gap between the available data and the required level of understanding: 1) state-of-the-art ecosystem model, 2) a workflow management system to handle the numerous streams of data, and 3) a data assimilation statistical framework in order to synthesize the data with the model.", "image_url": "https://summerofcode.withgoogle.com/media/org/pecan-project/kijyzllr7r1g0ukz-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/pecan-project.webp", "logo_r2_url": null, @@ -17,10 +17,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "c", @@ -56,7 +57,8 @@ "year_2022": 5, "year_2023": 4, "year_2024": 4, - "year_2025": 4 + "year_2025": 4, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -68,7 +70,8 @@ "year_2022": 5, "year_2023": 4, "year_2024": 4, - "year_2025": 4 + "year_2025": 4, + "year_2026": null }, "total_students": 25 }, @@ -694,12 +697,13 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/pecan-project" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "pecanproj@gmail.com", - "guide_url": "https://pecanproject.github.io/gsoc.html", + "guide_url": "https://pecanproject.github.io/gsoc", "ideas_url": "https://pecanproject.github.io/gsoc_ideas", "irc_channel": "https://join.slack.com/t/pecanproject/shared_invite/enQtMzkyODUyMjQyNTgzLWEzOTM1ZjhmYWUxNzYwYzkxMWVlODAyZWQwYjliYzA0MDA0MjE4YmMyOTFhMjYyMjYzN2FjODE4N2Y4YWFhZmQ", "mailing_list": "http://pecanproject.github.io/contact.html" @@ -708,7 +712,7 @@ "blog": null, "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/pecanproject/pecan", "gitlab": null, "instagram": null, "linkedin": null, @@ -723,6 +727,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.960Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/pharo-consortium.json b/new-api-details/organizations/pharo-consortium.json index bb402cea..073064c4 100644 --- a/new-api-details/organizations/pharo-consortium.json +++ b/new-api-details/organizations/pharo-consortium.json @@ -3,7 +3,7 @@ "slug": "pharo-consortium", "name": "Pharo Consortium", "category": "Programming languages", - "description": "Modern and immersive programming language", + "description": "Pharo is a dynamic, purely object-oriented programming language (where everything is an object) that is inspired by Smalltalk. It also includes a powerful IDE that focuses on simplicity and quick feedback. Its entire syntax can fit on a postcard, and you can code directly in the debugger. Pharo has useful tools that help you work efficiently.\n\nThe goal of Pharo is to provide a clean, innovative, free, and open-source environment. With a stable and small core system, great development tools, and regular updates, Pharo is a good choice for building and running important applications.\n\nPharo supports a healthy community made up of both private and commercial contributors who help improve and maintain the core system and its external packages.", "image_url": "https://summerofcode.withgoogle.com/media/org/pharo-consortium/zrxygkl3ycuvw6nb-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/pharo-consortium.webp", "logo_r2_url": null, @@ -13,10 +13,11 @@ 2019, 2021, 2023, - 2025 + 2025, + 2026 ], "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "smalltalk", @@ -61,7 +62,8 @@ "year_2022": null, "year_2023": 6, "year_2024": null, - "year_2025": 8 + "year_2025": 8, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -73,7 +75,8 @@ "year_2022": null, "year_2023": 6, "year_2024": null, - "year_2025": 8 + "year_2025": 8, + "year_2026": null }, "total_students": 31 }, @@ -695,7 +698,8 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/pharo-consortium" - } + }, + "year_2026": null }, "first_time": false, "contact": { @@ -709,7 +713,7 @@ "blog": "https://thepharo.dev/", "discord": "https://discord.gg/QewZMZa", "facebook": null, - "github": null, + "github": "https://github.com/pharo-project/pharo", "gitlab": null, "instagram": null, "linkedin": null, @@ -724,6 +728,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.984Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/plone-foundation.json b/new-api-details/organizations/plone-foundation.json index a7de018e..11a86da4 100644 --- a/new-api-details/organizations/plone-foundation.json +++ b/new-api-details/organizations/plone-foundation.json @@ -19,7 +19,7 @@ ], "first_year": 2016, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "python", "javascript", @@ -658,6 +658,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:53.998Z" + "generated_at": "2026-02-19T12:41:12.412Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/postgresql.json b/new-api-details/organizations/postgresql.json index 799e6462..ecaeba18 100644 --- a/new-api-details/organizations/postgresql.json +++ b/new-api-details/organizations/postgresql.json @@ -3,7 +3,7 @@ "slug": "postgresql", "name": "PostgreSQL", "category": "Data", - "description": "The Most Advanced Open Source Relational Database", + "description": "PostgreSQL is a powerful, open source object-relational database system with over 30 years of active development that has earned it a strong reputation for reliability, feature robustness, and performance.", "image_url": "https://summerofcode.withgoogle.com/media/org/postgresql/hj9srl9x0o6iendy-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/postgresql.webp", "logo_r2_url": null, @@ -17,10 +17,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "c", @@ -61,7 +62,8 @@ "year_2022": 7, "year_2023": 12, "year_2024": 5, - "year_2025": 7 + "year_2025": 7, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -73,7 +75,8 @@ "year_2022": 7, "year_2023": 12, "year_2024": 5, - "year_2025": 7 + "year_2025": 7, + "year_2026": null }, "total_students": 47 }, @@ -1110,14 +1113,15 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/postgresql" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "pgsql-hackers@lists.postgresql.org", "guide_url": "https://wiki.postgresql.org/wiki/GSoC", - "ideas_url": "https://wiki.postgresql.org/wiki/GSoC_2025", - "irc_channel": "http://pgtreats.info/slack-invite", + "ideas_url": "https://wiki.postgresql.org/wiki/GSoC_2026", + "irc_channel": "https://www.postgresql.org/community/irc/", "mailing_list": "pgsql-hackers@lists.postgresql.org" }, "social": { @@ -1139,6 +1143,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.008Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/precice.json b/new-api-details/organizations/precice.json new file mode 100644 index 00000000..12d18558 --- /dev/null +++ b/new-api-details/organizations/precice.json @@ -0,0 +1,99 @@ +{ + "id": "new_2026_precice", + "slug": "precice", + "name": "preCICE", + "category": "Science and medicine", + "description": "preCICE is an open-source coupling library and ecosystem for general partitioned multi-physics and multi-scale simulations, including surface and volume coupling.\n\nPartitioned means that preCICE couples existing programs/solvers capable of simulating a subpart of the complete physics involved in a simulation. This allows for the high flexibility that is needed to keep a decent time-to-solution for complex coupled problems.\n\nThe software offers convenient methods for transient equation coupling, communication, time interpolation, and data mapping.", + "image_url": "https://summerofcode.withgoogle.com/media/org/precice/19ymcw80uxn8g9ia-360.png", + "img_r2_url": "https://summerofcode.withgoogle.com/media/org/precice/19ymcw80uxn8g9ia-360.png", + "logo_r2_url": null, + "url": "https://precice.org/", + "active_years": [ + 2026 + ], + "first_year": 2026, + "last_year": 2026, + "is_currently_active": true, + "technologies": [ + "c", + "python", + "shell", + "c++" + ], + "topics": [ + "scientific computing", + "simulation" + ], + "total_projects": 0, + "stats": { + "avg_projects_per_appeared_year": 0, + "projects_by_year": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "students_by_year": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "total_students": 0 + }, + "years": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "contact": { + "email": null, + "guide_url": "https://precice.org/community-contribute-open-projects.html#google-summer-of-code", + "ideas_url": "https://precice.org/community-contribute-open-projects.html", + "irc_channel": "https://precice.org/community-channels.html", + "mailing_list": "https://precice.discourse.group/c/jobs/gsoc/15" + }, + "social": { + "blog": "https://precice.discourse.group/c/news", + "discord": null, + "facebook": null, + "github": "https://github.com/precice/", + "gitlab": null, + "instagram": null, + "linkedin": null, + "mastodon": null, + "medium": null, + "reddit": null, + "slack": null, + "stackoverflow": null, + "twitch": null, + "twitter": null, + "youtube": null + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:46:24.131Z" + } +} \ No newline at end of file diff --git a/new-api-details/organizations/processing-foundation.json b/new-api-details/organizations/processing-foundation.json index 27f887a9..581013b8 100644 --- a/new-api-details/organizations/processing-foundation.json +++ b/new-api-details/organizations/processing-foundation.json @@ -3,7 +3,7 @@ "slug": "processing-foundation", "name": "Processing Foundation", "category": "Programming languages", - "description": "To empower all people to learn to program", + "description": "Our mission is to promote software learning within the arts, artistic learning within technology-related fields, and to celebrate the diverse communities that make these fields vibrant, liberatory, and innovative. Our goal is to support people of all backgrounds in learning how to program and make creative work with code, especially those who might not otherwise have access to tools and resources. We also believe that some of the most radical futures and innovative technologies are being built by communities that have been pushed to the margins by dominant tech. We hope to support those who have been marginalized by technology in continued self-determination by providing time, space, and resources.\n\nWe work toward our goals by developing and distributing a group of related software projects, which includes Processing (Java), p5.js (JavaScript), and p5.js Editor (JavaScript), and by facilitating partnerships and collaborations with allied organizations and individuals to build a more diverse community around software and the arts.", "image_url": "https://summerofcode.withgoogle.com/media/org/processing-foundation/xr2sncljbvtlop1n-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/processing-foundation.webp", "logo_r2_url": null, @@ -16,10 +16,11 @@ 2021, 2022, 2023, - 2025 + 2025, + 2026 ], "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -52,7 +53,8 @@ "year_2022": 8, "year_2023": 8, "year_2024": null, - "year_2025": 3 + "year_2025": 3, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -64,7 +66,8 @@ "year_2022": 8, "year_2023": 8, "year_2024": null, - "year_2025": 3 + "year_2025": 3, + "year_2026": null }, "total_students": 85 }, @@ -1740,21 +1743,22 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/processing-foundation" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "foundation@processing.org", "guide_url": "https://github.com/processing/Processing-Foundation-GSoC", - "ideas_url": "https://github.com/processing/Processing-Foundation-GSoC/wiki/Project-Ideas-List-(GSoC-2025)", + "ideas_url": "https://github.com/processing/Processing-Foundation-GSoC/wiki/Project-Ideas-List-(GSoC-2026)#project-ideas-list", "irc_channel": "http://pf-gsoc.slack.com", "mailing_list": "http://discourse.processing.org" }, "social": { - "blog": null, + "blog": "https://medium.com/@ProcessingOrg", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/processing/", "gitlab": null, "instagram": null, "linkedin": null, @@ -1769,6 +1773,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.017Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/project-mesa.json b/new-api-details/organizations/project-mesa.json index f119514c..1da73add 100644 --- a/new-api-details/organizations/project-mesa.json +++ b/new-api-details/organizations/project-mesa.json @@ -3,27 +3,32 @@ "slug": "project-mesa", "name": "Project Mesa", "category": "Science and medicine", - "description": "Mesa: Agent-based modeling in Python 3+", + "description": "Mesa is an Apache2 licensed agent-based modeling (or ABM) framework in Python.\n\nIt allows users to quickly create agent-based models using built-in core components (such as spatial grids and agent schedulers) or customized implementations; visualize them using a browser-based interface; and analyze their results using Python’s data analysis tools. \n\nIts goal is to provide an ecosystem to support generative science approaches, improve understanding of complex systems and aid practical decision-making.", "image_url": "https://summerofcode.withgoogle.com/media/org/project-mesa/fh3o8surszufvjpv-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/project-mesa.webp", "logo_r2_url": null, "url": "https://mesa.readthedocs.io/latest/", "active_years": [ 2024, - 2025 + 2025, + 2026 ], "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", "ui/ux", "LLMs", - "Vector Operations" + "Vector Operations", + "gis", + "object oriented programming", + "network topology" ], "topics": [ "Agent Based Models", - "Generative Science" + "Generative Science", + "simulation" ], "total_projects": 7, "stats": { @@ -38,7 +43,8 @@ "year_2022": null, "year_2023": null, "year_2024": 3, - "year_2025": 4 + "year_2025": 4, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -50,7 +56,8 @@ "year_2022": null, "year_2023": null, "year_2024": 3, - "year_2025": 4 + "year_2025": 4, + "year_2026": null }, "total_students": 7 }, @@ -213,13 +220,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/project-mesa" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "maintainers@projectmesa.dev", - "guide_url": "https://github.com/projectmesa/mesa/blob/main/CONTRIBUTING.md", - "ideas_url": "https://github.com/projectmesa/mesa/wiki/Google-Summer-of-Code-2025", + "guide_url": "https://github.com/projectmesa/mesa/wiki/Google-Summer-of-Code-2026", + "ideas_url": "https://github.com/mesa/mesa/wiki/GSoC-2026-Project-Ideas", "irc_channel": "https://matrix.to/#/#GSoC:matrix.org", "mailing_list": "https://github.com/projectmesa/mesa/discussions" }, @@ -227,7 +235,7 @@ "blog": "https://www.linkedin.com/company/projectmesa/", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/projectmesa/mesa", "gitlab": null, "instagram": null, "linkedin": null, @@ -242,6 +250,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.021Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/prometheus-operator.json b/new-api-details/organizations/prometheus-operator.json index 69a961d7..d3b8d1db 100644 --- a/new-api-details/organizations/prometheus-operator.json +++ b/new-api-details/organizations/prometheus-operator.json @@ -14,7 +14,7 @@ ], "first_year": 2024, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "prometheus", "go", @@ -203,6 +203,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.026Z" + "generated_at": "2026-02-19T12:41:12.412Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/python-software-foundation.json b/new-api-details/organizations/python-software-foundation.json index f9056b89..76d78061 100644 --- a/new-api-details/organizations/python-software-foundation.json +++ b/new-api-details/organizations/python-software-foundation.json @@ -2,8 +2,8 @@ "id": "692251e453dd9d7326d33e8b", "slug": "python-software-foundation", "name": "Python Software Foundation", - "category": "Science and medicine", - "description": "A programming language used for science & more", + "category": "End user applications", + "description": "Python is a programming language that lets you work more quickly and integrate your systems more effectively.\n\nThe Python Software Foundation serves as an umbrella organization to a\nvariety of Python-related projects, as well as sponsoring projects related to the\ndevelopment of the Python language.\n\nYou can view a full list of participating sub-orgs here:\nhttps://python-gsoc.org/ideas.html\n\nSub-orgs:\n- Borg Collective - backup tools\n- CVE Binary Tool - scanning for known security vulnerabilities\n- DIPY - 3d/4d+ imaging\n- Fury - scientific visualization tools\n- LPython - ahead of time compiler for python\n- MNE-Python - tools for human neurophysiological data\n- Mission Support System - atmospheric science tools for flight planning\n- PyData/Sparse - n-dimensional sparse arrays for pyData\n- PyElastica - simulation and modeling for slender structures", "image_url": "https://summerofcode.withgoogle.com/media/org/python-software-foundation/2vpxhpvcsvgyx3kg-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/python-software-foundation.webp", "logo_r2_url": null, @@ -18,10 +18,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -63,7 +64,8 @@ "year_2022": 28, "year_2023": 22, "year_2024": 30, - "year_2025": 17 + "year_2025": 17, + "year_2026": null }, "students_by_year": { "year_2016": 49, @@ -75,7 +77,8 @@ "year_2022": 28, "year_2023": 22, "year_2024": 30, - "year_2025": 17 + "year_2025": 17, + "year_2026": null }, "total_students": 272 }, @@ -5448,7 +5451,8 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/python-software-foundation" - } + }, + "year_2026": null }, "first_time": false, "contact": { @@ -5477,6 +5481,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.032Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/qc-devs.json b/new-api-details/organizations/qc-devs.json index 32af04df..56e856b6 100644 --- a/new-api-details/organizations/qc-devs.json +++ b/new-api-details/organizations/qc-devs.json @@ -3,17 +3,18 @@ "slug": "qc-devs", "name": "QC-Devs", "category": "Science and medicine", - "description": "Sustainable software for quantum chemistry & more", + "description": "QC-Devs develops free, open-source, and cross-platform libraries for the computational sciences, focusing on theoretical and computational chemistry. Our goal is to make programming accessible to students and researchers, to catalyze scientific collaborations, and to promote precepts of sustainable software development. We're adapting some of the same principles to develop free and open-source educational materials (qc-edu.org) to modernize scientific education by integrating hands-on computation and computer programming.", "image_url": "https://summerofcode.withgoogle.com/media/org/qc-devs/nywcx8edxlpsz2kg-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/qc-devs.webp", "logo_r2_url": null, "url": "https://qcdevs.org/", "active_years": [ 2024, - 2025 + 2025, + 2026 ], "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -42,7 +43,8 @@ "year_2022": null, "year_2023": null, "year_2024": 2, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -54,7 +56,8 @@ "year_2022": null, "year_2023": null, "year_2024": 2, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "total_students": 6 }, @@ -216,7 +219,8 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/qc-devs" - } + }, + "year_2026": null }, "first_time": false, "contact": { @@ -230,7 +234,7 @@ "blog": null, "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/theochem", "gitlab": null, "instagram": null, "linkedin": null, @@ -245,6 +249,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.039Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/qemu.json b/new-api-details/organizations/qemu.json index e1317bef..699ab549 100644 --- a/new-api-details/organizations/qemu.json +++ b/new-api-details/organizations/qemu.json @@ -3,7 +3,7 @@ "slug": "qemu", "name": "QEMU", "category": "Infrastructure and cloud", - "description": "Open source machine emulator and virtualizer", + "description": "The QEMU Project includes the QEMU open source machine emulator and virtualizer and also acts as an umbrella organization for the KVM Linux kernel module and rust-vmm community.\n\nWhen used as a machine emulator, QEMU can run operating systems and programs made for one machine (e.g. an ARM board) on a different machine (e.g. your own PC). By using dynamic translation, it achieves very good performance.\n\nWhen used as a virtualizer, QEMU achieves near native performances by executing the guest code directly on the host CPU. QEMU supports virtualization when executing under the Xen hypervisor or using the KVM kernel module in Linux. When using KVM, QEMU can virtualize x86, ARM, server and embedded PowerPC, and S390 guests.", "image_url": "https://summerofcode.withgoogle.com/media/org/qemu/gik5gsxljb3j1jx1-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/qemu.webp", "logo_r2_url": null, @@ -17,10 +17,11 @@ 2021, 2022, 2023, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "c", @@ -58,7 +59,8 @@ "year_2022": 4, "year_2023": 6, "year_2024": null, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "students_by_year": { "year_2016": 6, @@ -70,7 +72,8 @@ "year_2022": 4, "year_2023": 6, "year_2024": null, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "total_students": 40 }, @@ -866,13 +869,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/qemu" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "stefanha@gmail.com", - "guide_url": "https://wiki.qemu.org/Google_Summer_of_Code_2025", - "ideas_url": "https://wiki.qemu.org/Google_Summer_of_Code_2025", + "guide_url": "https://wiki.qemu.org/Google_Summer_of_Code_2026", + "ideas_url": "https://wiki.qemu.org/Google_Summer_of_Code_2026", "irc_channel": "https://webchat.oftc.net/?channels=qemu-gsoc", "mailing_list": "https://lists.nongnu.org/mailman/listinfo/qemu-devel" }, @@ -881,7 +885,7 @@ "discord": null, "facebook": null, "github": null, - "gitlab": null, + "gitlab": "https://gitlab.com/qemu-project/qemu", "instagram": null, "linkedin": null, "mastodon": null, @@ -895,6 +899,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.041Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/qubes-os.json b/new-api-details/organizations/qubes-os.json index 62f81c49..a05051ba 100644 --- a/new-api-details/organizations/qubes-os.json +++ b/new-api-details/organizations/qubes-os.json @@ -3,19 +3,20 @@ "slug": "qubes-os", "name": "Qubes OS", "category": "Operating systems", - "description": "A reasonably secure operating system", - "image_url": "https://lh3.googleusercontent.com/ZRq4RksbAl8OOSEKMSp08O2TkUhtGMvjVMwtnuQ6e99CHeqwTYAlNQOSvBeSEtokOjUcr40hEIdVsi0DXTLSHltofdZG2lkGEAu_-e9W2Zo", + "description": "Qubes OS is a security- and privacy-focused free-and-open-source operating system that provides a safer platform for communications, information management, and general computing.", + "image_url": "https://summerofcode.withgoogle.com/media/org/qubes-os-f3/4hohuknku00cpaja-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/qubes-os.webp", "logo_r2_url": null, - "url": "https://www.qubes-os.org", + "url": "https://qubes-os.org", "active_years": [ 2017, 2020, - 2021 + 2021, + 2026 ], "first_year": 2017, - "last_year": 2021, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ "c", "python", @@ -29,7 +30,8 @@ "security", "privacy", "operating system", - "operating systems" + "operating systems", + "OS" ], "total_projects": 4, "stats": { @@ -44,7 +46,8 @@ "year_2022": null, "year_2023": null, "year_2024": null, - "year_2025": null + "year_2025": null, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -56,7 +59,8 @@ "year_2022": null, "year_2023": null, "year_2024": null, - "year_2025": null + "year_2025": null, + "year_2026": null }, "total_students": 4 }, @@ -158,21 +162,22 @@ "year_2022": null, "year_2023": null, "year_2024": null, - "year_2025": null + "year_2025": null, + "year_2026": null }, "first_time": false, "contact": { "email": null, - "guide_url": null, - "ideas_url": null, - "irc_channel": null, - "mailing_list": "https://www.qubes-os.org/mailing-lists/" + "guide_url": "https://doc.qubes-os.org/en/latest/developer/general/gsoc.html#information-for-students", + "ideas_url": "https://doc.qubes-os.org/en/latest/developer/general/gsoc.html#project-ideas", + "irc_channel": "https://internal-team.matrix.instance", + "mailing_list": "https://forum.qubes-o.org" }, "social": { "blog": "https://www.qubes-os.org/news/", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/QubesOS/", "gitlab": null, "instagram": null, "linkedin": null, @@ -182,11 +187,11 @@ "slack": null, "stackoverflow": null, "twitch": null, - "twitter": "https://twitter.com/QubesOS", + "twitter": "https://mastodon.social/@QubesOS", "youtube": null }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.045Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/r-project-for-statistical-computing.json b/new-api-details/organizations/r-project-for-statistical-computing.json index 8c13f78e..f6b1f61d 100644 --- a/new-api-details/organizations/r-project-for-statistical-computing.json +++ b/new-api-details/organizations/r-project-for-statistical-computing.json @@ -3,7 +3,7 @@ "slug": "r-project-for-statistical-computing", "name": "R project for statistical computing", "category": "Science and medicine", - "description": "R software for statistical computing & graphics", + "description": "R provides a wide variety of statistical and graphical techniques, and is highly extensible. R is often the tool of choice for research in statistical methodology.\n\nR is an integrated suite of software facilities for data manipulation, calculation and graphical display. It includes\n\n* an effective data handling and storage facility,\n* a suite of operators for calculations on arrays, in particular matrices,\n* a large, coherent, integrated collection of intermediate tools for data analysis,\n* graphical facilities for data analysis and display either on-screen or on hardcopy, and\n* a well-developed, simple and effective programming language which includes conditionals, loops, user-defined recursive functions and input and output facilities.\n\nThe term “environment” is intended to characterize it as a fully planned and coherent system, rather than an incremental accretion of very specific and inflexible tools, as is frequently the case with other data analysis software.\n\nR, like S, is designed around a true computer language, and it allows users to add additional functionality by defining new functions. Much of the system is itself written in the R dialect of S, which makes it easy for users to follow the algorithmic choices made. For computationally-intensive tasks, C, C++ and Fortran code can be linked and called at run time. Advanced users can write C code to manipulate R objects directly.\n\nMany users think of R as a statistics system. We prefer to think of it of an environment within which statistical techniques are implemented. R can be extended (easily) via packages. There are about eight packages supplied with the R distribution and many more are available through the CRAN family of Internet sites covering a very wide range of modern statistics.\n\nR has its own LaTeX-like documentation format, which is used to supply comprehensive documentation, both on-line in a number of formats and in hardcopy.", "image_url": "https://summerofcode.withgoogle.com/media/org/r-project-for-statistical-computing/7regeqcjh95nenso-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/r-project-for-statistical-computing.webp", "logo_r2_url": null, @@ -18,10 +18,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "c", @@ -52,7 +53,8 @@ "year_2022": 13, "year_2023": 9, "year_2024": 16, - "year_2025": 24 + "year_2025": 24, + "year_2026": null }, "students_by_year": { "year_2016": 22, @@ -64,7 +66,8 @@ "year_2022": 13, "year_2023": 9, "year_2024": 16, - "year_2025": 24 + "year_2025": 24, + "year_2026": null }, "total_students": 189 }, @@ -4033,18 +4036,19 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/r-project-for-statistical-computing" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "gsoc-r@googlegroups.com", "guide_url": "https://github.com/rstats-gsoc/gsoc2022/wiki", - "ideas_url": "https://github.com/rstats-gsoc/gsoc2025/wiki/table-of-proposed-coding-projects", + "ideas_url": "https://github.com/rstats-gsoc/gsoc2026/wiki/table-of-proposed-coding-projects", "irc_channel": "https://join.slack.com/t/rstats-gsoc/shared_invite/enQtOTU1ODg1MzY2Nzc0LTU1ZDc0NjA3MGIyZWQ4MGViMmQzOWUxYjY3ZDc0MDJlYTg0YmRiY2NmYjUzYTA0YjExMzMzNjYxMWRhMDgxNjI", "mailing_list": "gsoc-r@googlegroups.com" }, "social": { - "blog": "https://rweekly.org/", + "blog": "https://www.r-bloggers.com/", "discord": null, "facebook": null, "github": null, @@ -4062,6 +4066,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.049Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/rizin.json b/new-api-details/organizations/rizin.json index 48bd2686..192f5b7b 100644 --- a/new-api-details/organizations/rizin.json +++ b/new-api-details/organizations/rizin.json @@ -3,7 +3,7 @@ "slug": "rizin", "name": "Rizin", "category": "Security", - "description": "Rizin reverse engineering framework and toolset", + "description": "The Rizin project is a fork of the famous Radare2 project that started in 2006. Since then the codebase has been rewritten multiple times, modularized and extended to support many new features. The Rizin project aims to provide stability, focus on the most important features, and provide a user friendly interface. Along with Cutter - a Qt-based GUI and the RzGhidra decompiler it makes the effective tool for everyday reversing tasks.\n\nRizin is composed of a hexadecimal editor at its core, with support for several architectures and binary formats. It features code analysis capabilities, scripting, data and code visualization through graphs and other means, a visual mode, easy UNIX integration, a binary diffing engine for code and data, a shellcode compiler, multi-platform debug with reverse debug capabilities and much, much more!", "image_url": "https://summerofcode.withgoogle.com/media/org/rizin/7ageygqfyv7wzlee-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/rizin.webp", "logo_r2_url": null, @@ -13,10 +13,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2021, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "c", @@ -45,7 +46,8 @@ "year_2022": 2, "year_2023": 1, "year_2024": 1, - "year_2025": 3 + "year_2025": 3, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -57,7 +59,8 @@ "year_2022": 2, "year_2023": 1, "year_2024": 1, - "year_2025": 3 + "year_2025": 3, + "year_2026": null }, "total_students": 10 }, @@ -279,13 +282,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/rizin" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "gsoc@rizin.re", "guide_url": "https://rizin.re/gsoc/2024", - "ideas_url": "https://rizin.re/gsoc/2025/", + "ideas_url": "https://rizin.re/gsoc/2026/#project-ideas", "irc_channel": "https://im.rizin.re", "mailing_list": null }, @@ -293,7 +297,7 @@ "blog": "https://rizin.re/posts/", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/rizinorg", "gitlab": null, "instagram": null, "linkedin": null, @@ -303,11 +307,11 @@ "slack": null, "stackoverflow": null, "twitch": null, - "twitter": "https://bsky.app/profile/rizin.re", + "twitter": "https://twitter.com/rizinorg", "youtube": null }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.114Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/rocketchat.json b/new-api-details/organizations/rocketchat.json index 61840aac..1dfe6435 100644 --- a/new-api-details/organizations/rocketchat.json +++ b/new-api-details/organizations/rocketchat.json @@ -3,7 +3,7 @@ "slug": "rocketchat", "name": "rocket.chat", "category": "Social and communication", - "description": "Open source communications platform for the AI age", + "description": "Open source team chat and communications platform \n\nRocket.Chat is one of the largest active open source (permissive MIT license) nodeJS communications platform communities on GitHub, connecting 2,500+ global community contributors (across projects) from 30+ countries, with 41,700+ GitHub stars, 11,100 forks, 1,005+ total releases and 15,100+ issues since inception in 2015.\n\nRocket.Chat is a team chat platform written in full-stack Typescript. It offers a fully featured team chat experience on modern browsers, comparable to Slack and Microsoft Teams. Mobile and desktop clients run on iOS, Android, Mac, Windows, and Linux. The server can scale from a small family messaging server for 5 users on a Raspberry Pi 5, to clustered micro-services configuration that can support hundred thousands of users. On-premises Rocket.Chat can ensure 100% complete security and privacy of your valuable communications/data.\n\nRocket.Chat is now installed on over 500k servers and counts over 12m users worldwide. Federated communication support extends our reach exponentially. \n\nUsers can set up Rocket.Chat on cloud or by hosting their own servers on-premises. Thanks to its extension support via Rocket.Chat Apps, and rich APIs, startups and innovators have customized Rocket.Chat into new products and services. Omnichannel extends reach to wherever user may be including WhatsApp, Instagram, Facebook Messenger and more. Increasingly, innovators in Generative AI and LLM app developers are launching their concepts on the Rocket.Chat platform to keep all data flows and communications 100% private and secure. \n\nRocket.Chat has won multiple prizes such as a 2016 Bossie Award for Best Open Source Application and first prize in the 2017 edition of All Things Open’s Startup Competition.\n\nRocket.Chat's community interacts 24 x 7 at the community Rocket.Chat server https://open.rocket.chat since 2015.", "image_url": "https://summerofcode.withgoogle.com/media/org/rocketchat/qnog9kebwa9atw3l-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/rocketchat.webp", "logo_r2_url": null, @@ -17,10 +17,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "javascript", @@ -41,7 +42,8 @@ "typescript", "meteorJS", "LLM", - "generative ai" + "generative ai", + "node" ], "topics": [ "collaboration", @@ -78,7 +80,8 @@ "year_2022": 12, "year_2023": 10, "year_2024": 17, - "year_2025": 19 + "year_2025": 19, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -90,7 +93,8 @@ "year_2022": 12, "year_2023": 10, "year_2024": 17, - "year_2025": 19 + "year_2025": 19, + "year_2026": null }, "total_students": 101 }, @@ -2117,21 +2121,22 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/rocketchat" - } + }, + "year_2026": null }, "first_time": false, "contact": { - "email": "gsoc+2025@rocket.chat", - "guide_url": "https://github.com/RocketChat/google-summer-of-code/blob/main/google-summer-of-code-2025.md#how-to-apply", - "ideas_url": "https://github.com/RocketChat/google-summer-of-code/blob/main/google-summer-of-code-2025.md#-project-ideas", - "irc_channel": "https://open.rocket.chat/channel/gsoc2025", - "mailing_list": "https://forums.rocket.chat/c/gsoc/gsoc2025/111" + "email": "gsoc+2026@rocket.chat", + "guide_url": "https://github.com/RocketChat/google-summer-of-code/blob/main/google-summer-of-code-2026.md#how-to-apply", + "ideas_url": "https://github.com/RocketChat/google-summer-of-code/blob/main/google-summer-of-code-2026.md#-project-ideas", + "irc_channel": "https://open.rocket.chat/channel/opensource2026", + "mailing_list": "https://forums.rocket.chat/t/welcome-to-google-summer-of-code-2026-with-rocket-chat/22692" }, "social": { "blog": "https://rocket.chat/blog/", "discord": null, "facebook": null, - "github": "https://github.com/RocketChat", + "github": "https://github.com/RocketChat/Rocket.Chat", "gitlab": null, "instagram": null, "linkedin": null, @@ -2146,6 +2151,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.626Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/rspamd.json b/new-api-details/organizations/rspamd.json index 9187c479..48203e0a 100644 --- a/new-api-details/organizations/rspamd.json +++ b/new-api-details/organizations/rspamd.json @@ -15,7 +15,7 @@ ], "first_year": 2017, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "c", "lua", @@ -168,6 +168,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.126Z" + "generated_at": "2026-02-19T12:41:12.412Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/rtems-project.json b/new-api-details/organizations/rtems-project.json index acd228d0..d97261fb 100644 --- a/new-api-details/organizations/rtems-project.json +++ b/new-api-details/organizations/rtems-project.json @@ -3,8 +3,8 @@ "slug": "rtems-project", "name": "RTEMS Project", "category": "Operating systems", - "description": "A real-time operating system for Earth & Space", - "image_url": "https://summerofcode.withgoogle.com/media/org/rtems-project/mo975scxu6bi0bfj-360.png", + "description": "RTEMS (Real-Time Executive for Multiprocessor Systems) is a free real-time operating system (RTOS) designed for deeply embedded systems such as automobile electronics, robotic controllers, and on-board satellite instruments. \n\nRTEMS is free open source software that supports multi-processor systems for over a dozen CPU architectures and over 150 specific system boards. In addition, RTEMS is designed to support embedded applications with the most stringent real-time requirements while being compatible with open standards such as POSIX. RTEMS includes optional functional features such as TCP/IP and file systems while still offering minimum executable sizes under 20 KB in useful configurations.\n\nThe RTEMS Project is the collection of individuals, companies, universities, and research institutions that collectively maintain and enhance the RTEMS software base. As a community, we are proud to be popular in the space application software and experimental physics communities. RTEMS has been to Venus, circles Mars, is aboard Curiosity, is in the asteroid belt, is on its way to Jupiter, and is circling the sun. It is in use in many high energy physics research labs around the world. There are many RTEMS users who do not belong to the space or physics communities, but our small part in contributing to basic scientific knowledge makes us proud.", + "image_url": "https://summerofcode.withgoogle.com/media/org/rtems-project/mgzdqflwj84er5ml-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/rtems-project.webp", "logo_r2_url": null, "url": "https://www.rtems.org/", @@ -18,10 +18,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "c", @@ -31,7 +32,8 @@ "posix", "bsd unix", "c++", - "assembly" + "assembly", + "c/c++" ], "topics": [ "real time", @@ -59,7 +61,8 @@ "year_2022": 4, "year_2023": 3, "year_2024": 5, - "year_2025": 8 + "year_2025": 8, + "year_2026": null }, "students_by_year": { "year_2016": 5, @@ -71,7 +74,8 @@ "year_2022": 4, "year_2023": 3, "year_2024": 5, - "year_2025": 8 + "year_2025": 8, + "year_2026": null }, "total_students": 44 }, @@ -976,7 +980,8 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/rtems-project" - } + }, + "year_2026": null }, "first_time": false, "contact": { @@ -984,14 +989,14 @@ "guide_url": "https://projects.rtems.org/gsoc/", "ideas_url": "https://projects.rtems.org/gsoc/", "irc_channel": "https://www.rtems.org/discord", - "mailing_list": "https://devel.rtems.org/wiki/RTEMSMailingLists" + "mailing_list": "https://users.rtems.org/" }, "social": { "blog": null, "discord": "https://www.rtems.org/discord", "facebook": null, "github": null, - "gitlab": null, + "gitlab": "https://gitlab.rtems.org/rtems/", "instagram": null, "linkedin": null, "mastodon": null, @@ -1005,6 +1010,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.085Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/ruby.json b/new-api-details/organizations/ruby.json index cbedb6c4..d5a38865 100644 --- a/new-api-details/organizations/ruby.json +++ b/new-api-details/organizations/ruby.json @@ -3,7 +3,7 @@ "slug": "ruby", "name": "Ruby", "category": "Programming languages", - "description": "Ruby is an object-oriented programming language", + "description": "The Ruby organization collects mentors and students working on the Ruby language (MRI), the Ruby packaging system (Bundler, RubyGems, and RubyGems.org), and other Ruby projects. Any Ruby OSS project is eligible to be included in the Ruby GSOC organization.", "image_url": "https://summerofcode.withgoogle.com/media/org/ruby/dc6i7iw8w39rktw1-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ruby.webp", "logo_r2_url": null, @@ -15,11 +15,12 @@ 2020, 2021, 2022, - 2023 + 2023, + 2026 ], "first_year": 2016, - "last_year": 2023, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ "ruby", "c", @@ -55,7 +56,8 @@ "year_2022": 3, "year_2023": 4, "year_2024": null, - "year_2025": null + "year_2025": null, + "year_2026": null }, "students_by_year": { "year_2016": 12, @@ -67,7 +69,8 @@ "year_2022": 3, "year_2023": 4, "year_2024": null, - "year_2025": null + "year_2025": null, + "year_2026": null }, "total_students": 37 }, @@ -809,21 +812,22 @@ "projects_url": "https://summerofcode.withgoogle.com/programs/2023/organizations/ruby" }, "year_2024": null, - "year_2025": null + "year_2025": null, + "year_2026": null }, "first_time": false, "contact": { "email": "saroj@zoras.me", - "guide_url": null, - "ideas_url": null, - "irc_channel": "https://bundler.slack.com", + "guide_url": "https://github.com/rubygsoc/rubygsoc/wiki/Getting-Involved", + "ideas_url": "https://github.com/rubygsoc/rubygsoc/wiki/Ideas-List-(2026)", + "irc_channel": "https://discord.gg/7ESQJSjr", "mailing_list": "https://github.com/rubygsoc/rubygsoc/wiki" }, "social": { "blog": "https://rubygsoc.github.io/", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/ruby", "gitlab": null, "instagram": null, "linkedin": null, @@ -838,6 +842,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.128Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/sagemath.json b/new-api-details/organizations/sagemath.json index e33c1c2a..87244ac5 100644 --- a/new-api-details/organizations/sagemath.json +++ b/new-api-details/organizations/sagemath.json @@ -3,7 +3,7 @@ "slug": "sagemath", "name": "SageMath", "category": "Science and medicine", - "description": "Open-source mathematics software system", + "description": "Mathematicians, scientists, researchers, and students need a powerful tool for their work or study. SageMath is a freely available open-source mathematical software system bundling the functionality of many software libraries, exposing their features in a common interface and extending on top of this with its own powerful algorithms. By leveraging the flexibility and universality of the underlying Python interpreter, SageMath is able to accommodate for a vast range of their requirements.\n\nThe mission of SageMath is to create a viable open-source alternative to all major proprietary mathematical software systems.\n\nPython is the main programming language inside the SageMath library and also the language of choice for all interactions with the built-in objects and functions for expressing mathematical concepts and calculations. Besides a command-line and programming-library interface, its primary user interface is a dynamic self-hosted website. From the perspective of a user, the interface language is Python, but with a thin extension built directly on top of it.\n\nAlmost all areas of mathematics are represented in SageMath, at various levels of sophistication. This includes symbolic calculus, 2D and 3D graphics, polynomials, graph theory, group theory, abstract algebra, combinatorics, cryptography, elliptic curves and modular forms, numerical mathematics, linear algebra and matrix calculations (over various rings), support for parallel computing, and a powerful coercion framework to “mix” elements from different sets for calculations. SageMath’s features also expand into neighboring fields like Statistics and Physics.", "image_url": "https://summerofcode.withgoogle.com/media/org/sagemath/1tcj7svgwadc13cj-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/sagemath.webp", "logo_r2_url": null, @@ -18,10 +18,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -55,7 +56,8 @@ "year_2022": 5, "year_2023": 6, "year_2024": 6, - "year_2025": 7 + "year_2025": 7, + "year_2026": null }, "students_by_year": { "year_2016": 5, @@ -67,7 +69,8 @@ "year_2022": 5, "year_2023": 6, "year_2024": 6, - "year_2025": 7 + "year_2025": 7, + "year_2026": null }, "total_students": 51 }, @@ -1132,14 +1135,15 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/sagemath" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "tcscrims@gmail.com", "guide_url": "https://wiki.sagemath.org/GSoC/Contributors", - "ideas_url": "https://wiki.sagemath.org/GSoC/2025", - "irc_channel": "https://sagemath.zulipchat.com/", + "ideas_url": "https://wiki.sagemath.org/GSoC/2026", + "irc_channel": "https://twitter.com/sagemath", "mailing_list": "https://groups.google.com/g/sage-gsoc" }, "social": { @@ -1161,6 +1165,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.175Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/scala-center.json b/new-api-details/organizations/scala-center.json index 460ebdf8..59a80063 100644 --- a/new-api-details/organizations/scala-center.json +++ b/new-api-details/organizations/scala-center.json @@ -20,7 +20,7 @@ ], "first_year": 2016, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "jvm", "scala", @@ -1224,6 +1224,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.187Z" + "generated_at": "2026-02-19T12:41:12.412Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/scummvm.json b/new-api-details/organizations/scummvm.json index 758a2207..b337571c 100644 --- a/new-api-details/organizations/scummvm.json +++ b/new-api-details/organizations/scummvm.json @@ -3,7 +3,7 @@ "slug": "scummvm", "name": "ScummVM", "category": "End user applications", - "description": "Adventure and RPG preservation project", + "description": "ScummVM is a game preservation project with a quickly growing code base since more than 20 years. Originally focused on 2D Point&Click adventure games, its scope widened in 2016 to RPG thanks to successful GSoC students and to 3D games in 2020 after the merge with its sister project, ResidualVM. The purpose is only to replace the game executable, not to enhance or replace the game assets.", "image_url": "https://summerofcode.withgoogle.com/media/org/scummvm/bnok4srtehdy3fbj-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/scummvm.webp", "logo_r2_url": null, @@ -18,10 +18,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "opengl", @@ -54,7 +55,8 @@ "year_2022": 3, "year_2023": 4, "year_2024": 2, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "students_by_year": { "year_2016": 3, @@ -66,7 +68,8 @@ "year_2022": 3, "year_2023": 4, "year_2024": 2, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "total_students": 34 }, @@ -733,13 +736,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/scummvm" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "admin@scummvm.org", "guide_url": "https://wiki.scummvm.org/index.php/GSoC_Application", - "ideas_url": "https://www.scummvm.org/gsoc-2025-ideas", + "ideas_url": "https://www.scummvm.org/gsoc-2026-ideas", "irc_channel": "https://discord.gg/4cDsMNtcpG", "mailing_list": "https://wiki.scummvm.org/index.php/Summer_of_Code/GSoC_Contact" }, @@ -747,7 +751,7 @@ "blog": "https://planet.scummvm.org/", "discord": "https://discord.gg/4cDsMNtcpG", "facebook": null, - "github": null, + "github": "https://github.com/scummvm/", "gitlab": null, "instagram": null, "linkedin": null, @@ -762,6 +766,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.197Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/society-for-arts-and-technology-sat.json b/new-api-details/organizations/society-for-arts-and-technology-sat.json index 9666e44c..39abae0b 100644 --- a/new-api-details/organizations/society-for-arts-and-technology-sat.json +++ b/new-api-details/organizations/society-for-arts-and-technology-sat.json @@ -15,7 +15,7 @@ ], "first_year": 2022, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "python", "javascript", @@ -357,6 +357,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.222Z" + "generated_at": "2026-02-19T12:41:12.412Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/software-and-computational-systems-lab-at-lmu-munich.json b/new-api-details/organizations/software-and-computational-systems-lab-at-lmu-munich.json index 96489b67..e5ea450e 100644 --- a/new-api-details/organizations/software-and-computational-systems-lab-at-lmu-munich.json +++ b/new-api-details/organizations/software-and-computational-systems-lab-at-lmu-munich.json @@ -17,7 +17,7 @@ ], "first_year": 2018, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "python", "javascript", @@ -395,6 +395,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.228Z" + "generated_at": "2026-02-19T12:41:12.412Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/sqlancer.json b/new-api-details/organizations/sqlancer.json index 3457cec1..c1e131f0 100644 --- a/new-api-details/organizations/sqlancer.json +++ b/new-api-details/organizations/sqlancer.json @@ -14,7 +14,7 @@ ], "first_year": 2023, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "java", "sql" @@ -216,6 +216,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.169Z" + "generated_at": "2026-02-19T12:41:12.412Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/st-jude-childrens-research-hospital.json b/new-api-details/organizations/st-jude-childrens-research-hospital.json index f70950a6..32822a4b 100644 --- a/new-api-details/organizations/st-jude-childrens-research-hospital.json +++ b/new-api-details/organizations/st-jude-childrens-research-hospital.json @@ -2,21 +2,24 @@ "id": "692251e753dd9d7326d33eb7", "slug": "st-jude-childrens-research-hospital", "name": "St. Jude Children's Research Hospital", - "category": "Programming languages", - "description": "Find cures. Saving children.", + "category": "Science and medicine", + "description": "St. Jude Children's Research Hospital is a non-profit research hospital dedicated to advancing cures and means of prevention for children with catastrophic diseases. With respect to Google Summer of Code, we're interested in building modern, open-source infrastructure upon which large-scale scientific analyses can be done (typically focused on bioinformatics or genomics specifically).", "image_url": "https://summerofcode.withgoogle.com/media/org/st-jude-childrens-research-hospital-ai/qnfe4pckkvrq5tfw-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/st-jude-childrens-research-hospital.webp", "logo_r2_url": null, "url": "https://stjude.org", "active_years": [ - 2025 + 2025, + 2026 ], "first_year": 2025, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "rust", - "WDL" + "WDL", + "python", + "simd" ], "topics": [ "programming languages", @@ -37,7 +40,8 @@ "year_2022": null, "year_2023": null, "year_2024": null, - "year_2025": 2 + "year_2025": 2, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -49,7 +53,8 @@ "year_2022": null, "year_2023": null, "year_2024": null, - "year_2025": 2 + "year_2025": 2, + "year_2026": null }, "total_students": 2 }, @@ -105,13 +110,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/st-jude-childrens-research-hospital-ai" - } + }, + "year_2026": null }, "first_time": true, "contact": { "email": "clay.mcleod@stjude.org", - "guide_url": "https://docs.google.com/document/d/1ze8OpsltCbAkksjmhd3hCeS6VDqAaolAhWAQQRJZBpc/edit?usp=sharing", - "ideas_url": "https://docs.google.com/document/d/1ze8OpsltCbAkksjmhd3hCeS6VDqAaolAhWAQQRJZBpc/edit?tab=t.0", + "guide_url": "https://gist.github.com/claymcleod/ee8e62831a4975cba2032d888bb52080", + "ideas_url": "https://gist.github.com/claymcleod/ee8e62831a4975cba2032d888bb52080", "irc_channel": "https://join.slack.com/t/rust-omics/shared_invite/zt-30ntw2bpi-2hollhtHX6Zt8UvYeP_KcQ", "mailing_list": null }, @@ -119,7 +125,7 @@ "blog": null, "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/stjude-rust-labs", "gitlab": null, "instagram": null, "linkedin": null, @@ -134,6 +140,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.285Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/stdlib.json b/new-api-details/organizations/stdlib.json index 4d097cac..d1fa52c0 100644 --- a/new-api-details/organizations/stdlib.json +++ b/new-api-details/organizations/stdlib.json @@ -3,17 +3,18 @@ "slug": "stdlib", "name": "stdlib", "category": "Science and medicine", - "description": "The fundamental numerical library for JavaScript", + "description": "stdlib is a standard library for JavaScript and Node.js with an emphasis on numerical and scientific computing applications. The project aims to provide functionality similar to NumPy and SciPy for use in JavaScript environments with special consideration for the unique constraints and opportunities afforded by the Web. stdlib is primarily written in JavaScript, C, and Fortran.", "image_url": "https://summerofcode.withgoogle.com/media/org/stdlib/7ornclj6w5zz9fca-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/stdlib.webp", "logo_r2_url": null, "url": "https://stdlib.io", "active_years": [ 2024, - 2025 + 2025, + 2026 ], "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "c", @@ -42,7 +43,8 @@ "year_2022": null, "year_2023": null, "year_2024": 4, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -54,7 +56,8 @@ "year_2022": null, "year_2023": null, "year_2024": 4, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "total_students": 9 }, @@ -268,21 +271,22 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/stdlib" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": null, "guide_url": "https://github.com/stdlib-js/google-summer-of-code", "ideas_url": "https://github.com/stdlib-js/google-summer-of-code/blob/main/ideas.md", - "irc_channel": "https://gitter.im/stdlib-js/stdlib", + "irc_channel": "https://stdlib.zulipchat.com", "mailing_list": null }, "social": { - "blog": null, + "blog": "https://blog.stdlib.io", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/stdlib-js/stdlib", "gitlab": null, "instagram": null, "linkedin": null, @@ -297,6 +301,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.631Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/stear-group.json b/new-api-details/organizations/stear-group.json index 25c2b612..a277e1b8 100644 --- a/new-api-details/organizations/stear-group.json +++ b/new-api-details/organizations/stear-group.json @@ -3,7 +3,7 @@ "slug": "stear-group", "name": "Ste||ar group", "category": "Science and medicine", - "description": "Shaping a Scalable Future", + "description": "The STE||AR Group is an international team of researchers who understand that a new approach to parallel computation is needed. Our work is crafted around the idea that we need to invent new ways to more efficiently use the resources that we have and use the knowledge that we gain to help guide the creation of the machines of tomorrow. This organization aims to support, coordinate, and distribute research done in this area by creating a marketplace of ideas where concepts are debated and solutions are transparently developed.", "image_url": "https://summerofcode.withgoogle.com/media/org/stear-group/sebxbtinyakvrevb-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/stear-group.webp", "logo_r2_url": null, @@ -17,10 +17,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "c++", @@ -72,7 +73,8 @@ "year_2022": 4, "year_2023": 5, "year_2024": 4, - "year_2025": 6 + "year_2025": 6, + "year_2026": null }, "students_by_year": { "year_2016": 4, @@ -84,7 +86,8 @@ "year_2022": 4, "year_2023": 5, "year_2024": 4, - "year_2025": 6 + "year_2025": 6, + "year_2026": null }, "total_students": 38 }, @@ -836,21 +839,22 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/stear-group" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "https://mail.cct.lsu.edu/mailman/listinfo/hpx-users", "guide_url": "https://github.com/STEllAR-GROUP/hpx/wiki/GSoC-Submission-Template", - "ideas_url": "https://github.com/STEllAR-GROUP/hpx/wiki/Google-Summer-of-Code-%28GSoC%29-2025#2025-hpx-project-ideas", - "irc_channel": "https://discord.com/invite/Tn9QuzVjvy", + "ideas_url": "https://github.com/STEllAR-GROUP/hpx/wiki/Google-Summer-of-Code-(GSoC)-2026#2026-hpx-project-ideas", + "irc_channel": "https://github.com/STEllAR-GROUP/hpx/blob/master/.github/SUPPORT.md", "mailing_list": "https://mail.cct.lsu.edu/mailman/listinfo/hpx-users" }, "social": { "blog": "https://github.com/STEllAR-GROUP/hpx", "discord": "https://discord.com/invite/Tn9QuzVjvy", "facebook": null, - "github": null, + "github": "https://github.com/STEllAR-GROUP/hpx", "gitlab": null, "instagram": null, "linkedin": null, @@ -865,6 +869,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.290Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/stichting-su2.json b/new-api-details/organizations/stichting-su2.json index b1f79baf..27d96b19 100644 --- a/new-api-details/organizations/stichting-su2.json +++ b/new-api-details/organizations/stichting-su2.json @@ -3,17 +3,18 @@ "slug": "stichting-su2", "name": "Stichting SU2", "category": "Science and medicine", - "description": "Computational Fluid Dynamics and Optimization", + "description": "Computational analysis tools have revolutionized the way we design engineering systems as a society, but most established codes are proprietary, unavailable, or prohibitively expensive for many users. The SU2 Foundation will change this, making multiphysics analysis and design optimization software free and publicly available, in a single place, without restriction on who can contribute to its creation and development.\nThe SU2 Foundation is an educational and scientific not-for-profit that will bring together computational scientists and engineers through the SU2 Foundation platform. The SU2 Foundation develops, maintains, and supports a collection of C++ and Python-based software tools for performing Partial Differential Equation (PDE) analysis and solving PDE-constrained optimization problems. Through maintaining and improving the quality of software, documentation, and tutorials, and by growing the community of users and developers, the SU2 Foundation will ensure quality improvement of multiphysics software tools, accessible by everyone, for continued innovation in the engineering sciences.", "image_url": "https://summerofcode.withgoogle.com/media/org/stichting-su2/vexbqtmew7yd92hp-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/stichting-su2.webp", "logo_r2_url": null, "url": "https://su2foundation.org", "active_years": [ 2024, - 2025 + 2025, + 2026 ], "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -39,7 +40,8 @@ "year_2022": null, "year_2023": null, "year_2024": 3, - "year_2025": 4 + "year_2025": 4, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -51,7 +53,8 @@ "year_2022": null, "year_2023": null, "year_2024": 3, - "year_2025": 4 + "year_2025": 4, + "year_2026": null }, "total_students": 7 }, @@ -208,13 +211,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/stichting-su2" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": null, - "guide_url": "https://www.cfd-online.com/Forums/su2-news-announcements/254365-gsoc-applications-how-apply.html", - "ideas_url": "https://www.cfd-online.com/Forums/su2-news-announcements/259420-gsoc-2025-projects.html", + "guide_url": "https://su2code.github.io/gsoc/Participation/", + "ideas_url": "https://su2code.github.io/gsoc/Introduction/", "irc_channel": "https://su2devteam.slack.com", "mailing_list": "https://www.cfd-online.com/Forums/su2/" }, @@ -222,7 +226,7 @@ "blog": "https://www.cfd-online.com/Forums/su2/", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/su2code/SU2", "gitlab": null, "instagram": null, "linkedin": null, @@ -237,6 +241,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.293Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/submitty.json b/new-api-details/organizations/submitty.json index d7030d73..402be71e 100644 --- a/new-api-details/organizations/submitty.json +++ b/new-api-details/organizations/submitty.json @@ -3,7 +3,7 @@ "slug": "submitty", "name": "Submitty", "category": "End user applications", - "description": "Homework Autograding and Course Management Tools", + "description": "Submitty is an open source programming assignment submission system with secure and automated testing and grading, efficient manual TA/instructor grading, and additional tools for overall course management and communication between students and instructional staff. Submitty was launched by the Rensselaer Center for Open Source Software (RCOS) in 2014.\n\nhttps://github.com/Submitty/\n\nKey Features\n\n+ Secure testing of many programming languages: Python, C/C++, Java, etc.\n+ Customizable automated grading with immediate feedback to students, and optional hidden or randomized tests.\n+ Advanced grading tools: static analysis, unit testing, code coverage, memory debuggers, networked assignments, custom Docker containers, and screenshots/GIFs of graphics programs.\n+ Individual or team assignments submitted by drag-and-drop or version control.\n+ Correct mistakes through multiple submissions, flexible ``late day’’ policy.\n+ Interface for complementary instructor/TA manual grading, regrade requests, anonymized peer grading.\n+ Instructor bulk upload of scanned .pdf exams, QR code name matching, pdf annotation.\n+ Supports course material hosting, term grades spreadsheet, plagiarism detection.\n+ Integrated discussion forum, email announcements, lecture polling, office hours queue, and student activity dashboard.\n+ Scales to multiple courses, thousands of students, multiple instructors and TAs per course.\n+ Open-source, free to use, install on your own hardware, or VPS.\n\nSubmitty has been used at a half dozen other universities and we aim to grow to more users and developers. The courses using Submitty cover the undergraduate and graduate curriculum from introductory programming courses, intermediate and advanced theory courses, popular junior/senior electives with team projects and written reports, and specialized graduate courses.\n\nWe regularly present our work at the annual ACM SIGCSE conference.", "image_url": "https://summerofcode.withgoogle.com/media/org/submitty/jlpoxlj2rvpot6zv-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/submitty.webp", "logo_r2_url": null, @@ -14,11 +14,12 @@ 2020, 2022, 2023, - 2024 + 2024, + 2026 ], "first_year": 2018, - "last_year": 2024, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ "python", "c++", @@ -52,7 +53,8 @@ "year_2022": 3, "year_2023": 3, "year_2024": 4, - "year_2025": null + "year_2025": null, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -64,7 +66,8 @@ "year_2022": 3, "year_2023": 3, "year_2024": 4, - "year_2025": null + "year_2025": null, + "year_2026": null }, "total_students": 19 }, @@ -462,13 +465,14 @@ ], "projects_url": "https://summerofcode.withgoogle.com/archive/2024/organizations/submitty/" }, - "year_2025": null + "year_2025": null, + "year_2026": null }, "first_time": false, "contact": { "email": "submitty-admin@googlegroups.com", - "guide_url": null, - "ideas_url": null, + "guide_url": "https://submitty.org/developer/google_summer_of_code", + "ideas_url": "https://submitty.org/developer/getting_started/project_ideas", "irc_channel": "https://submitty.zulipchat.com/join/7keujybzs4ismpedptpqsqpv/", "mailing_list": "https://submitty.org/index/contact" }, @@ -476,7 +480,7 @@ "blog": null, "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/Submitty", "gitlab": null, "instagram": null, "linkedin": null, @@ -491,6 +495,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.301Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/sugar-labs.json b/new-api-details/organizations/sugar-labs.json index bfa6e4c9..e26585f0 100644 --- a/new-api-details/organizations/sugar-labs.json +++ b/new-api-details/organizations/sugar-labs.json @@ -3,7 +3,7 @@ "slug": "sugar-labs", "name": "Sugar Labs", "category": "End user applications", - "description": "Learning software for children", + "description": "Sugar is an activity-focused, free/libre open-source software (FLOSS) learning platform for children. Collaboration, reflection, and discovery are integrated directly into the user interface. Through Sugar's clarity of design, children and teachers have the opportunity to use computers on their own terms. Students can reshape, reinvent, and reapply both software and content into powerful learning activities. Sugar's focus on sharing, constructive criticism, and exploration is grounded in the culture of free software and the ideals of learn-by-doing \"Constructionism\".", "image_url": "https://summerofcode.withgoogle.com/media/org/sugar-labs/pgbt7fp6gr6lhihd-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/sugar-labs.webp", "logo_r2_url": null, @@ -18,10 +18,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -35,7 +36,8 @@ "typescript", "vue.js", "python gtk", - "LLM" + "LLM", + "javascipt" ], "topics": [ "education", @@ -65,7 +67,8 @@ "year_2022": 9, "year_2023": 8, "year_2024": 11, - "year_2025": 11 + "year_2025": 11, + "year_2026": null }, "students_by_year": { "year_2016": 5, @@ -77,7 +80,8 @@ "year_2022": 9, "year_2023": 8, "year_2024": 11, - "year_2025": 11 + "year_2025": 11, + "year_2026": null }, "total_students": 85 }, @@ -1830,21 +1834,22 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/sugar-labs" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "walter@sugarlabs.org", "guide_url": "https://github.com/sugarlabs/GSoC", - "ideas_url": "https://github.com/sugarlabs/GSoC/blob/master/Ideas-2025.md", - "irc_channel": "https://discord.com/channels/1078051575580336249/1078051576284975226", + "ideas_url": "https://github.com/sugarlabs/GSoC/blob/master/Ideas-2026.md", + "irc_channel": "https://matrix.to/#/#sugar:matrix.org", "mailing_list": "https://lists.sugarlabs.org/listinfo/sugar-devel" }, "social": { "blog": "https://matrix.to/#/#sugar:matrix.org", "discord": "https://discord.com/channels/1078051575580336249/1078051576284975226", "facebook": null, - "github": null, + "github": "https://github.com/sugarlabs", "gitlab": null, "instagram": null, "linkedin": null, @@ -1859,6 +1864,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.303Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/sw360.json b/new-api-details/organizations/sw360.json index b7c0940e..7756a539 100644 --- a/new-api-details/organizations/sw360.json +++ b/new-api-details/organizations/sw360.json @@ -3,16 +3,17 @@ "slug": "sw360", "name": "SW360", "category": "Web", - "description": "Software supply chain management done right !", + "description": "SW360 is an open source software project licensed under the EPL-2.0 that provides both a web application and a repository to collect, organize and make available information about software components. It establishes a central hub for software components in an organization.", "image_url": "https://summerofcode.withgoogle.com/media/org/sw360/scylub8cx6f9mkzk-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/sw360.webp", "logo_r2_url": null, "url": "https://eclipse.dev/sw360/", "active_years": [ - 2025 + 2025, + 2026 ], "first_year": 2025, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "java", @@ -40,7 +41,8 @@ "year_2022": null, "year_2023": null, "year_2024": null, - "year_2025": 2 + "year_2025": 2, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -52,7 +54,8 @@ "year_2022": null, "year_2023": null, "year_2024": null, - "year_2025": 2 + "year_2025": 2, + "year_2026": null }, "total_students": 2 }, @@ -112,21 +115,22 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/sw360" - } + }, + "year_2026": null }, "first_time": true, "contact": { "email": null, "guide_url": "https://eclipse.dev/sw360/docs/development/", - "ideas_url": "https://eclipse.dev/sw360/gsoc/gsoc-projects-2025/", - "irc_channel": "https://matrix.to/#/#technology.sw360-general:matrix.eclipse.org", + "ideas_url": "https://eclipse.dev/sw360/gsoc/gsoc-projects-2026/", + "irc_channel": "https://sw360chat.slack.com/", "mailing_list": "sw360-dev@eclipse.org" }, "social": { "blog": "https://eclipse.dev/sw360/", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/eclipse-sw360/sw360", "gitlab": null, "instagram": null, "linkedin": null, @@ -141,6 +145,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.173Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/swift.json b/new-api-details/organizations/swift.json index f48c20e7..ad31eb61 100644 --- a/new-api-details/organizations/swift.json +++ b/new-api-details/organizations/swift.json @@ -3,7 +3,7 @@ "slug": "swift", "name": "Swift", "category": "Programming languages", - "description": "Fast, safe, and expressive programming language", + "description": "Swift is a general-purpose programming language built using a modern approach to safety, performance, and software design patterns.\n\nThe goal of the Swift project is to create the best available language for uses ranging from systems programming, to mobile and desktop apps, scaling up to cloud services. Most importantly, Swift is designed to make writing and maintaining correct programs easier for the developer.", "image_url": "https://summerofcode.withgoogle.com/media/org/swift/moutmu5fv3rozvrz-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/swift.webp", "logo_r2_url": null, @@ -16,10 +16,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "llvm", @@ -58,7 +59,8 @@ "year_2022": 5, "year_2023": 3, "year_2024": 4, - "year_2025": 4 + "year_2025": 4, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -70,7 +72,8 @@ "year_2022": 5, "year_2023": 3, "year_2024": 4, - "year_2025": 4 + "year_2025": 4, + "year_2026": null }, "total_students": 24 }, @@ -607,13 +610,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/swift" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "core-team@swift.org", "guide_url": "https://www.swift.org/contributing/", - "ideas_url": "https://www.swift.org/gsoc2025/", + "ideas_url": "https://www.swift.org/gsoc2026/", "irc_channel": null, "mailing_list": "https://forums.swift.org" }, @@ -621,7 +625,7 @@ "blog": "https://swift.org/blog/", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/apple/swift", "gitlab": null, "instagram": null, "linkedin": null, @@ -636,6 +640,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.307Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/sympy.json b/new-api-details/organizations/sympy.json index d1c971dd..4e6efd88 100644 --- a/new-api-details/organizations/sympy.json +++ b/new-api-details/organizations/sympy.json @@ -3,7 +3,7 @@ "slug": "sympy", "name": "SymPy", "category": "Science and medicine", - "description": "SymPy is a Python library for symbolic mathematics", + "description": "SymPy is a Python library for symbolic mathematics. It aims to become a full-featured computer algebra system (CAS) while keeping the code as simple as possible in order to be comprehensible and easily extensible. SymPy is written entirely in Python.", "image_url": "https://summerofcode.withgoogle.com/media/org/sympy/iz2tcxocrknp1sm0-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/sympy.webp", "logo_r2_url": null, @@ -18,10 +18,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -50,7 +51,8 @@ "year_2022": 3, "year_2023": 5, "year_2024": 5, - "year_2025": 6 + "year_2025": 6, + "year_2026": null }, "students_by_year": { "year_2016": 7, @@ -62,7 +64,8 @@ "year_2022": 3, "year_2023": 5, "year_2024": 5, - "year_2025": 6 + "year_2025": 6, + "year_2026": null }, "total_students": 63 }, @@ -1274,7 +1277,8 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/sympy" - } + }, + "year_2026": null }, "first_time": false, "contact": { @@ -1288,7 +1292,7 @@ "blog": "https://planet.sympy.org/", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/sympy/sympy", "gitlab": null, "instagram": null, "linkedin": null, @@ -1303,6 +1307,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.308Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/synfig.json b/new-api-details/organizations/synfig.json index d955786c..2b92b687 100644 --- a/new-api-details/organizations/synfig.json +++ b/new-api-details/organizations/synfig.json @@ -3,7 +3,7 @@ "slug": "synfig", "name": "Synfig", "category": "Media", - "description": "Open-source 2D animation software", + "description": "Synfig is a 2D open-source animation software. It is capable to produce vector artwork and also can work with bitmap images.\n\nThe main concept of Synfig is \"tweening\" - you can define object positions or shapes of vector objects at certain points of time and program will interpolate in-between frames automatically. You can also use bones to control your animation on higher level.\n\nWith Synfig you can easily create motion graphics and cut-out animations for product explanation videos, tutorial videos, and more.", "image_url": "https://summerofcode.withgoogle.com/media/org/synfig/ohcj3eigerib4jym-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/synfig.webp", "logo_r2_url": null, @@ -15,10 +15,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2019, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "c++", @@ -46,7 +47,8 @@ "year_2022": 2, "year_2023": 2, "year_2024": 2, - "year_2025": 2 + "year_2025": 2, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -58,7 +60,8 @@ "year_2022": 2, "year_2023": 2, "year_2024": 2, - "year_2025": 2 + "year_2025": 2, + "year_2026": null }, "total_students": 11 }, @@ -334,21 +337,22 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/synfig" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "contact@synfig.org", - "guide_url": "https://synfig-docs-dev.readthedocs.io/en/latest/gsoc/2025/getting-started.html", - "ideas_url": "https://github.com/synfig/synfig-docs-dev/blob/master/docs/gsoc/2025/ideas.rst", + "guide_url": "https://synfig-docs-dev.readthedocs.io/en/latest/gsoc/2026/getting-started.html", + "ideas_url": "https://github.com/synfig/synfig-docs-dev/blob/master/docs/gsoc/2026/ideas.rst", "irc_channel": null, - "mailing_list": "https://forums.synfig.org/t/gsoc-2025-google-summer-of-code-2025/16119" + "mailing_list": "https://forums.synfig.org/t/google-summer-of-code-2026/16911" }, "social": { "blog": "https://www.synfig.org/news/", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/synfig/synfig", "gitlab": null, "instagram": null, "linkedin": null, @@ -363,6 +367,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.313Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/tardis-rt-collaboration.json b/new-api-details/organizations/tardis-rt-collaboration.json index 980cd120..f7d62161 100644 --- a/new-api-details/organizations/tardis-rt-collaboration.json +++ b/new-api-details/organizations/tardis-rt-collaboration.json @@ -3,7 +3,7 @@ "slug": "tardis-rt-collaboration", "name": "TARDIS RT Collaboration", "category": "Science and medicine", - "description": "Exploring supernovae made easy", + "description": "TARDIS is a tool that creates synthetic observations (spectra) for exploding stars (supernovae). \n\nA supernova marks the brilliant death throes of a star, during which it outshines its entire galaxy. Through their explosive stellar death, supernovae enrich the Universe with new elements necessary for the formation of planets and life as we know it. From the iron in your blood to the silicon in your laptop, supernovae are responsible for producing many important elements from the primordial hydrogen and helium left over from the Big Bang.\n\nTARDIS provides a link between theory and observations: by creating synthetic spectra from theoretical assumptions and comparing these to observations, we can both interpret data and test models for why, when and how supernova explosions occur.\nWe, the community around TARDIS, are interested in combining astronomy, computer science, statistics and modern software design to build a tool that is useful both in research and teaching alike (with supporting documentation that would, in theory, allow anyone to recreate the project from scratch). Please join us on https://gitter.im/tardis-sn/gsoc.", "image_url": "https://summerofcode.withgoogle.com/media/org/tardis-rt-collaboration/0ocxr3jw3fwdloye-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/tardis-rt-collaboration.webp", "logo_r2_url": null, @@ -12,10 +12,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2022, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -43,7 +44,8 @@ "year_2022": 4, "year_2023": 6, "year_2024": 3, - "year_2025": 2 + "year_2025": 2, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -55,7 +57,8 @@ "year_2022": 4, "year_2023": 6, "year_2024": 3, - "year_2025": 2 + "year_2025": 2, + "year_2026": null }, "total_students": 15 }, @@ -366,7 +369,8 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/tardis-rt-collaboration" - } + }, + "year_2026": null }, "first_time": false, "contact": { @@ -380,7 +384,7 @@ "blog": null, "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/tardis-sn", "gitlab": null, "instagram": null, "linkedin": null, @@ -395,6 +399,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.321Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/the-apache-software-foundation.json b/new-api-details/organizations/the-apache-software-foundation.json index 513835a6..9b00bfd1 100644 --- a/new-api-details/organizations/the-apache-software-foundation.json +++ b/new-api-details/organizations/the-apache-software-foundation.json @@ -22,7 +22,7 @@ ], "first_year": 2016, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "python", "javascript", @@ -4935,6 +4935,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.336Z" + "generated_at": "2026-02-19T12:41:12.412Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/the-freebsd-project.json b/new-api-details/organizations/the-freebsd-project.json index fc128bd7..ffca47ec 100644 --- a/new-api-details/organizations/the-freebsd-project.json +++ b/new-api-details/organizations/the-freebsd-project.json @@ -3,7 +3,7 @@ "slug": "the-freebsd-project", "name": "The FreeBSD Project", "category": "Operating systems", - "description": "An OS for servers to embedded devices", + "description": "FreeBSD is an operating system renowned for its advanced networking capabilities, robust security features, and exceptional performance. It is used across a wide spectrum of computing environments, ranging from the most heavily trafficked websites to desktop computers and embedded devices. Our source code is the foundation for well-known products such as the Sony PlayStation, Junos (the operating system powering Juniper routers), and elements of Apple's macOS. Additionally, FreeBSD runs on servers at Netflix that stream terabits of video content every second.\n\nThe FreeBSD Project has a rich history spanning over 30 years, originating in 1993 but rooted in work from the Berkeley Computer Systems Research Group dating back to 1978. Over the years, our codebase has undergone continuous development and played an important role in developing essential software components used by numerous open-source projects. Examples include bsnmp, jemalloc, libarchive, and OpenPAM.\n\nFreeBSD maintains an active mentoring program to welcome new developers into our vibrant community. With approximately 300 developers with write access to our repositories and numerous other contributors, our community thrives on collaboration and shared expertise. Many of our past Google Summer of Code contributors have transitioned into becoming key members of the FreeBSD development team.\n\nCommunication within the FreeBSD community occurs through various channels, including mailing lists, forums, blogs, IRC channels, and user groups, all listed on our main website.", "image_url": "https://summerofcode.withgoogle.com/media/org/the-freebsd-project/4jmspor6mcto9wti-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-freebsd-project.webp", "logo_r2_url": null, @@ -18,10 +18,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "c", @@ -60,7 +61,8 @@ "year_2022": 7, "year_2023": 6, "year_2024": 9, - "year_2025": 12 + "year_2025": 12, + "year_2026": null }, "students_by_year": { "year_2016": 12, @@ -72,7 +74,8 @@ "year_2022": 7, "year_2023": 6, "year_2024": 9, - "year_2025": 12 + "year_2025": 12, + "year_2026": null }, "total_students": 71 }, @@ -1541,7 +1544,8 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/the-freebsd-project" - } + }, + "year_2026": null }, "first_time": false, "contact": { @@ -1570,6 +1574,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.347Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/the-honeynet-project.json b/new-api-details/organizations/the-honeynet-project.json index 756d5066..99845eca 100644 --- a/new-api-details/organizations/the-honeynet-project.json +++ b/new-api-details/organizations/the-honeynet-project.json @@ -3,7 +3,7 @@ "slug": "the-honeynet-project", "name": "The Honeynet Project", "category": "Security", - "description": "Honeypots and Threat Intelligence R&D", + "description": "The Honeynet Project is a leading international 501c3 non-profit security research organization, dedicated to investigating the latest attacks and developing open source security tools to improve Internet security. With Chapters around the world, our volunteers have contributed to fight against malware (such as Conficker), discovering new attacks and creating security tools used by businesses and government agencies all over the world.\n\nThe Honeynet Project uses GSoC as a incubator for new R&D projects, and to recruit active new members.", "image_url": "https://summerofcode.withgoogle.com/media/org/the-honeynet-project/pvycoc21p2ketj7b-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-honeynet-project.webp", "logo_r2_url": null, @@ -18,10 +18,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -74,7 +75,8 @@ "year_2022": 6, "year_2023": 6, "year_2024": 9, - "year_2025": 9 + "year_2025": 9, + "year_2026": null }, "students_by_year": { "year_2016": 11, @@ -86,7 +88,8 @@ "year_2022": 6, "year_2023": 6, "year_2024": 9, - "year_2025": 9 + "year_2025": 9, + "year_2026": null }, "total_students": 101 }, @@ -2047,13 +2050,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/the-honeynet-project" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "project@honeynet.org", "guide_url": "https://www.honeynet.org/gsoc/", - "ideas_url": "https://www.honeynet.org/gsoc/gsoc-2025/google-summer-of-code-2025-project-ideas/", + "ideas_url": "https://www.honeynet.org/gsoc/gsoc-2026/google-summer-of-code-2026-project-ideas/", "irc_channel": "https://discord.gg/68B8Ru5fSU", "mailing_list": "https://public.honeynet.org/mailman/listinfo/gsoc" }, @@ -2061,7 +2065,7 @@ "blog": "https://www.honeynet.org/blog/", "discord": "https://discord.gg/68B8Ru5fSU", "facebook": null, - "github": null, + "github": "https://github.com/honeynet", "gitlab": null, "instagram": null, "linkedin": null, @@ -2076,6 +2080,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.351Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/the-jpf-team.json b/new-api-details/organizations/the-jpf-team.json index d0160205..2a4ce693 100644 --- a/new-api-details/organizations/the-jpf-team.json +++ b/new-api-details/organizations/the-jpf-team.json @@ -3,7 +3,7 @@ "slug": "the-jpf-team", "name": "The JPF team", "category": "Programming languages", - "description": "JPF is a Java VM used to verify and debug software", + "description": "The Java Pathfinder (JPF) project was initially conceived and developed at NASA Ames Research Center in 1999. JPF was open sourced in April 2005 as one of the first ongoing NASA development projects to date, and it is now released under the Apache license, 2.0. JPF is an extensible Java virtual machine written in Java itself. It is used to create a variety of verification and debugging tools, ranging from software model checkers to test case generators using symbolic execution. JPF is a research platform and a production tool at the same time. Although JPF has major contributions from companies and government agencies, our main user community is academic - there are ongoing collaborations with more than 20 universities worldwide. The JPF team for GSoC 2024 includes researchers from NASA Ames Research Center, KTH Royal Institute of Technology - Sweden, Carnegie Mellon University, Boise State University, University of Minnesota, Charles University - Czech Republic, and Singapore University of Technology and Design.\n\nJPF is designed to be highly extensible. There are well-defined extension mechanisms, directory structures and build procedures, which keep the core relatively stable and provide suitable, well-separated testbeds for new ideas and alternative implementations. As a consequence, we host a number of such extension projects on our own, public JPF server, together with a Wiki that provides a central location for learning about, obtaining, and contributing to JPF.\n\nJPF has been used for a variety of application domains and research topics such as verification of multi-threaded applications, graphical user interfaces, networking, and distributed applications. In addition to its continued presence in academia, JPF has matured enough to support verification of production code and frameworks such as Android. JPF is constantly being extended with support for verification of new types of correctness properties and for new types of application domains.", "image_url": "https://summerofcode.withgoogle.com/media/org/the-jpf-team-hg/rvqtnz4hyojrfgvw.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-jpf-team.webp", "logo_r2_url": null, @@ -18,10 +18,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "android", @@ -59,7 +60,8 @@ "year_2022": 2, "year_2023": 2, "year_2024": 3, - "year_2025": 3 + "year_2025": 3, + "year_2026": null }, "students_by_year": { "year_2016": 10, @@ -71,7 +73,8 @@ "year_2022": 2, "year_2023": 2, "year_2024": 3, - "year_2025": 3 + "year_2025": 3, + "year_2026": null }, "total_students": 43 }, @@ -1008,13 +1011,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/the-jpf-team-hg" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "jpf.gsoc@gmail.com", "guide_url": "https://github.com/javapathfinder/jpf-core/wiki/JPF-Google-Summer-of-Code-2024", - "ideas_url": "https://github.com/javapathfinder/jpf-core/wiki/GSoC-2025-Project-Ideas", + "ideas_url": "https://github.com/javapathfinder/jpf-core/wiki/GSoC-2026-Project-Ideas", "irc_channel": "https://discord.gg/sX4YZUVHK7", "mailing_list": "https://groups.google.com/g/java-pathfinder" }, @@ -1022,7 +1026,7 @@ "blog": null, "discord": "https://discord.gg/sX4YZUVHK7", "facebook": null, - "github": "https://github.com/javapathfinder/jpf-core/wiki", + "github": "https://github.com/javapathfinder/jpf-core", "gitlab": null, "instagram": null, "linkedin": null, @@ -1037,6 +1041,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.355Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/the-julia-language.json b/new-api-details/organizations/the-julia-language.json index 4e043c2b..04201aa3 100644 --- a/new-api-details/organizations/the-julia-language.json +++ b/new-api-details/organizations/the-julia-language.json @@ -3,7 +3,7 @@ "slug": "the-julia-language", "name": "The Julia Language", "category": "Science and medicine", - "description": "A fresh approach to technical computing", + "description": "The Julia Language is an open-source, high level, and dynamic language built to be easy to use like Python while having speed near C++. As an umbrella organization, we house projects related to core Julia (the language) as well as packages from the broader Julia ecosystem.", "image_url": "https://summerofcode.withgoogle.com/media/org/the-julia-language/49fck3n7j5aqnpwu-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-julia-language.webp", "logo_r2_url": null, @@ -17,10 +17,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "c", @@ -69,7 +70,8 @@ "year_2022": 19, "year_2023": 14, "year_2024": 19, - "year_2025": 14 + "year_2025": 14, + "year_2026": null }, "students_by_year": { "year_2016": 10, @@ -81,7 +83,8 @@ "year_2022": 19, "year_2023": 14, "year_2024": 19, - "year_2025": 14 + "year_2025": 14, + "year_2026": null }, "total_students": 136 }, @@ -2750,13 +2753,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/the-julia-language" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "jsoc@julialang.org", "guide_url": "https://julialang.org/jsoc/guidelines/", - "ideas_url": "https://julialang.org/jsoc/projects/", + "ideas_url": "https://julialang.org/jsoc/project", "irc_channel": "https://julialang.org/slack/", "mailing_list": "https://discourse.julialang.org" }, @@ -2764,7 +2768,7 @@ "blog": "https://julialang.org/blog/", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/JuliaLang/julia", "gitlab": null, "instagram": null, "linkedin": null, @@ -2779,6 +2783,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.358Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/the-libreswan-project.json b/new-api-details/organizations/the-libreswan-project.json index 6431ac8a..40006187 100644 --- a/new-api-details/organizations/the-libreswan-project.json +++ b/new-api-details/organizations/the-libreswan-project.json @@ -2,8 +2,8 @@ "id": "692251e953dd9d7326d33ed3", "slug": "the-libreswan-project", "name": "The Libreswan Project", - "category": "Infrastructure and cloud", - "description": "Encrypting the Internet with IKE / IPsec", + "category": "Security", + "description": "Libreswan implements the IKE and IPsec standards for VPN. These standards have been created and are still maintained at the Internet Engineering Task Force (IETF) in the IPsecME Working Group. Libreswan is used as a remote access VPN as well as site-to-site and cloud encryption.", "image_url": "https://summerofcode.withgoogle.com/media/org/the-libreswan-project/k7boxaxvirkfj1ti-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-libreswan-project.webp", "logo_r2_url": null, @@ -14,11 +14,12 @@ 2019, 2020, 2021, - 2022 + 2022, + 2026 ], "first_year": 2017, - "last_year": 2022, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ "c", "python", @@ -30,7 +31,9 @@ "kvm", "namespaces", "shell", - "RFCs" + "RFCs", + "kernel", + "libevent" ], "topics": [ "vpn", @@ -54,7 +57,8 @@ "year_2022": 0, "year_2023": null, "year_2024": null, - "year_2025": null + "year_2025": null, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -66,7 +70,8 @@ "year_2022": 0, "year_2023": null, "year_2024": null, - "year_2025": null + "year_2025": null, + "year_2026": null }, "total_students": 8 }, @@ -293,21 +298,22 @@ }, "year_2023": null, "year_2024": null, - "year_2025": null + "year_2025": null, + "year_2026": null }, "first_time": false, "contact": { "email": "gsoc@libreswan.org", - "guide_url": null, - "ideas_url": null, - "irc_channel": "https://meet.google.com", + "guide_url": "https://github.com/libreswan/libreswan/wiki/GSoC-Contributor-Guidance", + "ideas_url": "https://github.com/libreswan/libreswan/wiki/GSoC-2026-Code-Project-Ideas", + "irc_channel": "https://web.libera.chat/#libreswan", "mailing_list": "swan@lists.libreswan.org" }, "social": { "blog": null, "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/libreswan/libreswan/", "gitlab": null, "instagram": null, "linkedin": null, @@ -322,6 +328,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.363Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/the-linux-foundation.json b/new-api-details/organizations/the-linux-foundation.json index 8ff74e65..34a44bda 100644 --- a/new-api-details/organizations/the-linux-foundation.json +++ b/new-api-details/organizations/the-linux-foundation.json @@ -3,7 +3,7 @@ "slug": "the-linux-foundation", "name": "The Linux Foundation", "category": "Operating systems", - "description": "Non-profit consortium fostering growth of Linux", + "description": "The Linux Foundation is a non-profit consortium dedicated to fostering the growth of Linux. Founded in 2007 as a merger of the former Free Standards Group (FSG) and the former Open Source Developer Lab (OSDL), the LF sponsors the work of Linux creator Linus Torvalds and is supported by leading Linux and open source companies and developers from around the world. The Linux Foundation promotes, protects and standardizes Linux by providing unified resources and services needed for open source to successfully compete with closed platforms. For more see our [About page](https://www.linuxfoundation.org/about/). All software produced by us is free software published under OSI-approved licenses. See project ideas page for the license used by each project.", "image_url": "https://summerofcode.withgoogle.com/media/org/the-linux-foundation/ydeu9rliawhe6of9-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-linux-foundation.webp", "logo_r2_url": null, @@ -18,10 +18,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "c", @@ -59,7 +60,8 @@ "year_2022": 14, "year_2023": 11, "year_2024": 19, - "year_2025": 21 + "year_2025": 21, + "year_2026": null }, "students_by_year": { "year_2016": 11, @@ -71,7 +73,8 @@ "year_2022": 14, "year_2023": 11, "year_2024": 19, - "year_2025": 21 + "year_2025": 21, + "year_2026": null }, "total_students": 125 }, @@ -2717,21 +2720,22 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/the-linux-foundation" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "till@linux.com", - "guide_url": "https://wiki.linuxfoundation.org/gsoc/google-summer-code-2025", - "ideas_url": "https://wiki.linuxfoundation.org/gsoc/google-summer-code-2025", - "irc_channel": "https://wiki.linuxfoundation.org/gsoc/google-summer-code-2025#contact_us", - "mailing_list": "https://wiki.linuxfoundation.org/gsoc/google-summer-code-2025#contact_us" + "guide_url": "https://github.com/LinuxFoundationGSoC/ProjectIdeas/wiki/Google-Summer-of-Code-2026", + "ideas_url": "https://github.com/LinuxFoundationGSoC/ProjectIdeas/wiki/Google-Summer-of-Code-2026", + "irc_channel": "https://github.com/LinuxFoundationGSoC/ProjectIdeas/wiki/Google-Summer-of-Code-2026#contact-us", + "mailing_list": "https://github.com/LinuxFoundationGSoC/ProjectIdeas/wiki/Google-Summer-of-Code-2026#contact-us" }, "social": { "blog": "https://linuxfoundation.org/blog/", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/LinuxFoundationGSoC/ProjectIdeas/wiki/Google-Summer-of-Code-2026#our-source-code-repositories", "gitlab": null, "instagram": null, "linkedin": null, @@ -2746,6 +2750,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.365Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/the-mifos-initiative.json b/new-api-details/organizations/the-mifos-initiative.json index 5db63289..c74cf06b 100644 --- a/new-api-details/organizations/the-mifos-initiative.json +++ b/new-api-details/organizations/the-mifos-initiative.json @@ -3,7 +3,7 @@ "slug": "the-mifos-initiative", "name": "The Mifos Initiative", "category": "End user applications", - "description": "End Poverty One Line of Code at a Time", + "description": "We are a global 501(c)3 fintech non-profit leveraging the cloud, mobile & open source community to democratize financial services worldwide and digitally transform the world’s 3 billion poor and underbanked. Mifos has pioneered open source banking technology for the past fifteen years transforming the entire sector at each major stage of evolution from microfinance to financial inclusion to digital financial services and now embedded finance. Mifos guides the open source community, steers the roadmap, and stewards the vibrant ecosystem of organizations building solutions on its open platform. Our building blocks for banking, recognized as digital public goods, make core banking commoditized infrastructure, empowering any organization, anywhere to embed any financial service to any customer via any channel. These building blocks provide the common functionalities for creating customers, managing wallets, savings and loan accounts, orchestrating payments, and maintaining the financial ledger & reports. More than 65 million clients are reached by 500+ financial institutions across 70 countries using solutions powered by our APIs.", "image_url": "https://summerofcode.withgoogle.com/media/org/the-mifos-initiative/etmiqn0lkvfxvm5p-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-mifos-initiative.webp", "logo_r2_url": null, @@ -17,10 +17,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "mysql", @@ -58,7 +59,8 @@ "year_2022": 9, "year_2023": 10, "year_2024": 11, - "year_2025": 13 + "year_2025": 13, + "year_2026": null }, "students_by_year": { "year_2016": 6, @@ -70,7 +72,8 @@ "year_2022": 9, "year_2023": 10, "year_2024": 11, - "year_2025": 13 + "year_2025": 13, + "year_2026": null }, "total_students": 97 }, @@ -2175,21 +2178,22 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/the-mifos-initiative" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "info@mifos.org", "guide_url": "https://mifosforge.jira.com/wiki/spaces/RES/pages/4456638/Application+Template", - "ideas_url": "https://mifosforge.jira.com/wiki/spaces/RES/pages/4271669249/Google+Summer+of+Code+2025+Ideas", - "irc_channel": "https://bit.ly/mifos-slack", + "ideas_url": "https://mifosforge.jira.com/wiki/spaces/RES/pages/5021990914/2026+Google+Summer+of+Code+Ideas+List", + "irc_channel": "https://mifos.short.gy/slack", "mailing_list": "https://mifos.org/resources/community/communications/" }, "social": { - "blog": "https://linkedin.com/company/mifos", + "blog": "https://mifos.org/blog", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/openmf", "gitlab": null, "instagram": null, "linkedin": null, @@ -2204,6 +2208,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.371Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/the-netbsd-foundation.json b/new-api-details/organizations/the-netbsd-foundation.json index cdb117e6..a3f46bc7 100644 --- a/new-api-details/organizations/the-netbsd-foundation.json +++ b/new-api-details/organizations/the-netbsd-foundation.json @@ -3,7 +3,7 @@ "slug": "the-netbsd-foundation", "name": "The NetBSD Foundation", "category": "Operating systems", - "description": "Of course it runs NetBSD", + "description": "NetBSD is a free, fast, secure, and highly portable Unix-like Open Source operating system. It is available for a wide range of platforms, from large-scale servers and powerful desktop systems to handheld and embedded devices. Its clean design and advanced features make it excellent for use in both production and research environments, and the source code is freely available under a business-friendly license. NetBSD is developed and supported by a large and vivid international community. Many applications are readily available through pkgsrc, the NetBSD Packages Collection.", "image_url": "https://summerofcode.withgoogle.com/media/org/the-netbsd-foundation/gi3vozsqpecopqku-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-netbsd-foundation.webp", "logo_r2_url": null, @@ -18,10 +18,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "networking", @@ -67,7 +68,8 @@ "year_2022": 5, "year_2023": 2, "year_2024": 4, - "year_2025": 3 + "year_2025": 3, + "year_2026": null }, "students_by_year": { "year_2016": 4, @@ -79,7 +81,8 @@ "year_2022": 5, "year_2023": 2, "year_2024": 4, - "year_2025": 3 + "year_2025": 3, + "year_2026": null }, "total_students": 38 }, @@ -829,7 +832,8 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/the-netbsd-foundation" - } + }, + "year_2026": null }, "first_time": false, "contact": { @@ -843,7 +847,7 @@ "blog": "https://blog.NetBSD.org/", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/NetBSD", "gitlab": null, "instagram": null, "linkedin": null, @@ -858,6 +862,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.377Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/the-ns-3-network-simulator-project.json b/new-api-details/organizations/the-ns-3-network-simulator-project.json index acc41264..939f76b1 100644 --- a/new-api-details/organizations/the-ns-3-network-simulator-project.json +++ b/new-api-details/organizations/the-ns-3-network-simulator-project.json @@ -3,7 +3,7 @@ "slug": "the-ns-3-network-simulator-project", "name": "The ns-3 Network Simulator Project", "category": "Science and medicine", - "description": "ns-3 is a simulation tool for computer networks.", + "description": "Are you interested in contributing to a widely-used performance evaluation tool for computer networking research? ns-3 is a *discrete-event, packet-level network simulator* with an emphasis on networking research and education. Users of ns-3 can construct simulations of computer networks using models of traffic generators, protocols such as TCP/IP, and devices and channels such as Wi-Fi and LTE, and analyze or visualize the results. Simulation plays a vital role in the research and education process, because of the ability for simulations to obtain reproducible results (particularly for wireless protocol design), scale to large networks, and study systems that have not yet been implemented. A particular emphasis in ns-3 is a high degree of realism in the models (including frameworks for using real application and kernel code) and integration of the tool with virtual machine environments and testbeds. Very large scale simulations are possible; simulations of hundreds of millions of nodes have been published. ns-3 has been in development since 2005 and has been making regular releases since June 2008. The simulator is written in C++, with bindings for Python scripting, and uses the CMake build system. We use a GPLv2 licensing model and heavily use mailing lists and Zulip chat, but typically not other social media.", "image_url": "https://summerofcode.withgoogle.com/media/org/the-ns-3-network-simulator-project/0zmaec44y4jcfuj2-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-ns-3-network-simulator-project.webp", "logo_r2_url": null, @@ -17,10 +17,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -52,7 +53,8 @@ "year_2022": 2, "year_2023": 3, "year_2024": 3, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -64,7 +66,8 @@ "year_2022": 2, "year_2023": 3, "year_2024": 3, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "total_students": 34 }, @@ -759,22 +762,23 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/the-ns-3-network-simulator-project" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "ns-developers@isi.edu", - "guide_url": "https://www.nsnam.org/wiki/GSOC2025ContributorGuide", - "ideas_url": "https://www.nsnam.org/wiki/GSOC2025Projects", + "guide_url": "https://www.nsnam.org/wiki/GSOC2026ContributorGuide", + "ideas_url": "https://www.nsnam.org/wiki/GSOC2026Projects", "irc_channel": "https://ns-3.zulipchat.com", "mailing_list": "https://groups.google.com/g/ns-developers" }, "social": { - "blog": null, + "blog": "https://ns-3.zulipchat.com", "discord": null, "facebook": null, "github": null, - "gitlab": null, + "gitlab": "https://gitlab.com/nsnam/ns-3-dev", "instagram": null, "linkedin": null, "mastodon": null, @@ -788,6 +792,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.406Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/the-openroad-initiative.json b/new-api-details/organizations/the-openroad-initiative.json new file mode 100644 index 00000000..6f5a7dfd --- /dev/null +++ b/new-api-details/organizations/the-openroad-initiative.json @@ -0,0 +1,103 @@ +{ + "id": "new_2026_the-openroad-initiative", + "slug": "the-openroad-initiative", + "name": "The OpenROAD Initiative", + "category": "Infrastructure and cloud", + "description": "ORI is a 501(c)(3) nonprofit that provides long-term stewardship, governance, and ecosystem leadership for the OpenROAD open-source EDA ecosystem.\nOur Vision: Making chip design open and accessible to all—building a collaborative ecosystem driven by transparency and shared innovation.\n\nOur Mission: To advance and sustain the open-source EDA ecosystem by fostering collaborative innovation across research, education, and industry—transforming ideas into silicon.", + "image_url": "https://summerofcode.withgoogle.com/media/org/the-openroad-initiative/wsxrroe08v4rdaga-360.png", + "img_r2_url": "https://summerofcode.withgoogle.com/media/org/the-openroad-initiative/wsxrroe08v4rdaga-360.png", + "logo_r2_url": null, + "url": "https://www.openroadinitiative.org", + "active_years": [ + 2026 + ], + "first_year": 2026, + "last_year": 2026, + "is_currently_active": true, + "technologies": [ + "python", + "verilog", + "c++", + "tcl", + "OpenRoad" + ], + "topics": [ + "ASIC design", + "OpenROAD chip design", + "Open EDA", + "Open-source Design", + "LLM chip design" + ], + "total_projects": 0, + "stats": { + "avg_projects_per_appeared_year": 0, + "projects_by_year": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "students_by_year": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "total_students": 0 + }, + "years": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "contact": { + "email": null, + "guide_url": "https://openroad.readthedocs.io/en/latest/contrib/GettingInvolved.html", + "ideas_url": "https://docs.google.com/document/d/1X6xxUonxgEQ_iD5G5vFp2ZOH1vbkRSspEdYrpSf4khE/edit?usp=sharing", + "irc_channel": null, + "mailing_list": "https://github.com/The-OpenROAD-Project/OpenROAD/discussions" + }, + "social": { + "blog": null, + "discord": null, + "facebook": null, + "github": "https://github.com/The-OpenROAD-Project/OpenROAD", + "gitlab": null, + "instagram": null, + "linkedin": null, + "mastodon": null, + "medium": null, + "reddit": null, + "slack": null, + "stackoverflow": null, + "twitch": null, + "twitter": "https://x.com/OpenROAD_EDA", + "youtube": null + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:46:24.131Z" + } +} \ No newline at end of file diff --git a/new-api-details/organizations/the-p4-language-consortium.json b/new-api-details/organizations/the-p4-language-consortium.json index ba8917f6..f6509a9a 100644 --- a/new-api-details/organizations/the-p4-language-consortium.json +++ b/new-api-details/organizations/the-p4-language-consortium.json @@ -3,24 +3,26 @@ "slug": "the-p4-language-consortium", "name": "The P4 Language Consortium", "category": "Programming languages", - "description": "Evolve the programmable data plane ecosystem!", + "description": "Programming Protocol-independent Packet Processors (P4) is a domain-specific language for network devices, specifying how data plane devices (switches, NICs, routers, filters, etc.) process packets.\n\nBefore P4, vendors had total control over the functionality supported in the network. And since networking silicon determined much of the possible behavior, silicon vendors controlled the rollout of new features (e.g., VXLAN), and rollouts took years.\n\nP4 turns the traditional model on its head. Application developers and network engineers can now use P4 to implement specific behavior in the network, and changes can be made in minutes instead of years.", "image_url": "https://summerofcode.withgoogle.com/media/org/the-p4-language-consortium/tru8mncy4zqlbxhe.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-p4-language-consortium.webp", "logo_r2_url": null, "url": "https://p4.org/", "active_years": [ 2024, - 2025 + 2025, + 2026 ], "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "llvm", "c++", "mlir", "ebpf", - "Z3" + "Z3", + "linux kernel" ], "topics": [ "networking", @@ -42,7 +44,8 @@ "year_2022": null, "year_2023": null, "year_2024": 4, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -54,7 +57,8 @@ "year_2022": null, "year_2023": null, "year_2024": 4, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "total_students": 9 }, @@ -256,13 +260,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/the-p4-language-consortium" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": null, - "guide_url": "https://github.com/p4lang/gsoc/blob/main/2025/contributor_guidance.md", - "ideas_url": "https://github.com/p4lang/gsoc/blob/main/2025/ideas_list.md", + "guide_url": "https://github.com/p4lang/gsoc/blob/main/2026/application_instructions.md", + "ideas_url": "https://github.com/p4lang/gsoc/blob/main/2026/ideas_list.md", "irc_channel": "https://p4lang.zulipchat.com/", "mailing_list": "https://p4.org/join/" }, @@ -270,7 +275,7 @@ "blog": "https://p4.org/blog/", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/p4lang", "gitlab": null, "instagram": null, "linkedin": null, @@ -285,6 +290,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.379Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/the-palisadoes-foundation.json b/new-api-details/organizations/the-palisadoes-foundation.json index a22e0b64..baf0f3a2 100644 --- a/new-api-details/organizations/the-palisadoes-foundation.json +++ b/new-api-details/organizations/the-palisadoes-foundation.json @@ -17,7 +17,7 @@ ], "first_year": 2021, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "javascript", "mongodb", @@ -854,6 +854,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.384Z" + "generated_at": "2026-02-19T12:41:12.412Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/the-rust-foundation.json b/new-api-details/organizations/the-rust-foundation.json index f158ac2d..eefe894b 100644 --- a/new-api-details/organizations/the-rust-foundation.json +++ b/new-api-details/organizations/the-rust-foundation.json @@ -3,17 +3,18 @@ "slug": "the-rust-foundation", "name": "The Rust Foundation", "category": "Programming languages", - "description": "A language empowering everyone", + "description": "The Rust Project is a group of developers and maintainers who build and support the Rust programming language. Organised into teams, they develop new features and mantain the Rust language, its compiler and standard library, and also all kinds of infrastructure that supports Rust. This application is being made by the Rust Foundation, the legal entity for the Rust Programming language, working in close association with representatives from the Rust Project.", "image_url": "https://summerofcode.withgoogle.com/media/org/the-rust-foundation/pplrhxvka7dufvsn.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-rust-foundation.webp", "logo_r2_url": null, "url": "https://www.rust-lang.org", "active_years": [ 2024, - 2025 + 2025, + 2026 ], "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -36,7 +37,8 @@ "year_2022": null, "year_2023": null, "year_2024": 9, - "year_2025": 19 + "year_2025": 19, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -48,7 +50,8 @@ "year_2022": null, "year_2023": null, "year_2024": 9, - "year_2025": 19 + "year_2025": 19, + "year_2026": null }, "total_students": 26 }, @@ -595,7 +598,8 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/the-rust-foundation" - } + }, + "year_2026": null }, "first_time": false, "contact": { @@ -609,7 +613,7 @@ "blog": "https://blog.rust-lang.org/", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/rust-lang/rust", "gitlab": null, "instagram": null, "linkedin": null, @@ -624,6 +628,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.394Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/the-tor-project.json b/new-api-details/organizations/the-tor-project.json index fb8531e7..ffc8f85a 100644 --- a/new-api-details/organizations/the-tor-project.json +++ b/new-api-details/organizations/the-tor-project.json @@ -17,7 +17,7 @@ ], "first_year": 2016, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "c", "python", @@ -495,6 +495,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.401Z" + "generated_at": "2026-02-19T12:41:12.412Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/tiled.json b/new-api-details/organizations/tiled.json index 083fd86f..1cd06612 100644 --- a/new-api-details/organizations/tiled.json +++ b/new-api-details/organizations/tiled.json @@ -3,17 +3,18 @@ "slug": "tiled", "name": "Tiled", "category": "End user applications", - "description": "A free, easy to use and flexible 2D level editor.", - "image_url": "https://lh3.googleusercontent.com/N82LnqT49LVmJ28wMr-Rkos0G1sWptTlzlDufgbUAaAe7gg7_p2tbsEQSDOKJl--rLX9X1GI7nbQdzTOKEGKsaqwAJkf7zp5", + "description": "Tiled is a 2D engine-agnostic level editor for games. Its primary feature is to edit different types of tile maps, but it also supports free image placement as well as powerful ways to annotate levels with extra information used by the game. Tiled focuses on general flexibility while trying to stay intuitive.", + "image_url": "https://summerofcode.withgoogle.com/media/org/tiled/bat2ba3t9fujdzyn-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/tiled.webp", "logo_r2_url": null, - "url": "http://www.mapeditor.org", + "url": "https://www.mapeditor.org", "active_years": [ - 2017 + 2017, + 2026 ], "first_year": 2017, - "last_year": 2017, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ "github", "c++", @@ -25,7 +26,9 @@ "game development", "edit", "editing", - "level" + "level", + "games", + "Level Editor" ], "total_projects": 3, "stats": { @@ -40,7 +43,8 @@ "year_2022": null, "year_2023": null, "year_2024": null, - "year_2025": null + "year_2025": null, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -52,7 +56,8 @@ "year_2022": null, "year_2023": null, "year_2024": null, - "year_2025": null + "year_2025": null, + "year_2026": null }, "total_students": 3 }, @@ -128,21 +133,22 @@ "year_2022": null, "year_2023": null, "year_2024": null, - "year_2025": null + "year_2025": null, + "year_2026": null }, "first_time": false, "contact": { - "email": "bjorn@lindeijer.nl", - "guide_url": null, - "ideas_url": null, - "irc_channel": "https://gitter.im/bjorn/tiled", - "mailing_list": null + "email": "bjorn@mapeditor.org", + "guide_url": "https://github.com/mapeditor/tiled/wiki/GSoC-2026#application-process", + "ideas_url": "https://github.com/mapeditor/tiled/wiki/GSoC-2026#project-ideas", + "irc_channel": "https://discord.gg/39wbTv7", + "mailing_list": "https://discourse.mapeditor.org/t/google-summer-of-code-2026/7732" }, "social": { "blog": null, "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/mapeditor/tiled", "gitlab": null, "instagram": null, "linkedin": null, @@ -152,11 +158,11 @@ "slack": null, "stackoverflow": null, "twitch": null, - "twitter": "https://twitter.com/thorbjorn81", + "twitter": "https://x.com/TiledApp", "youtube": null }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.410Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/typelevel.json b/new-api-details/organizations/typelevel.json index 9aeaf844..36d8a068 100644 --- a/new-api-details/organizations/typelevel.json +++ b/new-api-details/organizations/typelevel.json @@ -3,16 +3,17 @@ "slug": "typelevel", "name": "Typelevel", "category": "Programming languages", - "description": "We do functional programming together", + "description": "Typelevel is an ecosystem of projects and a community of people united to foster an inclusive, welcoming, and safe environment around functional programming in Scala. We work together to develop projects that apply functional programming to challenging problems relevant in industry. Our community culture embraces curiosity and mentoring and we don't shy away from experimenting with new and exciting ideas. Most of all, we love to make programming joyful and social.", "image_url": "https://summerofcode.withgoogle.com/media/org/typelevel/hxlcctbqekguxcxx.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/typelevel.webp", "logo_r2_url": null, "url": "https://typelevel.org", "active_years": [ - 2025 + 2025, + 2026 ], "first_year": 2025, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "linux", @@ -41,7 +42,8 @@ "year_2022": null, "year_2023": null, "year_2024": null, - "year_2025": 2 + "year_2025": 2, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -53,7 +55,8 @@ "year_2022": null, "year_2023": null, "year_2024": null, - "year_2025": 2 + "year_2025": 2, + "year_2026": null }, "total_students": 2 }, @@ -111,21 +114,22 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/typelevel" - } + }, + "year_2026": null }, "first_time": true, "contact": { "email": "gsoc@typelevel.org", - "guide_url": "https://typelevel.org/gsoc", - "ideas_url": "https://typelevel.org/gsoc/ideas", - "irc_channel": "https://discord.gg/NAUJXXMxzh", + "guide_url": "https://typelevel.org/gsoc/", + "ideas_url": "https://typelevel.org/gsoc/ideas/", + "irc_channel": "https://discord.gg/382Z3w8QTj", "mailing_list": null }, "social": { "blog": "https://typelevel.org/blog/", "discord": "https://discord.gg/NAUJXXMxzh", "facebook": null, - "github": null, + "github": "https://github.com/typelevel", "gitlab": null, "instagram": null, "linkedin": null, @@ -135,11 +139,11 @@ "slack": null, "stackoverflow": null, "twitch": null, - "twitter": "https://fosstodon.org/@typelevel", + "twitter": "https://bsky.app/profile/typelevel.org", "youtube": null }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.417Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/uc-ospo.json b/new-api-details/organizations/uc-ospo.json index 7fea3190..55b7e41f 100644 --- a/new-api-details/organizations/uc-ospo.json +++ b/new-api-details/organizations/uc-ospo.json @@ -3,18 +3,19 @@ "slug": "uc-ospo", "name": "UC OSPO", "category": "Science and medicine", - "description": "Amplifying Research Impact through Open Source", + "description": "The UCSC Open Source Program Office (OSPO) and the UC OSPO Network supports open source work throughout the University of California system. Beginning in 2022, the UCSC OSPO took over the programmatic responsibilities of the UCSC Center for Research in Open Source Software (CROSS), including mentorship activities such as GSoC. The UCSC OSPO creates partnerships with stakeholders within and outside the UC system in order to help students learn from open source communities, support scientists in using open source to accelerate research efforts, and connect students and scientists with sponsors from industry, government, and foundations. The OSPO helps bridge the gap between academic research and successful open source projects by promoting innovative projects maintained by UC-affiliated scientists and researchers. We support the transfer of cutting-edge technology resulting from UC-originating research to industry via successful open source projects. Due to the multi-campus nature of our current efforts, the projects we support and promote cover a wide range of topics and technologies - including:\n\n- Open Source Hardware and Chip Design\n- AI / Machine Learning\n- Storage Systems and Devices\n- Data Science and visualization\n- Scientific Computing & Research Infrastructure\n- Reproducibility\n- Cloud-based computation\nAll of our mentors are scientists and researchers who are actively involved in one or more of these open source projects.", "image_url": "https://summerofcode.withgoogle.com/media/org/center-for-research-in-open-source-software-cross/ndbkr7fqcqp4nguq-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/uc-ospo.webp", "logo_r2_url": null, - "url": "https://ucsc-ospo.github.io/osre25/", + "url": "https://ucsc-ospo.github.io/osre26/", "active_years": [ 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2023, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -24,7 +25,9 @@ "VLSI", "ros/gazebo", "javascript", - "machine learning" + "machine learning", + "c/c++", + "pytorch" ], "topics": [ "hardware", @@ -34,7 +37,8 @@ "data management", "education", "bioinformatics", - "AI/ML" + "AI/ML", + "research software" ], "total_projects": 47, "stats": { @@ -49,7 +53,8 @@ "year_2022": null, "year_2023": 14, "year_2024": 16, - "year_2025": 17 + "year_2025": 17, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -61,7 +66,8 @@ "year_2022": null, "year_2023": 14, "year_2024": 16, - "year_2025": 17 + "year_2025": 17, + "year_2026": null }, "total_students": 47 }, @@ -1000,21 +1006,22 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/uc-ospo" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "ospo-info-group@ucsc.edu", - "guide_url": "https://ucsc-ospo.github.io/osre25/#forstudents", - "ideas_url": "https://ucsc-ospo.github.io/osre25/#projects", - "irc_channel": "https://osre2024.slack.com/home", + "guide_url": "https://ucsc-ospo.github.io/osre26/#forstudents", + "ideas_url": "https://ucsc-ospo.github.io/osre26/#projects", + "irc_channel": "https://ucosre.slack.com/home", "mailing_list": null }, "social": { "blog": "https://ucsc-ospo.github.io/#blog", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/uccross", "gitlab": null, "instagram": null, "linkedin": null, @@ -1029,6 +1036,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.419Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/unicode-inc.json b/new-api-details/organizations/unicode-inc.json index a6881991..a4df519e 100644 --- a/new-api-details/organizations/unicode-inc.json +++ b/new-api-details/organizations/unicode-inc.json @@ -14,7 +14,7 @@ ], "first_year": 2024, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "java", "c++", @@ -278,6 +278,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.422Z" + "generated_at": "2026-02-19T12:41:12.412Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/unikraft.json b/new-api-details/organizations/unikraft.json index db578b5d..19106d67 100644 --- a/new-api-details/organizations/unikraft.json +++ b/new-api-details/organizations/unikraft.json @@ -3,7 +3,7 @@ "slug": "unikraft", "name": "Unikraft", "category": "Operating systems", - "description": "A Fast and Secure Unikernel SDK", + "description": "Unikraft is a fast, secure and open-source Unikernel Development Kit.\n\nBy tailoring the operating system, libraries and configuration to the particular needs of your application, it vastly reduces virtual machine and container image sizes to a few KBs, provides blazing performance, and drastically cuts down your software stack’s attack surface.\n\nUnikraft is developed in the spirit of open source: public discussions on Discord, open source licensing model using BSD-3-Clause, public development and management on GitHub.\n\nIt does so in the context of a vibrant community consisting of highly skilled software engineers, researchers, teachers, students and hobbyists. Periodic meetings, hackathons and a consistent presence in open source events are central to the well functioning of the community.\n\nWe use guidelines for development and maintenance to ensure the creation of high quality code.\n\nPublic releases are planned to happen once every two months. In general, we aim for a public release to happen at the last Monday of each odd month (January, March, May, etc.)\n\nWe welcome contributors and users on Discord and on GitHub. If you are looking for a fun technical project in the area of operating systems, virtualization, come aboard on Discord.", "image_url": "https://summerofcode.withgoogle.com/media/org/unikraft/5nx7anuq3iixdm54.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/unikraft.webp", "logo_r2_url": null, @@ -12,10 +12,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2022, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "c", @@ -44,7 +45,8 @@ "year_2022": 3, "year_2023": 4, "year_2024": 4, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -56,7 +58,8 @@ "year_2022": 3, "year_2023": 4, "year_2024": 4, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "total_students": 16 }, @@ -389,13 +392,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/unikraft" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": null, "guide_url": "https://unikraft.org/docs/contributing/", - "ideas_url": "https://github.com/unikraft/gsoc/blob/staging/gsoc-2025/ideas.md", + "ideas_url": "https://github.com/unikraft/gsoc/blob/staging/gsoc-2026/ideas.md", "irc_channel": "https://bit.ly/UnikraftDiscord", "mailing_list": "https://github.com/unikraft/unikraft/discussions" }, @@ -403,7 +407,7 @@ "blog": "https://unikraft.org/blog", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/unikraft/", "gitlab": null, "instagram": null, "linkedin": null, @@ -418,6 +422,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.424Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/united-nations-office-of-information-communication-technology.json b/new-api-details/organizations/united-nations-office-of-information-communication-technology.json new file mode 100644 index 00000000..9568fa25 --- /dev/null +++ b/new-api-details/organizations/united-nations-office-of-information-communication-technology.json @@ -0,0 +1,98 @@ +{ + "id": "new_2026_united-nations-office-of-information-communication-technology", + "slug": "united-nations-office-of-information-communication-technology", + "name": "United Nations Office of Information Communication Technology", + "category": "End user applications", + "description": "The Open Source Team at the United Nations, based within the UN Office of Information and Communications Technology (UNOICT), supports the development and adoption of open source technologies across the UN system and in collaboration with external partners. The team works to advance digital public goods that address global challenges such as climate resilience, sustainable food systems, and inclusive digital participation.\nThrough initiatives including “Reboot the Earth” and other open source collaborations, our team enables early-stage ideas to mature into scalable, production-ready solutions. Our work emphasizes open collaboration, responsible use of emerging technologies such as AI, focusing on deployment in real-world, resource-constrained environments. The Open Source Team also provides technical guidance, mentorship, and governance support to ensure projects not only align with UN values but also prioritize long-term sustainability.\nDisclaimer: All Summer of Code work is conducted independently. Contributors are not considered United Nations employees or official representatives.", + "image_url": "https://summerofcode.withgoogle.com/media/org/united-nations-office-of-information-communication-technology/bl0zv6y6mjmzuybz-360.png", + "img_r2_url": "https://summerofcode.withgoogle.com/media/org/united-nations-office-of-information-communication-technology/bl0zv6y6mjmzuybz-360.png", + "logo_r2_url": null, + "url": "https://unite.un.org/en", + "active_years": [ + 2026 + ], + "first_year": 2026, + "last_year": 2026, + "is_currently_active": true, + "technologies": [ + "python", + "javascript", + "css" + ], + "topics": [ + "Technology", + "innovation" + ], + "total_projects": 0, + "stats": { + "avg_projects_per_appeared_year": 0, + "projects_by_year": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "students_by_year": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "total_students": 0 + }, + "years": { + "year_2016": null, + "year_2017": null, + "year_2018": null, + "year_2019": null, + "year_2020": null, + "year_2021": null, + "year_2022": null, + "year_2023": null, + "year_2024": null, + "year_2025": null, + "year_2026": null + }, + "contact": { + "email": "mithusa.kajendran@un.org", + "guide_url": "https://opensource.unicc.org/un/unoict/mentorship-programme/google-summer-of-code/", + "ideas_url": "https://opensource.unicc.org/un/unoict/mentorship-programme/google-summer-of-code/-/blob/main/README.md", + "irc_channel": null, + "mailing_list": null + }, + "social": { + "blog": null, + "discord": null, + "facebook": null, + "github": "https://github.com/OSeMOSYS/MUIO/", + "gitlab": null, + "instagram": null, + "linkedin": null, + "mastodon": null, + "medium": null, + "reddit": null, + "slack": null, + "stackoverflow": null, + "twitch": null, + "twitter": "https://x.com/UN_OICT", + "youtube": null + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:46:24.131Z" + } +} \ No newline at end of file diff --git a/new-api-details/organizations/uramaki-lab.json b/new-api-details/organizations/uramaki-lab.json index 76e1c04d..0149e156 100644 --- a/new-api-details/organizations/uramaki-lab.json +++ b/new-api-details/organizations/uramaki-lab.json @@ -3,17 +3,18 @@ "slug": "uramaki-lab", "name": "Uramaki LAB", "category": "End user applications", - "description": "The User Experience LAB based on IA", + "description": "The RUXAILAB is an open-source organization dedicated to democratizing usability and accessibility evaluation through the use of Artificial Intelligence. We provide a suite of AI-powered tools that enable remote usability and accessibility testing, ensuring that professionals and researchers can analyze user experience through different methodologies.\n\nOur platform supports multiple methods such as User Testing, Heuristic Evaluation, Eye-Tracking system, Sentimental Analysis, a semi-automated tool for prototyping virtual reality environments in 2D, and heatmap analysis for advanced data extraction. \n\nOur mission is to eliminate financial and technological barriers to usability and accessibility research, making it possible for anyone, anywhere to set up their own usability lab at zero cost.\n\nWe invite developers, designers, and researchers to join us in expanding our toolkit, refining our existing solutions, and fostering a more accessible digital world. 🚀🌍", "image_url": "https://summerofcode.withgoogle.com/media/org/uramaki-lab/pr3ivuk0zg7lhgj1-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/uramaki-lab.webp", "logo_r2_url": null, "url": "https://github.com/ruxailab", "active_years": [ 2024, - 2025 + 2025, + 2026 ], "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -27,7 +28,8 @@ "Usability", "User Evaluation", "Eye Tracking", - "Sentimental Analysis" + "Sentimental Analysis", + "artificial intelligence" ], "total_projects": 8, "stats": { @@ -42,7 +44,8 @@ "year_2022": null, "year_2023": null, "year_2024": 3, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -54,7 +57,8 @@ "year_2022": null, "year_2023": null, "year_2024": 3, - "year_2025": 5 + "year_2025": 5, + "year_2026": null }, "total_students": 7 }, @@ -243,18 +247,19 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/uramaki-lab" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "ruxailab@gmail.com", "guide_url": "https://github.com/ruxailab/gsoc/tree/main", - "ideas_url": "https://github.com/ruxailab/gsoc/blob/main/ideas2025.md", + "ideas_url": "https://ruxailab.github.io/gsoc/", "irc_channel": "https://github.com/ruxailab/RUXAILAB/issues", "mailing_list": "https://discord.gg/6P4C6xuqtC" }, "social": { - "blog": "https://github.com/ruxailab/RUXAILAB/discussions", + "blog": "https://blog-ruxailab.web.app/", "discord": null, "facebook": null, "github": "https://github.com/ruxailab", @@ -272,6 +277,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.428Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/videolan.json b/new-api-details/organizations/videolan.json index 85fefede..a321f0f8 100644 --- a/new-api-details/organizations/videolan.json +++ b/new-api-details/organizations/videolan.json @@ -3,7 +3,7 @@ "slug": "videolan", "name": "VideoLAN", "category": "End user applications", - "description": "Open Source Multimedia for everyone!", + "description": "The VideoLAN project is led by and composed of a team of volunteers who believe in the power of open source to rock the multimedia world. We produce multimedia software notably the famous VLC media player as well as designated libraries and codecs.", "image_url": "https://summerofcode.withgoogle.com/media/org/videolan/9h28hsncvrt01voz-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/videolan.webp", "logo_r2_url": null, @@ -18,10 +18,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "c", @@ -69,7 +70,8 @@ "year_2022": 6, "year_2023": 10, "year_2024": 13, - "year_2025": 15 + "year_2025": 15, + "year_2026": null }, "students_by_year": { "year_2016": 3, @@ -81,7 +83,8 @@ "year_2022": 6, "year_2023": 10, "year_2024": 13, - "year_2025": 15 + "year_2025": 15, + "year_2026": null }, "total_students": 85 }, @@ -1895,13 +1898,14 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/videolan" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "videolan@videolan.org", "guide_url": "https://wiki.videolan.org/SoC_2024/", - "ideas_url": "https://wiki.videolan.org/SoC_2025/", + "ideas_url": "https://wiki.videolan.org/SoC_2026/", "irc_channel": "#videolan on Libera.chat", "mailing_list": "https://www.videolan.org/developers/lists.html" }, @@ -1924,6 +1928,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.434Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/wagtail.json b/new-api-details/organizations/wagtail.json index c4a9e23d..a0878394 100644 --- a/new-api-details/organizations/wagtail.json +++ b/new-api-details/organizations/wagtail.json @@ -3,7 +3,7 @@ "slug": "wagtail", "name": "Wagtail", "category": "Web", - "description": "The powerful Python CMS for modern websites", + "description": "We build Wagtail, a popular content management system. It's built on Python, by an active and engaged open source community, which has grown rapidly since Wagtail's release in 2014. Wagtail is available in over 40 languages, and used by some of the world's best-known organizations, including NASA, Google, Mozilla, MIT, and the UK's National Health Service, as well as museums, universities, non-profits, governments, banks, studios, restaurants, startups and bloggers around the world.", "image_url": "https://summerofcode.withgoogle.com/media/org/wagtail/so6hnqeqh2cp4jbx-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/wagtail.webp", "logo_r2_url": null, @@ -12,10 +12,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2022, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -40,7 +41,8 @@ "year_2022": 3, "year_2023": 2, "year_2024": 2, - "year_2025": 4 + "year_2025": 4, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -52,7 +54,8 @@ "year_2022": 3, "year_2023": 2, "year_2024": 2, - "year_2025": 4 + "year_2025": 4, + "year_2026": null }, "total_students": 10 }, @@ -298,7 +301,8 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/wagtail" - } + }, + "year_2026": null }, "first_time": false, "contact": { @@ -312,7 +316,7 @@ "blog": "https://wagtail.org/blog/", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/wagtail/wagtail", "gitlab": null, "instagram": null, "linkedin": null, @@ -327,6 +331,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.440Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/waycrate.json b/new-api-details/organizations/waycrate.json index 89d0e453..d4f80e84 100644 --- a/new-api-details/organizations/waycrate.json +++ b/new-api-details/organizations/waycrate.json @@ -14,7 +14,7 @@ ], "first_year": 2024, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "c", "c++", @@ -241,6 +241,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.441Z" + "generated_at": "2026-02-19T12:41:12.412Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/webpack.json b/new-api-details/organizations/webpack.json index c8ca5f9e..f241bb17 100644 --- a/new-api-details/organizations/webpack.json +++ b/new-api-details/organizations/webpack.json @@ -3,7 +3,7 @@ "slug": "webpack", "name": "webpack", "category": "Web", - "description": "webpack is the module bundler for web projects", + "description": "webpack is THE build tool for modern web applications run on NodeJS\nwebpack is a module bundler. Its main purpose is to bundle JavaScript files for usage in a browser, yet it is also capable of transforming, bundling, or packaging just about any resource or asset.\n\nOverview\nCurrently in the web, modules are not fully adopted, and therefore we need tooling to help compile your module code into something that will work in the browser. webpack champions this by not only supporting CommonJS, AMD, RequireJS module systems, but also ECMAScript Modules (ESM).\n\nWhat makes webpack unique?\nExtensibility webpack is built using an extensible event-driven architecture. This means that a majority of our code is Plugins that hook into a set of lifecycle events. This means that it is infinitely flexible and configurable. This architecture also lets us pivot very quickly. Plugins isolate functionality (and can even be used in your configuration), and allow us to add and drop new functionality without breaking the rest of the system.\n\nFocused around Web Performance webpack revived a classic technique from Google Web Toolkit known as \"code splitting\". Code splitting let's developers write imperative instructions (as a part of their code), to split up their JavaScript bundles (at build time) into multiple pieces that can be loaded lazily.\n\nBuilt in JavaScript webpack's configuration format, and architecture is all built and run on NodeJS. This means that anyone comfortable with JavaScript can break open our source code with a low level of entry to learn, contribute to, and improve.\n\nUsed at Scale webpack is used by companies like AirBnB, Microsoft, Housing.com, Flipkart, Alibaba, to build high performance, scaled web applications.\n\nCommunity Owned webpack is not backed by a single organization, rather by its users, contributors, backers, sponsors, and shareholders. This means that every decision we make is for them, and them only.", "image_url": "https://summerofcode.withgoogle.com/media/org/webpack/bb5phgrkm0y4op3e-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/webpack.webp", "logo_r2_url": null, @@ -13,10 +13,11 @@ 2019, 2020, 2024, - 2025 + 2025, + 2026 ], "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "javascript", @@ -26,7 +27,8 @@ "webassembly", "webasssembly", "webpack", - "typescript" + "typescript", + "node" ], "topics": [ "compilers", @@ -54,7 +56,8 @@ "year_2022": null, "year_2023": null, "year_2024": 3, - "year_2025": 1 + "year_2025": 1, + "year_2026": null }, "students_by_year": { "year_2016": null, @@ -66,7 +69,8 @@ "year_2022": null, "year_2023": null, "year_2024": 3, - "year_2025": 1 + "year_2025": 1, + "year_2026": null }, "total_students": 10 }, @@ -306,21 +310,22 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/webpack" - } + }, + "year_2026": null }, "first_time": false, "contact": { "email": "evenstensberg@gmail.com", "guide_url": "https://webpack.js.org/contribute/", - "ideas_url": "https://docs.google.com/document/d/1JOtAdpoqHGieg_nJpjkWDv1BoErPQ9L1GnZmX55E-W0/edit?usp=sharing", - "irc_channel": "https://twitter.com/evenstensberg", + "ideas_url": "https://docs.google.com/document/d/1Mr_IPVdbupGwmGtcvLlVqFEL8wYN_rlfHUghJ2EPBVE/edit?usp=sharing", + "irc_channel": "https://discord.gg/5sxFZPdx2k", "mailing_list": null }, "social": { - "blog": null, + "blog": "https://medium.com/webpack", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/webpack", "gitlab": null, "instagram": null, "linkedin": null, @@ -335,6 +340,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.638Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/wellcome-sanger-tree-of-life.json b/new-api-details/organizations/wellcome-sanger-tree-of-life.json index bdcfe52b..8c9595df 100644 --- a/new-api-details/organizations/wellcome-sanger-tree-of-life.json +++ b/new-api-details/organizations/wellcome-sanger-tree-of-life.json @@ -15,7 +15,7 @@ ], "first_year": 2022, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "python", "javascript", @@ -275,6 +275,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.445Z" + "generated_at": "2026-02-19T12:41:12.412Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/wikimedia-foundation.json b/new-api-details/organizations/wikimedia-foundation.json index 747f250c..64b8180e 100644 --- a/new-api-details/organizations/wikimedia-foundation.json +++ b/new-api-details/organizations/wikimedia-foundation.json @@ -3,7 +3,7 @@ "slug": "wikimedia-foundation", "name": "Wikimedia Foundation", "category": "Web", - "description": "Bringing free educational content to the world", + "description": "Wikimedia strives to bring about a world in which every single human being can freely share in the sum of all knowledge; through various projects, chapters, and the support structure of the non-profit Wikimedia Foundation. Wikimedia officially supports 13 projects, including Wikipedia, the seventh most popular site on the internet. Wikipedia receives over 20 billion global page views every month and is available in over 300 languages. The tech behind it ensures that our projects are fast, reliable, and open to all. We design and build the open-source technology that powers Wikimedia projects from hosting Wikipedia to creating edit-checking artificial intelligence (AI). Community volunteers and Foundation technologists collaborate on MediaWiki, which makes sharing free knowledge possible. Read more about Wikimedia on our homepage: https://wikimediafoundation.org/", "image_url": "https://summerofcode.withgoogle.com/media/org/wikimedia-foundation-nd/2e6sdwa8tksr5sg2-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/wikimedia-foundation.webp", "logo_r2_url": null, @@ -17,11 +17,12 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ], "first_year": 2016, - "last_year": 2024, - "is_currently_active": false, + "last_year": 2026, + "is_currently_active": true, "technologies": [ "javascript", "html", @@ -59,7 +60,8 @@ "year_2022": 7, "year_2023": 9, "year_2024": 9, - "year_2025": null + "year_2025": null, + "year_2026": null }, "students_by_year": { "year_2016": 6, @@ -71,7 +73,8 @@ "year_2022": 7, "year_2023": 9, "year_2024": 9, - "year_2025": null + "year_2025": null, + "year_2026": null }, "total_students": 83 }, @@ -1751,14 +1754,15 @@ ], "projects_url": "https://summerofcode.withgoogle.com/archive/2024/organizations/wikimedia-foundation-nd/" }, - "year_2025": null + "year_2025": null, + "year_2026": null }, "first_time": false, "contact": { "email": "wikitech-l@lists.wikimedia.org", - "guide_url": null, - "ideas_url": null, - "irc_channel": "https://wikimedia.zulipchat.com/#narrow/stream/419476-Gsoc24-Outreachy28", + "guide_url": "https://www.mediawiki.org/wiki/Google_Summer_of_Code/Participants#Application_process_steps", + "ideas_url": "https://www.mediawiki.org/wiki/Google_Summer_of_Code/2026#Projects", + "irc_channel": "https://wikimedia.zulipchat.com/#narrow/channel/561533-GSoC2026", "mailing_list": "https://lists.wikimedia.org/mailman/listinfo/wikitech-l" }, "social": { @@ -1780,6 +1784,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.447Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/zendalona.json b/new-api-details/organizations/zendalona.json index a5aa33cc..71335e01 100644 --- a/new-api-details/organizations/zendalona.json +++ b/new-api-details/organizations/zendalona.json @@ -14,7 +14,7 @@ ], "first_year": 2024, "last_year": 2025, - "is_currently_active": true, + "is_currently_active": false, "technologies": [ "python", "javascript", @@ -303,6 +303,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.488Z" + "generated_at": "2026-02-19T12:41:12.412Z" } } \ No newline at end of file diff --git a/new-api-details/organizations/zulip.json b/new-api-details/organizations/zulip.json index 5c0e0280..ebfc732b 100644 --- a/new-api-details/organizations/zulip.json +++ b/new-api-details/organizations/zulip.json @@ -3,7 +3,7 @@ "slug": "zulip", "name": "Zulip", "category": "End user applications", - "description": "Organized chat for distributed teams", + "description": "Zulip is the only modern team chat app that is ideal for both live and asynchronous conversations. Zulip has a web app, a cross-platform mobile app for iOS and Android, cross-platform desktop and terminal apps, and over 100 native integrations. The entire Zulip codebase is 100% open source.\n\nZulip has been gaining in popularity since it was released as open source software in late 2015, with code contributions from over 1000 people from all around the world. Thousands of people use Zulip every day, and your work on Zulip will have meaningful impact on their experience.\n\nAs an organization, we value engaged, responsive mentorship and making sure our product quality is extremely high. You can expect to receive disciplined code reviews by highly experienced engineers. Since Zulip is a team chat product, your GSoC experience with the Zulip project will be highly interactive.\n\nAs part of our commitment to mentorship, Zulip has over 160,000 words of documentation for developers, much of it designed to explain not just how Zulip works, but why Zulip works the way that it does.\n\nTo learn more about the experience of doing GSoC with Zulip, check out our blog post: https://blog.zulip.com/2025/12/02/google-summer-of-code-2025/", "image_url": "https://summerofcode.withgoogle.com/media/org/zulip/sx5ruvwv6nyugbk7-360.png", "img_r2_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/zulip.webp", "logo_r2_url": null, @@ -18,10 +18,11 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ], "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "is_currently_active": true, "technologies": [ "python", @@ -65,7 +66,8 @@ "year_2022": 15, "year_2023": 13, "year_2024": 17, - "year_2025": 14 + "year_2025": 14, + "year_2026": null }, "students_by_year": { "year_2016": 3, @@ -77,7 +79,8 @@ "year_2022": 15, "year_2023": 13, "year_2024": 17, - "year_2025": 14 + "year_2025": 14, + "year_2026": null }, "total_students": 117 }, @@ -2744,7 +2747,8 @@ } ], "projects_url": "https://summerofcode.withgoogle.com/programs/2025/organizations/zulip" - } + }, + "year_2026": null }, "first_time": false, "contact": { @@ -2758,7 +2762,7 @@ "blog": "https://blog.zulip.com/", "discord": null, "facebook": null, - "github": null, + "github": "https://github.com/zulip/zulip", "gitlab": null, "instagram": null, "linkedin": null, @@ -2773,6 +2777,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T15:28:54.494Z" + "generated_at": "2026-02-19T13:46:24.131Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/a-frame.json b/new-api-details/tech-stack/a-frame.json index c7585e65..0e2eb6a2 100644 --- a/new-api-details/tech-stack/a-frame.json +++ b/new-api-details/tech-stack/a-frame.json @@ -1,7 +1,7 @@ { "slug": "a-frame", "name": "a-frame", - "published_at": "2026-01-24T21:33:12.307Z", + "published_at": "2026-02-19T13:35:59.718Z", "metrics": { "org_count": 1, "project_count": 1, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.307Z" + "generated_at": "2026-02-19T13:35:59.718Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/a2a.json b/new-api-details/tech-stack/a2a.json new file mode 100644 index 00000000..6b6501da --- /dev/null +++ b/new-api-details/tech-stack/a2a.json @@ -0,0 +1,88 @@ +{ + "slug": "a2a", + "name": "A2A", + "published_at": "2026-02-19T13:35:59.663Z", + "metrics": { + "org_count": 1, + "project_count": 0, + "avg_projects_per_org": 0, + "first_year_used": 2026, + "latest_year_used": 2026 + }, + "organizations": [ + { + "slug": "gemini-cli", + "name": "Gemini CLI", + "logo_url": "https://summerofcode.withgoogle.com/media/org/gemini-cli/mhi8cx7tyjt91i6n-360.png", + "category": "Development tools", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + } + ], + "charts": { + "popularity_by_year": [ + { + "year": 2016, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2017, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2018, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2019, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2020, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2021, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2022, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2023, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2024, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2025, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 + } + ] + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:35:59.663Z" + } +} \ No newline at end of file diff --git a/new-api-details/tech-stack/advanced-data-structures.json b/new-api-details/tech-stack/advanced-data-structures.json index 7916fa87..2bf19e36 100644 --- a/new-api-details/tech-stack/advanced-data-structures.json +++ b/new-api-details/tech-stack/advanced-data-structures.json @@ -1,7 +1,7 @@ { "slug": "advanced-data-structures", "name": "advanced data structures", - "published_at": "2026-01-24T21:33:12.135Z", + "published_at": "2026-02-19T13:35:59.489Z", "metrics": { "org_count": 1, "project_count": 8, @@ -75,11 +75,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.135Z" + "generated_at": "2026-02-19T13:35:59.489Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/aerogear.json b/new-api-details/tech-stack/aerogear.json index 57bd5e65..25f881e0 100644 --- a/new-api-details/tech-stack/aerogear.json +++ b/new-api-details/tech-stack/aerogear.json @@ -1,22 +1,22 @@ { "slug": "aerogear", "name": "aerogear", - "published_at": "2026-01-24T21:33:12.323Z", + "published_at": "2026-02-19T13:35:59.744Z", "metrics": { "org_count": 1, "project_count": 52, "avg_projects_per_org": 52, "first_year_used": 2016, - "latest_year_used": 2022 + "latest_year_used": 2026 }, "organizations": [ { "slug": "jboss-community", "name": "JBoss Community", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jboss-community.webp", - "category": "Data", + "category": "Web", "total_projects": 52, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -24,7 +24,8 @@ 2019, 2020, 2021, - 2022 + 2022, + 2026 ] } ], @@ -79,11 +80,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.324Z" + "generated_at": "2026-02-19T13:35:59.744Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/ai.json b/new-api-details/tech-stack/ai.json index 6da54b1d..bfd388bd 100644 --- a/new-api-details/tech-stack/ai.json +++ b/new-api-details/tech-stack/ai.json @@ -1,13 +1,13 @@ { "slug": "ai", "name": "ai", - "published_at": "2026-01-24T21:33:12.074Z", + "published_at": "2026-02-19T13:35:59.405Z", "metrics": { - "org_count": 13, - "project_count": 547, - "avg_projects_per_org": 42.1, + "org_count": 15, + "project_count": 585, + "avg_projects_per_org": 39, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -36,7 +37,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/opencv.webp", "category": "Media", "total_projects": 93, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -100,7 +101,26 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "joomla", + "name": "Joomla!", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/joomla.webp", + "category": "End user applications", + "total_projects": 36, + "is_currently_active": true, + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2021, + 2022, + 2025, + 2026 ] }, { @@ -143,7 +163,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] }, { @@ -152,7 +173,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/keploy.webp", "category": "Programming languages", "total_projects": 11, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2023, 2024, @@ -168,7 +189,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -177,7 +199,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jax-and-keras.webp", "category": "Artificial Intelligence", "total_projects": 4, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2025 ] @@ -191,7 +213,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -204,29 +227,41 @@ "active_years": [ 2018 ] + }, + { + "slug": "meshery", + "name": "Meshery", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/meshery.webp", + "category": "Infrastructure and cloud", + "total_projects": 2, + "is_currently_active": true, + "active_years": [ + 2025, + 2026 + ] } ], "charts": { "popularity_by_year": [ { "year": 2016, - "org_count": 6, - "project_count": 40 + "org_count": 7, + "project_count": 45 }, { "year": 2017, - "org_count": 6, - "project_count": 48 + "org_count": 7, + "project_count": 56 }, { "year": 2018, - "org_count": 6, - "project_count": 39 + "org_count": 7, + "project_count": 46 }, { "year": 2019, - "org_count": 8, - "project_count": 66 + "org_count": 9, + "project_count": 69 }, { "year": 2020, @@ -235,13 +270,13 @@ }, { "year": 2021, - "org_count": 6, - "project_count": 69 + "org_count": 7, + "project_count": 74 }, { "year": 2022, - "org_count": 6, - "project_count": 69 + "org_count": 7, + "project_count": 73 }, { "year": 2023, @@ -255,13 +290,18 @@ }, { "year": 2025, - "org_count": 8, - "project_count": 61 + "org_count": 10, + "project_count": 67 + }, + { + "year": 2026, + "org_count": 7, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.074Z" + "generated_at": "2026-02-19T13:35:59.405Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/airflow.json b/new-api-details/tech-stack/airflow.json index 6bc0432b..90bbbb01 100644 --- a/new-api-details/tech-stack/airflow.json +++ b/new-api-details/tech-stack/airflow.json @@ -1,7 +1,7 @@ { "slug": "airflow", "name": "airflow", - "published_at": "2026-01-24T21:33:12.156Z", + "published_at": "2026-02-19T13:35:59.531Z", "metrics": { "org_count": 1, "project_count": 29, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/chaoss.webp", "category": "Data", "total_projects": 29, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2018, 2019, @@ -78,11 +78,16 @@ "year": 2025, "org_count": 1, "project_count": 3 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.156Z" + "generated_at": "2026-02-19T13:35:59.531Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/ajax.json b/new-api-details/tech-stack/ajax.json index 6e0af4dc..f25a53f5 100644 --- a/new-api-details/tech-stack/ajax.json +++ b/new-api-details/tech-stack/ajax.json @@ -1,13 +1,13 @@ { "slug": "ajax", "name": "ajax", - "published_at": "2026-01-24T21:33:12.490Z", + "published_at": "2026-02-19T13:35:59.952Z", "metrics": { "org_count": 1, "project_count": 19, "avg_projects_per_org": 19, "first_year_used": 2018, - "latest_year_used": 2024 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,14 +16,15 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/submitty.webp", "category": "End user applications", "total_projects": 19, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2018, 2019, 2020, 2022, 2023, - 2024 + 2024, + 2026 ] } ], @@ -78,11 +79,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.490Z" + "generated_at": "2026-02-19T13:35:59.952Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/akka.json b/new-api-details/tech-stack/akka.json index d57f1d3f..6fe7f01e 100644 --- a/new-api-details/tech-stack/akka.json +++ b/new-api-details/tech-stack/akka.json @@ -1,7 +1,7 @@ { "slug": "akka", "name": "Akka", - "published_at": "2026-01-24T21:33:12.372Z", + "published_at": "2026-02-19T13:35:59.806Z", "metrics": { "org_count": 1, "project_count": 2, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.372Z" + "generated_at": "2026-02-19T13:35:59.806Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/android-ios.json b/new-api-details/tech-stack/android-ios.json index 60da5e29..a501b47b 100644 --- a/new-api-details/tech-stack/android-ios.json +++ b/new-api-details/tech-stack/android-ios.json @@ -1,13 +1,13 @@ { "slug": "android-ios", "name": "android/ios", - "published_at": "2026-01-24T21:33:12.060Z", + "published_at": "2026-02-19T13:35:59.420Z", "metrics": { "org_count": 1, "project_count": 117, "avg_projects_per_org": 117, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 21 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.060Z" + "generated_at": "2026-02-19T13:35:59.420Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/android.json b/new-api-details/tech-stack/android.json index 04dbe4a9..88ab787a 100644 --- a/new-api-details/tech-stack/android.json +++ b/new-api-details/tech-stack/android.json @@ -1,13 +1,13 @@ { "slug": "android", "name": "android", - "published_at": "2026-01-24T21:33:12.050Z", + "published_at": "2026-02-19T13:35:59.382Z", "metrics": { - "org_count": 52, + "org_count": 53, "project_count": 2061, - "avg_projects_per_org": 39.6, + "avg_projects_per_org": 38.9, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -32,7 +32,7 @@ "slug": "fossasia", "name": "FOSSASIA", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/fossasia.webp", - "category": "Science and medicine", + "category": "End user applications", "total_projects": 140, "is_currently_active": true, "active_years": [ @@ -41,7 +41,8 @@ 2018, 2019, 2024, - 2025 + 2025, + 2026 ] }, { @@ -61,7 +62,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -80,7 +82,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -99,7 +102,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -118,7 +122,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -138,7 +143,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -158,7 +164,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -178,7 +185,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -196,7 +204,8 @@ 2021, 2022, 2023, - 2025 + 2025, + 2026 ] }, { @@ -205,7 +214,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/wikimedia-foundation.webp", "category": "Web", "total_projects": 85, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -215,7 +224,8 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -235,7 +245,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -255,7 +266,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -274,7 +286,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -294,7 +307,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -303,7 +317,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnu-project.webp", "category": "Operating systems", "total_projects": 59, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -311,16 +325,17 @@ 2019, 2020, 2023, - 2024 + 2024, + 2026 ] }, { "slug": "jboss-community", "name": "JBoss Community", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jboss-community.webp", - "category": "Data", + "category": "Web", "total_projects": 52, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -328,7 +343,8 @@ 2019, 2020, 2021, - 2022 + 2022, + 2026 ] }, { @@ -348,7 +364,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -367,7 +384,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -390,7 +408,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/librehealth.webp", "category": "Science and medicine", "total_projects": 31, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, @@ -398,7 +416,8 @@ 2020, 2021, 2022, - 2023 + 2023, + 2026 ] }, { @@ -447,7 +466,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -481,7 +501,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -498,7 +519,8 @@ 2021, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -538,7 +560,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] }, { @@ -551,7 +574,8 @@ "active_years": [ 2018, 2022, - 2025 + 2025, + 2026 ] }, { @@ -563,7 +587,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -572,7 +597,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/organic-maps.webp", "category": "End user applications", "total_projects": 10, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2023, @@ -586,7 +611,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/zendalona.webp", "category": "End user applications", "total_projects": 10, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2024, 2025 @@ -675,6 +700,18 @@ 2019 ] }, + { + "slug": "owncloud", + "name": "ownCloud", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/owncloud.webp", + "category": "Infrastructure and cloud", + "total_projects": 5, + "is_currently_active": false, + "active_years": [ + 2016, + 2017 + ] + }, { "slug": "p2psporg", "name": "P2PSP.org", @@ -700,18 +737,6 @@ 2024 ] }, - { - "slug": "owncloud", - "name": "ownCloud", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/owncloud.webp", - "category": "Infrastructure and cloud", - "total_projects": 5, - "is_currently_active": false, - "active_years": [ - 2016, - 2017 - ] - }, { "slug": "anitaborg-open-source", "name": "AnitaB.org Open Source", @@ -800,6 +825,17 @@ "active_years": [ 2018 ] + }, + { + "slug": "erofs-filesystem", + "name": "EROFS filesystem", + "logo_url": "https://summerofcode.withgoogle.com/media/org/erofs-filesystem/qrkpvwkzjqmwoyau-360.png", + "category": "Operating systems", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] } ], "charts": { @@ -853,11 +889,16 @@ "year": 2025, "org_count": 23, "project_count": 186 + }, + { + "year": 2026, + "org_count": 26, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.050Z" + "generated_at": "2026-02-19T13:35:59.382Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/angular.json b/new-api-details/tech-stack/angular.json index a2b6ba4a..148dbffd 100644 --- a/new-api-details/tech-stack/angular.json +++ b/new-api-details/tech-stack/angular.json @@ -1,13 +1,13 @@ { "slug": "angular", "name": "angular", - "published_at": "2026-01-24T21:33:12.179Z", + "published_at": "2026-02-19T13:35:59.520Z", "metrics": { "org_count": 16, "project_count": 434, "avg_projects_per_org": 27.1, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -46,7 +47,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -65,7 +67,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -97,7 +100,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -106,7 +110,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cloudcv.webp", "category": "Web", "total_projects": 28, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -125,14 +129,15 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-genome-informatics.webp", "category": "Science and medicine", "total_projects": 28, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, 2020, 2021, 2022, - 2023 + 2023, + 2026 ] }, { @@ -141,7 +146,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/fedora-project.webp", "category": "Operating systems", "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -302,11 +307,16 @@ "year": 2025, "org_count": 10, "project_count": 65 + }, + { + "year": 2026, + "org_count": 8, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.179Z" + "generated_at": "2026-02-19T13:35:59.520Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/ansible.json b/new-api-details/tech-stack/ansible.json index 7644425a..b08bc45a 100644 --- a/new-api-details/tech-stack/ansible.json +++ b/new-api-details/tech-stack/ansible.json @@ -1,13 +1,13 @@ { "slug": "ansible", "name": "ansible", - "published_at": "2026-01-24T21:33:12.246Z", + "published_at": "2026-02-19T13:35:59.628Z", "metrics": { "org_count": 4, "project_count": 59, "avg_projects_per_org": 14.8, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/fedora-project.webp", "category": "Operating systems", "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -42,7 +42,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -54,7 +55,8 @@ "is_currently_active": true, "active_years": [ 2022, - 2025 + 2025, + 2026 ] }, { @@ -121,11 +123,16 @@ "year": 2025, "org_count": 3, "project_count": 9 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.246Z" + "generated_at": "2026-02-19T13:35:59.628Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/antlr.json b/new-api-details/tech-stack/antlr.json index dc331c18..62126294 100644 --- a/new-api-details/tech-stack/antlr.json +++ b/new-api-details/tech-stack/antlr.json @@ -1,13 +1,13 @@ { "slug": "antlr", "name": "antlr", - "published_at": "2026-01-24T21:33:12.425Z", + "published_at": "2026-02-19T13:35:59.537Z", "metrics": { "org_count": 3, "project_count": 61, "avg_projects_per_org": 20.3, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -38,7 +38,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -105,11 +106,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.425Z" + "generated_at": "2026-02-19T13:35:59.537Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/apache-airflow.json b/new-api-details/tech-stack/apache-airflow.json index e08414d0..dfdefa53 100644 --- a/new-api-details/tech-stack/apache-airflow.json +++ b/new-api-details/tech-stack/apache-airflow.json @@ -1,7 +1,7 @@ { "slug": "apache-airflow", "name": "apache airflow", - "published_at": "2026-01-24T21:33:12.373Z", + "published_at": "2026-02-19T13:35:59.807Z", "metrics": { "org_count": 1, "project_count": 1, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.373Z" + "generated_at": "2026-02-19T13:35:59.807Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/apache-arrow.json b/new-api-details/tech-stack/apache-arrow.json index 21a1ac23..c0e79b15 100644 --- a/new-api-details/tech-stack/apache-arrow.json +++ b/new-api-details/tech-stack/apache-arrow.json @@ -1,7 +1,7 @@ { "slug": "apache-arrow", "name": "apache arrow", - "published_at": "2026-01-24T21:33:12.174Z", + "published_at": "2026-02-19T13:35:59.515Z", "metrics": { "org_count": 1, "project_count": 20, @@ -76,11 +76,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.174Z" + "generated_at": "2026-02-19T13:35:59.515Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/apache-beam.json b/new-api-details/tech-stack/apache-beam.json index c87770a1..f009d61f 100644 --- a/new-api-details/tech-stack/apache-beam.json +++ b/new-api-details/tech-stack/apache-beam.json @@ -1,13 +1,13 @@ { "slug": "apache-beam", "name": "Apache Beam", - "published_at": "2026-01-24T21:33:12.422Z", + "published_at": "2026-02-19T13:35:59.870Z", "metrics": { "org_count": 1, "project_count": 77, "avg_projects_per_org": 77, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -82,11 +83,16 @@ "year": 2025, "org_count": 1, "project_count": 6 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.422Z" + "generated_at": "2026-02-19T13:35:59.870Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/apache-kafka.json b/new-api-details/tech-stack/apache-kafka.json index 8525b809..f835e4ec 100644 --- a/new-api-details/tech-stack/apache-kafka.json +++ b/new-api-details/tech-stack/apache-kafka.json @@ -1,22 +1,22 @@ { "slug": "apache-kafka", "name": "apache kafka", - "published_at": "2026-01-24T21:33:12.320Z", + "published_at": "2026-02-19T13:35:59.736Z", "metrics": { "org_count": 2, "project_count": 67, "avg_projects_per_org": 33.5, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { "slug": "jboss-community", "name": "JBoss Community", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jboss-community.webp", - "category": "Data", + "category": "Web", "total_projects": 52, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -24,7 +24,8 @@ 2019, 2020, 2021, - 2022 + 2022, + 2026 ] }, { @@ -33,7 +34,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/internet-health-report.webp", "category": "Science and medicine", "total_projects": 15, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2023, @@ -93,11 +94,16 @@ "year": 2025, "org_count": 1, "project_count": 4 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.320Z" + "generated_at": "2026-02-19T13:35:59.736Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/apache-spark.json b/new-api-details/tech-stack/apache-spark.json index f8050608..9293d082 100644 --- a/new-api-details/tech-stack/apache-spark.json +++ b/new-api-details/tech-stack/apache-spark.json @@ -1,20 +1,20 @@ { "slug": "apache-spark", "name": "apache spark", - "published_at": "2026-01-24T21:33:12.208Z", + "published_at": "2026-02-19T13:35:59.591Z", "metrics": { "org_count": 4, "project_count": 80, "avg_projects_per_org": 20, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { "slug": "dbpedia", "name": "DBpedia", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/dbpedia.webp", - "category": "Science and medicine", + "category": "Data", "total_projects": 61, "is_currently_active": true, "active_years": [ @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -118,11 +119,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.208Z" + "generated_at": "2026-02-19T13:35:59.591Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/api.json b/new-api-details/tech-stack/api.json index cab817b7..75c7c061 100644 --- a/new-api-details/tech-stack/api.json +++ b/new-api-details/tech-stack/api.json @@ -1,13 +1,13 @@ { "slug": "api", "name": "api", - "published_at": "2026-01-24T21:33:12.073Z", + "published_at": "2026-02-19T13:35:59.449Z", "metrics": { "org_count": 3, "project_count": 52, "avg_projects_per_org": 17.3, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -52,7 +53,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -107,11 +109,16 @@ "year": 2025, "org_count": 2, "project_count": 6 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.073Z" + "generated_at": "2026-02-19T13:35:59.449Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/apis.json b/new-api-details/tech-stack/apis.json index 72f59427..b38e48fc 100644 --- a/new-api-details/tech-stack/apis.json +++ b/new-api-details/tech-stack/apis.json @@ -1,7 +1,7 @@ { "slug": "apis", "name": "apis", - "published_at": "2026-01-24T21:33:12.301Z", + "published_at": "2026-02-19T13:35:59.714Z", "metrics": { "org_count": 1, "project_count": 8, @@ -76,11 +76,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.301Z" + "generated_at": "2026-02-19T13:35:59.714Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/app.json b/new-api-details/tech-stack/app.json index e1369cda..e2575348 100644 --- a/new-api-details/tech-stack/app.json +++ b/new-api-details/tech-stack/app.json @@ -1,13 +1,13 @@ { "slug": "app", "name": "app", - "published_at": "2026-01-24T21:33:12.368Z", + "published_at": "2026-02-19T13:35:59.821Z", "metrics": { "org_count": 1, "project_count": 45, "avg_projects_per_org": 45, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.368Z" + "generated_at": "2026-02-19T13:35:59.821Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/archc.json b/new-api-details/tech-stack/archc.json index ce612011..e8fe83b5 100644 --- a/new-api-details/tech-stack/archc.json +++ b/new-api-details/tech-stack/archc.json @@ -1,7 +1,7 @@ { "slug": "archc", "name": "archc", - "published_at": "2026-01-24T21:33:12.104Z", + "published_at": "2026-02-19T13:35:59.452Z", "metrics": { "org_count": 1, "project_count": 2, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.104Z" + "generated_at": "2026-02-19T13:35:59.452Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/arduino.json b/new-api-details/tech-stack/arduino.json index bf3a2690..d2963183 100644 --- a/new-api-details/tech-stack/arduino.json +++ b/new-api-details/tech-stack/arduino.json @@ -1,13 +1,13 @@ { "slug": "arduino", "name": "arduino", - "published_at": "2026-01-24T21:33:12.107Z", + "published_at": "2026-02-19T13:35:59.453Z", "metrics": { "org_count": 7, "project_count": 244, "avg_projects_per_org": 34.9, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -46,14 +47,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "open-technologies-alliance-gfoss", "name": "Open Technologies Alliance - GFOSS", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-technologies-alliance-gfoss.webp", - "category": "Development tools", + "category": "Science and medicine", "total_projects": 70, "is_currently_active": true, "active_years": [ @@ -64,7 +66,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -166,11 +169,16 @@ "year": 2025, "org_count": 3, "project_count": 30 + }, + { + "year": 2026, + "org_count": 3, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.107Z" + "generated_at": "2026-02-19T13:35:59.453Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/arm.json b/new-api-details/tech-stack/arm.json index 5702a54c..cc624e77 100644 --- a/new-api-details/tech-stack/arm.json +++ b/new-api-details/tech-stack/arm.json @@ -1,13 +1,13 @@ { "slug": "arm", "name": "arm", - "published_at": "2026-01-24T21:33:12.122Z", + "published_at": "2026-02-19T13:35:59.471Z", "metrics": { "org_count": 7, "project_count": 157, "avg_projects_per_org": 22.4, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/beagleboardorg.webp", "category": "Science and medicine", "total_projects": 44, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -47,7 +47,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -61,7 +62,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -70,7 +72,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/haiku.webp", "category": "Operating systems", "total_projects": 26, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, @@ -79,7 +81,8 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -171,11 +174,16 @@ "year": 2025, "org_count": 3, "project_count": 24 + }, + { + "year": 2026, + "org_count": 3, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.122Z" + "generated_at": "2026-02-19T13:35:59.471Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/arrow.json b/new-api-details/tech-stack/arrow.json index bedad40e..3f8c16fc 100644 --- a/new-api-details/tech-stack/arrow.json +++ b/new-api-details/tech-stack/arrow.json @@ -1,7 +1,7 @@ { "slug": "arrow", "name": "arrow", - "published_at": "2026-01-24T21:33:12.098Z", + "published_at": "2026-02-19T13:35:59.431Z", "metrics": { "org_count": 2, "project_count": 22, @@ -30,7 +30,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/apache-datafusion.webp", "category": "Data", "total_projects": 2, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2025 ] @@ -87,11 +87,16 @@ "year": 2025, "org_count": 1, "project_count": 2 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.098Z" + "generated_at": "2026-02-19T13:35:59.431Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/artificial-intelligence.json b/new-api-details/tech-stack/artificial-intelligence.json index 24a869ef..6a30cbda 100644 --- a/new-api-details/tech-stack/artificial-intelligence.json +++ b/new-api-details/tech-stack/artificial-intelligence.json @@ -1,13 +1,13 @@ { "slug": "artificial-intelligence", "name": "artificial intelligence", - "published_at": "2026-01-24T21:33:12.082Z", + "published_at": "2026-02-19T13:35:59.398Z", "metrics": { "org_count": 9, "project_count": 629, "avg_projects_per_org": 69.9, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,14 +26,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "fossasia", "name": "FOSSASIA", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/fossasia.webp", - "category": "Science and medicine", + "category": "End user applications", "total_projects": 140, "is_currently_active": true, "active_years": [ @@ -42,7 +43,8 @@ 2018, 2019, 2024, - 2025 + 2025, + 2026 ] }, { @@ -57,7 +59,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -76,7 +79,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -85,7 +89,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cloudcv.webp", "category": "Web", "total_projects": 28, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -107,7 +111,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -124,7 +129,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -152,7 +158,8 @@ 2020, 2021, 2024, - 2025 + 2025, + 2026 ] } ], @@ -207,11 +214,16 @@ "year": 2025, "org_count": 8, "project_count": 112 + }, + { + "year": 2026, + "org_count": 7, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.082Z" + "generated_at": "2026-02-19T13:35:59.398Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/asciidoctor.json b/new-api-details/tech-stack/asciidoctor.json index 6659a458..cbd82554 100644 --- a/new-api-details/tech-stack/asciidoctor.json +++ b/new-api-details/tech-stack/asciidoctor.json @@ -1,22 +1,22 @@ { "slug": "asciidoctor", "name": "asciidoctor", - "published_at": "2026-01-24T21:33:12.323Z", + "published_at": "2026-02-19T13:35:59.742Z", "metrics": { "org_count": 1, "project_count": 52, "avg_projects_per_org": 52, "first_year_used": 2016, - "latest_year_used": 2022 + "latest_year_used": 2026 }, "organizations": [ { "slug": "jboss-community", "name": "JBoss Community", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jboss-community.webp", - "category": "Data", + "category": "Web", "total_projects": 52, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -24,7 +24,8 @@ 2019, 2020, 2021, - 2022 + 2022, + 2026 ] } ], @@ -79,11 +80,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.323Z" + "generated_at": "2026-02-19T13:35:59.742Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/asic.json b/new-api-details/tech-stack/asic.json index 49c47359..573b9ae0 100644 --- a/new-api-details/tech-stack/asic.json +++ b/new-api-details/tech-stack/asic.json @@ -1,7 +1,7 @@ { "slug": "asic", "name": "ASIC", - "published_at": "2026-01-24T21:33:12.158Z", + "published_at": "2026-02-19T13:35:59.539Z", "metrics": { "org_count": 1, "project_count": 12, @@ -75,11 +75,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.158Z" + "generated_at": "2026-02-19T13:35:59.539Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/asm-c-c.json b/new-api-details/tech-stack/asm-c-c.json index ccf29c42..73ff09e9 100644 --- a/new-api-details/tech-stack/asm-c-c.json +++ b/new-api-details/tech-stack/asm-c-c.json @@ -1,7 +1,7 @@ { "slug": "asm-c-c", "name": "asm/c/c++", - "published_at": "2026-01-24T21:33:12.546Z", + "published_at": "2026-02-19T13:36:00.104Z", "metrics": { "org_count": 1, "project_count": 2, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.546Z" + "generated_at": "2026-02-19T13:36:00.104Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/asm.json b/new-api-details/tech-stack/asm.json index 57338323..80e851a1 100644 --- a/new-api-details/tech-stack/asm.json +++ b/new-api-details/tech-stack/asm.json @@ -1,13 +1,13 @@ { "slug": "asm", "name": "asm", - "published_at": "2026-01-24T21:33:12.238Z", + "published_at": "2026-02-19T13:35:59.632Z", "metrics": { "org_count": 6, "project_count": 166, "avg_projects_per_org": 27.7, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -47,7 +48,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -56,14 +58,15 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/metasploit.webp", "category": "Security", "total_projects": 12, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, 2020, 2021, 2022, - 2023 + 2023, + 2026 ] }, { @@ -72,10 +75,11 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kolibrios-project-team.webp", "category": "Operating systems", "total_projects": 6, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, - 2024 + 2024, + 2026 ] }, { @@ -153,11 +157,16 @@ "year": 2025, "org_count": 2, "project_count": 18 + }, + { + "year": 2026, + "org_count": 4, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.238Z" + "generated_at": "2026-02-19T13:35:59.632Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/asr.json b/new-api-details/tech-stack/asr.json index 0372e82c..1dd8cf90 100644 --- a/new-api-details/tech-stack/asr.json +++ b/new-api-details/tech-stack/asr.json @@ -1,7 +1,7 @@ { "slug": "asr", "name": "asr", - "published_at": "2026-01-24T21:33:12.459Z", + "published_at": "2026-02-19T13:35:59.919Z", "metrics": { "org_count": 1, "project_count": 88, @@ -81,11 +81,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.459Z" + "generated_at": "2026-02-19T13:35:59.919Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/assembler.json b/new-api-details/tech-stack/assembler.json index c4de14b4..523327b9 100644 --- a/new-api-details/tech-stack/assembler.json +++ b/new-api-details/tech-stack/assembler.json @@ -1,13 +1,13 @@ { "slug": "assembler", "name": "assembler", - "published_at": "2026-01-24T21:33:12.238Z", + "published_at": "2026-02-19T13:35:59.574Z", "metrics": { "org_count": 2, "project_count": 60, "avg_projects_per_org": 30, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -97,11 +98,16 @@ "year": 2025, "org_count": 1, "project_count": 3 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.238Z" + "generated_at": "2026-02-19T13:35:59.574Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/assembly-language.json b/new-api-details/tech-stack/assembly-language.json index 563ef9a6..e21c7d60 100644 --- a/new-api-details/tech-stack/assembly-language.json +++ b/new-api-details/tech-stack/assembly-language.json @@ -1,13 +1,13 @@ { "slug": "assembly-language", "name": "assembly language", - "published_at": "2026-01-24T21:33:12.530Z", + "published_at": "2026-02-19T13:36:00.067Z", "metrics": { "org_count": 1, "project_count": 16, "avg_projects_per_org": 16, "first_year_used": 2022, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -21,7 +21,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -76,11 +77,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.530Z" + "generated_at": "2026-02-19T13:36:00.068Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/assembly.json b/new-api-details/tech-stack/assembly.json index 4b9aa8d6..96114ddd 100644 --- a/new-api-details/tech-stack/assembly.json +++ b/new-api-details/tech-stack/assembly.json @@ -1,13 +1,13 @@ { "slug": "assembly", "name": "assembly", - "published_at": "2026-01-24T21:33:12.165Z", + "published_at": "2026-02-19T13:35:59.572Z", "metrics": { "org_count": 12, "project_count": 390, "avg_projects_per_org": 32.5, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -47,7 +48,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -67,7 +69,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -87,7 +90,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -106,7 +110,8 @@ 2021, 2022, 2023, - 2025 + 2025, + 2026 ] }, { @@ -126,7 +131,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -143,7 +149,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -152,14 +159,15 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/metasploit.webp", "category": "Security", "total_projects": 12, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, 2020, 2021, 2022, - 2023 + 2023, + 2026 ] }, { @@ -183,10 +191,11 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kolibrios-project-team.webp", "category": "Operating systems", "total_projects": 6, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, - 2024 + 2024, + 2026 ] }, { @@ -263,11 +272,16 @@ "year": 2025, "org_count": 7, "project_count": 51 + }, + { + "year": 2026, + "org_count": 9, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.165Z" + "generated_at": "2026-02-19T13:35:59.572Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/ast.json b/new-api-details/tech-stack/ast.json index 62db29d9..e45578ed 100644 --- a/new-api-details/tech-stack/ast.json +++ b/new-api-details/tech-stack/ast.json @@ -1,13 +1,13 @@ { "slug": "ast", "name": "AST", - "published_at": "2026-01-24T21:33:12.410Z", + "published_at": "2026-02-19T13:35:59.852Z", "metrics": { "org_count": 1, "project_count": 4, "avg_projects_per_org": 4, "first_year_used": 2025, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -18,7 +18,8 @@ "total_projects": 4, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] } ], @@ -73,11 +74,16 @@ "year": 2025, "org_count": 1, "project_count": 4 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.410Z" + "generated_at": "2026-02-19T13:35:59.852Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/asyncapi.json b/new-api-details/tech-stack/asyncapi.json index 8d2595da..ec345372 100644 --- a/new-api-details/tech-stack/asyncapi.json +++ b/new-api-details/tech-stack/asyncapi.json @@ -1,7 +1,7 @@ { "slug": "asyncapi", "name": "AsyncAPI", - "published_at": "2026-01-24T21:33:12.447Z", + "published_at": "2026-02-19T13:35:59.903Z", "metrics": { "org_count": 1, "project_count": 19, @@ -76,11 +76,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.447Z" + "generated_at": "2026-02-19T13:35:59.903Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/asynchronous-i-o.json b/new-api-details/tech-stack/asynchronous-i-o.json index c6577946..95c417c2 100644 --- a/new-api-details/tech-stack/asynchronous-i-o.json +++ b/new-api-details/tech-stack/asynchronous-i-o.json @@ -1,7 +1,7 @@ { "slug": "asynchronous-i-o", "name": "asynchronous i/o", - "published_at": "2026-01-24T21:33:12.541Z", + "published_at": "2026-02-19T13:36:00.105Z", "metrics": { "org_count": 1, "project_count": 11, @@ -78,11 +78,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.541Z" + "generated_at": "2026-02-19T13:36:00.105Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/atom.json b/new-api-details/tech-stack/atom.json index 15092a1c..e527d45d 100644 --- a/new-api-details/tech-stack/atom.json +++ b/new-api-details/tech-stack/atom.json @@ -1,13 +1,13 @@ { "slug": "atom", "name": "atom", - "published_at": "2026-01-24T21:33:12.283Z", + "published_at": "2026-02-19T13:35:59.668Z", "metrics": { "org_count": 2, "project_count": 144, "avg_projects_per_org": 72, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -92,11 +93,16 @@ "year": 2025, "org_count": 1, "project_count": 14 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.283Z" + "generated_at": "2026-02-19T13:35:59.668Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/audio-procesing.json b/new-api-details/tech-stack/audio-procesing.json index 7c511313..9638e867 100644 --- a/new-api-details/tech-stack/audio-procesing.json +++ b/new-api-details/tech-stack/audio-procesing.json @@ -1,7 +1,7 @@ { "slug": "audio-procesing", "name": "audio procesing", - "published_at": "2026-01-24T21:33:12.457Z", + "published_at": "2026-02-19T13:35:59.916Z", "metrics": { "org_count": 1, "project_count": 88, @@ -81,11 +81,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.457Z" + "generated_at": "2026-02-19T13:35:59.916Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/audio-processing.json b/new-api-details/tech-stack/audio-processing.json index 44b88985..0b7e9e22 100644 --- a/new-api-details/tech-stack/audio-processing.json +++ b/new-api-details/tech-stack/audio-processing.json @@ -1,7 +1,7 @@ { "slug": "audio-processing", "name": "audio processing", - "published_at": "2026-01-24T21:33:12.458Z", + "published_at": "2026-02-19T13:35:59.918Z", "metrics": { "org_count": 1, "project_count": 88, @@ -81,11 +81,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.458Z" + "generated_at": "2026-02-19T13:35:59.918Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/audio.json b/new-api-details/tech-stack/audio.json index 4b57e410..788f6234 100644 --- a/new-api-details/tech-stack/audio.json +++ b/new-api-details/tech-stack/audio.json @@ -1,13 +1,13 @@ { "slug": "audio", "name": "audio", - "published_at": "2026-01-24T21:33:12.314Z", + "published_at": "2026-02-19T13:35:59.727Z", "metrics": { "org_count": 3, "project_count": 120, "avg_projects_per_org": 40, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -44,7 +45,8 @@ 2020, 2022, 2024, - 2025 + 2025, + 2026 ] }, { @@ -115,11 +117,16 @@ "year": 2025, "org_count": 2, "project_count": 18 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.314Z" + "generated_at": "2026-02-19T13:35:59.727Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/automated-reasoning.json b/new-api-details/tech-stack/automated-reasoning.json index 002483ed..f2655517 100644 --- a/new-api-details/tech-stack/automated-reasoning.json +++ b/new-api-details/tech-stack/automated-reasoning.json @@ -1,13 +1,13 @@ { "slug": "automated-reasoning", "name": "automated reasoning", - "published_at": "2026-01-24T21:33:12.062Z", + "published_at": "2026-02-19T13:35:59.422Z", "metrics": { "org_count": 1, "project_count": 117, "avg_projects_per_org": 117, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 21 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.062Z" + "generated_at": "2026-02-19T13:35:59.422Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/automaton.json b/new-api-details/tech-stack/automaton.json index 5ea9f2ac..2f3c1f03 100644 --- a/new-api-details/tech-stack/automaton.json +++ b/new-api-details/tech-stack/automaton.json @@ -1,13 +1,13 @@ { "slug": "automaton", "name": "automaton", - "published_at": "2026-01-24T21:33:12.077Z", + "published_at": "2026-02-19T13:35:59.386Z", "metrics": { "org_count": 1, "project_count": 32, "avg_projects_per_org": 32, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -25,7 +25,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -80,11 +81,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.077Z" + "generated_at": "2026-02-19T13:35:59.386Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/automotive.json b/new-api-details/tech-stack/automotive.json index 1cae3e49..43157a31 100644 --- a/new-api-details/tech-stack/automotive.json +++ b/new-api-details/tech-stack/automotive.json @@ -1,7 +1,7 @@ { "slug": "automotive", "name": "automotive", - "published_at": "2026-01-24T21:33:12.261Z", + "published_at": "2026-02-19T13:35:59.665Z", "metrics": { "org_count": 1, "project_count": 3, @@ -75,11 +75,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.261Z" + "generated_at": "2026-02-19T13:35:59.665Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/autonomous-drive.json b/new-api-details/tech-stack/autonomous-drive.json index 8367680b..8ca1710e 100644 --- a/new-api-details/tech-stack/autonomous-drive.json +++ b/new-api-details/tech-stack/autonomous-drive.json @@ -1,13 +1,13 @@ { "slug": "autonomous-drive", "name": "Autonomous drive", - "published_at": "2026-01-24T21:33:12.549Z", + "published_at": "2026-02-19T13:35:59.603Z", "metrics": { "org_count": 1, "project_count": 2, "avg_projects_per_org": 2, "first_year_used": 2025, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -18,7 +18,8 @@ "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] } ], @@ -73,11 +74,16 @@ "year": 2025, "org_count": 1, "project_count": 2 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.549Z" + "generated_at": "2026-02-19T13:35:59.603Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/autotools.json b/new-api-details/tech-stack/autotools.json index 8e05b1fb..de3531e7 100644 --- a/new-api-details/tech-stack/autotools.json +++ b/new-api-details/tech-stack/autotools.json @@ -1,13 +1,13 @@ { "slug": "autotools", "name": "autotools", - "published_at": "2026-01-24T21:33:12.258Z", + "published_at": "2026-02-19T13:35:59.649Z", "metrics": { "org_count": 3, "project_count": 91, "avg_projects_per_org": 30.3, "first_year_used": 2016, - "latest_year_used": 2024 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnu-project.webp", "category": "Operating systems", "total_projects": 59, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -24,7 +24,8 @@ 2019, 2020, 2023, - 2024 + 2024, + 2026 ] }, { @@ -114,11 +115,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.258Z" + "generated_at": "2026-02-19T13:35:59.649Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/awk.json b/new-api-details/tech-stack/awk.json index 56bc0f94..bc755287 100644 --- a/new-api-details/tech-stack/awk.json +++ b/new-api-details/tech-stack/awk.json @@ -1,7 +1,7 @@ { "slug": "awk", "name": "awk", - "published_at": "2026-01-24T21:33:12.167Z", + "published_at": "2026-02-19T13:35:59.499Z", "metrics": { "org_count": 2, "project_count": 30, @@ -93,11 +93,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.167Z" + "generated_at": "2026-02-19T13:35:59.499Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/aws.json b/new-api-details/tech-stack/aws.json index adfad78e..24300996 100644 --- a/new-api-details/tech-stack/aws.json +++ b/new-api-details/tech-stack/aws.json @@ -1,7 +1,7 @@ { "slug": "aws", "name": "aws", - "published_at": "2026-01-24T21:33:12.176Z", + "published_at": "2026-02-19T13:35:59.517Z", "metrics": { "org_count": 3, "project_count": 40, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cloudcv.webp", "category": "Web", "total_projects": 28, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -35,7 +35,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/center-for-translational-data-science.webp", "category": "Science and medicine", "total_projects": 6, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2025 @@ -105,11 +105,16 @@ "year": 2025, "org_count": 2, "project_count": 7 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.176Z" + "generated_at": "2026-02-19T13:35:59.517Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/babel.json b/new-api-details/tech-stack/babel.json index 3db2cdb2..2cfaddfc 100644 --- a/new-api-details/tech-stack/babel.json +++ b/new-api-details/tech-stack/babel.json @@ -1,7 +1,7 @@ { "slug": "babel", "name": "babel", - "published_at": "2026-01-24T21:33:12.115Z", + "published_at": "2026-02-19T13:35:59.464Z", "metrics": { "org_count": 1, "project_count": 2, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.115Z" + "generated_at": "2026-02-19T13:35:59.464Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/backend.json b/new-api-details/tech-stack/backend.json index 921d51ac..064009cf 100644 --- a/new-api-details/tech-stack/backend.json +++ b/new-api-details/tech-stack/backend.json @@ -1,7 +1,7 @@ { "slug": "backend", "name": "backend", - "published_at": "2026-01-24T21:33:12.277Z", + "published_at": "2026-02-19T13:35:59.702Z", "metrics": { "org_count": 1, "project_count": 0, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.277Z" + "generated_at": "2026-02-19T13:35:59.702Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/bash.json b/new-api-details/tech-stack/bash.json index 974adfd3..7f9b24c9 100644 --- a/new-api-details/tech-stack/bash.json +++ b/new-api-details/tech-stack/bash.json @@ -1,13 +1,13 @@ { "slug": "bash", "name": "bash", - "published_at": "2026-01-24T21:33:12.101Z", + "published_at": "2026-02-19T13:35:59.439Z", "metrics": { "org_count": 7, "project_count": 214, "avg_projects_per_org": 30.6, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -43,7 +43,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -52,7 +53,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/department-of-biomedical-informatics-emory-university.webp", "category": "Security", "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2021, 2022, @@ -67,7 +68,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/fedora-project.webp", "category": "Operating systems", "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -176,11 +177,16 @@ "year": 2025, "org_count": 3, "project_count": 15 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.101Z" + "generated_at": "2026-02-19T13:35:59.439Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/batman.json b/new-api-details/tech-stack/batman.json index 94bd4435..4b08b989 100644 --- a/new-api-details/tech-stack/batman.json +++ b/new-api-details/tech-stack/batman.json @@ -1,7 +1,7 @@ { "slug": "batman", "name": "batman", - "published_at": "2026-01-24T21:33:12.550Z", + "published_at": "2026-02-19T13:35:59.652Z", "metrics": { "org_count": 1, "project_count": 74, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/freifunk.webp", "category": "Operating systems", "total_projects": 74, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -81,11 +81,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.550Z" + "generated_at": "2026-02-19T13:35:59.652Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/bazel.json b/new-api-details/tech-stack/bazel.json index b901c89a..8a790539 100644 --- a/new-api-details/tech-stack/bazel.json +++ b/new-api-details/tech-stack/bazel.json @@ -1,7 +1,7 @@ { "slug": "bazel", "name": "bazel", - "published_at": "2026-01-24T21:33:12.116Z", + "published_at": "2026-02-19T13:35:59.465Z", "metrics": { "org_count": 1, "project_count": 2, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.116Z" + "generated_at": "2026-02-19T13:35:59.465Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/beacon.json b/new-api-details/tech-stack/beacon.json index d8276ca5..3ad0ce74 100644 --- a/new-api-details/tech-stack/beacon.json +++ b/new-api-details/tech-stack/beacon.json @@ -1,7 +1,7 @@ { "slug": "beacon", "name": "beacon", - "published_at": "2026-01-24T21:33:12.435Z", + "published_at": "2026-02-19T13:35:59.889Z", "metrics": { "org_count": 1, "project_count": 8, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.435Z" + "generated_at": "2026-02-19T13:35:59.889Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/beacons.json b/new-api-details/tech-stack/beacons.json index a3e9dad6..a8359cf9 100644 --- a/new-api-details/tech-stack/beacons.json +++ b/new-api-details/tech-stack/beacons.json @@ -1,7 +1,7 @@ { "slug": "beacons", "name": "beacons", - "published_at": "2026-01-24T21:33:12.434Z", + "published_at": "2026-02-19T13:35:59.889Z", "metrics": { "org_count": 1, "project_count": 8, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.434Z" + "generated_at": "2026-02-19T13:35:59.889Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/beaglebone.json b/new-api-details/tech-stack/beaglebone.json index 7b650182..385ea3ad 100644 --- a/new-api-details/tech-stack/beaglebone.json +++ b/new-api-details/tech-stack/beaglebone.json @@ -1,7 +1,7 @@ { "slug": "beaglebone", "name": "beaglebone", - "published_at": "2026-01-24T21:33:12.117Z", + "published_at": "2026-02-19T13:35:59.466Z", "metrics": { "org_count": 1, "project_count": 44, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/beagleboardorg.webp", "category": "Science and medicine", "total_projects": 44, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -82,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.117Z" + "generated_at": "2026-02-19T13:35:59.466Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/beam.json b/new-api-details/tech-stack/beam.json index 21fc14a9..b9f6180e 100644 --- a/new-api-details/tech-stack/beam.json +++ b/new-api-details/tech-stack/beam.json @@ -1,7 +1,7 @@ { "slug": "beam", "name": "beam", - "published_at": "2026-01-24T21:33:12.125Z", + "published_at": "2026-02-19T13:35:59.475Z", "metrics": { "org_count": 2, "project_count": 22, @@ -86,11 +86,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.125Z" + "generated_at": "2026-02-19T13:35:59.475Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/bevy.json b/new-api-details/tech-stack/bevy.json new file mode 100644 index 00000000..e22a571d --- /dev/null +++ b/new-api-details/tech-stack/bevy.json @@ -0,0 +1,97 @@ +{ + "slug": "bevy", + "name": "Bevy", + "published_at": "2026-02-19T13:35:59.851Z", + "metrics": { + "org_count": 1, + "project_count": 46, + "avg_projects_per_org": 46, + "first_year_used": 2016, + "latest_year_used": 2026 + }, + "organizations": [ + { + "slug": "open-robotics", + "name": "Open Robotics", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-robotics.webp", + "category": "End user applications", + "total_projects": 46, + "is_currently_active": true, + "active_years": [ + 2016, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ] + } + ], + "charts": { + "popularity_by_year": [ + { + "year": 2016, + "org_count": 1, + "project_count": 7 + }, + { + "year": 2017, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2018, + "org_count": 1, + "project_count": 4 + }, + { + "year": 2019, + "org_count": 1, + "project_count": 7 + }, + { + "year": 2020, + "org_count": 1, + "project_count": 7 + }, + { + "year": 2021, + "org_count": 1, + "project_count": 2 + }, + { + "year": 2022, + "org_count": 1, + "project_count": 2 + }, + { + "year": 2023, + "org_count": 1, + "project_count": 3 + }, + { + "year": 2024, + "org_count": 1, + "project_count": 5 + }, + { + "year": 2025, + "org_count": 1, + "project_count": 9 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 + } + ] + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:35:59.851Z" + } +} \ No newline at end of file diff --git a/new-api-details/tech-stack/bibtex.json b/new-api-details/tech-stack/bibtex.json index cc06988c..3f1248f1 100644 --- a/new-api-details/tech-stack/bibtex.json +++ b/new-api-details/tech-stack/bibtex.json @@ -1,13 +1,13 @@ { "slug": "bibtex", "name": "bibtex", - "published_at": "2026-01-24T21:33:12.329Z", + "published_at": "2026-02-19T13:35:59.741Z", "metrics": { "org_count": 1, "project_count": 11, "avg_projects_per_org": 11, "first_year_used": 2019, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -22,7 +22,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] } ], @@ -77,11 +78,16 @@ "year": 2025, "org_count": 1, "project_count": 4 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.329Z" + "generated_at": "2026-02-19T13:35:59.741Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/big-data-science.json b/new-api-details/tech-stack/big-data-science.json index fb82c6d9..b730c48c 100644 --- a/new-api-details/tech-stack/big-data-science.json +++ b/new-api-details/tech-stack/big-data-science.json @@ -1,13 +1,13 @@ { "slug": "big-data-science", "name": "big data science", - "published_at": "2026-01-24T21:33:12.302Z", + "published_at": "2026-02-19T13:35:59.738Z", "metrics": { "org_count": 2, "project_count": 110, "avg_projects_per_org": 55, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -40,7 +40,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] } ], @@ -95,11 +96,16 @@ "year": 2025, "org_count": 1, "project_count": 9 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.302Z" + "generated_at": "2026-02-19T13:35:59.738Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/big-data.json b/new-api-details/tech-stack/big-data.json index 39c0a2a5..fa2f5d3a 100644 --- a/new-api-details/tech-stack/big-data.json +++ b/new-api-details/tech-stack/big-data.json @@ -1,13 +1,13 @@ { "slug": "big-data", "name": "big data", - "published_at": "2026-01-24T21:33:12.049Z", + "published_at": "2026-02-19T13:35:59.381Z", "metrics": { "org_count": 5, "project_count": 87, "avg_projects_per_org": 17.4, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -24,7 +24,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -44,7 +45,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -139,11 +141,16 @@ "year": 2025, "org_count": 2, "project_count": 6 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.049Z" + "generated_at": "2026-02-19T13:35:59.381Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/bigquery.json b/new-api-details/tech-stack/bigquery.json index ecca72a1..bf532686 100644 --- a/new-api-details/tech-stack/bigquery.json +++ b/new-api-details/tech-stack/bigquery.json @@ -1,13 +1,13 @@ { "slug": "bigquery", "name": "bigquery", - "published_at": "2026-01-24T21:33:12.377Z", + "published_at": "2026-02-19T13:35:59.812Z", "metrics": { "org_count": 1, "project_count": 60, "avg_projects_per_org": 60, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -82,11 +83,16 @@ "year": 2025, "org_count": 1, "project_count": 6 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.377Z" + "generated_at": "2026-02-19T13:35:59.813Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/bioinformatics.json b/new-api-details/tech-stack/bioinformatics.json index 7f85774b..60246d4f 100644 --- a/new-api-details/tech-stack/bioinformatics.json +++ b/new-api-details/tech-stack/bioinformatics.json @@ -1,7 +1,7 @@ { "slug": "bioinformatics", "name": "bioinformatics", - "published_at": "2026-01-24T21:33:12.488Z", + "published_at": "2026-02-19T13:35:59.950Z", "metrics": { "org_count": 1, "project_count": 9, @@ -75,11 +75,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.488Z" + "generated_at": "2026-02-19T13:35:59.950Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/biojs.json b/new-api-details/tech-stack/biojs.json index 53382ae1..9ca21a3b 100644 --- a/new-api-details/tech-stack/biojs.json +++ b/new-api-details/tech-stack/biojs.json @@ -1,7 +1,7 @@ { "slug": "biojs", "name": "biojs", - "published_at": "2026-01-24T21:33:12.403Z", + "published_at": "2026-02-19T13:35:59.843Z", "metrics": { "org_count": 1, "project_count": 45, @@ -79,11 +79,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.404Z" + "generated_at": "2026-02-19T13:35:59.843Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/bios.json b/new-api-details/tech-stack/bios.json index e0acff6f..4fb8fe7d 100644 --- a/new-api-details/tech-stack/bios.json +++ b/new-api-details/tech-stack/bios.json @@ -1,7 +1,7 @@ { "slug": "bios", "name": "bios", - "published_at": "2026-01-24T21:33:12.249Z", + "published_at": "2026-02-19T13:35:59.635Z", "metrics": { "org_count": 1, "project_count": 1, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.249Z" + "generated_at": "2026-02-19T13:35:59.635Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/bison.json b/new-api-details/tech-stack/bison.json index 9bce404b..a850ebdd 100644 --- a/new-api-details/tech-stack/bison.json +++ b/new-api-details/tech-stack/bison.json @@ -1,7 +1,7 @@ { "slug": "bison", "name": "Bison", - "published_at": "2026-01-24T21:33:12.168Z", + "published_at": "2026-02-19T13:35:59.501Z", "metrics": { "org_count": 1, "project_count": 2, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.168Z" + "generated_at": "2026-02-19T13:35:59.501Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/blender.json b/new-api-details/tech-stack/blender.json index 0386d9be..67bd6acd 100644 --- a/new-api-details/tech-stack/blender.json +++ b/new-api-details/tech-stack/blender.json @@ -1,7 +1,7 @@ { "slug": "blender", "name": "blender", - "published_at": "2026-01-24T21:33:12.426Z", + "published_at": "2026-02-19T13:35:59.878Z", "metrics": { "org_count": 2, "project_count": 43, @@ -89,11 +89,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.426Z" + "generated_at": "2026-02-19T13:35:59.878Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/blockchain.json b/new-api-details/tech-stack/blockchain.json index be5f209d..cc01da19 100644 --- a/new-api-details/tech-stack/blockchain.json +++ b/new-api-details/tech-stack/blockchain.json @@ -1,13 +1,13 @@ { "slug": "blockchain", "name": "Blockchain", - "published_at": "2026-01-24T21:33:12.067Z", + "published_at": "2026-02-19T13:35:59.424Z", "metrics": { "org_count": 1, "project_count": 117, "avg_projects_per_org": 117, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 21 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.067Z" + "generated_at": "2026-02-19T13:35:59.424Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/bluetooth.json b/new-api-details/tech-stack/bluetooth.json index 373d0956..dda43713 100644 --- a/new-api-details/tech-stack/bluetooth.json +++ b/new-api-details/tech-stack/bluetooth.json @@ -1,7 +1,7 @@ { "slug": "bluetooth", "name": "bluetooth", - "published_at": "2026-01-24T21:33:12.438Z", + "published_at": "2026-02-19T13:35:59.891Z", "metrics": { "org_count": 1, "project_count": 8, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.438Z" + "generated_at": "2026-02-19T13:35:59.891Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/boinc.json b/new-api-details/tech-stack/boinc.json index 74354175..5df8e0c4 100644 --- a/new-api-details/tech-stack/boinc.json +++ b/new-api-details/tech-stack/boinc.json @@ -1,7 +1,7 @@ { "slug": "boinc", "name": "boinc", - "published_at": "2026-01-24T21:33:12.084Z", + "published_at": "2026-02-19T13:35:59.399Z", "metrics": { "org_count": 1, "project_count": 30, @@ -77,11 +77,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.084Z" + "generated_at": "2026-02-19T13:35:59.399Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/boost.json b/new-api-details/tech-stack/boost.json index dc38abc6..28c20e7f 100644 --- a/new-api-details/tech-stack/boost.json +++ b/new-api-details/tech-stack/boost.json @@ -1,13 +1,13 @@ { "slug": "boost", "name": "boost", - "published_at": "2026-01-24T21:33:12.044Z", + "published_at": "2026-02-19T13:35:59.372Z", "metrics": { "org_count": 3, "project_count": 81, "avg_projects_per_org": 27, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -41,7 +41,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -107,11 +108,16 @@ "year": 2025, "org_count": 1, "project_count": 6 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.044Z" + "generated_at": "2026-02-19T13:35:59.372Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/bootstrap.json b/new-api-details/tech-stack/bootstrap.json index 9030176f..9cfb7711 100644 --- a/new-api-details/tech-stack/bootstrap.json +++ b/new-api-details/tech-stack/bootstrap.json @@ -1,13 +1,13 @@ { "slug": "bootstrap", "name": "bootstrap", - "published_at": "2026-01-24T21:33:12.136Z", + "published_at": "2026-02-19T13:35:59.491Z", "metrics": { "org_count": 3, "project_count": 45, "avg_projects_per_org": 15, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -24,7 +24,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -103,11 +104,16 @@ "year": 2025, "org_count": 1, "project_count": 6 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.136Z" + "generated_at": "2026-02-19T13:35:59.491Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/bpm.json b/new-api-details/tech-stack/bpm.json index be00df1c..6704efb1 100644 --- a/new-api-details/tech-stack/bpm.json +++ b/new-api-details/tech-stack/bpm.json @@ -1,7 +1,7 @@ { "slug": "bpm", "name": "bpm", - "published_at": "2026-01-24T21:33:12.400Z", + "published_at": "2026-02-19T13:35:59.872Z", "metrics": { "org_count": 1, "project_count": 0, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.401Z" + "generated_at": "2026-02-19T13:35:59.872Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/breakpad.json b/new-api-details/tech-stack/breakpad.json index 3cad29d7..9f18bef7 100644 --- a/new-api-details/tech-stack/breakpad.json +++ b/new-api-details/tech-stack/breakpad.json @@ -1,7 +1,7 @@ { "slug": "breakpad", "name": "breakpad", - "published_at": "2026-01-24T21:33:12.391Z", + "published_at": "2026-02-19T13:35:59.835Z", "metrics": { "org_count": 1, "project_count": 24, @@ -81,11 +81,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.391Z" + "generated_at": "2026-02-19T13:35:59.835Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/browser-extension.json b/new-api-details/tech-stack/browser-extension.json index 60e048aa..aa5ed1ff 100644 --- a/new-api-details/tech-stack/browser-extension.json +++ b/new-api-details/tech-stack/browser-extension.json @@ -1,13 +1,13 @@ { "slug": "browser-extension", "name": "browser extension", - "published_at": "2026-01-24T21:33:12.064Z", + "published_at": "2026-02-19T13:35:59.424Z", "metrics": { "org_count": 2, "project_count": 121, "avg_projects_per_org": 60.5, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -93,11 +94,16 @@ "year": 2025, "org_count": 1, "project_count": 21 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.064Z" + "generated_at": "2026-02-19T13:35:59.424Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/browser-extensions.json b/new-api-details/tech-stack/browser-extensions.json index c9d3bd2f..8ce875a8 100644 --- a/new-api-details/tech-stack/browser-extensions.json +++ b/new-api-details/tech-stack/browser-extensions.json @@ -1,7 +1,7 @@ { "slug": "browser-extensions", "name": "browser extensions", - "published_at": "2026-01-24T21:33:12.522Z", + "published_at": "2026-02-19T13:36:00.017Z", "metrics": { "org_count": 1, "project_count": 19, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-tor-project.webp", "category": "Web", "total_projects": 19, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -77,11 +77,16 @@ "year": 2025, "org_count": 1, "project_count": 3 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.522Z" + "generated_at": "2026-02-19T13:36:00.017Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/bsd-make.json b/new-api-details/tech-stack/bsd-make.json index a05f9c90..d032e26b 100644 --- a/new-api-details/tech-stack/bsd-make.json +++ b/new-api-details/tech-stack/bsd-make.json @@ -1,13 +1,13 @@ { "slug": "bsd-make", "name": "bsd make", - "published_at": "2026-01-24T21:33:12.515Z", + "published_at": "2026-02-19T13:35:59.986Z", "metrics": { "org_count": 1, "project_count": 38, "avg_projects_per_org": 38, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -82,11 +83,16 @@ "year": 2025, "org_count": 1, "project_count": 3 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.515Z" + "generated_at": "2026-02-19T13:35:59.986Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/bsd-unix.json b/new-api-details/tech-stack/bsd-unix.json index ccfe4409..e61f1443 100644 --- a/new-api-details/tech-stack/bsd-unix.json +++ b/new-api-details/tech-stack/bsd-unix.json @@ -1,13 +1,13 @@ { "slug": "bsd-unix", "name": "bsd unix", - "published_at": "2026-01-24T21:33:12.293Z", + "published_at": "2026-02-19T13:35:59.703Z", "metrics": { "org_count": 3, "project_count": 110, "avg_projects_per_org": 36.7, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -47,7 +48,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -56,7 +58,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/haiku.webp", "category": "Operating systems", "total_projects": 26, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, @@ -65,7 +67,8 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] } ], @@ -120,11 +123,16 @@ "year": 2025, "org_count": 2, "project_count": 11 + }, + { + "year": 2026, + "org_count": 3, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.293Z" + "generated_at": "2026-02-19T13:35:59.703Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/bsd.json b/new-api-details/tech-stack/bsd.json index d0cd68cc..b87f41e1 100644 --- a/new-api-details/tech-stack/bsd.json +++ b/new-api-details/tech-stack/bsd.json @@ -1,13 +1,13 @@ { "slug": "bsd", "name": "bsd", - "published_at": "2026-01-24T21:33:12.203Z", + "published_at": "2026-02-19T13:35:59.583Z", "metrics": { "org_count": 2, "project_count": 49, "avg_projects_per_org": 24.5, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -40,7 +41,8 @@ "active_years": [ 2016, 2019, - 2025 + 2025, + 2026 ] } ], @@ -95,11 +97,16 @@ "year": 2025, "org_count": 2, "project_count": 5 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.203Z" + "generated_at": "2026-02-19T13:35:59.583Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/buildbot.json b/new-api-details/tech-stack/buildbot.json index af3b31d4..dd92645d 100644 --- a/new-api-details/tech-stack/buildbot.json +++ b/new-api-details/tech-stack/buildbot.json @@ -1,7 +1,7 @@ { "slug": "buildbot", "name": "buildbot", - "published_at": "2026-01-24T21:33:12.370Z", + "published_at": "2026-02-19T13:35:59.804Z", "metrics": { "org_count": 1, "project_count": 7, @@ -76,11 +76,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.370Z" + "generated_at": "2026-02-19T13:35:59.804Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/bundler.json b/new-api-details/tech-stack/bundler.json index 52efabdb..a6d40dee 100644 --- a/new-api-details/tech-stack/bundler.json +++ b/new-api-details/tech-stack/bundler.json @@ -1,13 +1,13 @@ { "slug": "bundler", "name": "bundler", - "published_at": "2026-01-24T21:33:12.466Z", + "published_at": "2026-02-19T13:35:59.931Z", "metrics": { "org_count": 1, "project_count": 38, "avg_projects_per_org": 38, "first_year_used": 2016, - "latest_year_used": 2023 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ruby.webp", "category": "Programming languages", "total_projects": 38, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2018, @@ -24,7 +24,8 @@ 2020, 2021, 2022, - 2023 + 2023, + 2026 ] } ], @@ -79,11 +80,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.466Z" + "generated_at": "2026-02-19T13:35:59.931Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/bytecode.json b/new-api-details/tech-stack/bytecode.json index 544e59b8..804d0076 100644 --- a/new-api-details/tech-stack/bytecode.json +++ b/new-api-details/tech-stack/bytecode.json @@ -1,13 +1,13 @@ { "slug": "bytecode", "name": "bytecode", - "published_at": "2026-01-24T21:33:12.139Z", + "published_at": "2026-02-19T13:35:59.502Z", "metrics": { "org_count": 2, "project_count": 48, "avg_projects_per_org": 24, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -93,11 +94,16 @@ "year": 2025, "org_count": 1, "project_count": 3 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.139Z" + "generated_at": "2026-02-19T13:35:59.502Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/c-11.json b/new-api-details/tech-stack/c-11.json index 18cf7c93..4cc77293 100644 --- a/new-api-details/tech-stack/c-11.json +++ b/new-api-details/tech-stack/c-11.json @@ -1,13 +1,13 @@ { "slug": "c-11", "name": "c++11", - "published_at": "2026-01-24T21:33:12.130Z", + "published_at": "2026-02-19T13:35:59.452Z", "metrics": { "org_count": 12, "project_count": 241, "avg_projects_per_org": 20.1, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -48,7 +48,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnss-sdr.webp", "category": "Science and medicine", "total_projects": 28, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -67,7 +67,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/inkscape.webp", "category": "End user applications", "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -114,7 +114,8 @@ 2020, 2022, 2024, - 2025 + 2025, + 2026 ] }, { @@ -147,7 +148,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -252,11 +254,16 @@ "year": 2025, "org_count": 4, "project_count": 13 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.130Z" + "generated_at": "2026-02-19T13:35:59.452Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/c-14.json b/new-api-details/tech-stack/c-14.json index 9ee1870c..37eec046 100644 --- a/new-api-details/tech-stack/c-14.json +++ b/new-api-details/tech-stack/c-14.json @@ -1,7 +1,7 @@ { "slug": "c-14", "name": "c++14", - "published_at": "2026-01-24T21:33:12.132Z", + "published_at": "2026-02-19T13:35:59.485Z", "metrics": { "org_count": 5, "project_count": 127, @@ -50,7 +50,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnss-sdr.webp", "category": "Science and medicine", "total_projects": 28, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -138,11 +138,16 @@ "year": 2025, "org_count": 1, "project_count": 3 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.132Z" + "generated_at": "2026-02-19T13:35:59.486Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/c-17-parallel-stl.json b/new-api-details/tech-stack/c-17-parallel-stl.json index 99df622f..7eb708ee 100644 --- a/new-api-details/tech-stack/c-17-parallel-stl.json +++ b/new-api-details/tech-stack/c-17-parallel-stl.json @@ -1,13 +1,13 @@ { "slug": "c-17-parallel-stl", "name": "c++17 parallel stl", - "published_at": "2026-01-24T21:33:12.487Z", + "published_at": "2026-02-19T13:35:59.949Z", "metrics": { "org_count": 1, "project_count": 38, "avg_projects_per_org": 38, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 6 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.487Z" + "generated_at": "2026-02-19T13:35:59.949Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/c-17.json b/new-api-details/tech-stack/c-17.json index 86fa2a54..64ddd87d 100644 --- a/new-api-details/tech-stack/c-17.json +++ b/new-api-details/tech-stack/c-17.json @@ -1,7 +1,7 @@ { "slug": "c-17", "name": "c++17", - "published_at": "2026-01-24T21:33:12.133Z", + "published_at": "2026-02-19T13:35:59.486Z", "metrics": { "org_count": 6, "project_count": 207, @@ -67,7 +67,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnss-sdr.webp", "category": "Science and medicine", "total_projects": 28, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -160,11 +160,16 @@ "year": 2025, "org_count": 1, "project_count": 3 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.133Z" + "generated_at": "2026-02-19T13:35:59.486Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/c-20.json b/new-api-details/tech-stack/c-20.json index b400a5f0..f74d45e6 100644 --- a/new-api-details/tech-stack/c-20.json +++ b/new-api-details/tech-stack/c-20.json @@ -1,7 +1,7 @@ { "slug": "c-20", "name": "c++20", - "published_at": "2026-01-24T21:33:12.134Z", + "published_at": "2026-02-19T13:35:59.487Z", "metrics": { "org_count": 2, "project_count": 69, @@ -31,7 +31,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnss-sdr.webp", "category": "Science and medicine", "total_projects": 28, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -96,11 +96,16 @@ "year": 2025, "org_count": 1, "project_count": 3 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.134Z" + "generated_at": "2026-02-19T13:35:59.487Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/c-c.json b/new-api-details/tech-stack/c-c.json index 3a5e539f..ab978494 100644 --- a/new-api-details/tech-stack/c-c.json +++ b/new-api-details/tech-stack/c-c.json @@ -1,13 +1,13 @@ { "slug": "c-c", "name": "C\\C++", - "published_at": "2026-01-24T21:33:12.205Z", + "published_at": "2026-02-19T13:35:59.585Z", "metrics": { "org_count": 3, "project_count": 114, "avg_projects_per_org": 38, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -55,7 +56,8 @@ "active_years": [ 2016, 2019, - 2025 + 2025, + 2026 ] } ], @@ -110,11 +112,16 @@ "year": 2025, "org_count": 2, "project_count": 14 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.205Z" + "generated_at": "2026-02-19T13:35:59.585Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/c-language.json b/new-api-details/tech-stack/c-language.json index 83a2aa9f..b89df967 100644 --- a/new-api-details/tech-stack/c-language.json +++ b/new-api-details/tech-stack/c-language.json @@ -1,13 +1,13 @@ { "slug": "c-language", "name": "c language", - "published_at": "2026-01-24T21:33:12.282Z", + "published_at": "2026-02-19T13:35:59.668Z", "metrics": { "org_count": 2, "project_count": 25, "avg_projects_per_org": 12.5, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -93,11 +94,16 @@ "year": 2025, "org_count": 1, "project_count": 3 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.282Z" + "generated_at": "2026-02-19T13:35:59.668Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/c-libraries-c-11-c-14-c-17-c-20.json b/new-api-details/tech-stack/c-libraries-c-11-c-14-c-17-c-20.json index 6d851ae0..11ede130 100644 --- a/new-api-details/tech-stack/c-libraries-c-11-c-14-c-17-c-20.json +++ b/new-api-details/tech-stack/c-libraries-c-11-c-14-c-17-c-20.json @@ -1,7 +1,7 @@ { "slug": "c-libraries-c-11-c-14-c-17-c-20", "name": "c++ libraries c++11 c++14 c++17 c++20", - "published_at": "2026-01-24T21:33:12.133Z", + "published_at": "2026-02-19T13:35:59.487Z", "metrics": { "org_count": 2, "project_count": 69, @@ -31,7 +31,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnss-sdr.webp", "category": "Science and medicine", "total_projects": 28, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -96,11 +96,16 @@ "year": 2025, "org_count": 1, "project_count": 3 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.133Z" + "generated_at": "2026-02-19T13:35:59.487Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/c-programming.json b/new-api-details/tech-stack/c-programming.json index 12f7254e..c3a80b11 100644 --- a/new-api-details/tech-stack/c-programming.json +++ b/new-api-details/tech-stack/c-programming.json @@ -1,13 +1,13 @@ { "slug": "c-programming", "name": "c programming", - "published_at": "2026-01-24T21:33:12.467Z", + "published_at": "2026-02-19T13:35:59.925Z", "metrics": { "org_count": 2, "project_count": 51, "avg_projects_per_org": 25.5, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -96,11 +97,16 @@ "year": 2025, "org_count": 1, "project_count": 3 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.467Z" + "generated_at": "2026-02-19T13:35:59.925Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/c-rust-go.json b/new-api-details/tech-stack/c-rust-go.json index 42dbdf7a..69397c56 100644 --- a/new-api-details/tech-stack/c-rust-go.json +++ b/new-api-details/tech-stack/c-rust-go.json @@ -1,13 +1,13 @@ { "slug": "c-rust-go", "name": "C/Rust/Go", - "published_at": "2026-01-24T21:33:12.079Z", + "published_at": "2026-02-19T13:35:59.391Z", "metrics": { "org_count": 1, "project_count": 32, "avg_projects_per_org": 32, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -25,7 +25,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -80,11 +81,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.079Z" + "generated_at": "2026-02-19T13:35:59.391Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/c-template-metaprogramming.json b/new-api-details/tech-stack/c-template-metaprogramming.json index 4dc43d53..a3a52eb1 100644 --- a/new-api-details/tech-stack/c-template-metaprogramming.json +++ b/new-api-details/tech-stack/c-template-metaprogramming.json @@ -1,7 +1,7 @@ { "slug": "c-template-metaprogramming", "name": "C++ template metaprogramming", - "published_at": "2026-01-24T21:33:12.566Z", + "published_at": "2026-02-19T13:35:59.826Z", "metrics": { "org_count": 1, "project_count": 60, @@ -81,11 +81,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.566Z" + "generated_at": "2026-02-19T13:35:59.826Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/c-u.json b/new-api-details/tech-stack/c-u.json index d60ff51f..a62f26b9 100644 --- a/new-api-details/tech-stack/c-u.json +++ b/new-api-details/tech-stack/c-u.json @@ -1,13 +1,13 @@ { "slug": "c-u", "name": "céu", - "published_at": "2026-01-24T21:33:12.354Z", + "published_at": "2026-02-19T13:35:59.782Z", "metrics": { "org_count": 1, "project_count": 43, "avg_projects_per_org": 43, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -25,7 +25,8 @@ 2020, 2021, 2024, - 2025 + 2025, + 2026 ] } ], @@ -80,11 +81,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.354Z" + "generated_at": "2026-02-19T13:35:59.782Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/c.json b/new-api-details/tech-stack/c.json index 2727eac9..92f3c278 100644 --- a/new-api-details/tech-stack/c.json +++ b/new-api-details/tech-stack/c.json @@ -1,13 +1,13 @@ { "slug": "c", "name": "c", - "published_at": "2026-01-24T21:33:12.037Z", + "published_at": "2026-02-19T13:35:59.365Z", "metrics": { - "org_count": 167, + "org_count": 170, "project_count": 5815, - "avg_projects_per_org": 34.8, + "avg_projects_per_org": 34.2, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -36,7 +37,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-apache-software-foundation.webp", "category": "Web", "total_projects": 248, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -66,7 +67,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -86,7 +88,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -106,7 +109,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -126,14 +130,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "fossasia", "name": "FOSSASIA", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/fossasia.webp", - "category": "Science and medicine", + "category": "End user applications", "total_projects": 140, "is_currently_active": true, "active_years": [ @@ -142,7 +147,8 @@ 2018, 2019, 2024, - 2025 + 2025, + 2026 ] }, { @@ -161,7 +167,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -181,7 +188,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -201,7 +209,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -216,7 +225,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -236,7 +246,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -256,7 +267,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -275,7 +287,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -295,7 +308,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -315,7 +329,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -324,7 +339,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/opencv.webp", "category": "Media", "total_projects": 93, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -354,7 +369,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -374,7 +390,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -409,7 +426,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -427,7 +445,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] }, { @@ -447,7 +466,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -467,7 +487,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -476,7 +497,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/freifunk.webp", "category": "Operating systems", "total_projects": 74, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -506,14 +527,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "open-technologies-alliance-gfoss", "name": "Open Technologies Alliance - GFOSS", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-technologies-alliance-gfoss.webp", - "category": "Development tools", + "category": "Science and medicine", "total_projects": 70, "is_currently_active": true, "active_years": [ @@ -524,7 +546,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -543,7 +566,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -563,7 +587,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -583,7 +608,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -592,7 +618,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnu-project.webp", "category": "Operating systems", "total_projects": 59, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -600,7 +626,8 @@ 2019, 2020, 2023, - 2024 + 2024, + 2026 ] }, { @@ -619,7 +646,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -656,7 +684,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -675,7 +704,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -713,7 +743,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -733,7 +764,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -752,7 +784,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -765,7 +798,8 @@ "active_years": [ 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -784,7 +818,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -804,7 +839,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -813,7 +849,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/global-alliance-for-genomics-and-health.webp", "category": "Science and medicine", "total_projects": 45, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -823,7 +859,8 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -860,7 +897,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -869,7 +907,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/beagleboardorg.webp", "category": "Science and medicine", "total_projects": 44, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -898,7 +936,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -917,7 +956,8 @@ 2021, 2022, 2023, - 2025 + 2025, + 2026 ] }, { @@ -937,7 +977,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -956,7 +997,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -965,7 +1007,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ruby.webp", "category": "Programming languages", "total_projects": 38, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2018, @@ -973,7 +1015,8 @@ 2020, 2021, 2022, - 2023 + 2023, + 2026 ] }, { @@ -993,7 +1036,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1011,7 +1055,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1031,7 +1076,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1050,7 +1096,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1068,7 +1115,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1086,7 +1134,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1120,7 +1169,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1146,7 +1196,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnss-sdr.webp", "category": "Science and medicine", "total_projects": 28, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -1180,7 +1230,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/inkscape.webp", "category": "End user applications", "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -1248,7 +1298,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1263,7 +1314,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1280,18 +1332,37 @@ 2022 ] }, + { + "slug": "libvirt", + "name": "libvirt", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/libvirt.webp", + "category": "End user applications", + "total_projects": 19, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2024 + ] + }, { "slug": "metacall", "name": "MetaCall", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/metacall.webp", "category": "Programming languages", "total_projects": 19, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -1316,7 +1387,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-tor-project.webp", "category": "Web", "total_projects": 19, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -1342,24 +1413,6 @@ 2023 ] }, - { - "slug": "libvirt", - "name": "libvirt", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/libvirt.webp", - "category": "End user applications", - "total_projects": 19, - "is_currently_active": false, - "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2024 - ] - }, { "slug": "apertus-association", "name": "Apertus Association", @@ -1390,7 +1443,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1407,7 +1461,8 @@ 2021, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1456,7 +1511,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1470,7 +1526,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1557,7 +1614,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mbdyn.webp", "category": "Science and medicine", "total_projects": 13, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -1621,14 +1678,15 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/metasploit.webp", "category": "Security", "total_projects": 12, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, 2020, 2021, 2022, - 2023 + 2023, + 2026 ] }, { @@ -1648,42 +1706,28 @@ ] }, { - "slug": "cmu-sphinx", - "name": "CMU Sphinx", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cmu-sphinx.webp", + "slug": "appleseed", + "name": "appleseed", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/appleseed.webp", "category": "Media", "total_projects": 11, "is_currently_active": false, "active_years": [ - 2017 - ] - }, - { - "slug": "netfilter-project", - "name": "Netfilter project", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/netfilter-project.webp", - "category": "Operating systems", - "total_projects": 11, - "is_currently_active": false, - "active_years": [ - 2016, 2017, 2018, - 2019 + 2019, + 2020 ] }, { - "slug": "appleseed", - "name": "appleseed", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/appleseed.webp", + "slug": "cmu-sphinx", + "name": "CMU Sphinx", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cmu-sphinx.webp", "category": "Media", "total_projects": 11, "is_currently_active": false, "active_years": [ - 2017, - 2018, - 2019, - 2020 + 2017 ] }, { @@ -1701,6 +1745,20 @@ 2023 ] }, + { + "slug": "netfilter-project", + "name": "Netfilter project", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/netfilter-project.webp", + "category": "Operating systems", + "total_projects": 11, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2018, + 2019 + ] + }, { "slug": "aflplusplus", "name": "AFLplusplus", @@ -1714,7 +1772,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1728,7 +1787,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1742,7 +1802,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1786,7 +1847,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1807,16 +1869,17 @@ "slug": "the-libreswan-project", "name": "The Libreswan Project", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-libreswan-project.webp", - "category": "Infrastructure and cloud", + "category": "Security", "total_projects": 10, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, 2019, 2020, 2021, - 2022 + 2022, + 2026 ] }, { @@ -1842,6 +1905,19 @@ 2017 ] }, + { + "slug": "stdlib", + "name": "stdlib", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/stdlib.webp", + "category": "Science and medicine", + "total_projects": 9, + "is_currently_active": true, + "active_years": [ + 2024, + 2025, + 2026 + ] + }, { "slug": "tardis-sn", "name": "TARDIS SN", @@ -1855,18 +1931,6 @@ 2021 ] }, - { - "slug": "stdlib", - "name": "stdlib", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/stdlib.webp", - "category": "Science and medicine", - "total_projects": 9, - "is_currently_active": true, - "active_years": [ - 2024, - 2025 - ] - }, { "slug": "android-graphics-tools-team", "name": "Android Graphics Tools Team", @@ -1917,7 +1981,8 @@ 2018, 2019, 2020, - 2025 + 2025, + 2026 ] }, { @@ -1932,6 +1997,19 @@ 2022 ] }, + { + "slug": "libcamera", + "name": "libcamera", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/libcamera.webp", + "category": "Media", + "total_projects": 7, + "is_currently_active": false, + "active_years": [ + 2021, + 2022, + 2023 + ] + }, { "slug": "libre-space-foundation", "name": "Libre Space Foundation", @@ -1965,35 +2043,38 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/waycrate.webp", "category": "End user applications", "total_projects": 7, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2024, 2025 ] }, - { - "slug": "libcamera", - "name": "libcamera", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/libcamera.webp", - "category": "Media", - "total_projects": 7, - "is_currently_active": false, - "active_years": [ - 2021, - 2022, - 2023 - ] - }, { "slug": "kolibrios-project-team", "name": "KolibriOS Project Team", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kolibrios-project-team.webp", "category": "Operating systems", "total_projects": 6, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, - 2024 + 2024, + 2026 + ] + }, + { + "slug": "libssh", + "name": "libssh", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/libssh.webp", + "category": "Programming languages", + "total_projects": 6, + "is_currently_active": true, + "active_years": [ + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { @@ -2010,20 +2091,6 @@ 2019 ] }, - { - "slug": "libssh", - "name": "libssh", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/libssh.webp", - "category": "Programming languages", - "total_projects": 6, - "is_currently_active": true, - "active_years": [ - 2022, - 2023, - 2024, - 2025 - ] - }, { "slug": "developers-italia", "name": "Developers Italia", @@ -2105,10 +2172,11 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/neutralinojs.webp", "category": "Web", "total_projects": 4, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2022, - 2024 + 2024, + 2026 ] }, { @@ -2132,7 +2200,8 @@ "is_currently_active": true, "active_years": [ 2022, - 2025 + 2025, + 2026 ] }, { @@ -2153,11 +2222,12 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/qubes-os.webp", "category": "Operating systems", "total_projects": 4, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2020, - 2021 + 2021, + 2026 ] }, { @@ -2186,17 +2256,6 @@ 2020 ] }, - { - "slug": "ascend", - "name": "ASCEND", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ascend.webp", - "category": "Science and medicine", - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2016 - ] - }, { "slug": "academy-software-foundation", "name": "Academy Software Foundation", @@ -2209,6 +2268,17 @@ 2022 ] }, + { + "slug": "ascend", + "name": "ASCEND", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ascend.webp", + "category": "Science and medicine", + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2016 + ] + }, { "slug": "cilium", "name": "Cilium", @@ -2275,7 +2345,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/rspamd.webp", "category": "Security", "total_projects": 3, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2017, 2018, @@ -2477,25 +2547,25 @@ ] }, { - "slug": "netty", - "name": "Netty", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/netty.webp", - "category": "Web", + "slug": "gvisor", + "name": "gVisor", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gvisor.webp", + "category": "Operating systems", "total_projects": 1, "is_currently_active": false, "active_years": [ - 2020 + 2021 ] }, { - "slug": "plasma-umass", - "name": "PLASMA-UMass", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/plasma-umass.webp", - "category": "Programming languages", + "slug": "netty", + "name": "Netty", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/netty.webp", + "category": "Web", "total_projects": 1, "is_currently_active": false, "active_years": [ - 2016 + 2020 ] }, { @@ -2509,6 +2579,17 @@ 2021 ] }, + { + "slug": "plasma-umass", + "name": "PLASMA-UMass", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/plasma-umass.webp", + "category": "Programming languages", + "total_projects": 1, + "is_currently_active": false, + "active_years": [ + 2016 + ] + }, { "slug": "tungsten-fabric", "name": "Tungsten Fabric", @@ -2554,14 +2635,25 @@ ] }, { - "slug": "gvisor", - "name": "gVisor", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gvisor.webp", + "slug": "apache-software-foundation", + "name": "Apache Software Foundation", + "logo_url": "https://summerofcode.withgoogle.com/media/org/apache-software-foundation/hq22fwtmvdfjnsh9-360.png", + "category": "Web", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + }, + { + "slug": "erofs-filesystem", + "name": "EROFS filesystem", + "logo_url": "https://summerofcode.withgoogle.com/media/org/erofs-filesystem/qrkpvwkzjqmwoyau-360.png", "category": "Operating systems", - "total_projects": 1, - "is_currently_active": false, + "total_projects": 0, + "is_currently_active": true, "active_years": [ - 2021 + 2026 ] }, { @@ -2575,6 +2667,17 @@ 2018 ] }, + { + "slug": "precice", + "name": "preCICE", + "logo_url": "https://summerofcode.withgoogle.com/media/org/precice/19ymcw80uxn8g9ia-360.png", + "category": "Science and medicine", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + }, { "slug": "xpra", "name": "xpra", @@ -2639,11 +2742,16 @@ "year": 2025, "org_count": 71, "project_count": 614 + }, + { + "year": 2026, + "org_count": 73, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.040Z" + "generated_at": "2026-02-19T13:35:59.368Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/c99.json b/new-api-details/tech-stack/c99.json index fd7d4ca1..9e42b8ee 100644 --- a/new-api-details/tech-stack/c99.json +++ b/new-api-details/tech-stack/c99.json @@ -1,13 +1,13 @@ { "slug": "c99", "name": "c99", - "published_at": "2026-01-24T21:33:12.239Z", + "published_at": "2026-02-19T13:35:59.633Z", "metrics": { "org_count": 3, "project_count": 52, "avg_projects_per_org": 17.3, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -105,11 +106,16 @@ "year": 2025, "org_count": 1, "project_count": 3 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.239Z" + "generated_at": "2026-02-19T13:35:59.633Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/cabal.json b/new-api-details/tech-stack/cabal.json index 127b9615..179aef3c 100644 --- a/new-api-details/tech-stack/cabal.json +++ b/new-api-details/tech-stack/cabal.json @@ -1,13 +1,13 @@ { "slug": "cabal", "name": "cabal", - "published_at": "2026-01-24T21:33:12.296Z", + "published_at": "2026-02-19T13:35:59.705Z", "metrics": { "org_count": 1, "project_count": 70, "avg_projects_per_org": 70, "first_year_used": 2018, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -24,7 +24,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] } ], @@ -79,11 +80,16 @@ "year": 2025, "org_count": 1, "project_count": 4 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.296Z" + "generated_at": "2026-02-19T13:35:59.705Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/cad.json b/new-api-details/tech-stack/cad.json index 323744d6..276cd966 100644 --- a/new-api-details/tech-stack/cad.json +++ b/new-api-details/tech-stack/cad.json @@ -1,7 +1,7 @@ { "slug": "cad", "name": "cad", - "published_at": "2026-01-24T21:33:12.440Z", + "published_at": "2026-02-19T13:35:59.894Z", "metrics": { "org_count": 1, "project_count": 2, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.440Z" + "generated_at": "2026-02-19T13:35:59.894Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/caffe.json b/new-api-details/tech-stack/caffe.json index 5d609521..91f9e241 100644 --- a/new-api-details/tech-stack/caffe.json +++ b/new-api-details/tech-stack/caffe.json @@ -1,7 +1,7 @@ { "slug": "caffe", "name": "caffe", - "published_at": "2026-01-24T21:33:12.192Z", + "published_at": "2026-02-19T13:35:59.552Z", "metrics": { "org_count": 2, "project_count": 32, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cloudcv.webp", "category": "Web", "total_projects": 28, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -93,11 +93,16 @@ "year": 2025, "org_count": 1, "project_count": 3 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.192Z" + "generated_at": "2026-02-19T13:35:59.552Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/cakephp.json b/new-api-details/tech-stack/cakephp.json index c9942330..13351694 100644 --- a/new-api-details/tech-stack/cakephp.json +++ b/new-api-details/tech-stack/cakephp.json @@ -1,7 +1,7 @@ { "slug": "cakephp", "name": "cakephp", - "published_at": "2026-01-24T21:33:12.571Z", + "published_at": "2026-02-19T13:35:59.887Z", "metrics": { "org_count": 1, "project_count": 9, @@ -75,11 +75,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.571Z" + "generated_at": "2026-02-19T13:35:59.887Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/canvas.json b/new-api-details/tech-stack/canvas.json index 123eb1a3..2bea18f9 100644 --- a/new-api-details/tech-stack/canvas.json +++ b/new-api-details/tech-stack/canvas.json @@ -1,13 +1,13 @@ { "slug": "canvas", "name": "canvas", - "published_at": "2026-01-24T21:33:12.187Z", + "published_at": "2026-02-19T13:35:59.544Z", "metrics": { "org_count": 1, "project_count": 32, "avg_projects_per_org": 32, "first_year_used": 2019, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -24,7 +24,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -79,11 +80,16 @@ "year": 2025, "org_count": 1, "project_count": 6 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.187Z" + "generated_at": "2026-02-19T13:35:59.544Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/cassandra.json b/new-api-details/tech-stack/cassandra.json index 8b255ee6..037ccf29 100644 --- a/new-api-details/tech-stack/cassandra.json +++ b/new-api-details/tech-stack/cassandra.json @@ -1,7 +1,7 @@ { "slug": "cassandra", "name": "cassandra", - "published_at": "2026-01-24T21:33:12.321Z", + "published_at": "2026-02-19T13:35:59.737Z", "metrics": { "org_count": 1, "project_count": 3, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.321Z" + "generated_at": "2026-02-19T13:35:59.737Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/cel.json b/new-api-details/tech-stack/cel.json index 1de6c218..af98f180 100644 --- a/new-api-details/tech-stack/cel.json +++ b/new-api-details/tech-stack/cel.json @@ -1,7 +1,7 @@ { "slug": "cel", "name": "CEL", - "published_at": "2026-01-24T21:33:12.559Z", + "published_at": "2026-02-19T13:35:59.775Z", "metrics": { "org_count": 1, "project_count": 2, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kro-kube-resource-orchestrator.webp", "category": "Infrastructure and cloud", "total_projects": 2, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2025 ] @@ -73,11 +73,16 @@ "year": 2025, "org_count": 1, "project_count": 2 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.560Z" + "generated_at": "2026-02-19T13:35:59.775Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/celery.json b/new-api-details/tech-stack/celery.json index a51ce448..e84bc604 100644 --- a/new-api-details/tech-stack/celery.json +++ b/new-api-details/tech-stack/celery.json @@ -1,7 +1,7 @@ { "slug": "celery", "name": "celery", - "published_at": "2026-01-24T21:33:12.427Z", + "published_at": "2026-02-19T13:35:59.880Z", "metrics": { "org_count": 1, "project_count": 0, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.427Z" + "generated_at": "2026-02-19T13:35:59.880Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/ceph.json b/new-api-details/tech-stack/ceph.json index e88c160d..2965f87d 100644 --- a/new-api-details/tech-stack/ceph.json +++ b/new-api-details/tech-stack/ceph.json @@ -1,7 +1,7 @@ { "slug": "ceph", "name": "ceph", - "published_at": "2026-01-24T21:33:12.173Z", + "published_at": "2026-02-19T13:35:59.514Z", "metrics": { "org_count": 1, "project_count": 20, @@ -76,11 +76,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.173Z" + "generated_at": "2026-02-19T13:35:59.514Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/cesium.json b/new-api-details/tech-stack/cesium.json index cf9ef018..0f237313 100644 --- a/new-api-details/tech-stack/cesium.json +++ b/new-api-details/tech-stack/cesium.json @@ -1,13 +1,13 @@ { "slug": "cesium", "name": "cesium", - "published_at": "2026-01-24T21:33:12.362Z", + "published_at": "2026-02-19T13:35:59.799Z", "metrics": { "org_count": 1, "project_count": 75, "avg_projects_per_org": 75, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 11 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.362Z" + "generated_at": "2026-02-19T13:35:59.799Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/cesiumjs.json b/new-api-details/tech-stack/cesiumjs.json index ddfa3237..e4374c13 100644 --- a/new-api-details/tech-stack/cesiumjs.json +++ b/new-api-details/tech-stack/cesiumjs.json @@ -1,13 +1,13 @@ { "slug": "cesiumjs", "name": "cesiumjs", - "published_at": "2026-01-24T21:33:12.362Z", + "published_at": "2026-02-19T13:35:59.800Z", "metrics": { "org_count": 1, "project_count": 75, "avg_projects_per_org": 75, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 11 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.362Z" + "generated_at": "2026-02-19T13:35:59.800Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/chapel.json b/new-api-details/tech-stack/chapel.json index df35e4c0..57d474c5 100644 --- a/new-api-details/tech-stack/chapel.json +++ b/new-api-details/tech-stack/chapel.json @@ -1,7 +1,7 @@ { "slug": "chapel", "name": "chapel", - "published_at": "2026-01-24T21:33:12.180Z", + "published_at": "2026-02-19T13:35:59.532Z", "metrics": { "org_count": 1, "project_count": 16, @@ -77,11 +77,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.180Z" + "generated_at": "2026-02-19T13:35:59.532Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/chatbots.json b/new-api-details/tech-stack/chatbots.json index e6d846de..0ed0e599 100644 --- a/new-api-details/tech-stack/chatbots.json +++ b/new-api-details/tech-stack/chatbots.json @@ -1,13 +1,13 @@ { "slug": "chatbots", "name": "chatbots", - "published_at": "2026-01-24T21:33:12.573Z", + "published_at": "2026-02-19T13:35:59.922Z", "metrics": { "org_count": 1, "project_count": 103, "avg_projects_per_org": 103, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 19 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.573Z" + "generated_at": "2026-02-19T13:35:59.922Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/che.json b/new-api-details/tech-stack/che.json index 7105a46e..4b20b1be 100644 --- a/new-api-details/tech-stack/che.json +++ b/new-api-details/tech-stack/che.json @@ -1,13 +1,13 @@ { "slug": "che", "name": "che", - "published_at": "2026-01-24T21:33:12.225Z", + "published_at": "2026-02-19T13:35:59.612Z", "metrics": { "org_count": 1, "project_count": 68, "avg_projects_per_org": 68, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 7 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.225Z" + "generated_at": "2026-02-19T13:35:59.613Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/chisel.json b/new-api-details/tech-stack/chisel.json index 039fdcbb..57582fa3 100644 --- a/new-api-details/tech-stack/chisel.json +++ b/new-api-details/tech-stack/chisel.json @@ -1,13 +1,13 @@ { "slug": "chisel", "name": "chisel", - "published_at": "2026-01-24T21:33:12.157Z", + "published_at": "2026-02-19T13:35:59.538Z", "metrics": { "org_count": 3, "project_count": 82, "avg_projects_per_org": 27.3, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -108,11 +109,16 @@ "year": 2025, "org_count": 1, "project_count": 6 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.157Z" + "generated_at": "2026-02-19T13:35:59.538Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/chromium.json b/new-api-details/tech-stack/chromium.json index 691cf58b..3dd7a4d9 100644 --- a/new-api-details/tech-stack/chromium.json +++ b/new-api-details/tech-stack/chromium.json @@ -1,7 +1,7 @@ { "slug": "chromium", "name": "Chromium", - "published_at": "2026-01-24T21:33:12.234Z", + "published_at": "2026-02-19T13:35:59.622Z", "metrics": { "org_count": 1, "project_count": 4, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/electron.webp", "category": "End user applications", "total_projects": 4, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2024, @@ -75,11 +75,16 @@ "year": 2025, "org_count": 1, "project_count": 2 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.234Z" + "generated_at": "2026-02-19T13:35:59.622Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/ci-cd.json b/new-api-details/tech-stack/ci-cd.json index 9c342937..756f6c51 100644 --- a/new-api-details/tech-stack/ci-cd.json +++ b/new-api-details/tech-stack/ci-cd.json @@ -1,7 +1,7 @@ { "slug": "ci-cd", "name": "ci/cd", - "published_at": "2026-01-24T21:33:12.196Z", + "published_at": "2026-02-19T13:35:59.567Z", "metrics": { "org_count": 1, "project_count": 9, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.196Z" + "generated_at": "2026-02-19T13:35:59.567Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/ci.json b/new-api-details/tech-stack/ci.json index 6047d341..c4b5eb90 100644 --- a/new-api-details/tech-stack/ci.json +++ b/new-api-details/tech-stack/ci.json @@ -1,13 +1,13 @@ { "slug": "ci", "name": "ci", - "published_at": "2026-01-24T21:33:12.283Z", + "published_at": "2026-02-19T13:35:59.669Z", "metrics": { "org_count": 2, "project_count": 21, "avg_projects_per_org": 10.5, "first_year_used": 2021, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gitlab.webp", "category": "Infrastructure and cloud", "total_projects": 15, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2021, 2022, @@ -35,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -90,11 +91,16 @@ "year": 2025, "org_count": 2, "project_count": 6 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.283Z" + "generated_at": "2026-02-19T13:35:59.669Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/cifs.json b/new-api-details/tech-stack/cifs.json index ed0a1597..ba2e4995 100644 --- a/new-api-details/tech-stack/cifs.json +++ b/new-api-details/tech-stack/cifs.json @@ -1,7 +1,7 @@ { "slug": "cifs", "name": "cifs", - "published_at": "2026-01-24T21:33:12.473Z", + "published_at": "2026-02-19T13:35:59.932Z", "metrics": { "org_count": 1, "project_count": 3, @@ -76,11 +76,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.473Z" + "generated_at": "2026-02-19T13:35:59.932Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/clang.json b/new-api-details/tech-stack/clang.json index bbe2ae82..7155287c 100644 --- a/new-api-details/tech-stack/clang.json +++ b/new-api-details/tech-stack/clang.json @@ -1,13 +1,13 @@ { "slug": "clang", "name": "clang", - "published_at": "2026-01-24T21:33:12.146Z", + "published_at": "2026-02-19T13:35:59.500Z", "metrics": { "org_count": 4, "project_count": 210, "avg_projects_per_org": 52.5, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -47,7 +48,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -124,11 +126,16 @@ "year": 2025, "org_count": 2, "project_count": 27 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.146Z" + "generated_at": "2026-02-19T13:35:59.500Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/clickhouse.json b/new-api-details/tech-stack/clickhouse.json index ede2d4d0..0686e65b 100644 --- a/new-api-details/tech-stack/clickhouse.json +++ b/new-api-details/tech-stack/clickhouse.json @@ -1,7 +1,7 @@ { "slug": "clickhouse", "name": "clickhouse", - "published_at": "2026-01-24T21:33:12.465Z", + "published_at": "2026-02-19T13:35:59.925Z", "metrics": { "org_count": 1, "project_count": 3, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/rspamd.webp", "category": "Security", "total_projects": 3, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2017, 2018, @@ -75,11 +75,16 @@ "year": 2025, "org_count": 1, "project_count": 2 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.465Z" + "generated_at": "2026-02-19T13:35:59.925Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/clojure.json b/new-api-details/tech-stack/clojure.json index f72a6fe6..6a297ea5 100644 --- a/new-api-details/tech-stack/clojure.json +++ b/new-api-details/tech-stack/clojure.json @@ -1,7 +1,7 @@ { "slug": "clojure", "name": "clojure", - "published_at": "2026-01-24T21:33:12.190Z", + "published_at": "2026-02-19T13:35:59.549Z", "metrics": { "org_count": 3, "project_count": 15, @@ -98,11 +98,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.190Z" + "generated_at": "2026-02-19T13:35:59.549Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/clojurescript.json b/new-api-details/tech-stack/clojurescript.json index 8b746de1..cca971f3 100644 --- a/new-api-details/tech-stack/clojurescript.json +++ b/new-api-details/tech-stack/clojurescript.json @@ -1,7 +1,7 @@ { "slug": "clojurescript", "name": "clojurescript", - "published_at": "2026-01-24T21:33:12.191Z", + "published_at": "2026-02-19T13:35:59.550Z", "metrics": { "org_count": 1, "project_count": 0, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.191Z" + "generated_at": "2026-02-19T13:35:59.550Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/cloud-storage.json b/new-api-details/tech-stack/cloud-storage.json index ed91353a..92881d44 100644 --- a/new-api-details/tech-stack/cloud-storage.json +++ b/new-api-details/tech-stack/cloud-storage.json @@ -1,7 +1,7 @@ { "slug": "cloud-storage", "name": "Cloud Storage", - "published_at": "2026-01-24T21:33:12.537Z", + "published_at": "2026-02-19T13:36:00.082Z", "metrics": { "org_count": 1, "project_count": 8, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/wellcome-sanger-tree-of-life.webp", "category": "Science and medicine", "total_projects": 8, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2024, @@ -75,11 +75,16 @@ "year": 2025, "org_count": 1, "project_count": 4 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.537Z" + "generated_at": "2026-02-19T13:36:00.082Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/cloud.json b/new-api-details/tech-stack/cloud.json index 5ce04539..d139c123 100644 --- a/new-api-details/tech-stack/cloud.json +++ b/new-api-details/tech-stack/cloud.json @@ -1,13 +1,13 @@ { "slug": "cloud", "name": "cloud", - "published_at": "2026-01-24T21:33:12.144Z", + "published_at": "2026-02-19T13:35:59.507Z", "metrics": { - "org_count": 8, - "project_count": 422, - "avg_projects_per_org": 52.8, + "org_count": 9, + "project_count": 474, + "avg_projects_per_org": 52.7, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -44,7 +44,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -64,7 +65,26 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "jboss-community", + "name": "JBoss Community", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jboss-community.webp", + "category": "Web", + "total_projects": 52, + "is_currently_active": true, + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2026 ] }, { @@ -73,7 +93,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/global-alliance-for-genomics-and-health.webp", "category": "Science and medicine", "total_projects": 45, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -83,7 +103,8 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -92,7 +113,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cloudcv.webp", "category": "Web", "total_projects": 28, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -144,38 +165,38 @@ "popularity_by_year": [ { "year": 2016, - "org_count": 5, - "project_count": 20 + "org_count": 6, + "project_count": 29 }, { "year": 2017, - "org_count": 5, - "project_count": 34 + "org_count": 6, + "project_count": 37 }, { "year": 2018, - "org_count": 7, - "project_count": 43 + "org_count": 8, + "project_count": 46 }, { "year": 2019, - "org_count": 6, - "project_count": 63 + "org_count": 7, + "project_count": 71 }, { "year": 2020, - "org_count": 5, - "project_count": 57 + "org_count": 6, + "project_count": 67 }, { "year": 2021, - "org_count": 5, - "project_count": 58 + "org_count": 6, + "project_count": 68 }, { "year": 2022, - "org_count": 4, - "project_count": 55 + "org_count": 5, + "project_count": 64 }, { "year": 2023, @@ -191,11 +212,16 @@ "year": 2025, "org_count": 3, "project_count": 24 + }, + { + "year": 2026, + "org_count": 4, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.144Z" + "generated_at": "2026-02-19T13:35:59.507Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/cmake.json b/new-api-details/tech-stack/cmake.json index 08104c5c..7979d28f 100644 --- a/new-api-details/tech-stack/cmake.json +++ b/new-api-details/tech-stack/cmake.json @@ -1,13 +1,13 @@ { "slug": "cmake", "name": "cmake", - "published_at": "2026-01-24T21:33:12.044Z", + "published_at": "2026-02-19T13:35:59.371Z", "metrics": { "org_count": 15, "project_count": 333, "avg_projects_per_org": 22.2, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -62,7 +63,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -90,12 +92,13 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/metacall.webp", "category": "Programming languages", "total_projects": 19, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -167,7 +170,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/rspamd.webp", "category": "Security", "total_projects": 3, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2017, 2018, @@ -270,11 +273,16 @@ "year": 2025, "org_count": 3, "project_count": 21 + }, + { + "year": 2026, + "org_count": 3, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.044Z" + "generated_at": "2026-02-19T13:35:59.371Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/cms.json b/new-api-details/tech-stack/cms.json index 042cd51e..c45b0406 100644 --- a/new-api-details/tech-stack/cms.json +++ b/new-api-details/tech-stack/cms.json @@ -1,13 +1,13 @@ { "slug": "cms", "name": "cms", - "published_at": "2026-01-24T21:33:12.220Z", + "published_at": "2026-02-19T13:35:59.606Z", "metrics": { "org_count": 2, "project_count": 75, "avg_projects_per_org": 37.5, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -43,7 +44,8 @@ 2019, 2021, 2022, - 2025 + 2025, + 2026 ] } ], @@ -98,11 +100,16 @@ "year": 2025, "org_count": 2, "project_count": 11 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.220Z" + "generated_at": "2026-02-19T13:35:59.606Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/cocoa.json b/new-api-details/tech-stack/cocoa.json index 06c40bec..55d3f340 100644 --- a/new-api-details/tech-stack/cocoa.json +++ b/new-api-details/tech-stack/cocoa.json @@ -1,7 +1,7 @@ { "slug": "cocoa", "name": "cocoa", - "published_at": "2026-01-24T21:33:12.578Z", + "published_at": "2026-02-19T13:36:00.100Z", "metrics": { "org_count": 1, "project_count": 2, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.578Z" + "generated_at": "2026-02-19T13:36:00.100Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/codec.json b/new-api-details/tech-stack/codec.json index 9462f093..af601923 100644 --- a/new-api-details/tech-stack/codec.json +++ b/new-api-details/tech-stack/codec.json @@ -1,7 +1,7 @@ { "slug": "codec", "name": "Codec", - "published_at": "2026-01-24T21:33:12.317Z", + "published_at": "2026-02-19T13:35:59.732Z", "metrics": { "org_count": 1, "project_count": 12, @@ -78,11 +78,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.317Z" + "generated_at": "2026-02-19T13:35:59.732Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/codecs.json b/new-api-details/tech-stack/codecs.json index 801778a1..cd7ee805 100644 --- a/new-api-details/tech-stack/codecs.json +++ b/new-api-details/tech-stack/codecs.json @@ -1,7 +1,7 @@ { "slug": "codecs", "name": "codecs", - "published_at": "2026-01-24T21:33:12.312Z", + "published_at": "2026-02-19T13:35:59.724Z", "metrics": { "org_count": 1, "project_count": 12, @@ -78,11 +78,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.312Z" + "generated_at": "2026-02-19T13:35:59.724Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/codeworld.json b/new-api-details/tech-stack/codeworld.json index 4fe67dbc..c888d6f1 100644 --- a/new-api-details/tech-stack/codeworld.json +++ b/new-api-details/tech-stack/codeworld.json @@ -1,13 +1,13 @@ { "slug": "codeworld", "name": "codeworld", - "published_at": "2026-01-24T21:33:12.296Z", + "published_at": "2026-02-19T13:35:59.706Z", "metrics": { "org_count": 1, "project_count": 70, "avg_projects_per_org": 70, "first_year_used": 2018, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -24,7 +24,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] } ], @@ -79,11 +80,16 @@ "year": 2025, "org_count": 1, "project_count": 4 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.296Z" + "generated_at": "2026-02-19T13:35:59.706Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/colab.json b/new-api-details/tech-stack/colab.json index 304e8cd4..4c871550 100644 --- a/new-api-details/tech-stack/colab.json +++ b/new-api-details/tech-stack/colab.json @@ -1,7 +1,7 @@ { "slug": "colab", "name": "Colab", - "published_at": "2026-01-24T21:33:12.216Z", + "published_at": "2026-02-19T13:35:59.601Z", "metrics": { "org_count": 1, "project_count": 27, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/department-of-biomedical-informatics-emory-university.webp", "category": "Security", "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2021, 2022, @@ -77,11 +77,16 @@ "year": 2025, "org_count": 1, "project_count": 3 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.216Z" + "generated_at": "2026-02-19T13:35:59.601Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/communication-protocol.json b/new-api-details/tech-stack/communication-protocol.json index eda75fc3..039e83a9 100644 --- a/new-api-details/tech-stack/communication-protocol.json +++ b/new-api-details/tech-stack/communication-protocol.json @@ -1,7 +1,7 @@ { "slug": "communication-protocol", "name": "communication protocol", - "published_at": "2026-01-24T21:33:12.306Z", + "published_at": "2026-02-19T13:35:59.718Z", "metrics": { "org_count": 1, "project_count": 2, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.306Z" + "generated_at": "2026-02-19T13:35:59.718Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/compiler.json b/new-api-details/tech-stack/compiler.json index fde8fb3c..3794f957 100644 --- a/new-api-details/tech-stack/compiler.json +++ b/new-api-details/tech-stack/compiler.json @@ -1,13 +1,13 @@ { "slug": "compiler", "name": "compiler", - "published_at": "2026-01-24T21:33:12.080Z", + "published_at": "2026-02-19T13:35:59.392Z", "metrics": { "org_count": 4, "project_count": 164, "avg_projects_per_org": 41, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -24,7 +24,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] }, { @@ -44,7 +45,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -59,7 +61,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -73,7 +76,8 @@ 2020, 2021, 2024, - 2025 + 2025, + 2026 ] } ], @@ -128,11 +132,16 @@ "year": 2025, "org_count": 4, "project_count": 20 + }, + { + "year": 2026, + "org_count": 4, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.080Z" + "generated_at": "2026-02-19T13:35:59.392Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/compilers.json b/new-api-details/tech-stack/compilers.json index 413401cf..ace6c734 100644 --- a/new-api-details/tech-stack/compilers.json +++ b/new-api-details/tech-stack/compilers.json @@ -1,13 +1,13 @@ { "slug": "compilers", "name": "compilers", - "published_at": "2026-01-24T21:33:12.181Z", + "published_at": "2026-02-19T13:35:59.534Z", "metrics": { "org_count": 3, "project_count": 183, "avg_projects_per_org": 61, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -44,7 +45,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -53,7 +55,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/checker-framework.webp", "category": "Security", "total_projects": 17, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2017, 2018, @@ -114,11 +116,16 @@ "year": 2025, "org_count": 3, "project_count": 20 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.181Z" + "generated_at": "2026-02-19T13:35:59.534Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/component-based-development.json b/new-api-details/tech-stack/component-based-development.json index 7ee93894..95ddcc5c 100644 --- a/new-api-details/tech-stack/component-based-development.json +++ b/new-api-details/tech-stack/component-based-development.json @@ -1,7 +1,7 @@ { "slug": "component-based-development", "name": "component-based development", - "published_at": "2026-01-24T21:33:12.464Z", + "published_at": "2026-02-19T13:35:59.921Z", "metrics": { "org_count": 1, "project_count": 57, @@ -79,11 +79,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.464Z" + "generated_at": "2026-02-19T13:35:59.921Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/compression.json b/new-api-details/tech-stack/compression.json index 0b6194b6..62bade7b 100644 --- a/new-api-details/tech-stack/compression.json +++ b/new-api-details/tech-stack/compression.json @@ -1,7 +1,7 @@ { "slug": "compression", "name": "compression", - "published_at": "2026-01-24T21:33:12.579Z", + "published_at": "2026-02-19T13:36:00.112Z", "metrics": { "org_count": 1, "project_count": 0, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.579Z" + "generated_at": "2026-02-19T13:36:00.112Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/computer-vision.json b/new-api-details/tech-stack/computer-vision.json index c4402b22..f0cb828b 100644 --- a/new-api-details/tech-stack/computer-vision.json +++ b/new-api-details/tech-stack/computer-vision.json @@ -1,7 +1,7 @@ { "slug": "computer-vision", "name": "computer vision", - "published_at": "2026-01-24T21:33:12.194Z", + "published_at": "2026-02-19T13:35:59.554Z", "metrics": { "org_count": 5, "project_count": 220, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/opencv.webp", "category": "Media", "total_projects": 93, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -54,7 +54,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cloudcv.webp", "category": "Web", "total_projects": 28, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -144,11 +144,16 @@ "year": 2025, "org_count": 2, "project_count": 12 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.194Z" + "generated_at": "2026-02-19T13:35:59.554Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/concurrency.json b/new-api-details/tech-stack/concurrency.json index 6f1cafbc..0fa9a2a2 100644 --- a/new-api-details/tech-stack/concurrency.json +++ b/new-api-details/tech-stack/concurrency.json @@ -1,13 +1,13 @@ { "slug": "concurrency", "name": "concurrency", - "published_at": "2026-01-24T21:33:12.148Z", + "published_at": "2026-02-19T13:35:59.522Z", "metrics": { "org_count": 2, "project_count": 216, "avg_projects_per_org": 108, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -92,11 +93,16 @@ "year": 2025, "org_count": 1, "project_count": 26 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.148Z" + "generated_at": "2026-02-19T13:35:59.522Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/configuration-management.json b/new-api-details/tech-stack/configuration-management.json index 3164ac5c..ab263bac 100644 --- a/new-api-details/tech-stack/configuration-management.json +++ b/new-api-details/tech-stack/configuration-management.json @@ -1,13 +1,13 @@ { "slug": "configuration-management", "name": "configuration management", - "published_at": "2026-01-24T21:33:12.569Z", + "published_at": "2026-02-19T13:35:59.868Z", "metrics": { "org_count": 1, "project_count": 52, "avg_projects_per_org": 52, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 7 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.569Z" + "generated_at": "2026-02-19T13:35:59.868Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/container-orchestration.json b/new-api-details/tech-stack/container-orchestration.json index 76f94aaa..d489ec6e 100644 --- a/new-api-details/tech-stack/container-orchestration.json +++ b/new-api-details/tech-stack/container-orchestration.json @@ -1,13 +1,13 @@ { "slug": "container-orchestration", "name": "container orchestration", - "published_at": "2026-01-24T21:33:12.149Z", + "published_at": "2026-02-19T13:35:59.523Z", "metrics": { "org_count": 1, "project_count": 214, "avg_projects_per_org": 214, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 26 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.149Z" + "generated_at": "2026-02-19T13:35:59.523Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/container.json b/new-api-details/tech-stack/container.json index 4bdf472f..c038e77e 100644 --- a/new-api-details/tech-stack/container.json +++ b/new-api-details/tech-stack/container.json @@ -1,7 +1,7 @@ { "slug": "container", "name": "Container", - "published_at": "2026-01-24T21:33:12.248Z", + "published_at": "2026-02-19T13:35:59.632Z", "metrics": { "org_count": 1, "project_count": 27, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/fedora-project.webp", "category": "Operating systems", "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -78,11 +78,16 @@ "year": 2025, "org_count": 1, "project_count": 2 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.248Z" + "generated_at": "2026-02-19T13:35:59.632Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/containerd.json b/new-api-details/tech-stack/containerd.json new file mode 100644 index 00000000..518c846a --- /dev/null +++ b/new-api-details/tech-stack/containerd.json @@ -0,0 +1,88 @@ +{ + "slug": "containerd", + "name": "Containerd", + "published_at": "2026-02-19T13:35:59.624Z", + "metrics": { + "org_count": 1, + "project_count": 0, + "avg_projects_per_org": 0, + "first_year_used": 2026, + "latest_year_used": 2026 + }, + "organizations": [ + { + "slug": "erofs-filesystem", + "name": "EROFS filesystem", + "logo_url": "https://summerofcode.withgoogle.com/media/org/erofs-filesystem/qrkpvwkzjqmwoyau-360.png", + "category": "Operating systems", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + } + ], + "charts": { + "popularity_by_year": [ + { + "year": 2016, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2017, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2018, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2019, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2020, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2021, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2022, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2023, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2024, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2025, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 + } + ] + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:35:59.624Z" + } +} \ No newline at end of file diff --git a/new-api-details/tech-stack/containers.json b/new-api-details/tech-stack/containers.json index b5a78d09..069c027d 100644 --- a/new-api-details/tech-stack/containers.json +++ b/new-api-details/tech-stack/containers.json @@ -1,13 +1,13 @@ { "slug": "containers", "name": "containers", - "published_at": "2026-01-24T21:33:12.093Z", + "published_at": "2026-02-19T13:35:59.416Z", "metrics": { "org_count": 3, "project_count": 55, "avg_projects_per_org": 18.3, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -56,7 +56,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -111,11 +112,16 @@ "year": 2025, "org_count": 1, "project_count": 3 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.093Z" + "generated_at": "2026-02-19T13:35:59.416Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/content-management-system.json b/new-api-details/tech-stack/content-management-system.json index 598da61d..924c60ca 100644 --- a/new-api-details/tech-stack/content-management-system.json +++ b/new-api-details/tech-stack/content-management-system.json @@ -1,13 +1,13 @@ { "slug": "content-management-system", "name": "content management system", - "published_at": "2026-01-24T21:33:12.220Z", + "published_at": "2026-02-19T13:35:59.605Z", "metrics": { "org_count": 1, "project_count": 39, "avg_projects_per_org": 39, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 7 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.220Z" + "generated_at": "2026-02-19T13:35:59.605Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/controller-runtime.json b/new-api-details/tech-stack/controller-runtime.json index 1d28c7b0..fcb9e586 100644 --- a/new-api-details/tech-stack/controller-runtime.json +++ b/new-api-details/tech-stack/controller-runtime.json @@ -1,7 +1,7 @@ { "slug": "controller-runtime", "name": "controller-runtime", - "published_at": "2026-01-24T21:33:12.558Z", + "published_at": "2026-02-19T13:35:59.775Z", "metrics": { "org_count": 1, "project_count": 2, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kro-kube-resource-orchestrator.webp", "category": "Infrastructure and cloud", "total_projects": 2, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2025 ] @@ -73,11 +73,16 @@ "year": 2025, "org_count": 1, "project_count": 2 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.559Z" + "generated_at": "2026-02-19T13:35:59.775Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/coq.json b/new-api-details/tech-stack/coq.json index d159ca78..add176eb 100644 --- a/new-api-details/tech-stack/coq.json +++ b/new-api-details/tech-stack/coq.json @@ -1,13 +1,13 @@ { "slug": "coq", "name": "coq", - "published_at": "2026-01-24T21:33:12.081Z", + "published_at": "2026-02-19T13:35:59.396Z", "metrics": { "org_count": 1, "project_count": 13, "avg_projects_per_org": 13, "first_year_used": 2020, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -21,7 +21,8 @@ 2020, 2021, 2024, - 2025 + 2025, + 2026 ] } ], @@ -76,11 +77,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.081Z" + "generated_at": "2026-02-19T13:35:59.396Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/couchdb.json b/new-api-details/tech-stack/couchdb.json index aa38ad5e..41a64513 100644 --- a/new-api-details/tech-stack/couchdb.json +++ b/new-api-details/tech-stack/couchdb.json @@ -1,13 +1,13 @@ { "slug": "couchdb", "name": "couchdb", - "published_at": "2026-01-24T21:33:12.471Z", + "published_at": "2026-02-19T13:35:59.954Z", "metrics": { "org_count": 2, "project_count": 250, "avg_projects_per_org": 125, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-apache-software-foundation.webp", "category": "Web", "total_projects": 248, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -38,7 +38,8 @@ "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] } ], @@ -93,11 +94,16 @@ "year": 2025, "org_count": 2, "project_count": 29 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.471Z" + "generated_at": "2026-02-19T13:35:59.954Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/cpp.json b/new-api-details/tech-stack/cpp.json index 4cd9aad4..12758ebf 100644 --- a/new-api-details/tech-stack/cpp.json +++ b/new-api-details/tech-stack/cpp.json @@ -1,13 +1,13 @@ { "slug": "cpp", "name": "c++", - "published_at": "2026-01-24T21:33:12.041Z", + "published_at": "2026-02-19T13:35:59.369Z", "metrics": { - "org_count": 173, + "org_count": 178, "project_count": 6024, - "avg_projects_per_org": 34.8, + "avg_projects_per_org": 33.8, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,14 +27,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "python-software-foundation", "name": "Python Software Foundation", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/python-software-foundation.webp", - "category": "Science and medicine", + "category": "End user applications", "total_projects": 277, "is_currently_active": true, "active_years": [ @@ -47,7 +48,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -56,7 +58,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-apache-software-foundation.webp", "category": "Web", "total_projects": 248, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -86,7 +88,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -106,7 +109,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -126,7 +130,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -146,7 +151,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -165,7 +171,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -185,7 +192,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -205,7 +213,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -220,7 +229,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -240,7 +250,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -259,7 +270,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -279,7 +291,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -299,7 +312,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -308,7 +322,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/opencv.webp", "category": "Media", "total_projects": 93, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -338,7 +352,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -371,7 +386,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] }, { @@ -391,7 +407,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -411,7 +428,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -435,7 +453,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/freifunk.webp", "category": "Operating systems", "total_projects": 74, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -465,7 +483,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -474,7 +493,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/chromium.webp", "category": "Operating systems", "total_projects": 71, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2021, 2022, @@ -487,7 +506,7 @@ "slug": "open-technologies-alliance-gfoss", "name": "Open Technologies Alliance - GFOSS", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-technologies-alliance-gfoss.webp", - "category": "Development tools", + "category": "Science and medicine", "total_projects": 70, "is_currently_active": true, "active_years": [ @@ -498,7 +517,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -517,7 +537,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -555,7 +576,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -575,7 +597,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -595,7 +618,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -615,7 +639,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -643,7 +668,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnu-project.webp", "category": "Operating systems", "total_projects": 59, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -651,7 +676,8 @@ 2019, 2020, 2023, - 2024 + 2024, + 2026 ] }, { @@ -670,7 +696,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -707,7 +734,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -726,7 +754,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -764,7 +793,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -777,7 +807,8 @@ "active_years": [ 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -796,7 +827,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -816,7 +848,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -825,7 +858,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/global-alliance-for-genomics-and-health.webp", "category": "Science and medicine", "total_projects": 45, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -835,7 +868,8 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -872,7 +906,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -890,7 +925,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -925,7 +961,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -944,7 +981,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -963,7 +1001,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -981,7 +1020,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1001,7 +1041,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1020,7 +1061,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1038,7 +1080,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1052,7 +1095,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1070,7 +1114,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1115,7 +1160,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1141,7 +1187,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnss-sdr.webp", "category": "Science and medicine", "total_projects": 28, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -1175,7 +1221,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/inkscape.webp", "category": "End user applications", "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -1195,7 +1241,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/haiku.webp", "category": "Operating systems", "total_projects": 26, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, @@ -1204,7 +1250,8 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -1216,7 +1263,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -1234,7 +1282,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1291,7 +1340,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1306,7 +1356,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1329,12 +1380,13 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/metacall.webp", "category": "Programming languages", "total_projects": 19, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -1343,14 +1395,15 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/submitty.webp", "category": "End user applications", "total_projects": 19, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2018, 2019, 2020, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -1359,7 +1412,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-tor-project.webp", "category": "Web", "total_projects": 19, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -1418,7 +1471,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1435,7 +1489,8 @@ 2021, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1466,7 +1521,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1483,7 +1539,8 @@ 2020, 2022, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1568,7 +1625,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mbdyn.webp", "category": "Science and medicine", "total_projects": 13, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -1632,7 +1689,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/society-for-arts-and-technology-sat.webp", "category": "Media", "total_projects": 12, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2023, @@ -1653,7 +1710,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1672,6 +1730,20 @@ 2022 ] }, + { + "slug": "appleseed", + "name": "appleseed", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/appleseed.webp", + "category": "Media", + "total_projects": 11, + "is_currently_active": false, + "active_years": [ + 2017, + 2018, + 2019, + 2020 + ] + }, { "slug": "d-language-foundation", "name": "D Language Foundation", @@ -1682,7 +1754,8 @@ "active_years": [ 2016, 2019, - 2025 + 2025, + 2026 ] }, { @@ -1713,20 +1786,6 @@ 2024 ] }, - { - "slug": "appleseed", - "name": "appleseed", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/appleseed.webp", - "category": "Media", - "total_projects": 11, - "is_currently_active": false, - "active_years": [ - 2017, - 2018, - 2019, - 2020 - ] - }, { "slug": "aflplusplus", "name": "AFLplusplus", @@ -1740,7 +1799,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1776,7 +1836,21 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "lowrisc", + "name": "lowRISC", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/lowrisc.webp", + "category": "Other", + "total_projects": 10, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2020 ] }, { @@ -1800,7 +1874,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/organic-maps.webp", "category": "End user applications", "total_projects": 10, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2023, @@ -1820,7 +1894,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1837,19 +1912,6 @@ 2020 ] }, - { - "slug": "lowrisc", - "name": "lowRISC", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/lowrisc.webp", - "category": "Other", - "total_projects": 10, - "is_currently_active": false, - "active_years": [ - 2016, - 2017, - 2020 - ] - }, { "slug": "nmap-security-scanner", "name": "Nmap Security Scanner", @@ -1898,7 +1960,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -1907,7 +1970,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/unicode-inc.webp", "category": "Programming languages", "total_projects": 9, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2024, 2025 @@ -1936,7 +1999,8 @@ "active_years": [ 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1977,6 +2041,19 @@ 2016 ] }, + { + "slug": "libcamera", + "name": "libcamera", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/libcamera.webp", + "category": "Media", + "total_projects": 7, + "is_currently_active": false, + "active_years": [ + 2021, + 2022, + 2023 + ] + }, { "slug": "libre-space-foundation", "name": "Libre Space Foundation", @@ -1999,7 +2076,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -2011,7 +2089,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -2020,25 +2099,12 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/waycrate.webp", "category": "End user applications", "total_projects": 7, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2024, 2025 ] }, - { - "slug": "libcamera", - "name": "libcamera", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/libcamera.webp", - "category": "Media", - "total_projects": 7, - "is_currently_active": false, - "active_years": [ - 2021, - 2022, - 2023 - ] - }, { "slug": "mediapipe", "name": "MediaPipe", @@ -2088,26 +2154,26 @@ ] }, { - "slug": "prism-model-checker", - "name": "PRISM Model Checker", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/prism-model-checker.webp", + "slug": "point-cloud-library", + "name": "Point Cloud Library", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/point-cloud-library.webp", "category": "Science and medicine", "total_projects": 5, "is_currently_active": false, "active_years": [ - 2016 + 2020, + 2021 ] }, { - "slug": "point-cloud-library", - "name": "Point Cloud Library", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/point-cloud-library.webp", + "slug": "prism-model-checker", + "name": "PRISM Model Checker", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/prism-model-checker.webp", "category": "Science and medicine", "total_projects": 5, "is_currently_active": false, "active_years": [ - 2020, - 2021 + 2016 ] }, { @@ -2129,7 +2195,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/electron.webp", "category": "End user applications", "total_projects": 4, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2024, @@ -2142,10 +2208,11 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/neutralinojs.webp", "category": "Web", "total_projects": 4, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2022, - 2024 + 2024, + 2026 ] }, { @@ -2168,7 +2235,8 @@ "total_projects": 4, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] }, { @@ -2183,17 +2251,6 @@ 2018 ] }, - { - "slug": "ascend", - "name": "ASCEND", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ascend.webp", - "category": "Science and medicine", - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2016 - ] - }, { "slug": "academy-software-foundation", "name": "Academy Software Foundation", @@ -2206,6 +2263,17 @@ 2022 ] }, + { + "slug": "ascend", + "name": "ASCEND", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ascend.webp", + "category": "Science and medicine", + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2016 + ] + }, { "slug": "audacity", "name": "Audacity", @@ -2254,6 +2322,17 @@ 2017 ] }, + { + "slug": "moja-global", + "name": "moja global", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/moja-global.webp", + "category": "Data", + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2022 + ] + }, { "slug": "open3d-team", "name": "Open3D team", @@ -2271,7 +2350,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/rspamd.webp", "category": "Security", "total_projects": 3, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2017, 2018, @@ -2296,9 +2375,10 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/tiled.webp", "category": "End user applications", "total_projects": 3, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ - 2017 + 2017, + 2026 ] }, { @@ -2313,17 +2393,6 @@ 2018 ] }, - { - "slug": "moja-global", - "name": "moja global", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/moja-global.webp", - "category": "Data", - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2022 - ] - }, { "slug": "3dtk", "name": "3DTK", @@ -2402,6 +2471,18 @@ 2016 ] }, + { + "slug": "dora-rs", + "name": "dora-rs", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/dora-rs.webp", + "category": "End user applications", + "total_projects": 2, + "is_currently_active": true, + "active_years": [ + 2025, + 2026 + ] + }, { "slug": "gdevelop", "name": "GDevelop", @@ -2466,7 +2547,8 @@ "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] }, { @@ -2475,7 +2557,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/pal-robotics.webp", "category": "Other", "total_projects": 2, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2025 ] @@ -2491,17 +2573,6 @@ 2016 ] }, - { - "slug": "dora-rs", - "name": "dora-rs", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/dora-rs.webp", - "category": "End user applications", - "total_projects": 2, - "is_currently_active": true, - "active_years": [ - 2025 - ] - }, { "slug": "wxwidgets", "name": "wxWidgets", @@ -2525,6 +2596,17 @@ 2020 ] }, + { + "slug": "gvisor", + "name": "gVisor", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gvisor.webp", + "category": "Operating systems", + "total_projects": 1, + "is_currently_active": false, + "active_years": [ + 2021 + ] + }, { "slug": "kart-project", "name": "Kart Project", @@ -2614,14 +2696,58 @@ ] }, { - "slug": "gvisor", - "name": "gVisor", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gvisor.webp", - "category": "Operating systems", - "total_projects": 1, - "is_currently_active": false, + "slug": "apache-software-foundation", + "name": "Apache Software Foundation", + "logo_url": "https://summerofcode.withgoogle.com/media/org/apache-software-foundation/hq22fwtmvdfjnsh9-360.png", + "category": "Web", + "total_projects": 0, + "is_currently_active": true, "active_years": [ - 2021 + 2026 + ] + }, + { + "slug": "gambit-the-package-for-computation-in-game-theory", + "name": "Gambit: The package for computation in game theory", + "logo_url": "https://summerofcode.withgoogle.com/media/org/gambit-the-package-for-computation-in-game-theory/09u5sma4pizmwbqt-360.png", + "category": "Science and medicine", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + }, + { + "slug": "moganlab", + "name": "MoganLab", + "logo_url": "https://summerofcode.withgoogle.com/media/org/moganlab/tuz5k2kmoivlkods-360.png", + "category": "Programming languages", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + }, + { + "slug": "precice", + "name": "preCICE", + "logo_url": "https://summerofcode.withgoogle.com/media/org/precice/19ymcw80uxn8g9ia-360.png", + "category": "Science and medicine", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + }, + { + "slug": "the-openroad-initiative", + "name": "The OpenROAD Initiative", + "logo_url": "https://summerofcode.withgoogle.com/media/org/the-openroad-initiative/wsxrroe08v4rdaga-360.png", + "category": "Infrastructure and cloud", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 ] } ], @@ -2629,58 +2755,63 @@ "popularity_by_year": [ { "year": 2016, - "org_count": 82, - "project_count": 592 + "org_count": 86, + "project_count": 617 }, { "year": 2017, - "org_count": 90, - "project_count": 587 + "org_count": 96, + "project_count": 629 }, { "year": 2018, - "org_count": 95, - "project_count": 576 + "org_count": 103, + "project_count": 628 }, { "year": 2019, - "org_count": 94, - "project_count": 610 + "org_count": 101, + "project_count": 677 }, { "year": 2020, - "org_count": 102, - "project_count": 649 + "org_count": 110, + "project_count": 709 }, { "year": 2021, - "org_count": 97, - "project_count": 700 + "org_count": 106, + "project_count": 766 }, { "year": 2022, - "org_count": 100, - "project_count": 604 + "org_count": 109, + "project_count": 666 }, { "year": 2023, - "org_count": 83, - "project_count": 528 + "org_count": 93, + "project_count": 599 }, { "year": 2024, - "org_count": 88, - "project_count": 612 + "org_count": 98, + "project_count": 700 }, { "year": 2025, - "org_count": 80, - "project_count": 670 + "org_count": 90, + "project_count": 770 + }, + { + "year": 2026, + "org_count": 87, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.041Z" + "generated_at": "2026-02-19T13:35:59.369Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/cross-platform.json b/new-api-details/tech-stack/cross-platform.json index e280161e..004ac054 100644 --- a/new-api-details/tech-stack/cross-platform.json +++ b/new-api-details/tech-stack/cross-platform.json @@ -1,7 +1,7 @@ { "slug": "cross-platform", "name": "cross-platform", - "published_at": "2026-01-24T21:33:12.160Z", + "published_at": "2026-02-19T13:35:59.554Z", "metrics": { "org_count": 1, "project_count": 11, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.160Z" + "generated_at": "2026-02-19T13:35:59.555Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/crossplatform.json b/new-api-details/tech-stack/crossplatform.json index 68e93862..6c54e670 100644 --- a/new-api-details/tech-stack/crossplatform.json +++ b/new-api-details/tech-stack/crossplatform.json @@ -1,7 +1,7 @@ { "slug": "crossplatform", "name": "crossplatform", - "published_at": "2026-01-24T21:33:12.287Z", + "published_at": "2026-02-19T13:35:59.688Z", "metrics": { "org_count": 1, "project_count": 27, @@ -77,11 +77,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.287Z" + "generated_at": "2026-02-19T13:35:59.688Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/cryptography.json b/new-api-details/tech-stack/cryptography.json index d014ed6c..48485d00 100644 --- a/new-api-details/tech-stack/cryptography.json +++ b/new-api-details/tech-stack/cryptography.json @@ -1,7 +1,7 @@ { "slug": "cryptography", "name": "Cryptography", - "published_at": "2026-01-24T21:33:12.286Z", + "published_at": "2026-02-19T13:35:59.687Z", "metrics": { "org_count": 1, "project_count": 2, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.286Z" + "generated_at": "2026-02-19T13:35:59.687Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/csharp.json b/new-api-details/tech-stack/csharp.json index 02abd13b..58f0c277 100644 --- a/new-api-details/tech-stack/csharp.json +++ b/new-api-details/tech-stack/csharp.json @@ -1,13 +1,13 @@ { "slug": "csharp", "name": "c#", - "published_at": "2026-01-24T21:33:12.144Z", + "published_at": "2026-02-19T13:35:59.506Z", "metrics": { "org_count": 6, "project_count": 189, "avg_projects_per_org": 31.5, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -47,7 +48,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -146,11 +148,16 @@ "year": 2025, "org_count": 2, "project_count": 25 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.144Z" + "generated_at": "2026-02-19T13:35:59.506Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/css.json b/new-api-details/tech-stack/css.json index 11877b64..616f77b3 100644 --- a/new-api-details/tech-stack/css.json +++ b/new-api-details/tech-stack/css.json @@ -1,13 +1,13 @@ { "slug": "css", "name": "css", - "published_at": "2026-01-24T21:33:12.061Z", + "published_at": "2026-02-19T13:35:59.422Z", "metrics": { - "org_count": 33, + "org_count": 36, "project_count": 1294, - "avg_projects_per_org": 39.2, + "avg_projects_per_org": 35.9, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -47,7 +48,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -66,7 +68,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -86,7 +89,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -95,7 +99,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/wikimedia-foundation.webp", "category": "Web", "total_projects": 85, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -105,7 +109,8 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -125,7 +130,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -145,7 +151,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -169,7 +176,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/freifunk.webp", "category": "Operating systems", "total_projects": 74, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -186,7 +193,7 @@ "slug": "open-technologies-alliance-gfoss", "name": "Open Technologies Alliance - GFOSS", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-technologies-alliance-gfoss.webp", - "category": "Development tools", + "category": "Science and medicine", "total_projects": 70, "is_currently_active": true, "active_years": [ @@ -197,7 +204,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -231,7 +239,8 @@ 2019, 2021, 2022, - 2025 + 2025, + 2026 ] }, { @@ -249,7 +258,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -258,13 +268,14 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cuneiform-digital-library-initiative-cdli.webp", "category": "Science and medicine", "total_projects": 30, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2018, 2019, 2020, 2021, - 2022 + 2022, + 2026 ] }, { @@ -273,7 +284,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/fedora-project.webp", "category": "Operating systems", "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -289,7 +300,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/inkscape.webp", "category": "End user applications", "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -309,7 +320,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/plone-foundation.webp", "category": "Web", "total_projects": 26, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -339,14 +350,15 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/submitty.webp", "category": "End user applications", "total_projects": 19, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2018, 2019, 2020, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -431,7 +443,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -470,29 +483,29 @@ ] }, { - "slug": "the-center-for-connected-learning-and-computer-based-modeling", - "name": "The Center for Connected Learning and Computer-Based Modeling", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-center-for-connected-learning-and-computer-based-modeling.webp", - "category": "Programming languages", + "slug": "owncloud", + "name": "ownCloud", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/owncloud.webp", + "category": "Infrastructure and cloud", "total_projects": 5, "is_currently_active": false, "active_years": [ 2016, - 2017, - 2018, - 2019 + 2017 ] }, { - "slug": "owncloud", - "name": "ownCloud", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/owncloud.webp", - "category": "Infrastructure and cloud", + "slug": "the-center-for-connected-learning-and-computer-based-modeling", + "name": "The Center for Connected Learning and Computer-Based Modeling", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-center-for-connected-learning-and-computer-based-modeling.webp", + "category": "Programming languages", "total_projects": 5, "is_currently_active": false, "active_years": [ 2016, - 2017 + 2017, + 2018, + 2019 ] }, { @@ -530,6 +543,39 @@ "active_years": [ 2018 ] + }, + { + "slug": "learning-unlimited", + "name": "Learning Unlimited", + "logo_url": "https://summerofcode.withgoogle.com/media/org/learning-unlimited/prqi7cnmji8guahm-360.png", + "category": "End user applications", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + }, + { + "slug": "measurement-lab", + "name": "Measurement Lab", + "logo_url": "https://summerofcode.withgoogle.com/media/org/measurement-lab/0sttrnvo03uejp1z.png", + "category": "Data", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + }, + { + "slug": "united-nations-office-of-information-communication-technology", + "name": "United Nations Office of Information Communication Technology", + "logo_url": "https://summerofcode.withgoogle.com/media/org/united-nations-office-of-information-communication-technology/bl0zv6y6mjmzuybz-360.png", + "category": "End user applications", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] } ], "charts": { @@ -583,11 +629,16 @@ "year": 2025, "org_count": 14, "project_count": 100 + }, + { + "year": 2026, + "org_count": 16, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.061Z" + "generated_at": "2026-02-19T13:35:59.422Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/css3.json b/new-api-details/tech-stack/css3.json index c070dffa..8d2dafff 100644 --- a/new-api-details/tech-stack/css3.json +++ b/new-api-details/tech-stack/css3.json @@ -1,7 +1,7 @@ { "slug": "css3", "name": "css3", - "published_at": "2026-01-24T21:33:12.543Z", + "published_at": "2026-02-19T13:36:00.118Z", "metrics": { "org_count": 1, "project_count": 12, @@ -80,11 +80,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.543Z" + "generated_at": "2026-02-19T13:36:00.118Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/cuda.json b/new-api-details/tech-stack/cuda.json index 276056ff..3f0e6bbe 100644 --- a/new-api-details/tech-stack/cuda.json +++ b/new-api-details/tech-stack/cuda.json @@ -1,13 +1,13 @@ { "slug": "cuda", "name": "cuda", - "published_at": "2026-01-24T21:33:12.302Z", + "published_at": "2026-02-19T13:35:59.698Z", "metrics": { "org_count": 8, "project_count": 383, "avg_projects_per_org": 47.9, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -36,7 +37,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/opencv.webp", "category": "Media", "total_projects": 93, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -65,7 +66,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -80,7 +82,8 @@ 2021, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -128,7 +131,8 @@ "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] } ], @@ -183,11 +187,16 @@ "year": 2025, "org_count": 5, "project_count": 48 + }, + { + "year": 2026, + "org_count": 4, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.302Z" + "generated_at": "2026-02-19T13:35:59.698Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/cups.json b/new-api-details/tech-stack/cups.json index 1b0499d3..6aa1bed5 100644 --- a/new-api-details/tech-stack/cups.json +++ b/new-api-details/tech-stack/cups.json @@ -1,13 +1,13 @@ { "slug": "cups", "name": "cups", - "published_at": "2026-01-24T21:33:12.509Z", + "published_at": "2026-02-19T13:35:59.972Z", "metrics": { "org_count": 1, "project_count": 137, "avg_projects_per_org": 137, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -82,11 +83,16 @@ "year": 2025, "org_count": 1, "project_count": 21 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.509Z" + "generated_at": "2026-02-19T13:35:59.972Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/cypress.json b/new-api-details/tech-stack/cypress.json index edee11d7..75a469be 100644 --- a/new-api-details/tech-stack/cypress.json +++ b/new-api-details/tech-stack/cypress.json @@ -1,13 +1,13 @@ { "slug": "cypress", "name": "Cypress", - "published_at": "2026-01-24T21:33:12.416Z", + "published_at": "2026-02-19T13:35:59.865Z", "metrics": { "org_count": 1, "project_count": 94, "avg_projects_per_org": 94, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -82,11 +83,16 @@ "year": 2025, "org_count": 1, "project_count": 8 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.416Z" + "generated_at": "2026-02-19T13:35:59.865Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/cython.json b/new-api-details/tech-stack/cython.json index e9a74276..4a263b8e 100644 --- a/new-api-details/tech-stack/cython.json +++ b/new-api-details/tech-stack/cython.json @@ -1,13 +1,13 @@ { "slug": "cython", "name": "cython", - "published_at": "2026-01-24T21:33:12.322Z", + "published_at": "2026-02-19T13:35:59.697Z", "metrics": { "org_count": 9, "project_count": 121, "avg_projects_per_org": 13.4, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -42,7 +43,8 @@ 2021, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -58,7 +60,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -71,7 +74,8 @@ "active_years": [ 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -117,7 +121,8 @@ "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] }, { @@ -184,11 +189,16 @@ "year": 2025, "org_count": 5, "project_count": 23 + }, + { + "year": 2026, + "org_count": 5, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.322Z" + "generated_at": "2026-02-19T13:35:59.697Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/d.json b/new-api-details/tech-stack/d.json index df5f8560..4923a797 100644 --- a/new-api-details/tech-stack/d.json +++ b/new-api-details/tech-stack/d.json @@ -1,13 +1,13 @@ { "slug": "d", "name": "d", - "published_at": "2026-01-24T21:33:12.205Z", + "published_at": "2026-02-19T13:35:59.584Z", "metrics": { "org_count": 2, "project_count": 56, "avg_projects_per_org": 28, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -37,7 +37,8 @@ "active_years": [ 2016, 2019, - 2025 + 2025, + 2026 ] } ], @@ -92,11 +93,16 @@ "year": 2025, "org_count": 1, "project_count": 2 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.205Z" + "generated_at": "2026-02-19T13:35:59.584Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/d3-js.json b/new-api-details/tech-stack/d3-js.json index 82003bab..4e641e8e 100644 --- a/new-api-details/tech-stack/d3-js.json +++ b/new-api-details/tech-stack/d3-js.json @@ -1,7 +1,7 @@ { "slug": "d3-js", "name": "d3.js", - "published_at": "2026-01-24T21:33:12.189Z", + "published_at": "2026-02-19T13:35:59.548Z", "metrics": { "org_count": 2, "project_count": 26, @@ -89,11 +89,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.189Z" + "generated_at": "2026-02-19T13:35:59.549Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/d3.json b/new-api-details/tech-stack/d3.json index 6f58f78a..89665642 100644 --- a/new-api-details/tech-stack/d3.json +++ b/new-api-details/tech-stack/d3.json @@ -1,7 +1,7 @@ { "slug": "d3", "name": "d3", - "published_at": "2026-01-24T21:33:12.127Z", + "published_at": "2026-02-19T13:35:59.481Z", "metrics": { "org_count": 5, "project_count": 31, @@ -123,11 +123,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.127Z" + "generated_at": "2026-02-19T13:35:59.481Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/d3js.json b/new-api-details/tech-stack/d3js.json index 0b4f4190..238f8f92 100644 --- a/new-api-details/tech-stack/d3js.json +++ b/new-api-details/tech-stack/d3js.json @@ -1,7 +1,7 @@ { "slug": "d3js", "name": "d3js", - "published_at": "2026-01-24T21:33:12.188Z", + "published_at": "2026-02-19T13:35:59.548Z", "metrics": { "org_count": 1, "project_count": 22, @@ -77,11 +77,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.188Z" + "generated_at": "2026-02-19T13:35:59.548Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/dart-flutter.json b/new-api-details/tech-stack/dart-flutter.json index 901b317d..d0f72cf4 100644 --- a/new-api-details/tech-stack/dart-flutter.json +++ b/new-api-details/tech-stack/dart-flutter.json @@ -1,13 +1,13 @@ { "slug": "dart-flutter", "name": "dart/flutter", - "published_at": "2026-01-24T21:33:12.361Z", + "published_at": "2026-02-19T13:35:59.792Z", "metrics": { "org_count": 1, "project_count": 31, "avg_projects_per_org": 31, "first_year_used": 2017, - "latest_year_used": 2023 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/librehealth.webp", "category": "Science and medicine", "total_projects": 31, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, @@ -24,7 +24,8 @@ 2020, 2021, 2022, - 2023 + 2023, + 2026 ] } ], @@ -79,11 +80,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.361Z" + "generated_at": "2026-02-19T13:35:59.792Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/dart.json b/new-api-details/tech-stack/dart.json index fc3017df..1bca95b8 100644 --- a/new-api-details/tech-stack/dart.json +++ b/new-api-details/tech-stack/dart.json @@ -1,13 +1,13 @@ { "slug": "dart", "name": "dart", - "published_at": "2026-01-24T21:33:12.074Z", + "published_at": "2026-02-19T13:35:59.449Z", "metrics": { "org_count": 3, "project_count": 36, "avg_projects_per_org": 12, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -23,7 +23,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -51,7 +52,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -106,11 +108,16 @@ "year": 2025, "org_count": 2, "project_count": 7 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.074Z" + "generated_at": "2026-02-19T13:35:59.449Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/dash.json b/new-api-details/tech-stack/dash.json index 9bb3546a..952af08f 100644 --- a/new-api-details/tech-stack/dash.json +++ b/new-api-details/tech-stack/dash.json @@ -1,7 +1,7 @@ { "slug": "dash", "name": "dash", - "published_at": "2026-01-24T21:33:12.275Z", + "published_at": "2026-02-19T13:35:59.694Z", "metrics": { "org_count": 1, "project_count": 1, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.275Z" + "generated_at": "2026-02-19T13:35:59.694Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/dask.json b/new-api-details/tech-stack/dask.json index 8b0a64e4..1eb1473d 100644 --- a/new-api-details/tech-stack/dask.json +++ b/new-api-details/tech-stack/dask.json @@ -1,7 +1,7 @@ { "slug": "dask", "name": "dask", - "published_at": "2026-01-24T21:33:12.222Z", + "published_at": "2026-02-19T13:35:59.607Z", "metrics": { "org_count": 1, "project_count": 4, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.222Z" + "generated_at": "2026-02-19T13:35:59.607Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/data-analysis.json b/new-api-details/tech-stack/data-analysis.json index 740c0b82..40dddfea 100644 --- a/new-api-details/tech-stack/data-analysis.json +++ b/new-api-details/tech-stack/data-analysis.json @@ -1,13 +1,13 @@ { "slug": "data-analysis", "name": "data analysis", - "published_at": "2026-01-24T21:33:12.146Z", + "published_at": "2026-02-19T13:35:59.520Z", "metrics": { "org_count": 6, "project_count": 542, "avg_projects_per_org": 90.3, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -41,7 +42,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -61,7 +63,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -88,7 +91,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -154,11 +158,16 @@ "year": 2025, "org_count": 4, "project_count": 81 + }, + { + "year": 2026, + "org_count": 4, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.146Z" + "generated_at": "2026-02-19T13:35:59.520Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/data-science.json b/new-api-details/tech-stack/data-science.json index 14a6df0b..2740a95e 100644 --- a/new-api-details/tech-stack/data-science.json +++ b/new-api-details/tech-stack/data-science.json @@ -1,13 +1,13 @@ { "slug": "data-science", "name": "data science", - "published_at": "2026-01-24T21:33:12.331Z", + "published_at": "2026-02-19T13:35:59.749Z", "metrics": { "org_count": 6, "project_count": 244, "avg_projects_per_org": 40.7, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -81,7 +82,8 @@ "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] }, { @@ -147,11 +149,16 @@ "year": 2025, "org_count": 2, "project_count": 16 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.331Z" + "generated_at": "2026-02-19T13:35:59.749Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/data-structures.json b/new-api-details/tech-stack/data-structures.json index 70da0775..80abde4b 100644 --- a/new-api-details/tech-stack/data-structures.json +++ b/new-api-details/tech-stack/data-structures.json @@ -1,13 +1,13 @@ { "slug": "data-structures", "name": "data structures", - "published_at": "2026-01-24T21:33:12.338Z", + "published_at": "2026-02-19T13:35:59.765Z", "metrics": { "org_count": 1, "project_count": 167, "avg_projects_per_org": 167, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -82,11 +83,16 @@ "year": 2025, "org_count": 1, "project_count": 15 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.338Z" + "generated_at": "2026-02-19T13:35:59.765Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/data.json b/new-api-details/tech-stack/data.json index f4140267..7dc7f280 100644 --- a/new-api-details/tech-stack/data.json +++ b/new-api-details/tech-stack/data.json @@ -1,7 +1,7 @@ { "slug": "data", "name": "data", - "published_at": "2026-01-24T21:33:12.468Z", + "published_at": "2026-02-19T13:35:59.930Z", "metrics": { "org_count": 1, "project_count": 13, @@ -76,11 +76,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.468Z" + "generated_at": "2026-02-19T13:35:59.930Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/database.json b/new-api-details/tech-stack/database.json index 68c0eea1..01f39a9b 100644 --- a/new-api-details/tech-stack/database.json +++ b/new-api-details/tech-stack/database.json @@ -1,13 +1,13 @@ { "slug": "database", "name": "database", - "published_at": "2026-01-24T21:33:12.398Z", + "published_at": "2026-02-19T13:35:59.503Z", "metrics": { "org_count": 2, "project_count": 139, "avg_projects_per_org": 69.5, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -44,7 +45,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -99,11 +101,16 @@ "year": 2025, "org_count": 2, "project_count": 13 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.398Z" + "generated_at": "2026-02-19T13:35:59.503Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/databases.json b/new-api-details/tech-stack/databases.json index 5d91abef..18c09c50 100644 --- a/new-api-details/tech-stack/databases.json +++ b/new-api-details/tech-stack/databases.json @@ -1,13 +1,13 @@ { "slug": "databases", "name": "databases", - "published_at": "2026-01-24T21:33:12.374Z", + "published_at": "2026-02-19T13:35:59.808Z", "metrics": { "org_count": 4, "project_count": 67, "avg_projects_per_org": 16.8, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -36,14 +37,15 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/submitty.webp", "category": "End user applications", "total_projects": 19, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2018, 2019, 2020, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -122,11 +124,16 @@ "year": 2025, "org_count": 1, "project_count": 7 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.374Z" + "generated_at": "2026-02-19T13:35:59.808Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/datproject.json b/new-api-details/tech-stack/datproject.json index fb98f892..cfc91bf0 100644 --- a/new-api-details/tech-stack/datproject.json +++ b/new-api-details/tech-stack/datproject.json @@ -1,7 +1,7 @@ { "slug": "datproject", "name": "datproject", - "published_at": "2026-01-24T21:33:12.539Z", + "published_at": "2026-02-19T13:36:00.089Z", "metrics": { "org_count": 1, "project_count": 4, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.539Z" + "generated_at": "2026-02-19T13:36:00.089Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/ddos.json b/new-api-details/tech-stack/ddos.json index c0fabfab..b6a0f61f 100644 --- a/new-api-details/tech-stack/ddos.json +++ b/new-api-details/tech-stack/ddos.json @@ -1,7 +1,7 @@ { "slug": "ddos", "name": "ddos", - "published_at": "2026-01-24T21:33:12.136Z", + "published_at": "2026-02-19T13:35:59.489Z", "metrics": { "org_count": 1, "project_count": 8, @@ -75,11 +75,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.136Z" + "generated_at": "2026-02-19T13:35:59.489Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/decentralisation.json b/new-api-details/tech-stack/decentralisation.json index 118a832d..8c248ec9 100644 --- a/new-api-details/tech-stack/decentralisation.json +++ b/new-api-details/tech-stack/decentralisation.json @@ -1,7 +1,7 @@ { "slug": "decentralisation", "name": "decentralisation", - "published_at": "2026-01-24T21:33:12.376Z", + "published_at": "2026-02-19T13:35:59.809Z", "metrics": { "org_count": 1, "project_count": 29, @@ -79,11 +79,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.376Z" + "generated_at": "2026-02-19T13:35:59.809Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/decode.json b/new-api-details/tech-stack/decode.json index 4ba7c03a..4f643511 100644 --- a/new-api-details/tech-stack/decode.json +++ b/new-api-details/tech-stack/decode.json @@ -1,7 +1,7 @@ { "slug": "decode", "name": "decode", - "published_at": "2026-01-24T21:33:12.310Z", + "published_at": "2026-02-19T13:35:59.721Z", "metrics": { "org_count": 1, "project_count": 12, @@ -78,11 +78,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.310Z" + "generated_at": "2026-02-19T13:35:59.721Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/deep-learning.json b/new-api-details/tech-stack/deep-learning.json index 3a737b67..7cf90d05 100644 --- a/new-api-details/tech-stack/deep-learning.json +++ b/new-api-details/tech-stack/deep-learning.json @@ -1,13 +1,13 @@ { "slug": "deep-learning", "name": "deep learning", - "published_at": "2026-01-24T21:33:12.131Z", + "published_at": "2026-02-19T13:35:59.483Z", "metrics": { "org_count": 10, "project_count": 370, "avg_projects_per_org": 37, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/opencv.webp", "category": "Media", "total_projects": 93, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -60,7 +60,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -88,7 +89,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cloudcv.webp", "category": "Web", "total_projects": 28, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -115,7 +116,8 @@ 2020, 2022, 2024, - 2025 + 2025, + 2026 ] }, { @@ -162,7 +164,8 @@ "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] } ], @@ -217,11 +220,16 @@ "year": 2025, "org_count": 5, "project_count": 24 + }, + { + "year": 2026, + "org_count": 3, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.131Z" + "generated_at": "2026-02-19T13:35:59.483Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/deeplearning.json b/new-api-details/tech-stack/deeplearning.json index 8f3e75f2..5c83e9fd 100644 --- a/new-api-details/tech-stack/deeplearning.json +++ b/new-api-details/tech-stack/deeplearning.json @@ -1,13 +1,13 @@ { "slug": "deeplearning", "name": "deeplearning", - "published_at": "2026-01-24T21:33:12.215Z", + "published_at": "2026-02-19T13:35:59.600Z", "metrics": { "org_count": 2, "project_count": 95, "avg_projects_per_org": 47.5, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -35,7 +36,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/department-of-biomedical-informatics-emory-university.webp", "category": "Security", "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2021, 2022, @@ -96,11 +97,16 @@ "year": 2025, "org_count": 2, "project_count": 10 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.215Z" + "generated_at": "2026-02-19T13:35:59.600Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/devops.json b/new-api-details/tech-stack/devops.json index f3c0f6a5..004692e7 100644 --- a/new-api-details/tech-stack/devops.json +++ b/new-api-details/tech-stack/devops.json @@ -1,7 +1,7 @@ { "slug": "devops", "name": "devops", - "published_at": "2026-01-24T21:33:12.284Z", + "published_at": "2026-02-19T13:35:59.670Z", "metrics": { "org_count": 2, "project_count": 20, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gitlab.webp", "category": "Infrastructure and cloud", "total_projects": 15, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2021, 2022, @@ -88,11 +88,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.284Z" + "generated_at": "2026-02-19T13:35:59.670Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/dhcp.json b/new-api-details/tech-stack/dhcp.json index 521af2a9..ca68d88a 100644 --- a/new-api-details/tech-stack/dhcp.json +++ b/new-api-details/tech-stack/dhcp.json @@ -1,7 +1,7 @@ { "slug": "dhcp", "name": "dhcp", - "published_at": "2026-01-24T21:33:12.320Z", + "published_at": "2026-02-19T13:35:59.736Z", "metrics": { "org_count": 1, "project_count": 3, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.320Z" + "generated_at": "2026-02-19T13:35:59.736Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/dicom.json b/new-api-details/tech-stack/dicom.json index 34bf3566..f7089131 100644 --- a/new-api-details/tech-stack/dicom.json +++ b/new-api-details/tech-stack/dicom.json @@ -1,13 +1,13 @@ { "slug": "dicom", "name": "dicom", - "published_at": "2026-01-24T21:33:12.089Z", + "published_at": "2026-02-19T13:35:59.407Z", "metrics": { "org_count": 3, "project_count": 52, "avg_projects_per_org": 17.3, "first_year_used": 2021, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/department-of-biomedical-informatics-emory-university.webp", "category": "Security", "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2021, 2022, @@ -35,7 +35,8 @@ "active_years": [ 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -47,7 +48,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -102,11 +104,16 @@ "year": 2025, "org_count": 3, "project_count": 17 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.089Z" + "generated_at": "2026-02-19T13:35:59.407Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/differential-privacy.json b/new-api-details/tech-stack/differential-privacy.json index e463f639..37c4f407 100644 --- a/new-api-details/tech-stack/differential-privacy.json +++ b/new-api-details/tech-stack/differential-privacy.json @@ -1,7 +1,7 @@ { "slug": "differential-privacy", "name": "differential privacy", - "published_at": "2026-01-24T21:33:12.418Z", + "published_at": "2026-02-19T13:35:59.860Z", "metrics": { "org_count": 1, "project_count": 9, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.418Z" + "generated_at": "2026-02-19T13:35:59.860Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/directx.json b/new-api-details/tech-stack/directx.json index fdfcacc1..10974fbf 100644 --- a/new-api-details/tech-stack/directx.json +++ b/new-api-details/tech-stack/directx.json @@ -1,7 +1,7 @@ { "slug": "directx", "name": "directx", - "published_at": "2026-01-24T21:33:12.525Z", + "published_at": "2026-02-19T13:36:00.023Z", "metrics": { "org_count": 1, "project_count": 4, @@ -77,11 +77,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.525Z" + "generated_at": "2026-02-19T13:36:00.023Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/distributed-computing.json b/new-api-details/tech-stack/distributed-computing.json index d7a2ef93..cb36ec34 100644 --- a/new-api-details/tech-stack/distributed-computing.json +++ b/new-api-details/tech-stack/distributed-computing.json @@ -1,7 +1,7 @@ { "slug": "distributed-computing", "name": "distributed computing", - "published_at": "2026-01-24T21:33:12.534Z", + "published_at": "2026-02-19T13:36:00.094Z", "metrics": { "org_count": 1, "project_count": 20, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.534Z" + "generated_at": "2026-02-19T13:36:00.094Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/distributed-key-value-store.json b/new-api-details/tech-stack/distributed-key-value-store.json index cce3af61..b5cbbc5a 100644 --- a/new-api-details/tech-stack/distributed-key-value-store.json +++ b/new-api-details/tech-stack/distributed-key-value-store.json @@ -1,7 +1,7 @@ { "slug": "distributed-key-value-store", "name": "Distributed key-value store", - "published_at": "2026-01-24T21:33:12.210Z", + "published_at": "2026-02-19T13:35:59.587Z", "metrics": { "org_count": 1, "project_count": 1, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.210Z" + "generated_at": "2026-02-19T13:35:59.587Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/distributed-systems.json b/new-api-details/tech-stack/distributed-systems.json index 25461ffc..0f71a978 100644 --- a/new-api-details/tech-stack/distributed-systems.json +++ b/new-api-details/tech-stack/distributed-systems.json @@ -1,13 +1,13 @@ { "slug": "distributed-systems", "name": "distributed systems", - "published_at": "2026-01-24T21:33:12.297Z", + "published_at": "2026-02-19T13:35:59.700Z", "metrics": { "org_count": 4, "project_count": 53, "avg_projects_per_org": 13.3, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -116,11 +117,16 @@ "year": 2025, "org_count": 1, "project_count": 3 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.297Z" + "generated_at": "2026-02-19T13:35:59.700Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/django-postgresql.json b/new-api-details/tech-stack/django-postgresql.json index b5980418..6498e317 100644 --- a/new-api-details/tech-stack/django-postgresql.json +++ b/new-api-details/tech-stack/django-postgresql.json @@ -1,13 +1,13 @@ { "slug": "django-postgresql", "name": "Django+PostgreSQL", - "published_at": "2026-01-24T21:33:12.079Z", + "published_at": "2026-02-19T13:35:59.390Z", "metrics": { "org_count": 1, "project_count": 32, "avg_projects_per_org": 32, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -25,7 +25,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -80,11 +81,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.079Z" + "generated_at": "2026-02-19T13:35:59.390Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/django.json b/new-api-details/tech-stack/django.json index e0ca8065..e5299627 100644 --- a/new-api-details/tech-stack/django.json +++ b/new-api-details/tech-stack/django.json @@ -1,20 +1,20 @@ { "slug": "django", "name": "django", - "published_at": "2026-01-24T21:33:12.078Z", + "published_at": "2026-02-19T13:35:59.389Z", "metrics": { - "org_count": 24, + "org_count": 26, "project_count": 713, - "avg_projects_per_org": 29.7, + "avg_projects_per_org": 27.4, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { "slug": "fossasia", "name": "FOSSASIA", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/fossasia.webp", - "category": "Science and medicine", + "category": "End user applications", "total_projects": 140, "is_currently_active": true, "active_years": [ @@ -23,7 +23,8 @@ 2018, 2019, 2024, - 2025 + 2025, + 2026 ] }, { @@ -43,7 +44,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -63,7 +65,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -81,7 +84,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] }, { @@ -114,7 +118,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -132,7 +137,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -141,7 +147,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cloudcv.webp", "category": "Web", "total_projects": 28, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -170,7 +176,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -190,7 +197,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -205,7 +213,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -233,7 +242,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -245,7 +255,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -356,6 +367,28 @@ 2018 ] }, + { + "slug": "gnu-mailman", + "name": "GNU Mailman", + "logo_url": "https://summerofcode.withgoogle.com/media/org/gnu-mailman/cg5sxkouo8rjtjw2-360.png", + "category": "Social and communication", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + }, + { + "slug": "learning-unlimited", + "name": "Learning Unlimited", + "logo_url": "https://summerofcode.withgoogle.com/media/org/learning-unlimited/prqi7cnmji8guahm-360.png", + "category": "End user applications", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + }, { "slug": "peragro", "name": "Peragro", @@ -419,11 +452,16 @@ "year": 2025, "org_count": 12, "project_count": 88 + }, + { + "year": 2026, + "org_count": 13, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.078Z" + "generated_at": "2026-02-19T13:35:59.389Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/dlang.json b/new-api-details/tech-stack/dlang.json index 3bf84e29..4d598fcb 100644 --- a/new-api-details/tech-stack/dlang.json +++ b/new-api-details/tech-stack/dlang.json @@ -1,13 +1,13 @@ { "slug": "dlang", "name": "dlang", - "published_at": "2026-01-24T21:33:12.202Z", + "published_at": "2026-02-19T13:35:59.581Z", "metrics": { "org_count": 1, "project_count": 11, "avg_projects_per_org": 11, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -20,7 +20,8 @@ "active_years": [ 2016, 2019, - 2025 + 2025, + 2026 ] } ], @@ -75,11 +76,16 @@ "year": 2025, "org_count": 1, "project_count": 2 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.202Z" + "generated_at": "2026-02-19T13:35:59.581Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/dns.json b/new-api-details/tech-stack/dns.json index 535d0b32..f6d51934 100644 --- a/new-api-details/tech-stack/dns.json +++ b/new-api-details/tech-stack/dns.json @@ -1,7 +1,7 @@ { "slug": "dns", "name": "DNS", - "published_at": "2026-01-24T21:33:12.447Z", + "published_at": "2026-02-19T13:35:59.903Z", "metrics": { "org_count": 1, "project_count": 1, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.447Z" + "generated_at": "2026-02-19T13:35:59.903Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/docker.json b/new-api-details/tech-stack/docker.json index ab9110f0..9cc3c042 100644 --- a/new-api-details/tech-stack/docker.json +++ b/new-api-details/tech-stack/docker.json @@ -1,13 +1,13 @@ { "slug": "docker", "name": "docker", - "published_at": "2026-01-24T21:33:12.126Z", + "published_at": "2026-02-19T13:35:59.478Z", "metrics": { - "org_count": 27, + "org_count": 28, "project_count": 682, - "avg_projects_per_org": 25.3, + "avg_projects_per_org": 24.4, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -45,7 +46,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -65,7 +67,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -84,7 +87,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -104,7 +108,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -136,7 +141,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -145,13 +151,14 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cuneiform-digital-library-initiative-cdli.webp", "category": "Science and medicine", "total_projects": 30, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2018, 2019, 2020, 2021, - 2022 + 2022, + 2026 ] }, { @@ -170,7 +177,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -179,7 +187,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cloudcv.webp", "category": "Web", "total_projects": 28, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -198,12 +206,13 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/metacall.webp", "category": "Programming languages", "total_projects": 19, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -220,7 +229,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -229,11 +239,12 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/genome-assembly-and-annotation.webp", "category": "Science and medicine", "total_projects": 14, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2021, 2022, - 2023 + 2023, + 2026 ] }, { @@ -245,7 +256,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -268,11 +280,12 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/librecube-initiative.webp", "category": "Science and medicine", "total_projects": 7, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2021, 2022, - 2024 + 2024, + 2026 ] }, { @@ -281,7 +294,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/center-for-translational-data-science.webp", "category": "Science and medicine", "total_projects": 6, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2025 @@ -307,7 +320,8 @@ "total_projects": 4, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] }, { @@ -321,6 +335,17 @@ 2021 ] }, + { + "slug": "moja-global", + "name": "moja global", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/moja-global.webp", + "category": "Data", + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2022 + ] + }, { "slug": "openemr", "name": "OpenEMR", @@ -343,17 +368,6 @@ 2022 ] }, - { - "slug": "moja-global", - "name": "moja global", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/moja-global.webp", - "category": "Data", - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2022 - ] - }, { "slug": "bench-routes", "name": "Bench-Routes", @@ -389,6 +403,17 @@ 2024 ] }, + { + "slug": "konflux", + "name": "Konflux", + "logo_url": "https://summerofcode.withgoogle.com/media/org/konflux/7znpk8j83biro6rn.png", + "category": "Infrastructure and cloud", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + }, { "slug": "media-cloud", "name": "Media Cloud", @@ -452,11 +477,16 @@ "year": 2025, "org_count": 12, "project_count": 80 + }, + { + "year": 2026, + "org_count": 15, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.126Z" + "generated_at": "2026-02-19T13:35:59.478Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/documentation.json b/new-api-details/tech-stack/documentation.json index 104e73bc..bf0be996 100644 --- a/new-api-details/tech-stack/documentation.json +++ b/new-api-details/tech-stack/documentation.json @@ -1,7 +1,7 @@ { "slug": "documentation", "name": "documentation", - "published_at": "2026-01-24T21:33:12.456Z", + "published_at": "2026-02-19T13:35:59.916Z", "metrics": { "org_count": 1, "project_count": 3, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.456Z" + "generated_at": "2026-02-19T13:35:59.916Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/dotnet.json b/new-api-details/tech-stack/dotnet.json index f0aa82d5..fb13cab0 100644 --- a/new-api-details/tech-stack/dotnet.json +++ b/new-api-details/tech-stack/dotnet.json @@ -1,13 +1,13 @@ { "slug": "dotnet", "name": ".net", - "published_at": "2026-01-24T21:33:12.327Z", + "published_at": "2026-02-19T13:35:59.756Z", "metrics": { "org_count": 3, "project_count": 125, "avg_projects_per_org": 41.7, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -38,7 +39,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -104,11 +106,16 @@ "year": 2025, "org_count": 2, "project_count": 21 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.327Z" + "generated_at": "2026-02-19T13:35:59.756Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/dpdk.json b/new-api-details/tech-stack/dpdk.json index de08fe52..70bea2c1 100644 --- a/new-api-details/tech-stack/dpdk.json +++ b/new-api-details/tech-stack/dpdk.json @@ -1,7 +1,7 @@ { "slug": "dpdk", "name": "dpdk", - "published_at": "2026-01-24T21:33:12.479Z", + "published_at": "2026-02-19T13:35:59.938Z", "metrics": { "org_count": 1, "project_count": 1, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.479Z" + "generated_at": "2026-02-19T13:35:59.938Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/drm.json b/new-api-details/tech-stack/drm.json index e2a7feab..c358bb94 100644 --- a/new-api-details/tech-stack/drm.json +++ b/new-api-details/tech-stack/drm.json @@ -1,7 +1,7 @@ { "slug": "drm", "name": "DRM", - "published_at": "2026-01-24T21:33:12.540Z", + "published_at": "2026-02-19T13:36:00.108Z", "metrics": { "org_count": 1, "project_count": 19, @@ -79,11 +79,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.540Z" + "generated_at": "2026-02-19T13:36:00.108Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/drones.json b/new-api-details/tech-stack/drones.json index f04eca1d..c7dfd33c 100644 --- a/new-api-details/tech-stack/drones.json +++ b/new-api-details/tech-stack/drones.json @@ -1,13 +1,13 @@ { "slug": "drones", "name": "drones", - "published_at": "2026-01-24T21:33:12.105Z", + "published_at": "2026-02-19T13:35:59.454Z", "metrics": { "org_count": 1, "project_count": 38, "avg_projects_per_org": 38, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.105Z" + "generated_at": "2026-02-19T13:35:59.454Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/drupal-8.json b/new-api-details/tech-stack/drupal-8.json index 3d5fe0de..59035e0f 100644 --- a/new-api-details/tech-stack/drupal-8.json +++ b/new-api-details/tech-stack/drupal-8.json @@ -1,13 +1,13 @@ { "slug": "drupal-8", "name": "drupal 8", - "published_at": "2026-01-24T21:33:12.219Z", + "published_at": "2026-02-19T13:35:59.604Z", "metrics": { "org_count": 1, "project_count": 39, "avg_projects_per_org": 39, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 7 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.219Z" + "generated_at": "2026-02-19T13:35:59.604Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/drupal.json b/new-api-details/tech-stack/drupal.json index 434625f1..f39ed3fa 100644 --- a/new-api-details/tech-stack/drupal.json +++ b/new-api-details/tech-stack/drupal.json @@ -1,7 +1,7 @@ { "slug": "drupal", "name": "drupal", - "published_at": "2026-01-24T21:33:12.342Z", + "published_at": "2026-02-19T13:35:59.768Z", "metrics": { "org_count": 1, "project_count": 12, @@ -78,11 +78,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.342Z" + "generated_at": "2026-02-19T13:35:59.768Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/dsp.json b/new-api-details/tech-stack/dsp.json index 2101ea2f..e0b8b654 100644 --- a/new-api-details/tech-stack/dsp.json +++ b/new-api-details/tech-stack/dsp.json @@ -1,13 +1,13 @@ { "slug": "dsp", "name": "dsp", - "published_at": "2026-01-24T21:33:12.122Z", + "published_at": "2026-02-19T13:35:59.472Z", "metrics": { "org_count": 2, "project_count": 62, "avg_projects_per_org": 31, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/beagleboardorg.webp", "category": "Science and medicine", "total_projects": 44, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -47,7 +47,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -102,11 +103,16 @@ "year": 2025, "org_count": 2, "project_count": 9 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.122Z" + "generated_at": "2026-02-19T13:35:59.472Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/dtrace.json b/new-api-details/tech-stack/dtrace.json index 8cce4944..cda359ba 100644 --- a/new-api-details/tech-stack/dtrace.json +++ b/new-api-details/tech-stack/dtrace.json @@ -1,7 +1,7 @@ { "slug": "dtrace", "name": "dtrace", - "published_at": "2026-01-24T21:33:12.554Z", + "published_at": "2026-02-19T13:35:59.714Z", "metrics": { "org_count": 1, "project_count": 0, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.554Z" + "generated_at": "2026-02-19T13:35:59.715Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/ebpf.json b/new-api-details/tech-stack/ebpf.json index e7c69e43..e7d57413 100644 --- a/new-api-details/tech-stack/ebpf.json +++ b/new-api-details/tech-stack/ebpf.json @@ -1,13 +1,13 @@ { "slug": "ebpf", "name": "ebpf", - "published_at": "2026-01-24T21:33:12.184Z", + "published_at": "2026-02-19T13:35:59.540Z", "metrics": { "org_count": 3, "project_count": 14, "avg_projects_per_org": 4.7, "first_year_used": 2021, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -19,7 +19,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -96,11 +97,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.184Z" + "generated_at": "2026-02-19T13:35:59.540Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/eclipse.json b/new-api-details/tech-stack/eclipse.json index 3aaaf2d6..67a92ece 100644 --- a/new-api-details/tech-stack/eclipse.json +++ b/new-api-details/tech-stack/eclipse.json @@ -1,7 +1,7 @@ { "slug": "eclipse", "name": "eclipse", - "published_at": "2026-01-24T21:33:12.498Z", + "published_at": "2026-02-19T13:36:00.041Z", "metrics": { "org_count": 1, "project_count": 1, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.498Z" + "generated_at": "2026-02-19T13:36:00.041Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/eclipsejavaide.json b/new-api-details/tech-stack/eclipsejavaide.json index 83c8fcb9..d5282493 100644 --- a/new-api-details/tech-stack/eclipsejavaide.json +++ b/new-api-details/tech-stack/eclipsejavaide.json @@ -1,13 +1,13 @@ { "slug": "eclipsejavaide", "name": "eclipsejavaide", - "published_at": "2026-01-24T21:33:12.228Z", + "published_at": "2026-02-19T13:35:59.616Z", "metrics": { "org_count": 1, "project_count": 68, "avg_projects_per_org": 68, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 7 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.228Z" + "generated_at": "2026-02-19T13:35:59.616Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/eiffel.json b/new-api-details/tech-stack/eiffel.json index 497e1d90..1fd85457 100644 --- a/new-api-details/tech-stack/eiffel.json +++ b/new-api-details/tech-stack/eiffel.json @@ -1,13 +1,13 @@ { "slug": "eiffel", "name": "eiffel", - "published_at": "2026-01-24T21:33:12.269Z", + "published_at": "2026-02-19T13:35:59.682Z", "metrics": { "org_count": 1, "project_count": 59, "avg_projects_per_org": 59, "first_year_used": 2016, - "latest_year_used": 2024 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnu-project.webp", "category": "Operating systems", "total_projects": 59, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -24,7 +24,8 @@ 2019, 2020, 2023, - 2024 + 2024, + 2026 ] } ], @@ -79,11 +80,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.269Z" + "generated_at": "2026-02-19T13:35:59.682Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/elasicsearch.json b/new-api-details/tech-stack/elasicsearch.json index 32e24db3..c3f033a8 100644 --- a/new-api-details/tech-stack/elasicsearch.json +++ b/new-api-details/tech-stack/elasicsearch.json @@ -1,7 +1,7 @@ { "slug": "elasicsearch", "name": "elasicsearch", - "published_at": "2026-01-24T21:33:12.152Z", + "published_at": "2026-02-19T13:35:59.525Z", "metrics": { "org_count": 1, "project_count": 29, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/chaoss.webp", "category": "Data", "total_projects": 29, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2018, 2019, @@ -78,11 +78,16 @@ "year": 2025, "org_count": 1, "project_count": 3 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.152Z" + "generated_at": "2026-02-19T13:35:59.525Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/elasticsearch.json b/new-api-details/tech-stack/elasticsearch.json index 1934ef4b..2c626fa6 100644 --- a/new-api-details/tech-stack/elasticsearch.json +++ b/new-api-details/tech-stack/elasticsearch.json @@ -1,13 +1,13 @@ { "slug": "elasticsearch", "name": "elasticsearch", - "published_at": "2026-01-24T21:33:12.128Z", + "published_at": "2026-02-19T13:35:59.482Z", "metrics": { "org_count": 9, "project_count": 155, "avg_projects_per_org": 17.2, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -25,7 +25,8 @@ 2020, 2021, 2024, - 2025 + 2025, + 2026 ] }, { @@ -34,7 +35,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/chaoss.webp", "category": "Data", "total_projects": 29, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2018, 2019, @@ -59,7 +60,8 @@ 2021, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -194,11 +196,16 @@ "year": 2025, "org_count": 3, "project_count": 13 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.128Z" + "generated_at": "2026-02-19T13:35:59.482Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/electromobility.json b/new-api-details/tech-stack/electromobility.json index 5d24e4d8..432ca6f1 100644 --- a/new-api-details/tech-stack/electromobility.json +++ b/new-api-details/tech-stack/electromobility.json @@ -1,7 +1,7 @@ { "slug": "electromobility", "name": "electromobility", - "published_at": "2026-01-24T21:33:12.292Z", + "published_at": "2026-02-19T13:35:59.699Z", "metrics": { "org_count": 1, "project_count": 8, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.292Z" + "generated_at": "2026-02-19T13:35:59.699Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/electron.json b/new-api-details/tech-stack/electron.json index e02123e5..7ece1ce7 100644 --- a/new-api-details/tech-stack/electron.json +++ b/new-api-details/tech-stack/electron.json @@ -1,13 +1,13 @@ { "slug": "electron", "name": "electron", - "published_at": "2026-01-24T21:33:12.335Z", + "published_at": "2026-02-19T13:35:59.753Z", "metrics": { "org_count": 2, "project_count": 152, "avg_projects_per_org": 76, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -36,12 +37,13 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/joplin.webp", "category": "End user applications", "total_projects": 17, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2020, 2021, 2022, - 2024 + 2024, + 2026 ] } ], @@ -96,11 +98,16 @@ "year": 2025, "org_count": 1, "project_count": 14 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.335Z" + "generated_at": "2026-02-19T13:35:59.753Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/elixir.json b/new-api-details/tech-stack/elixir.json index 769580d8..b4ea7307 100644 --- a/new-api-details/tech-stack/elixir.json +++ b/new-api-details/tech-stack/elixir.json @@ -1,7 +1,7 @@ { "slug": "elixir", "name": "elixir", - "published_at": "2026-01-24T21:33:12.124Z", + "published_at": "2026-02-19T13:35:59.474Z", "metrics": { "org_count": 3, "project_count": 32, @@ -99,11 +99,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.124Z" + "generated_at": "2026-02-19T13:35:59.474Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/elk.json b/new-api-details/tech-stack/elk.json index 3f59a5dc..1d2677bd 100644 --- a/new-api-details/tech-stack/elk.json +++ b/new-api-details/tech-stack/elk.json @@ -1,7 +1,7 @@ { "slug": "elk", "name": "elk", - "published_at": "2026-01-24T21:33:12.129Z", + "published_at": "2026-02-19T13:35:59.483Z", "metrics": { "org_count": 2, "project_count": 49, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/chaoss.webp", "category": "Data", "total_projects": 29, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2018, 2019, @@ -92,11 +92,16 @@ "year": 2025, "org_count": 1, "project_count": 3 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.129Z" + "generated_at": "2026-02-19T13:35:59.483Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/elm.json b/new-api-details/tech-stack/elm.json index 47442820..905c0158 100644 --- a/new-api-details/tech-stack/elm.json +++ b/new-api-details/tech-stack/elm.json @@ -1,7 +1,7 @@ { "slug": "elm", "name": "elm", - "published_at": "2026-01-24T21:33:12.236Z", + "published_at": "2026-02-19T13:35:59.623Z", "metrics": { "org_count": 2, "project_count": 3, @@ -84,11 +84,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.236Z" + "generated_at": "2026-02-19T13:35:59.623Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/email.json b/new-api-details/tech-stack/email.json index 60d9bc5e..fad53c88 100644 --- a/new-api-details/tech-stack/email.json +++ b/new-api-details/tech-stack/email.json @@ -1,7 +1,7 @@ { "slug": "email", "name": "email", - "published_at": "2026-01-24T21:33:12.266Z", + "published_at": "2026-02-19T13:35:59.675Z", "metrics": { "org_count": 1, "project_count": 4, @@ -75,11 +75,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.266Z" + "generated_at": "2026-02-19T13:35:59.675Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/embedded-systems.json b/new-api-details/tech-stack/embedded-systems.json index 7d6d61e1..5fc3980c 100644 --- a/new-api-details/tech-stack/embedded-systems.json +++ b/new-api-details/tech-stack/embedded-systems.json @@ -1,13 +1,13 @@ { "slug": "embedded-systems", "name": "embedded systems", - "published_at": "2026-01-24T21:33:12.357Z", + "published_at": "2026-02-19T13:35:59.789Z", "metrics": { "org_count": 2, "project_count": 53, "avg_projects_per_org": 26.5, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -95,11 +96,16 @@ "year": 2025, "org_count": 1, "project_count": 8 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.357Z" + "generated_at": "2026-02-19T13:35:59.789Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/embedded.json b/new-api-details/tech-stack/embedded.json index 981ccf7c..cd6f9a1c 100644 --- a/new-api-details/tech-stack/embedded.json +++ b/new-api-details/tech-stack/embedded.json @@ -1,13 +1,13 @@ { "slug": "embedded", "name": "embedded", - "published_at": "2026-01-24T21:33:12.103Z", + "published_at": "2026-02-19T13:35:59.441Z", "metrics": { "org_count": 4, "project_count": 66, "avg_projects_per_org": 16.5, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -123,11 +124,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.103Z" + "generated_at": "2026-02-19T13:35:59.441Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/ember.json b/new-api-details/tech-stack/ember.json index 884809c8..58394206 100644 --- a/new-api-details/tech-stack/ember.json +++ b/new-api-details/tech-stack/ember.json @@ -1,7 +1,7 @@ { "slug": "ember", "name": "ember", - "published_at": "2026-01-24T21:33:12.218Z", + "published_at": "2026-02-19T13:35:59.602Z", "metrics": { "org_count": 1, "project_count": 6, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.218Z" + "generated_at": "2026-02-19T13:35:59.602Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/emberjs.json b/new-api-details/tech-stack/emberjs.json index ed650cba..f2e8495b 100644 --- a/new-api-details/tech-stack/emberjs.json +++ b/new-api-details/tech-stack/emberjs.json @@ -1,7 +1,7 @@ { "slug": "emberjs", "name": "emberjs", - "published_at": "2026-01-24T21:33:12.421Z", + "published_at": "2026-02-19T13:35:59.564Z", "metrics": { "org_count": 2, "project_count": 39, @@ -87,11 +87,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.421Z" + "generated_at": "2026-02-19T13:35:59.564Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/emscripten.json b/new-api-details/tech-stack/emscripten.json index 9a844eb6..44fadf43 100644 --- a/new-api-details/tech-stack/emscripten.json +++ b/new-api-details/tech-stack/emscripten.json @@ -1,7 +1,7 @@ { "slug": "emscripten", "name": "Emscripten", - "published_at": "2026-01-24T21:33:12.451Z", + "published_at": "2026-02-19T13:35:59.908Z", "metrics": { "org_count": 1, "project_count": 15, @@ -79,11 +79,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.451Z" + "generated_at": "2026-02-19T13:35:59.908Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/encode.json b/new-api-details/tech-stack/encode.json index 108f664d..6dde6ed1 100644 --- a/new-api-details/tech-stack/encode.json +++ b/new-api-details/tech-stack/encode.json @@ -1,7 +1,7 @@ { "slug": "encode", "name": "encode", - "published_at": "2026-01-24T21:33:12.311Z", + "published_at": "2026-02-19T13:35:59.722Z", "metrics": { "org_count": 1, "project_count": 12, @@ -78,11 +78,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.311Z" + "generated_at": "2026-02-19T13:35:59.722Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/envoy.json b/new-api-details/tech-stack/envoy.json index 6ababd5d..d02b7d7a 100644 --- a/new-api-details/tech-stack/envoy.json +++ b/new-api-details/tech-stack/envoy.json @@ -1,13 +1,13 @@ { "slug": "envoy", "name": "envoy", - "published_at": "2026-01-24T21:33:12.164Z", + "published_at": "2026-02-19T13:35:59.561Z", "metrics": { "org_count": 1, "project_count": 113, "avg_projects_per_org": 113, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 11 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.164Z" + "generated_at": "2026-02-19T13:35:59.561Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/epbf.json b/new-api-details/tech-stack/epbf.json index e4a1ad31..723c563d 100644 --- a/new-api-details/tech-stack/epbf.json +++ b/new-api-details/tech-stack/epbf.json @@ -1,7 +1,7 @@ { "slug": "epbf", "name": "epbf", - "published_at": "2026-01-24T21:33:12.341Z", + "published_at": "2026-02-19T13:35:59.766Z", "metrics": { "org_count": 1, "project_count": 11, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/keploy.webp", "category": "Programming languages", "total_projects": 11, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2023, 2024, @@ -75,11 +75,16 @@ "year": 2025, "org_count": 1, "project_count": 6 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.341Z" + "generated_at": "2026-02-19T13:35:59.766Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/erlang.json b/new-api-details/tech-stack/erlang.json index 52c7e4b0..d8c87de8 100644 --- a/new-api-details/tech-stack/erlang.json +++ b/new-api-details/tech-stack/erlang.json @@ -1,7 +1,7 @@ { "slug": "erlang", "name": "erlang", - "published_at": "2026-01-24T21:33:12.124Z", + "published_at": "2026-02-19T13:35:59.474Z", "metrics": { "org_count": 4, "project_count": 281, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-apache-software-foundation.webp", "category": "Web", "total_projects": 248, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -122,11 +122,16 @@ "year": 2025, "org_count": 1, "project_count": 27 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.124Z" + "generated_at": "2026-02-19T13:35:59.474Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/esp32.json b/new-api-details/tech-stack/esp32.json index 599cb527..7d31a90a 100644 --- a/new-api-details/tech-stack/esp32.json +++ b/new-api-details/tech-stack/esp32.json @@ -1,7 +1,7 @@ { "slug": "esp32", "name": "esp32", - "published_at": "2026-01-24T21:33:12.483Z", + "published_at": "2026-02-19T13:35:59.942Z", "metrics": { "org_count": 1, "project_count": 12, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/society-for-arts-and-technology-sat.webp", "category": "Media", "total_projects": 12, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2023, @@ -75,11 +75,16 @@ "year": 2025, "org_count": 1, "project_count": 4 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.483Z" + "generated_at": "2026-02-19T13:35:59.942Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/espresso.json b/new-api-details/tech-stack/espresso.json index 3a0d2fef..6e4ba21a 100644 --- a/new-api-details/tech-stack/espresso.json +++ b/new-api-details/tech-stack/espresso.json @@ -1,13 +1,13 @@ { "slug": "espresso", "name": "espresso", - "published_at": "2026-01-24T21:33:12.319Z", + "published_at": "2026-02-19T13:35:59.734Z", "metrics": { "org_count": 1, "project_count": 84, "avg_projects_per_org": 84, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -82,11 +83,16 @@ "year": 2025, "org_count": 1, "project_count": 7 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.319Z" + "generated_at": "2026-02-19T13:35:59.734Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/euslisp.json b/new-api-details/tech-stack/euslisp.json index 7a62dd67..6ce7d2d5 100644 --- a/new-api-details/tech-stack/euslisp.json +++ b/new-api-details/tech-stack/euslisp.json @@ -1,7 +1,7 @@ { "slug": "euslisp", "name": "euslisp", - "published_at": "2026-01-24T21:33:12.325Z", + "published_at": "2026-02-19T13:35:59.754Z", "metrics": { "org_count": 1, "project_count": 4, @@ -76,11 +76,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.325Z" + "generated_at": "2026-02-19T13:35:59.754Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/event-loop.json b/new-api-details/tech-stack/event-loop.json index 976bfb30..4ba0d61c 100644 --- a/new-api-details/tech-stack/event-loop.json +++ b/new-api-details/tech-stack/event-loop.json @@ -1,7 +1,7 @@ { "slug": "event-loop", "name": "event-loop", - "published_at": "2026-01-24T21:33:12.233Z", + "published_at": "2026-02-19T13:35:59.620Z", "metrics": { "org_count": 1, "project_count": 6, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.233Z" + "generated_at": "2026-02-19T13:35:59.620Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/f.json b/new-api-details/tech-stack/f.json index 8c45cd90..7f919f96 100644 --- a/new-api-details/tech-stack/f.json +++ b/new-api-details/tech-stack/f.json @@ -1,7 +1,7 @@ { "slug": "f", "name": "f#", - "published_at": "2026-01-24T21:33:12.389Z", + "published_at": "2026-02-19T13:35:59.834Z", "metrics": { "org_count": 1, "project_count": 9, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.389Z" + "generated_at": "2026-02-19T13:35:59.834Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/fasm.json b/new-api-details/tech-stack/fasm.json index b8060a71..84496ddc 100644 --- a/new-api-details/tech-stack/fasm.json +++ b/new-api-details/tech-stack/fasm.json @@ -1,13 +1,13 @@ { "slug": "fasm", "name": "fasm", - "published_at": "2026-01-24T21:33:12.343Z", + "published_at": "2026-02-19T13:35:59.769Z", "metrics": { "org_count": 1, "project_count": 6, "avg_projects_per_org": 6, "first_year_used": 2016, - "latest_year_used": 2024 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,10 +16,11 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kolibrios-project-team.webp", "category": "Operating systems", "total_projects": 6, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, - 2024 + 2024, + 2026 ] } ], @@ -74,11 +75,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.343Z" + "generated_at": "2026-02-19T13:35:59.769Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/fast-fluid-dynamics.json b/new-api-details/tech-stack/fast-fluid-dynamics.json index 4a50eee3..2c0b3251 100644 --- a/new-api-details/tech-stack/fast-fluid-dynamics.json +++ b/new-api-details/tech-stack/fast-fluid-dynamics.json @@ -1,7 +1,7 @@ { "slug": "fast-fluid-dynamics", "name": "fast fluid dynamics", - "published_at": "2026-01-24T21:33:12.533Z", + "published_at": "2026-02-19T13:36:00.072Z", "metrics": { "org_count": 1, "project_count": 6, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.533Z" + "generated_at": "2026-02-19T13:36:00.072Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/fault-tolerant.json b/new-api-details/tech-stack/fault-tolerant.json index af3bc15f..a086f512 100644 --- a/new-api-details/tech-stack/fault-tolerant.json +++ b/new-api-details/tech-stack/fault-tolerant.json @@ -1,7 +1,7 @@ { "slug": "fault-tolerant", "name": "Fault tolerant", - "published_at": "2026-01-24T21:33:12.211Z", + "published_at": "2026-02-19T13:35:59.588Z", "metrics": { "org_count": 1, "project_count": 1, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.211Z" + "generated_at": "2026-02-19T13:35:59.588Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/federated-learning.json b/new-api-details/tech-stack/federated-learning.json index 5f1ffdb9..d30fe36c 100644 --- a/new-api-details/tech-stack/federated-learning.json +++ b/new-api-details/tech-stack/federated-learning.json @@ -1,7 +1,7 @@ { "slug": "federated-learning", "name": "federated learning", - "published_at": "2026-01-24T21:33:12.416Z", + "published_at": "2026-02-19T13:35:59.857Z", "metrics": { "org_count": 1, "project_count": 9, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.416Z" + "generated_at": "2026-02-19T13:35:59.857Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/ffmpeg.json b/new-api-details/tech-stack/ffmpeg.json index 5251666e..3d76b4d7 100644 --- a/new-api-details/tech-stack/ffmpeg.json +++ b/new-api-details/tech-stack/ffmpeg.json @@ -1,13 +1,13 @@ { "slug": "ffmpeg", "name": "ffmpeg", - "published_at": "2026-01-24T21:33:12.141Z", + "published_at": "2026-02-19T13:35:59.505Z", "metrics": { "org_count": 5, "project_count": 131, "avg_projects_per_org": 26.2, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -36,7 +37,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/haiku.webp", "category": "Operating systems", "total_projects": 26, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, @@ -45,7 +46,8 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -143,11 +145,16 @@ "year": 2025, "org_count": 1, "project_count": 10 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.141Z" + "generated_at": "2026-02-19T13:35:59.505Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/fhir.json b/new-api-details/tech-stack/fhir.json index 93b1a08e..75009812 100644 --- a/new-api-details/tech-stack/fhir.json +++ b/new-api-details/tech-stack/fhir.json @@ -1,13 +1,13 @@ { "slug": "fhir", "name": "fhir", - "published_at": "2026-01-24T21:33:12.291Z", + "published_at": "2026-02-19T13:35:59.690Z", "metrics": { "org_count": 2, "project_count": 99, "avg_projects_per_org": 49.5, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -93,11 +94,16 @@ "year": 2025, "org_count": 1, "project_count": 8 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.291Z" + "generated_at": "2026-02-19T13:35:59.691Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/filesystems.json b/new-api-details/tech-stack/filesystems.json index 4e35e8e5..c2ceffa6 100644 --- a/new-api-details/tech-stack/filesystems.json +++ b/new-api-details/tech-stack/filesystems.json @@ -1,13 +1,13 @@ { "slug": "filesystems", "name": "filesystems", - "published_at": "2026-01-24T21:33:12.411Z", + "published_at": "2026-02-19T13:35:59.854Z", "metrics": { "org_count": 2, "project_count": 42, "avg_projects_per_org": 21, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -39,7 +40,8 @@ "is_currently_active": true, "active_years": [ 2022, - 2025 + 2025, + 2026 ] } ], @@ -94,11 +96,16 @@ "year": 2025, "org_count": 2, "project_count": 5 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.411Z" + "generated_at": "2026-02-19T13:35:59.854Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/finite-state-technologies.json b/new-api-details/tech-stack/finite-state-technologies.json index 6320d447..46949484 100644 --- a/new-api-details/tech-stack/finite-state-technologies.json +++ b/new-api-details/tech-stack/finite-state-technologies.json @@ -1,7 +1,7 @@ { "slug": "finite-state-technologies", "name": "finite-state technologies", - "published_at": "2026-01-24T21:33:12.099Z", + "published_at": "2026-02-19T13:35:59.433Z", "metrics": { "org_count": 1, "project_count": 67, @@ -80,11 +80,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.099Z" + "generated_at": "2026-02-19T13:35:59.433Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/firebase.json b/new-api-details/tech-stack/firebase.json index 1fe415ee..007815d8 100644 --- a/new-api-details/tech-stack/firebase.json +++ b/new-api-details/tech-stack/firebase.json @@ -1,13 +1,13 @@ { "slug": "firebase", "name": "Firebase", - "published_at": "2026-01-24T21:33:12.531Z", + "published_at": "2026-02-19T13:36:00.069Z", "metrics": { "org_count": 1, "project_count": 8, "avg_projects_per_org": 8, "first_year_used": 2024, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -19,7 +19,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -74,11 +75,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.531Z" + "generated_at": "2026-02-19T13:36:00.069Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/firewall.json b/new-api-details/tech-stack/firewall.json index f78c1b75..3800382d 100644 --- a/new-api-details/tech-stack/firewall.json +++ b/new-api-details/tech-stack/firewall.json @@ -1,7 +1,7 @@ { "slug": "firewall", "name": "firewall", - "published_at": "2026-01-24T21:33:12.394Z", + "published_at": "2026-02-19T13:35:59.837Z", "metrics": { "org_count": 1, "project_count": 11, @@ -76,11 +76,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.394Z" + "generated_at": "2026-02-19T13:35:59.837Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/firmware.json b/new-api-details/tech-stack/firmware.json index b8ac145d..2b79da5a 100644 --- a/new-api-details/tech-stack/firmware.json +++ b/new-api-details/tech-stack/firmware.json @@ -1,7 +1,7 @@ { "slug": "firmware", "name": "firmware", - "published_at": "2026-01-24T21:33:12.439Z", + "published_at": "2026-02-19T13:35:59.892Z", "metrics": { "org_count": 1, "project_count": 2, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.439Z" + "generated_at": "2026-02-19T13:35:59.892Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/flask.json b/new-api-details/tech-stack/flask.json index a1b588ba..f74192e2 100644 --- a/new-api-details/tech-stack/flask.json +++ b/new-api-details/tech-stack/flask.json @@ -1,7 +1,7 @@ { "slug": "flask", "name": "flask", - "published_at": "2026-01-24T21:33:12.140Z", + "published_at": "2026-02-19T13:35:59.504Z", "metrics": { "org_count": 6, "project_count": 60, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/fedora-project.webp", "category": "Operating systems", "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -140,11 +140,16 @@ "year": 2025, "org_count": 1, "project_count": 2 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.140Z" + "generated_at": "2026-02-19T13:35:59.504Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/flat-assembler.json b/new-api-details/tech-stack/flat-assembler.json index 1f460e9f..8e3a63bb 100644 --- a/new-api-details/tech-stack/flat-assembler.json +++ b/new-api-details/tech-stack/flat-assembler.json @@ -1,13 +1,13 @@ { "slug": "flat-assembler", "name": "flat assembler", - "published_at": "2026-01-24T21:33:12.343Z", + "published_at": "2026-02-19T13:35:59.769Z", "metrics": { "org_count": 1, "project_count": 6, "avg_projects_per_org": 6, "first_year_used": 2016, - "latest_year_used": 2024 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,10 +16,11 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kolibrios-project-team.webp", "category": "Operating systems", "total_projects": 6, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, - 2024 + 2024, + 2026 ] } ], @@ -74,11 +75,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.343Z" + "generated_at": "2026-02-19T13:35:59.769Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/flatpak.json b/new-api-details/tech-stack/flatpak.json index 4359dea0..e5568c52 100644 --- a/new-api-details/tech-stack/flatpak.json +++ b/new-api-details/tech-stack/flatpak.json @@ -1,13 +1,13 @@ { "slug": "flatpak", "name": "Flatpak", - "published_at": "2026-01-24T21:33:12.264Z", + "published_at": "2026-02-19T13:35:59.673Z", "metrics": { "org_count": 1, "project_count": 115, "avg_projects_per_org": 115, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -82,11 +83,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.264Z" + "generated_at": "2026-02-19T13:35:59.673Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/fluentd.json b/new-api-details/tech-stack/fluentd.json index a91de5d0..a812ce35 100644 --- a/new-api-details/tech-stack/fluentd.json +++ b/new-api-details/tech-stack/fluentd.json @@ -1,13 +1,13 @@ { "slug": "fluentd", "name": "fluentd", - "published_at": "2026-01-24T21:33:12.162Z", + "published_at": "2026-02-19T13:35:59.557Z", "metrics": { "org_count": 1, "project_count": 113, "avg_projects_per_org": 113, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 11 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.162Z" + "generated_at": "2026-02-19T13:35:59.557Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/flutter.json b/new-api-details/tech-stack/flutter.json index 97714d2a..eb7cd19c 100644 --- a/new-api-details/tech-stack/flutter.json +++ b/new-api-details/tech-stack/flutter.json @@ -1,13 +1,13 @@ { "slug": "flutter", "name": "flutter", - "published_at": "2026-01-24T21:33:12.068Z", + "published_at": "2026-02-19T13:35:59.425Z", "metrics": { "org_count": 9, "project_count": 562, "avg_projects_per_org": 62.4, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -46,7 +47,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -66,7 +68,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -86,7 +89,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -105,7 +109,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -114,7 +119,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-palisadoes-foundation.webp", "category": "Social and communication", "total_projects": 36, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2021, 2022, @@ -136,7 +141,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -149,7 +155,8 @@ "active_years": [ 2018, 2022, - 2025 + 2025, + 2026 ] }, { @@ -161,7 +168,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -216,11 +224,16 @@ "year": 2025, "org_count": 9, "project_count": 81 + }, + { + "year": 2026, + "org_count": 8, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.068Z" + "generated_at": "2026-02-19T13:35:59.425Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/fonts.json b/new-api-details/tech-stack/fonts.json index c3e28fdb..d772b831 100644 --- a/new-api-details/tech-stack/fonts.json +++ b/new-api-details/tech-stack/fonts.json @@ -1,7 +1,7 @@ { "slug": "fonts", "name": "fonts", - "published_at": "2026-01-24T21:33:12.256Z", + "published_at": "2026-02-19T13:35:59.647Z", "metrics": { "org_count": 1, "project_count": 17, @@ -80,11 +80,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.256Z" + "generated_at": "2026-02-19T13:35:59.647Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/formal-methods.json b/new-api-details/tech-stack/formal-methods.json index 869242f7..de7c4966 100644 --- a/new-api-details/tech-stack/formal-methods.json +++ b/new-api-details/tech-stack/formal-methods.json @@ -1,7 +1,7 @@ { "slug": "formal-methods", "name": "formal methods", - "published_at": "2026-01-24T21:33:12.183Z", + "published_at": "2026-02-19T13:35:59.535Z", "metrics": { "org_count": 1, "project_count": 17, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/checker-framework.webp", "category": "Security", "total_projects": 17, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2017, 2018, @@ -77,11 +77,16 @@ "year": 2025, "org_count": 1, "project_count": 2 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.183Z" + "generated_at": "2026-02-19T13:35:59.535Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/fortran.json b/new-api-details/tech-stack/fortran.json index 669591a2..cf4591bb 100644 --- a/new-api-details/tech-stack/fortran.json +++ b/new-api-details/tech-stack/fortran.json @@ -1,13 +1,13 @@ { "slug": "fortran", "name": "fortran", - "published_at": "2026-01-24T21:33:12.252Z", + "published_at": "2026-02-19T13:35:59.637Z", "metrics": { "org_count": 3, "project_count": 247, "avg_projects_per_org": 82.3, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -42,7 +43,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -110,11 +112,16 @@ "year": 2025, "org_count": 2, "project_count": 29 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.252Z" + "generated_at": "2026-02-19T13:35:59.637Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/fossology.json b/new-api-details/tech-stack/fossology.json index e1aebacf..9e086760 100644 --- a/new-api-details/tech-stack/fossology.json +++ b/new-api-details/tech-stack/fossology.json @@ -1,7 +1,7 @@ { "slug": "fossology", "name": "fossology", - "published_at": "2026-01-24T21:33:12.155Z", + "published_at": "2026-02-19T13:35:59.530Z", "metrics": { "org_count": 1, "project_count": 29, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/chaoss.webp", "category": "Data", "total_projects": 29, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2018, 2019, @@ -78,11 +78,16 @@ "year": 2025, "org_count": 1, "project_count": 3 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.155Z" + "generated_at": "2026-02-19T13:35:59.530Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/fpga.json b/new-api-details/tech-stack/fpga.json index 9d802c32..9161de20 100644 --- a/new-api-details/tech-stack/fpga.json +++ b/new-api-details/tech-stack/fpga.json @@ -1,13 +1,13 @@ { "slug": "fpga", "name": "fpga", - "published_at": "2026-01-24T21:33:12.102Z", + "published_at": "2026-02-19T13:35:59.440Z", "metrics": { "org_count": 7, "project_count": 155, "avg_projects_per_org": 22.1, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -36,7 +37,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/beagleboardorg.webp", "category": "Science and medicine", "total_projects": 44, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -171,11 +172,16 @@ "year": 2025, "org_count": 2, "project_count": 11 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.102Z" + "generated_at": "2026-02-19T13:35:59.440Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/framework.json b/new-api-details/tech-stack/framework.json index 999b0d8d..0a9a8424 100644 --- a/new-api-details/tech-stack/framework.json +++ b/new-api-details/tech-stack/framework.json @@ -1,7 +1,7 @@ { "slug": "framework", "name": "framework", - "published_at": "2026-01-24T21:33:12.479Z", + "published_at": "2026-02-19T13:35:59.938Z", "metrics": { "org_count": 1, "project_count": 1, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.479Z" + "generated_at": "2026-02-19T13:35:59.938Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/free-netbsd.json b/new-api-details/tech-stack/free-netbsd.json index 41c9efc3..2c84b1b4 100644 --- a/new-api-details/tech-stack/free-netbsd.json +++ b/new-api-details/tech-stack/free-netbsd.json @@ -1,7 +1,7 @@ { "slug": "free-netbsd", "name": "free/netbsd", - "published_at": "2026-01-24T21:33:12.545Z", + "published_at": "2026-02-19T13:36:00.102Z", "metrics": { "org_count": 1, "project_count": 2, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.545Z" + "generated_at": "2026-02-19T13:36:00.102Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/frontend.json b/new-api-details/tech-stack/frontend.json index 4f91c65f..a595e086 100644 --- a/new-api-details/tech-stack/frontend.json +++ b/new-api-details/tech-stack/frontend.json @@ -1,7 +1,7 @@ { "slug": "frontend", "name": "frontend", - "published_at": "2026-01-24T21:33:12.370Z", + "published_at": "2026-02-19T13:35:59.804Z", "metrics": { "org_count": 1, "project_count": 7, @@ -76,11 +76,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.370Z" + "generated_at": "2026-02-19T13:35:59.804Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/fsts.json b/new-api-details/tech-stack/fsts.json index cc42ed82..5881e085 100644 --- a/new-api-details/tech-stack/fsts.json +++ b/new-api-details/tech-stack/fsts.json @@ -1,7 +1,7 @@ { "slug": "fsts", "name": "fsts", - "published_at": "2026-01-24T21:33:12.100Z", + "published_at": "2026-02-19T13:35:59.439Z", "metrics": { "org_count": 1, "project_count": 67, @@ -80,11 +80,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.100Z" + "generated_at": "2026-02-19T13:35:59.439Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/functional-programming.json b/new-api-details/tech-stack/functional-programming.json index b196ef6f..59fe7d6e 100644 --- a/new-api-details/tech-stack/functional-programming.json +++ b/new-api-details/tech-stack/functional-programming.json @@ -1,7 +1,7 @@ { "slug": "functional-programming", "name": "functional programming", - "published_at": "2026-01-24T21:33:12.192Z", + "published_at": "2026-02-19T13:35:59.551Z", "metrics": { "org_count": 3, "project_count": 58, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/scala-center.webp", "category": "Programming languages", "total_projects": 56, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -102,11 +102,16 @@ "year": 2025, "org_count": 1, "project_count": 14 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.192Z" + "generated_at": "2026-02-19T13:35:59.551Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/fuzz-testing.json b/new-api-details/tech-stack/fuzz-testing.json index 1498f7f9..a37781eb 100644 --- a/new-api-details/tech-stack/fuzz-testing.json +++ b/new-api-details/tech-stack/fuzz-testing.json @@ -1,13 +1,13 @@ { "slug": "fuzz-testing", "name": "fuzz-testing", - "published_at": "2026-01-24T21:33:12.511Z", + "published_at": "2026-02-19T13:35:59.974Z", "metrics": { "org_count": 1, "project_count": 137, "avg_projects_per_org": 137, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -82,11 +83,16 @@ "year": 2025, "org_count": 1, "project_count": 21 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.511Z" + "generated_at": "2026-02-19T13:35:59.974Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/fuzzing.json b/new-api-details/tech-stack/fuzzing.json index b1c668bc..501c8132 100644 --- a/new-api-details/tech-stack/fuzzing.json +++ b/new-api-details/tech-stack/fuzzing.json @@ -1,13 +1,13 @@ { "slug": "fuzzing", "name": "fuzzing", - "published_at": "2026-01-24T21:33:12.055Z", + "published_at": "2026-02-19T13:35:59.402Z", "metrics": { "org_count": 1, "project_count": 10, "avg_projects_per_org": 10, "first_year_used": 2020, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -23,7 +23,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,11 +79,16 @@ "year": 2025, "org_count": 1, "project_count": 1 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.055Z" + "generated_at": "2026-02-19T13:35:59.402Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/game-development.json b/new-api-details/tech-stack/game-development.json index 694f6712..d597155e 100644 --- a/new-api-details/tech-stack/game-development.json +++ b/new-api-details/tech-stack/game-development.json @@ -1,7 +1,7 @@ { "slug": "game-development", "name": "game development", - "published_at": "2026-01-24T21:33:12.260Z", + "published_at": "2026-02-19T13:35:59.658Z", "metrics": { "org_count": 1, "project_count": 2, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.260Z" + "generated_at": "2026-02-19T13:35:59.658Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/garbage-collection.json b/new-api-details/tech-stack/garbage-collection.json index 4ba7a9b5..02c9d1c1 100644 --- a/new-api-details/tech-stack/garbage-collection.json +++ b/new-api-details/tech-stack/garbage-collection.json @@ -1,13 +1,13 @@ { "slug": "garbage-collection", "name": "garbage-collection", - "published_at": "2026-01-24T21:33:12.506Z", + "published_at": "2026-02-19T13:35:59.969Z", "metrics": { "org_count": 1, "project_count": 140, "avg_projects_per_org": 140, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 14 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.506Z" + "generated_at": "2026-02-19T13:35:59.969Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/gawk.json b/new-api-details/tech-stack/gawk.json index 32a27f3a..d7a3398e 100644 --- a/new-api-details/tech-stack/gawk.json +++ b/new-api-details/tech-stack/gawk.json @@ -1,7 +1,7 @@ { "slug": "gawk", "name": "gawk", - "published_at": "2026-01-24T21:33:12.576Z", + "published_at": "2026-02-19T13:35:59.950Z", "metrics": { "org_count": 1, "project_count": 15, @@ -79,11 +79,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.576Z" + "generated_at": "2026-02-19T13:35:59.950Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/gazebo.json b/new-api-details/tech-stack/gazebo.json index 8a792439..a2299f64 100644 --- a/new-api-details/tech-stack/gazebo.json +++ b/new-api-details/tech-stack/gazebo.json @@ -1,13 +1,13 @@ { "slug": "gazebo", "name": "gazebo", - "published_at": "2026-01-24T21:33:12.330Z", + "published_at": "2026-02-19T13:35:59.748Z", "metrics": { "org_count": 2, "project_count": 94, "avg_projects_per_org": 47, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -45,7 +46,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -100,11 +102,16 @@ "year": 2025, "org_count": 2, "project_count": 16 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.330Z" + "generated_at": "2026-02-19T13:35:59.748Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/gcc.json b/new-api-details/tech-stack/gcc.json index 57afb242..e490ec6d 100644 --- a/new-api-details/tech-stack/gcc.json +++ b/new-api-details/tech-stack/gcc.json @@ -1,13 +1,13 @@ { "slug": "gcc", "name": "gcc", - "published_at": "2026-01-24T21:33:12.119Z", + "published_at": "2026-02-19T13:35:59.468Z", "metrics": { "org_count": 3, "project_count": 105, "avg_projects_per_org": 35, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnu-project.webp", "category": "Operating systems", "total_projects": 59, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -24,7 +24,8 @@ 2019, 2020, 2023, - 2024 + 2024, + 2026 ] }, { @@ -33,7 +34,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/beagleboardorg.webp", "category": "Science and medicine", "total_projects": 44, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -110,11 +111,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.119Z" + "generated_at": "2026-02-19T13:35:59.468Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/gcp.json b/new-api-details/tech-stack/gcp.json index 16526e0d..997a9266 100644 --- a/new-api-details/tech-stack/gcp.json +++ b/new-api-details/tech-stack/gcp.json @@ -1,7 +1,7 @@ { "slug": "gcp", "name": "gcp", - "published_at": "2026-01-24T21:33:12.469Z", + "published_at": "2026-02-19T13:35:59.936Z", "metrics": { "org_count": 1, "project_count": 149, @@ -80,11 +80,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.469Z" + "generated_at": "2026-02-19T13:35:59.936Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/gcs.json b/new-api-details/tech-stack/gcs.json new file mode 100644 index 00000000..75ac527d --- /dev/null +++ b/new-api-details/tech-stack/gcs.json @@ -0,0 +1,88 @@ +{ + "slug": "gcs", + "name": "GCS", + "published_at": "2026-02-19T13:35:59.805Z", + "metrics": { + "org_count": 1, + "project_count": 0, + "avg_projects_per_org": 0, + "first_year_used": 2026, + "latest_year_used": 2026 + }, + "organizations": [ + { + "slug": "malariagen", + "name": "MalariaGEN", + "logo_url": "https://summerofcode.withgoogle.com/media/org/malariagen/8dgzolp37fdiwm5h-360.png", + "category": "Science and medicine", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + } + ], + "charts": { + "popularity_by_year": [ + { + "year": 2016, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2017, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2018, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2019, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2020, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2021, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2022, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2023, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2024, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2025, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 + } + ] + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:35:59.805Z" + } +} \ No newline at end of file diff --git a/new-api-details/tech-stack/gdal.json b/new-api-details/tech-stack/gdal.json index 29e32dc6..d2c3a5af 100644 --- a/new-api-details/tech-stack/gdal.json +++ b/new-api-details/tech-stack/gdal.json @@ -1,7 +1,7 @@ { "slug": "gdal", "name": "gdal", - "published_at": "2026-01-24T21:33:12.223Z", + "published_at": "2026-02-19T13:35:59.608Z", "metrics": { "org_count": 1, "project_count": 4, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.223Z" + "generated_at": "2026-02-19T13:35:59.608Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/gdscript.json b/new-api-details/tech-stack/gdscript.json index 130cfd58..37ac6aec 100644 --- a/new-api-details/tech-stack/gdscript.json +++ b/new-api-details/tech-stack/gdscript.json @@ -1,7 +1,7 @@ { "slug": "gdscript", "name": "gdscript", - "published_at": "2026-01-24T21:33:12.288Z", + "published_at": "2026-02-19T13:35:59.688Z", "metrics": { "org_count": 1, "project_count": 27, @@ -77,11 +77,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.288Z" + "generated_at": "2026-02-19T13:35:59.688Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/gegl.json b/new-api-details/tech-stack/gegl.json index a7a2373c..6f7cd477 100644 --- a/new-api-details/tech-stack/gegl.json +++ b/new-api-details/tech-stack/gegl.json @@ -1,13 +1,13 @@ { "slug": "gegl", "name": "GEGL", - "published_at": "2026-01-24T21:33:12.265Z", + "published_at": "2026-02-19T13:35:59.674Z", "metrics": { "org_count": 1, "project_count": 10, "avg_projects_per_org": 10, "first_year_used": 2022, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -21,7 +21,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -76,11 +77,16 @@ "year": 2025, "org_count": 1, "project_count": 3 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.265Z" + "generated_at": "2026-02-19T13:35:59.674Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/gemma.json b/new-api-details/tech-stack/gemma.json index 6a7f9e71..6ac88583 100644 --- a/new-api-details/tech-stack/gemma.json +++ b/new-api-details/tech-stack/gemma.json @@ -1,7 +1,7 @@ { "slug": "gemma", "name": "Gemma", - "published_at": "2026-01-24T21:33:12.290Z", + "published_at": "2026-02-19T13:35:59.690Z", "metrics": { "org_count": 1, "project_count": 45, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/google-deepmind.webp", "category": "Artificial Intelligence", "total_projects": 45, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2025 ] @@ -73,11 +73,16 @@ "year": 2025, "org_count": 1, "project_count": 45 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.290Z" + "generated_at": "2026-02-19T13:35:59.690Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/genai.json b/new-api-details/tech-stack/genai.json new file mode 100644 index 00000000..2fe892fa --- /dev/null +++ b/new-api-details/tech-stack/genai.json @@ -0,0 +1,88 @@ +{ + "slug": "genai", + "name": "GenAI", + "published_at": "2026-02-19T13:35:59.658Z", + "metrics": { + "org_count": 1, + "project_count": 0, + "avg_projects_per_org": 0, + "first_year_used": 2026, + "latest_year_used": 2026 + }, + "organizations": [ + { + "slug": "gemini-cli", + "name": "Gemini CLI", + "logo_url": "https://summerofcode.withgoogle.com/media/org/gemini-cli/mhi8cx7tyjt91i6n-360.png", + "category": "Development tools", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + } + ], + "charts": { + "popularity_by_year": [ + { + "year": 2016, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2017, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2018, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2019, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2020, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2021, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2022, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2023, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2024, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2025, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 + } + ] + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:35:59.658Z" + } +} \ No newline at end of file diff --git a/new-api-details/tech-stack/generative-ai.json b/new-api-details/tech-stack/generative-ai.json index b4664f45..7e731247 100644 --- a/new-api-details/tech-stack/generative-ai.json +++ b/new-api-details/tech-stack/generative-ai.json @@ -1,13 +1,13 @@ { "slug": "generative-ai", "name": "generative ai", - "published_at": "2026-01-24T21:33:12.575Z", + "published_at": "2026-02-19T13:35:59.924Z", "metrics": { "org_count": 1, "project_count": 103, "avg_projects_per_org": 103, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 19 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.575Z" + "generated_at": "2026-02-19T13:35:59.924Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/geo.json b/new-api-details/tech-stack/geo.json index d11483f4..1d56a459 100644 --- a/new-api-details/tech-stack/geo.json +++ b/new-api-details/tech-stack/geo.json @@ -1,13 +1,13 @@ { "slug": "geo", "name": "geo", - "published_at": "2026-01-24T21:33:12.224Z", + "published_at": "2026-02-19T13:35:59.610Z", "metrics": { "org_count": 1, "project_count": 68, "avg_projects_per_org": 68, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 7 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.224Z" + "generated_at": "2026-02-19T13:35:59.610Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/geospatial.json b/new-api-details/tech-stack/geospatial.json index 7daa4a4c..4c4e701c 100644 --- a/new-api-details/tech-stack/geospatial.json +++ b/new-api-details/tech-stack/geospatial.json @@ -1,13 +1,13 @@ { "slug": "geospatial", "name": "geospatial", - "published_at": "2026-01-24T21:33:12.224Z", + "published_at": "2026-02-19T13:35:59.609Z", "metrics": { "org_count": 2, "project_count": 98, "avg_projects_per_org": 49, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -45,7 +46,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -100,11 +102,16 @@ "year": 2025, "org_count": 2, "project_count": 11 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.224Z" + "generated_at": "2026-02-19T13:35:59.609Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/ghc.json b/new-api-details/tech-stack/ghc.json index 3107e808..926bd388 100644 --- a/new-api-details/tech-stack/ghc.json +++ b/new-api-details/tech-stack/ghc.json @@ -1,13 +1,13 @@ { "slug": "ghc", "name": "ghc", - "published_at": "2026-01-24T21:33:12.295Z", + "published_at": "2026-02-19T13:35:59.705Z", "metrics": { "org_count": 1, "project_count": 70, "avg_projects_per_org": 70, "first_year_used": 2018, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -24,7 +24,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] } ], @@ -79,11 +80,16 @@ "year": 2025, "org_count": 1, "project_count": 4 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.295Z" + "generated_at": "2026-02-19T13:35:59.705Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/ghidra.json b/new-api-details/tech-stack/ghidra.json index 8d29d292..80ac1d64 100644 --- a/new-api-details/tech-stack/ghidra.json +++ b/new-api-details/tech-stack/ghidra.json @@ -1,13 +1,13 @@ { "slug": "ghidra", "name": "Ghidra", - "published_at": "2026-01-24T21:33:12.240Z", + "published_at": "2026-02-19T13:35:59.634Z", "metrics": { "org_count": 1, "project_count": 7, "avg_projects_per_org": 7, "first_year_used": 2023, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -20,7 +20,8 @@ "active_years": [ 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -75,11 +76,16 @@ "year": 2025, "org_count": 1, "project_count": 2 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.240Z" + "generated_at": "2026-02-19T13:35:59.634Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/gis.json b/new-api-details/tech-stack/gis.json index 976984a6..44cf54bd 100644 --- a/new-api-details/tech-stack/gis.json +++ b/new-api-details/tech-stack/gis.json @@ -1,13 +1,13 @@ { "slug": "gis", "name": "gis", - "published_at": "2026-01-24T21:33:12.340Z", + "published_at": "2026-02-19T13:35:59.761Z", "metrics": { - "org_count": 5, - "project_count": 86, - "avg_projects_per_org": 17.2, + "org_count": 6, + "project_count": 93, + "avg_projects_per_org": 15.5, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,21 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "project-mesa", + "name": "Project Mesa", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/project-mesa.webp", + "category": "Science and medicine", + "total_projects": 7, + "is_currently_active": true, + "active_years": [ + 2024, + 2025, + 2026 ] }, { @@ -120,18 +134,23 @@ }, { "year": 2024, - "org_count": 1, - "project_count": 11 + "org_count": 2, + "project_count": 14 }, { "year": 2025, - "org_count": 1, - "project_count": 11 + "org_count": 2, + "project_count": 15 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.340Z" + "generated_at": "2026-02-19T13:35:59.761Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/git-github.json b/new-api-details/tech-stack/git-github.json index 15294bc8..98af2212 100644 --- a/new-api-details/tech-stack/git-github.json +++ b/new-api-details/tech-stack/git-github.json @@ -1,7 +1,7 @@ { "slug": "git-github", "name": "Git/GitHub", - "published_at": "2026-01-24T21:33:12.404Z", + "published_at": "2026-02-19T13:35:59.844Z", "metrics": { "org_count": 1, "project_count": 45, @@ -79,11 +79,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.404Z" + "generated_at": "2026-02-19T13:35:59.844Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/git.json b/new-api-details/tech-stack/git.json index 8d445db4..e455bae4 100644 --- a/new-api-details/tech-stack/git.json +++ b/new-api-details/tech-stack/git.json @@ -1,13 +1,13 @@ { "slug": "git", "name": "git", - "published_at": "2026-01-24T21:33:12.150Z", + "published_at": "2026-02-19T13:35:59.498Z", "metrics": { "org_count": 21, "project_count": 443, "avg_projects_per_org": 21.1, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -25,7 +25,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] }, { @@ -34,7 +35,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/chromium.webp", "category": "Operating systems", "total_projects": 71, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2021, 2022, @@ -59,7 +60,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -79,7 +81,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -94,7 +97,8 @@ 2019, 2021, 2023, - 2025 + 2025, + 2026 ] }, { @@ -103,7 +107,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/fedora-project.webp", "category": "Operating systems", "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -130,7 +134,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -153,7 +158,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gitlab.webp", "category": "Infrastructure and cloud", "total_projects": 15, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2021, 2022, @@ -223,19 +228,6 @@ 2020 ] }, - { - "slug": "software-heritage", - "name": "Software Heritage", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/software-heritage.webp", - "category": "Data", - "total_projects": 6, - "is_currently_active": false, - "active_years": [ - 2019, - 2021, - 2022 - ] - }, { "slug": "libssh", "name": "libssh", @@ -247,7 +239,21 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "software-heritage", + "name": "Software Heritage", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/software-heritage.webp", + "category": "Data", + "total_projects": 6, + "is_currently_active": false, + "active_years": [ + 2019, + 2021, + 2022 ] }, { @@ -283,7 +289,8 @@ "is_currently_active": true, "active_years": [ 2022, - 2025 + 2025, + 2026 ] }, { @@ -292,9 +299,10 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/nixos-foundation.webp", "category": "Programming languages", "total_projects": 3, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ - 2024 + 2024, + 2026 ] }, { @@ -303,9 +311,10 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/tiled.webp", "category": "End user applications", "total_projects": 3, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ - 2017 + 2017, + 2026 ] }, { @@ -371,11 +380,16 @@ "year": 2025, "org_count": 10, "project_count": 54 + }, + { + "year": 2026, + "org_count": 9, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.150Z" + "generated_at": "2026-02-19T13:35:59.498Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/github-actions.json b/new-api-details/tech-stack/github-actions.json index 70db0e37..b38dd113 100644 --- a/new-api-details/tech-stack/github-actions.json +++ b/new-api-details/tech-stack/github-actions.json @@ -1,13 +1,13 @@ { "slug": "github-actions", "name": "github-actions", - "published_at": "2026-01-24T21:33:12.281Z", + "published_at": "2026-02-19T13:35:59.667Z", "metrics": { "org_count": 2, "project_count": 117, "avg_projects_per_org": 58.5, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -25,7 +25,8 @@ 2021, 2022, 2023, - 2025 + 2025, + 2026 ] }, { @@ -41,7 +42,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -96,11 +98,16 @@ "year": 2025, "org_count": 2, "project_count": 9 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.281Z" + "generated_at": "2026-02-19T13:35:59.667Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/github.json b/new-api-details/tech-stack/github.json index 805b97bd..565b889a 100644 --- a/new-api-details/tech-stack/github.json +++ b/new-api-details/tech-stack/github.json @@ -1,13 +1,13 @@ { "slug": "github", "name": "github", - "published_at": "2026-01-24T21:33:12.149Z", + "published_at": "2026-02-19T13:35:59.524Z", "metrics": { "org_count": 11, "project_count": 209, "avg_projects_per_org": 19, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -117,7 +118,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -141,7 +143,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -150,9 +153,10 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/tiled.webp", "category": "End user applications", "total_projects": 3, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ - 2017 + 2017, + 2026 ] }, { @@ -218,11 +222,16 @@ "year": 2025, "org_count": 3, "project_count": 15 + }, + { + "year": 2026, + "org_count": 4, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.149Z" + "generated_at": "2026-02-19T13:35:59.524Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/gitops.json b/new-api-details/tech-stack/gitops.json index 1aa072cf..3cace657 100644 --- a/new-api-details/tech-stack/gitops.json +++ b/new-api-details/tech-stack/gitops.json @@ -1,7 +1,7 @@ { "slug": "gitops", "name": "gitops", - "published_at": "2026-01-24T21:33:12.331Z", + "published_at": "2026-02-19T13:35:59.749Z", "metrics": { "org_count": 1, "project_count": 2, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.331Z" + "generated_at": "2026-02-19T13:35:59.749Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/glib.json b/new-api-details/tech-stack/glib.json index 3302861f..c0ea7150 100644 --- a/new-api-details/tech-stack/glib.json +++ b/new-api-details/tech-stack/glib.json @@ -1,7 +1,7 @@ { "slug": "glib", "name": "glib", - "published_at": "2026-01-24T21:33:12.581Z", + "published_at": "2026-02-19T13:36:00.116Z", "metrics": { "org_count": 1, "project_count": 2, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.581Z" + "generated_at": "2026-02-19T13:36:00.116Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/gltf.json b/new-api-details/tech-stack/gltf.json new file mode 100644 index 00000000..0bf5d9b8 --- /dev/null +++ b/new-api-details/tech-stack/gltf.json @@ -0,0 +1,98 @@ +{ + "slug": "gltf", + "name": "glTF", + "published_at": "2026-02-19T13:35:59.866Z", + "metrics": { + "org_count": 1, + "project_count": 45, + "avg_projects_per_org": 45, + "first_year_used": 2016, + "latest_year_used": 2026 + }, + "organizations": [ + { + "slug": "openstreetmap", + "name": "OpenStreetMap", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/openstreetmap.webp", + "category": "Data", + "total_projects": 45, + "is_currently_active": true, + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ] + } + ], + "charts": { + "popularity_by_year": [ + { + "year": 2016, + "org_count": 1, + "project_count": 4 + }, + { + "year": 2017, + "org_count": 1, + "project_count": 5 + }, + { + "year": 2018, + "org_count": 1, + "project_count": 5 + }, + { + "year": 2019, + "org_count": 1, + "project_count": 5 + }, + { + "year": 2020, + "org_count": 1, + "project_count": 4 + }, + { + "year": 2021, + "org_count": 1, + "project_count": 4 + }, + { + "year": 2022, + "org_count": 1, + "project_count": 4 + }, + { + "year": 2023, + "org_count": 1, + "project_count": 4 + }, + { + "year": 2024, + "org_count": 1, + "project_count": 4 + }, + { + "year": 2025, + "org_count": 1, + "project_count": 6 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 + } + ] + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:35:59.866Z" + } +} \ No newline at end of file diff --git a/new-api-details/tech-stack/gnss.json b/new-api-details/tech-stack/gnss.json index 96da330b..6a373771 100644 --- a/new-api-details/tech-stack/gnss.json +++ b/new-api-details/tech-stack/gnss.json @@ -1,7 +1,7 @@ { "slug": "gnss", "name": "gnss", - "published_at": "2026-01-24T21:33:12.264Z", + "published_at": "2026-02-19T13:35:59.673Z", "metrics": { "org_count": 1, "project_count": 28, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnss-sdr.webp", "category": "Science and medicine", "total_projects": 28, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -81,11 +81,16 @@ "year": 2025, "org_count": 1, "project_count": 3 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.264Z" + "generated_at": "2026-02-19T13:35:59.673Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/gnu-autotools.json b/new-api-details/tech-stack/gnu-autotools.json index e12625de..63595be2 100644 --- a/new-api-details/tech-stack/gnu-autotools.json +++ b/new-api-details/tech-stack/gnu-autotools.json @@ -1,13 +1,13 @@ { "slug": "gnu-autotools", "name": "gnu autotools", - "published_at": "2026-01-24T21:33:12.258Z", + "published_at": "2026-02-19T13:35:59.649Z", "metrics": { "org_count": 2, "project_count": 51, "avg_projects_per_org": 25.5, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -25,7 +25,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -98,11 +99,16 @@ "year": 2025, "org_count": 1, "project_count": 6 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.258Z" + "generated_at": "2026-02-19T13:35:59.649Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/gnu-linux.json b/new-api-details/tech-stack/gnu-linux.json index e02593e1..9808095c 100644 --- a/new-api-details/tech-stack/gnu-linux.json +++ b/new-api-details/tech-stack/gnu-linux.json @@ -1,7 +1,7 @@ { "slug": "gnu-linux", "name": "gnu/linux", - "published_at": "2026-01-24T21:33:12.462Z", + "published_at": "2026-02-19T13:35:59.653Z", "metrics": { "org_count": 2, "project_count": 131, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/freifunk.webp", "category": "Operating systems", "total_projects": 74, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -98,11 +98,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.462Z" + "generated_at": "2026-02-19T13:35:59.653Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/gnu-make.json b/new-api-details/tech-stack/gnu-make.json index 5589dd67..dede4f6e 100644 --- a/new-api-details/tech-stack/gnu-make.json +++ b/new-api-details/tech-stack/gnu-make.json @@ -1,13 +1,13 @@ { "slug": "gnu-make", "name": "gnu make", - "published_at": "2026-01-24T21:33:12.138Z", + "published_at": "2026-02-19T13:35:59.494Z", "metrics": { "org_count": 3, "project_count": 52, "avg_projects_per_org": 17.3, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -25,7 +25,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -109,11 +110,16 @@ "year": 2025, "org_count": 1, "project_count": 6 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.138Z" + "generated_at": "2026-02-19T13:35:59.494Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/gnu.json b/new-api-details/tech-stack/gnu.json new file mode 100644 index 00000000..ef43f247 --- /dev/null +++ b/new-api-details/tech-stack/gnu.json @@ -0,0 +1,95 @@ +{ + "slug": "gnu", + "name": "GNU", + "published_at": "2026-02-19T13:35:59.684Z", + "metrics": { + "org_count": 1, + "project_count": 59, + "avg_projects_per_org": 59, + "first_year_used": 2016, + "latest_year_used": 2026 + }, + "organizations": [ + { + "slug": "gnu-project", + "name": "GNU Project", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnu-project.webp", + "category": "Operating systems", + "total_projects": 59, + "is_currently_active": true, + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2023, + 2024, + 2026 + ] + } + ], + "charts": { + "popularity_by_year": [ + { + "year": 2016, + "org_count": 1, + "project_count": 15 + }, + { + "year": 2017, + "org_count": 1, + "project_count": 13 + }, + { + "year": 2018, + "org_count": 1, + "project_count": 9 + }, + { + "year": 2019, + "org_count": 1, + "project_count": 5 + }, + { + "year": 2020, + "org_count": 1, + "project_count": 7 + }, + { + "year": 2021, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2022, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2023, + "org_count": 1, + "project_count": 7 + }, + { + "year": 2024, + "org_count": 1, + "project_count": 3 + }, + { + "year": 2025, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 + } + ] + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:35:59.684Z" + } +} \ No newline at end of file diff --git a/new-api-details/tech-stack/gnupg.json b/new-api-details/tech-stack/gnupg.json index 7d4de042..3f414b7d 100644 --- a/new-api-details/tech-stack/gnupg.json +++ b/new-api-details/tech-stack/gnupg.json @@ -1,7 +1,7 @@ { "slug": "gnupg", "name": "gnupg", - "published_at": "2026-01-24T21:33:12.352Z", + "published_at": "2026-02-19T13:35:59.787Z", "metrics": { "org_count": 1, "project_count": 2, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.352Z" + "generated_at": "2026-02-19T13:35:59.787Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/go.json b/new-api-details/tech-stack/go.json index c034524e..18ba70d3 100644 --- a/new-api-details/tech-stack/go.json +++ b/new-api-details/tech-stack/go.json @@ -1,13 +1,13 @@ { "slug": "go", "name": "go", - "published_at": "2026-01-24T21:33:12.108Z", + "published_at": "2026-02-19T13:35:59.457Z", "metrics": { - "org_count": 30, + "org_count": 31, "project_count": 911, - "avg_projects_per_org": 30.4, + "avg_projects_per_org": 29.4, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -44,7 +44,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -64,7 +65,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -84,7 +86,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -103,7 +106,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -122,7 +126,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -140,7 +145,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -158,7 +164,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -210,7 +217,8 @@ 2021, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -236,7 +244,8 @@ "active_years": [ 2020, 2024, - 2025 + 2025, + 2026 ] }, { @@ -267,7 +276,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -276,7 +286,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/asyncapi.webp", "category": "Programming languages", "total_projects": 15, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2024, 2025 @@ -288,7 +298,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gitlab.webp", "category": "Infrastructure and cloud", "total_projects": 15, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2021, 2022, @@ -314,11 +324,12 @@ "slug": "c2si", "name": "C2SI", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/c2si.webp", - "category": "Security", + "category": "End user applications", "total_projects": 12, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ - 2024 + 2024, + 2026 ] }, { @@ -349,7 +360,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -396,7 +408,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/prometheus-operator.webp", "category": "Infrastructure and cloud", "total_projects": 5, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2024, 2025 @@ -457,6 +469,17 @@ "active_years": [ 2016 ] + }, + { + "slug": "konflux", + "name": "Konflux", + "logo_url": "https://summerofcode.withgoogle.com/media/org/konflux/7znpk8j83biro6rn.png", + "category": "Infrastructure and cloud", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] } ], "charts": { @@ -510,11 +533,16 @@ "year": 2025, "org_count": 14, "project_count": 100 + }, + { + "year": 2026, + "org_count": 13, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.108Z" + "generated_at": "2026-02-19T13:35:59.457Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/gobject.json b/new-api-details/tech-stack/gobject.json index a7d3f8cd..a23747ca 100644 --- a/new-api-details/tech-stack/gobject.json +++ b/new-api-details/tech-stack/gobject.json @@ -1,13 +1,13 @@ { "slug": "gobject", "name": "gobject", - "published_at": "2026-01-24T21:33:12.262Z", + "published_at": "2026-02-19T13:35:59.672Z", "metrics": { "org_count": 1, "project_count": 115, "avg_projects_per_org": 115, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -82,11 +83,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.262Z" + "generated_at": "2026-02-19T13:35:59.672Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/golan.json b/new-api-details/tech-stack/golan.json index f44f8746..f75709b0 100644 --- a/new-api-details/tech-stack/golan.json +++ b/new-api-details/tech-stack/golan.json @@ -1,7 +1,7 @@ { "slug": "golan", "name": "golan", - "published_at": "2026-01-24T21:33:12.470Z", + "published_at": "2026-02-19T13:35:59.936Z", "metrics": { "org_count": 1, "project_count": 149, @@ -80,11 +80,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.470Z" + "generated_at": "2026-02-19T13:35:59.936Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/golang.json b/new-api-details/tech-stack/golang.json index 34e85889..58500a5f 100644 --- a/new-api-details/tech-stack/golang.json +++ b/new-api-details/tech-stack/golang.json @@ -1,13 +1,13 @@ { "slug": "golang", "name": "golang", - "published_at": "2026-01-24T21:33:12.091Z", + "published_at": "2026-02-19T13:35:59.409Z", "metrics": { "org_count": 37, "project_count": 828, "avg_projects_per_org": 22.4, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -44,7 +44,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -63,7 +64,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -83,16 +85,17 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "jboss-community", "name": "JBoss Community", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jboss-community.webp", - "category": "Data", + "category": "Web", "total_projects": 52, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -100,7 +103,8 @@ 2019, 2020, 2021, - 2022 + 2022, + 2026 ] }, { @@ -143,7 +147,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/fedora-project.webp", "category": "Operating systems", "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -168,7 +172,8 @@ 2021, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -206,7 +211,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-tor-project.webp", "category": "Web", "total_projects": 19, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -240,7 +245,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -249,7 +255,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gitlab.webp", "category": "Infrastructure and cloud", "total_projects": 15, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2021, 2022, @@ -278,7 +284,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/keploy.webp", "category": "Programming languages", "total_projects": 11, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2023, 2024, @@ -294,7 +300,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -315,7 +322,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/center-for-translational-data-science.webp", "category": "Science and medicine", "total_projects": 6, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2025 @@ -343,7 +350,8 @@ "active_years": [ 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -437,6 +445,17 @@ 2022 ] }, + { + "slug": "kro-kube-resource-orchestrator", + "name": "kro | Kube Resource Orchestrator", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kro-kube-resource-orchestrator.webp", + "category": "Infrastructure and cloud", + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2025 + ] + }, { "slug": "leap-encryption-access-project", "name": "LEAP Encryption Access Project", @@ -457,7 +476,8 @@ "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] }, { @@ -472,14 +492,14 @@ ] }, { - "slug": "kro-kube-resource-orchestrator", - "name": "kro | Kube Resource Orchestrator", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kro-kube-resource-orchestrator.webp", - "category": "Infrastructure and cloud", - "total_projects": 2, - "is_currently_active": true, + "slug": "gvisor", + "name": "gVisor", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gvisor.webp", + "category": "Operating systems", + "total_projects": 1, + "is_currently_active": false, "active_years": [ - 2025 + 2021 ] }, { @@ -503,17 +523,6 @@ "active_years": [ 2019 ] - }, - { - "slug": "gvisor", - "name": "gVisor", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gvisor.webp", - "category": "Operating systems", - "total_projects": 1, - "is_currently_active": false, - "active_years": [ - 2021 - ] } ], "charts": { @@ -567,11 +576,16 @@ "year": 2025, "org_count": 14, "project_count": 75 + }, + { + "year": 2026, + "org_count": 9, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.091Z" + "generated_at": "2026-02-19T13:35:59.409Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/google-app-engine.json b/new-api-details/tech-stack/google-app-engine.json index c7e512e3..8f510073 100644 --- a/new-api-details/tech-stack/google-app-engine.json +++ b/new-api-details/tech-stack/google-app-engine.json @@ -1,13 +1,13 @@ { "slug": "google-app-engine", "name": "google app engine", - "published_at": "2026-01-24T21:33:12.367Z", + "published_at": "2026-02-19T13:35:59.820Z", "metrics": { "org_count": 3, "project_count": 142, "avg_projects_per_org": 47.3, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -46,7 +47,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -114,11 +116,16 @@ "year": 2025, "org_count": 2, "project_count": 11 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.367Z" + "generated_at": "2026-02-19T13:35:59.820Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/google-cloud.json b/new-api-details/tech-stack/google-cloud.json index 6620ba9e..385c0c3a 100644 --- a/new-api-details/tech-stack/google-cloud.json +++ b/new-api-details/tech-stack/google-cloud.json @@ -1,7 +1,7 @@ { "slug": "google-cloud", "name": "google cloud", - "published_at": "2026-01-24T21:33:12.237Z", + "published_at": "2026-02-19T13:35:59.623Z", "metrics": { "org_count": 2, "project_count": 5, @@ -84,11 +84,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.237Z" + "generated_at": "2026-02-19T13:35:59.623Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/google-earth.json b/new-api-details/tech-stack/google-earth.json index a3170d9c..f40ac5ee 100644 --- a/new-api-details/tech-stack/google-earth.json +++ b/new-api-details/tech-stack/google-earth.json @@ -1,13 +1,13 @@ { "slug": "google-earth", "name": "Google Earth", - "published_at": "2026-01-24T21:33:12.364Z", + "published_at": "2026-02-19T13:35:59.802Z", "metrics": { "org_count": 1, "project_count": 75, "avg_projects_per_org": 75, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 11 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.364Z" + "generated_at": "2026-02-19T13:35:59.802Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/google-web-toolkit.json b/new-api-details/tech-stack/google-web-toolkit.json index 6482adbc..b3c6d5c7 100644 --- a/new-api-details/tech-stack/google-web-toolkit.json +++ b/new-api-details/tech-stack/google-web-toolkit.json @@ -1,13 +1,13 @@ { "slug": "google-web-toolkit", "name": "google web toolkit", - "published_at": "2026-01-24T21:33:12.369Z", + "published_at": "2026-02-19T13:35:59.821Z", "metrics": { "org_count": 1, "project_count": 45, "avg_projects_per_org": 45, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.369Z" + "generated_at": "2026-02-19T13:35:59.821Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/gpu.json b/new-api-details/tech-stack/gpu.json index d50b97e9..102c73f1 100644 --- a/new-api-details/tech-stack/gpu.json +++ b/new-api-details/tech-stack/gpu.json @@ -1,13 +1,13 @@ { "slug": "gpu", "name": "gpu", - "published_at": "2026-01-24T21:33:12.177Z", + "published_at": "2026-02-19T13:35:59.517Z", "metrics": { "org_count": 5, "project_count": 374, "avg_projects_per_org": 74.8, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -46,7 +47,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -69,7 +71,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/center-for-translational-data-science.webp", "category": "Science and medicine", "total_projects": 6, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2025 @@ -138,11 +140,16 @@ "year": 2025, "org_count": 3, "project_count": 45 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.177Z" + "generated_at": "2026-02-19T13:35:59.517Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/gradle.json b/new-api-details/tech-stack/gradle.json index 807bf151..bffbebd3 100644 --- a/new-api-details/tech-stack/gradle.json +++ b/new-api-details/tech-stack/gradle.json @@ -1,13 +1,13 @@ { "slug": "gradle", "name": "gradle", - "published_at": "2026-01-24T21:33:12.096Z", + "published_at": "2026-02-19T13:35:59.418Z", "metrics": { "org_count": 4, "project_count": 75, "avg_projects_per_org": 18.8, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -36,7 +36,8 @@ "active_years": [ 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -50,7 +51,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] }, { @@ -116,11 +118,16 @@ "year": 2025, "org_count": 2, "project_count": 10 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.096Z" + "generated_at": "2026-02-19T13:35:59.418Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/grafana.json b/new-api-details/tech-stack/grafana.json index 2386cce7..ee4ccf90 100644 --- a/new-api-details/tech-stack/grafana.json +++ b/new-api-details/tech-stack/grafana.json @@ -1,7 +1,7 @@ { "slug": "grafana", "name": "grafana", - "published_at": "2026-01-24T21:33:12.241Z", + "published_at": "2026-02-19T13:35:59.638Z", "metrics": { "org_count": 4, "project_count": 29, @@ -115,11 +115,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.241Z" + "generated_at": "2026-02-19T13:35:59.638Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/graph.json b/new-api-details/tech-stack/graph.json index 32eeb5f2..738ebbc4 100644 --- a/new-api-details/tech-stack/graph.json +++ b/new-api-details/tech-stack/graph.json @@ -1,20 +1,20 @@ { "slug": "graph", "name": "graph", - "published_at": "2026-01-24T21:33:12.206Z", + "published_at": "2026-02-19T13:35:59.590Z", "metrics": { "org_count": 2, "project_count": 89, "avg_projects_per_org": 44.5, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { "slug": "dbpedia", "name": "DBpedia", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/dbpedia.webp", - "category": "Science and medicine", + "category": "Data", "total_projects": 61, "is_currently_active": true, "active_years": [ @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -36,14 +37,15 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-genome-informatics.webp", "category": "Science and medicine", "total_projects": 28, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, 2020, 2021, 2022, - 2023 + 2023, + 2026 ] } ], @@ -98,11 +100,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.206Z" + "generated_at": "2026-02-19T13:35:59.590Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/graphics.json b/new-api-details/tech-stack/graphics.json index 1e807299..f6b40776 100644 --- a/new-api-details/tech-stack/graphics.json +++ b/new-api-details/tech-stack/graphics.json @@ -1,7 +1,7 @@ { "slug": "graphics", "name": "Graphics", - "published_at": "2026-01-24T21:33:12.388Z", + "published_at": "2026-02-19T13:35:59.833Z", "metrics": { "org_count": 1, "project_count": 2, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.388Z" + "generated_at": "2026-02-19T13:35:59.833Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/graphite.json b/new-api-details/tech-stack/graphite.json index e55cb470..e22bee1f 100644 --- a/new-api-details/tech-stack/graphite.json +++ b/new-api-details/tech-stack/graphite.json @@ -1,7 +1,7 @@ { "slug": "graphite", "name": "graphite", - "published_at": "2026-01-24T21:33:12.387Z", + "published_at": "2026-02-19T13:35:59.831Z", "metrics": { "org_count": 1, "project_count": 3, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.387Z" + "generated_at": "2026-02-19T13:35:59.831Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/graphql.json b/new-api-details/tech-stack/graphql.json index 5aaad9c9..e22e2b21 100644 --- a/new-api-details/tech-stack/graphql.json +++ b/new-api-details/tech-stack/graphql.json @@ -1,7 +1,7 @@ { "slug": "graphql", "name": "graphql", - "published_at": "2026-01-24T21:33:12.291Z", + "published_at": "2026-02-19T13:35:59.698Z", "metrics": { "org_count": 4, "project_count": 58, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-palisadoes-foundation.webp", "category": "Social and communication", "total_projects": 36, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2021, 2022, @@ -114,11 +114,16 @@ "year": 2025, "org_count": 1, "project_count": 7 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.291Z" + "generated_at": "2026-02-19T13:35:59.698Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/groovy.json b/new-api-details/tech-stack/groovy.json index 157961a4..00e0e750 100644 --- a/new-api-details/tech-stack/groovy.json +++ b/new-api-details/tech-stack/groovy.json @@ -1,13 +1,13 @@ { "slug": "groovy", "name": "groovy", - "published_at": "2026-01-24T21:33:12.230Z", + "published_at": "2026-02-19T13:35:59.617Z", "metrics": { "org_count": 3, "project_count": 133, "avg_projects_per_org": 44.3, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -45,7 +46,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -112,11 +114,16 @@ "year": 2025, "org_count": 2, "project_count": 13 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.230Z" + "generated_at": "2026-02-19T13:35:59.617Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/grpc.json b/new-api-details/tech-stack/grpc.json index a8582fcd..e95685a7 100644 --- a/new-api-details/tech-stack/grpc.json +++ b/new-api-details/tech-stack/grpc.json @@ -1,13 +1,13 @@ { "slug": "grpc", "name": "grpc", - "published_at": "2026-01-24T21:33:12.072Z", + "published_at": "2026-02-19T13:35:59.447Z", "metrics": { "org_count": 6, "project_count": 141, "avg_projects_per_org": 23.5, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -35,7 +36,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/software-and-computational-systems-lab-at-lmu-munich.webp", "category": "Programming languages", "total_projects": 14, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2018, 2019, @@ -67,7 +68,8 @@ "active_years": [ 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -145,11 +147,16 @@ "year": 2025, "org_count": 3, "project_count": 16 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.072Z" + "generated_at": "2026-02-19T13:35:59.447Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/gstreamer.json b/new-api-details/tech-stack/gstreamer.json index 7a0c92bb..2607d60d 100644 --- a/new-api-details/tech-stack/gstreamer.json +++ b/new-api-details/tech-stack/gstreamer.json @@ -1,7 +1,7 @@ { "slug": "gstreamer", "name": "gstreamer", - "published_at": "2026-01-24T21:33:12.314Z", + "published_at": "2026-02-19T13:35:59.729Z", "metrics": { "org_count": 4, "project_count": 30, @@ -116,11 +116,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.314Z" + "generated_at": "2026-02-19T13:35:59.729Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/gtk.json b/new-api-details/tech-stack/gtk.json index 89a81fb1..576db0d3 100644 --- a/new-api-details/tech-stack/gtk.json +++ b/new-api-details/tech-stack/gtk.json @@ -1,13 +1,13 @@ { "slug": "gtk", "name": "gtk", - "published_at": "2026-01-24T21:33:12.199Z", + "published_at": "2026-02-19T13:35:59.571Z", "metrics": { "org_count": 13, "project_count": 493, "avg_projects_per_org": 37.9, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -47,7 +48,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -67,14 +69,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "open-technologies-alliance-gfoss", "name": "Open Technologies Alliance - GFOSS", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-technologies-alliance-gfoss.webp", - "category": "Development tools", + "category": "Science and medicine", "total_projects": 70, "is_currently_active": true, "active_years": [ @@ -85,7 +88,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -94,7 +98,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/inkscape.webp", "category": "End user applications", "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -122,7 +126,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -161,7 +166,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/zendalona.webp", "category": "End user applications", "total_projects": 10, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2024, 2025 @@ -265,11 +270,16 @@ "year": 2025, "org_count": 10, "project_count": 80 + }, + { + "year": 2026, + "org_count": 7, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.199Z" + "generated_at": "2026-02-19T13:35:59.571Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/gtkmm.json b/new-api-details/tech-stack/gtkmm.json index 60304b2a..38a35da2 100644 --- a/new-api-details/tech-stack/gtkmm.json +++ b/new-api-details/tech-stack/gtkmm.json @@ -1,13 +1,13 @@ { "slug": "gtkmm", "name": "gtkmm", - "published_at": "2026-01-24T21:33:12.496Z", + "published_at": "2026-02-19T13:35:59.957Z", "metrics": { "org_count": 1, "project_count": 12, "avg_projects_per_org": 12, "first_year_used": 2019, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -24,7 +24,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -79,11 +80,16 @@ "year": 2025, "org_count": 1, "project_count": 2 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.496Z" + "generated_at": "2026-02-19T13:35:59.957Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/gui.json b/new-api-details/tech-stack/gui.json index 6976b2e4..05a06cb2 100644 --- a/new-api-details/tech-stack/gui.json +++ b/new-api-details/tech-stack/gui.json @@ -1,13 +1,13 @@ { "slug": "gui", "name": "gui", - "published_at": "2026-01-24T21:33:12.505Z", + "published_at": "2026-02-19T13:35:59.968Z", "metrics": { "org_count": 1, "project_count": 140, "avg_projects_per_org": 140, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 14 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.505Z" + "generated_at": "2026-02-19T13:35:59.968Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/guile.json b/new-api-details/tech-stack/guile.json index 7518bb89..ad41dee3 100644 --- a/new-api-details/tech-stack/guile.json +++ b/new-api-details/tech-stack/guile.json @@ -1,13 +1,13 @@ { "slug": "guile", "name": "guile", - "published_at": "2026-01-24T21:33:12.270Z", + "published_at": "2026-02-19T13:35:59.683Z", "metrics": { "org_count": 1, "project_count": 59, "avg_projects_per_org": 59, "first_year_used": 2016, - "latest_year_used": 2024 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnu-project.webp", "category": "Operating systems", "total_projects": 59, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -24,7 +24,8 @@ 2019, 2020, 2023, - 2024 + 2024, + 2026 ] } ], @@ -79,11 +80,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.270Z" + "generated_at": "2026-02-19T13:35:59.683Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/guix.json b/new-api-details/tech-stack/guix.json index b2a29761..99571528 100644 --- a/new-api-details/tech-stack/guix.json +++ b/new-api-details/tech-stack/guix.json @@ -1,13 +1,13 @@ { "slug": "guix", "name": "guix", - "published_at": "2026-01-24T21:33:12.379Z", + "published_at": "2026-02-19T13:35:59.815Z", "metrics": { "org_count": 1, "project_count": 19, "avg_projects_per_org": 19, "first_year_used": 2021, - "latest_year_used": 2024 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,12 +16,13 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/metacall.webp", "category": "Programming languages", "total_projects": 19, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] } ], @@ -76,11 +77,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.379Z" + "generated_at": "2026-02-19T13:35:59.815Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/gvisor.json b/new-api-details/tech-stack/gvisor.json new file mode 100644 index 00000000..a4befc10 --- /dev/null +++ b/new-api-details/tech-stack/gvisor.json @@ -0,0 +1,88 @@ +{ + "slug": "gvisor", + "name": "gVisor", + "published_at": "2026-02-19T13:35:59.625Z", + "metrics": { + "org_count": 1, + "project_count": 0, + "avg_projects_per_org": 0, + "first_year_used": 2026, + "latest_year_used": 2026 + }, + "organizations": [ + { + "slug": "erofs-filesystem", + "name": "EROFS filesystem", + "logo_url": "https://summerofcode.withgoogle.com/media/org/erofs-filesystem/qrkpvwkzjqmwoyau-360.png", + "category": "Operating systems", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + } + ], + "charts": { + "popularity_by_year": [ + { + "year": 2016, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2017, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2018, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2019, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2020, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2021, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2022, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2023, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2024, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2025, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 + } + ] + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:35:59.625Z" + } +} \ No newline at end of file diff --git a/new-api-details/tech-stack/gwt.json b/new-api-details/tech-stack/gwt.json index b8d38c62..db194620 100644 --- a/new-api-details/tech-stack/gwt.json +++ b/new-api-details/tech-stack/gwt.json @@ -1,13 +1,13 @@ { "slug": "gwt", "name": "gwt", - "published_at": "2026-01-24T21:33:12.367Z", + "published_at": "2026-02-19T13:35:59.820Z", "metrics": { "org_count": 3, "project_count": 76, "avg_projects_per_org": 25.3, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -35,14 +36,15 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-genome-informatics.webp", "category": "Science and medicine", "total_projects": 28, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, 2020, 2021, 2022, - 2023 + 2023, + 2026 ] }, { @@ -109,11 +111,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.367Z" + "generated_at": "2026-02-19T13:35:59.820Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/hadoop.json b/new-api-details/tech-stack/hadoop.json index 208d1326..787d0d0b 100644 --- a/new-api-details/tech-stack/hadoop.json +++ b/new-api-details/tech-stack/hadoop.json @@ -1,13 +1,13 @@ { "slug": "hadoop", "name": "hadoop", - "published_at": "2026-01-24T21:33:12.132Z", + "published_at": "2026-02-19T13:35:59.484Z", "metrics": { "org_count": 5, "project_count": 213, "avg_projects_per_org": 42.6, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -43,7 +43,8 @@ 2021, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -137,11 +138,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.132Z" + "generated_at": "2026-02-19T13:35:59.484Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/hardware-acceleration.json b/new-api-details/tech-stack/hardware-acceleration.json index 0005403c..bf3c419f 100644 --- a/new-api-details/tech-stack/hardware-acceleration.json +++ b/new-api-details/tech-stack/hardware-acceleration.json @@ -1,7 +1,7 @@ { "slug": "hardware-acceleration", "name": "hardware acceleration", - "published_at": "2026-01-24T21:33:12.121Z", + "published_at": "2026-02-19T13:35:59.470Z", "metrics": { "org_count": 2, "project_count": 56, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/beagleboardorg.webp", "category": "Science and medicine", "total_projects": 44, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -98,11 +98,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.121Z" + "generated_at": "2026-02-19T13:35:59.470Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/hardware.json b/new-api-details/tech-stack/hardware.json index c9cf3b27..1fafea74 100644 --- a/new-api-details/tech-stack/hardware.json +++ b/new-api-details/tech-stack/hardware.json @@ -1,7 +1,7 @@ { "slug": "hardware", "name": "Hardware", - "published_at": "2026-01-24T21:33:12.381Z", + "published_at": "2026-02-19T13:35:59.818Z", "metrics": { "org_count": 1, "project_count": 12, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/micro-electronics-research-lab-uitu.webp", "category": "Other", "total_projects": 12, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2023, @@ -76,11 +76,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.381Z" + "generated_at": "2026-02-19T13:35:59.818Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/haskell.json b/new-api-details/tech-stack/haskell.json index 77a9b4e9..82bd1296 100644 --- a/new-api-details/tech-stack/haskell.json +++ b/new-api-details/tech-stack/haskell.json @@ -1,13 +1,13 @@ { "slug": "haskell", "name": "haskell", - "published_at": "2026-01-24T21:33:12.235Z", + "published_at": "2026-02-19T13:35:59.564Z", "metrics": { "org_count": 6, "project_count": 156, "avg_projects_per_org": 26, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -24,7 +24,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] }, { @@ -143,11 +144,16 @@ "year": 2025, "org_count": 1, "project_count": 4 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.235Z" + "generated_at": "2026-02-19T13:35:59.564Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/hdf5.json b/new-api-details/tech-stack/hdf5.json index 3e6a6b8e..c0775c44 100644 --- a/new-api-details/tech-stack/hdf5.json +++ b/new-api-details/tech-stack/hdf5.json @@ -1,7 +1,7 @@ { "slug": "hdf5", "name": "HDF5", - "published_at": "2026-01-24T21:33:12.406Z", + "published_at": "2026-02-19T13:35:59.847Z", "metrics": { "org_count": 1, "project_count": 3, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.406Z" + "generated_at": "2026-02-19T13:35:59.847Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/helm.json b/new-api-details/tech-stack/helm.json index 7edf65bb..9004a7fd 100644 --- a/new-api-details/tech-stack/helm.json +++ b/new-api-details/tech-stack/helm.json @@ -1,7 +1,7 @@ { "slug": "helm", "name": "Helm", - "published_at": "2026-01-24T21:33:12.342Z", + "published_at": "2026-02-19T13:35:59.767Z", "metrics": { "org_count": 1, "project_count": 3, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.342Z" + "generated_at": "2026-02-19T13:35:59.767Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/hg.json b/new-api-details/tech-stack/hg.json index b898b4e0..24405a72 100644 --- a/new-api-details/tech-stack/hg.json +++ b/new-api-details/tech-stack/hg.json @@ -1,13 +1,13 @@ { "slug": "hg", "name": "hg", - "published_at": "2026-01-24T21:33:12.268Z", + "published_at": "2026-02-19T13:35:59.680Z", "metrics": { "org_count": 1, "project_count": 23, "avg_projects_per_org": 23, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -82,11 +83,16 @@ "year": 2025, "org_count": 1, "project_count": 2 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.268Z" + "generated_at": "2026-02-19T13:35:59.680Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/hibernate.json b/new-api-details/tech-stack/hibernate.json index 2db5a6c3..9b51ad27 100644 --- a/new-api-details/tech-stack/hibernate.json +++ b/new-api-details/tech-stack/hibernate.json @@ -1,13 +1,13 @@ { "slug": "hibernate", "name": "hibernate", - "published_at": "2026-01-24T21:33:12.415Z", + "published_at": "2026-02-19T13:35:59.864Z", "metrics": { "org_count": 1, "project_count": 94, "avg_projects_per_org": 94, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -82,11 +83,16 @@ "year": 2025, "org_count": 1, "project_count": 8 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.415Z" + "generated_at": "2026-02-19T13:35:59.864Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/hid.json b/new-api-details/tech-stack/hid.json index 74028356..d1d3fd1d 100644 --- a/new-api-details/tech-stack/hid.json +++ b/new-api-details/tech-stack/hid.json @@ -1,13 +1,13 @@ { "slug": "hid", "name": "hid", - "published_at": "2026-01-24T21:33:12.384Z", + "published_at": "2026-02-19T13:35:59.823Z", "metrics": { "org_count": 1, "project_count": 16, "avg_projects_per_org": 16, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -24,7 +24,8 @@ 2020, 2022, 2024, - 2025 + 2025, + 2026 ] } ], @@ -79,11 +80,16 @@ "year": 2025, "org_count": 1, "project_count": 3 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.384Z" + "generated_at": "2026-02-19T13:35:59.823Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/hidden-markov-models.json b/new-api-details/tech-stack/hidden-markov-models.json index 741dd5ac..5edfb5b2 100644 --- a/new-api-details/tech-stack/hidden-markov-models.json +++ b/new-api-details/tech-stack/hidden-markov-models.json @@ -1,7 +1,7 @@ { "slug": "hidden-markov-models", "name": "hidden markov models", - "published_at": "2026-01-24T21:33:12.160Z", + "published_at": "2026-02-19T13:35:59.555Z", "metrics": { "org_count": 1, "project_count": 11, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.160Z" + "generated_at": "2026-02-19T13:35:59.555Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/high-performance-computing.json b/new-api-details/tech-stack/high-performance-computing.json index 4f05a6ef..f8dfe889 100644 --- a/new-api-details/tech-stack/high-performance-computing.json +++ b/new-api-details/tech-stack/high-performance-computing.json @@ -1,13 +1,13 @@ { "slug": "high-performance-computing", "name": "high performance computing", - "published_at": "2026-01-24T21:33:12.181Z", + "published_at": "2026-02-19T13:35:59.533Z", "metrics": { "org_count": 4, "project_count": 146, "avg_projects_per_org": 36.5, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -45,7 +45,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -126,11 +127,16 @@ "year": 2025, "org_count": 1, "project_count": 6 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.181Z" + "generated_at": "2026-02-19T13:35:59.533Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/high-resolution-timers.json b/new-api-details/tech-stack/high-resolution-timers.json index 392c13d8..fccbbae2 100644 --- a/new-api-details/tech-stack/high-resolution-timers.json +++ b/new-api-details/tech-stack/high-resolution-timers.json @@ -1,7 +1,7 @@ { "slug": "high-resolution-timers", "name": "high-resolution timers", - "published_at": "2026-01-24T21:33:12.173Z", + "published_at": "2026-02-19T13:35:59.513Z", "metrics": { "org_count": 1, "project_count": 3, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.173Z" + "generated_at": "2026-02-19T13:35:59.514Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/hl7-fhir.json b/new-api-details/tech-stack/hl7-fhir.json index c423ea88..6494c60d 100644 --- a/new-api-details/tech-stack/hl7-fhir.json +++ b/new-api-details/tech-stack/hl7-fhir.json @@ -1,13 +1,13 @@ { "slug": "hl7-fhir", "name": "hl7 fhir", - "published_at": "2026-01-24T21:33:12.285Z", + "published_at": "2026-02-19T13:35:59.671Z", "metrics": { "org_count": 1, "project_count": 45, "avg_projects_per_org": 45, "first_year_used": 2016, - "latest_year_used": 2024 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/global-alliance-for-genomics-and-health.webp", "category": "Science and medicine", "total_projects": 45, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -26,7 +26,8 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.285Z" + "generated_at": "2026-02-19T13:35:59.671Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/homomorphic-encryption.json b/new-api-details/tech-stack/homomorphic-encryption.json index 5551a0c0..553ddf35 100644 --- a/new-api-details/tech-stack/homomorphic-encryption.json +++ b/new-api-details/tech-stack/homomorphic-encryption.json @@ -1,7 +1,7 @@ { "slug": "homomorphic-encryption", "name": "homomorphic encryption", - "published_at": "2026-01-24T21:33:12.417Z", + "published_at": "2026-02-19T13:35:59.858Z", "metrics": { "org_count": 1, "project_count": 9, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.417Z" + "generated_at": "2026-02-19T13:35:59.858Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/honeypot.json b/new-api-details/tech-stack/honeypot.json index e22beed6..3c79f730 100644 --- a/new-api-details/tech-stack/honeypot.json +++ b/new-api-details/tech-stack/honeypot.json @@ -1,13 +1,13 @@ { "slug": "honeypot", "name": "honeypot", - "published_at": "2026-01-24T21:33:12.503Z", + "published_at": "2026-02-19T13:35:59.966Z", "metrics": { "org_count": 1, "project_count": 101, "avg_projects_per_org": 101, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -82,11 +83,16 @@ "year": 2025, "org_count": 1, "project_count": 9 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.503Z" + "generated_at": "2026-02-19T13:35:59.966Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/honeypots.json b/new-api-details/tech-stack/honeypots.json index 5bd0e47d..aaf36c1a 100644 --- a/new-api-details/tech-stack/honeypots.json +++ b/new-api-details/tech-stack/honeypots.json @@ -1,13 +1,13 @@ { "slug": "honeypots", "name": "honeypots", - "published_at": "2026-01-24T21:33:12.502Z", + "published_at": "2026-02-19T13:35:59.965Z", "metrics": { "org_count": 1, "project_count": 101, "avg_projects_per_org": 101, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -82,11 +83,16 @@ "year": 2025, "org_count": 1, "project_count": 9 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.502Z" + "generated_at": "2026-02-19T13:35:59.965Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/hpc.json b/new-api-details/tech-stack/hpc.json index b7cc4d69..24e1f75c 100644 --- a/new-api-details/tech-stack/hpc.json +++ b/new-api-details/tech-stack/hpc.json @@ -1,13 +1,13 @@ { "slug": "hpc", "name": "hpc", - "published_at": "2026-01-24T21:33:12.488Z", + "published_at": "2026-02-19T13:35:59.949Z", "metrics": { "org_count": 1, "project_count": 38, "avg_projects_per_org": 38, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 6 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.488Z" + "generated_at": "2026-02-19T13:35:59.949Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/hpx.json b/new-api-details/tech-stack/hpx.json index 6b7b64db..f90b9513 100644 --- a/new-api-details/tech-stack/hpx.json +++ b/new-api-details/tech-stack/hpx.json @@ -1,13 +1,13 @@ { "slug": "hpx", "name": "hpx", - "published_at": "2026-01-24T21:33:12.487Z", + "published_at": "2026-02-19T13:35:59.948Z", "metrics": { "org_count": 1, "project_count": 38, "avg_projects_per_org": 38, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 6 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.487Z" + "generated_at": "2026-02-19T13:35:59.948Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/htc-vive.json b/new-api-details/tech-stack/htc-vive.json index 1ee1d12d..746d35d6 100644 --- a/new-api-details/tech-stack/htc-vive.json +++ b/new-api-details/tech-stack/htc-vive.json @@ -1,7 +1,7 @@ { "slug": "htc-vive", "name": "htc vive", - "published_at": "2026-01-24T21:33:12.308Z", + "published_at": "2026-02-19T13:35:59.720Z", "metrics": { "org_count": 1, "project_count": 1, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.308Z" + "generated_at": "2026-02-19T13:35:59.720Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/html.json b/new-api-details/tech-stack/html.json index cb6978b7..b9a7052e 100644 --- a/new-api-details/tech-stack/html.json +++ b/new-api-details/tech-stack/html.json @@ -1,13 +1,13 @@ { "slug": "html", "name": "html", - "published_at": "2026-01-24T21:33:12.061Z", + "published_at": "2026-02-19T13:35:59.421Z", "metrics": { - "org_count": 36, + "org_count": 38, "project_count": 1481, - "avg_projects_per_org": 41.1, + "avg_projects_per_org": 39, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -46,7 +47,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -65,7 +67,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -85,7 +88,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -105,7 +109,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -114,7 +119,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/wikimedia-foundation.webp", "category": "Web", "total_projects": 85, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -124,7 +129,8 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -143,7 +149,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -167,7 +174,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/freifunk.webp", "category": "Operating systems", "total_projects": 74, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -184,7 +191,7 @@ "slug": "open-technologies-alliance-gfoss", "name": "Open Technologies Alliance - GFOSS", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-technologies-alliance-gfoss.webp", - "category": "Development tools", + "category": "Science and medicine", "total_projects": 70, "is_currently_active": true, "active_years": [ @@ -195,7 +202,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -214,7 +222,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -252,7 +261,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -288,7 +298,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -305,7 +316,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -322,7 +334,8 @@ 2019, 2021, 2022, - 2025 + 2025, + 2026 ] }, { @@ -340,7 +353,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -349,13 +363,14 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cuneiform-digital-library-initiative-cdli.webp", "category": "Science and medicine", "total_projects": 30, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2018, 2019, 2020, 2021, - 2022 + 2022, + 2026 ] }, { @@ -364,14 +379,15 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-genome-informatics.webp", "category": "Science and medicine", "total_projects": 28, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, 2020, 2021, 2022, - 2023 + 2023, + 2026 ] }, { @@ -380,7 +396,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/fedora-project.webp", "category": "Operating systems", "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -396,7 +412,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/plone-foundation.webp", "category": "Web", "total_projects": 26, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -426,14 +442,15 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/submitty.webp", "category": "End user applications", "total_projects": 19, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2018, 2019, 2020, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -486,7 +503,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -585,6 +603,28 @@ "active_years": [ 2018 ] + }, + { + "slug": "learning-unlimited", + "name": "Learning Unlimited", + "logo_url": "https://summerofcode.withgoogle.com/media/org/learning-unlimited/prqi7cnmji8guahm-360.png", + "category": "End user applications", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + }, + { + "slug": "measurement-lab", + "name": "Measurement Lab", + "logo_url": "https://summerofcode.withgoogle.com/media/org/measurement-lab/0sttrnvo03uejp1z.png", + "category": "Data", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] } ], "charts": { @@ -638,11 +678,16 @@ "year": 2025, "org_count": 17, "project_count": 128 + }, + { + "year": 2026, + "org_count": 20, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.061Z" + "generated_at": "2026-02-19T13:35:59.421Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/html5-canvas.json b/new-api-details/tech-stack/html5-canvas.json index 04701adc..1f45703d 100644 --- a/new-api-details/tech-stack/html5-canvas.json +++ b/new-api-details/tech-stack/html5-canvas.json @@ -1,13 +1,13 @@ { "slug": "html5-canvas", "name": "html5 canvas", - "published_at": "2026-01-24T21:33:12.185Z", + "published_at": "2026-02-19T13:35:59.541Z", "metrics": { "org_count": 1, "project_count": 32, "avg_projects_per_org": 32, "first_year_used": 2019, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -24,7 +24,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -79,11 +80,16 @@ "year": 2025, "org_count": 1, "project_count": 6 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.185Z" + "generated_at": "2026-02-19T13:35:59.541Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/html5-css3.json b/new-api-details/tech-stack/html5-css3.json index fc7100c5..befeb521 100644 --- a/new-api-details/tech-stack/html5-css3.json +++ b/new-api-details/tech-stack/html5-css3.json @@ -1,13 +1,13 @@ { "slug": "html5-css3", "name": "html5/css3", - "published_at": "2026-01-24T21:33:12.335Z", + "published_at": "2026-02-19T13:35:59.752Z", "metrics": { "org_count": 5, "project_count": 70, "avg_projects_per_org": 14, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -24,7 +24,8 @@ 2019, 2021, 2022, - 2025 + 2025, + 2026 ] }, { @@ -56,7 +57,8 @@ 2019, 2020, 2024, - 2025 + 2025, + 2026 ] }, { @@ -137,11 +139,16 @@ "year": 2025, "org_count": 2, "project_count": 5 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.335Z" + "generated_at": "2026-02-19T13:35:59.752Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/html5.json b/new-api-details/tech-stack/html5.json index ffd004be..225a20bb 100644 --- a/new-api-details/tech-stack/html5.json +++ b/new-api-details/tech-stack/html5.json @@ -1,13 +1,13 @@ { "slug": "html5", "name": "html5", - "published_at": "2026-01-24T21:33:12.186Z", + "published_at": "2026-02-19T13:35:59.542Z", "metrics": { "org_count": 11, "project_count": 401, "avg_projects_per_org": 36.5, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -47,7 +48,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -81,7 +83,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -98,7 +101,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -107,7 +111,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/fedora-project.webp", "category": "Operating systems", "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -242,11 +246,16 @@ "year": 2025, "org_count": 5, "project_count": 30 + }, + { + "year": 2026, + "org_count": 4, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.186Z" + "generated_at": "2026-02-19T13:35:59.543Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/htop.json b/new-api-details/tech-stack/htop.json index 0395d9a8..bcfed37b 100644 --- a/new-api-details/tech-stack/htop.json +++ b/new-api-details/tech-stack/htop.json @@ -1,7 +1,7 @@ { "slug": "htop", "name": "htop", - "published_at": "2026-01-24T21:33:12.428Z", + "published_at": "2026-02-19T13:35:59.882Z", "metrics": { "org_count": 1, "project_count": 19, @@ -78,11 +78,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.428Z" + "generated_at": "2026-02-19T13:35:59.882Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/http-2.json b/new-api-details/tech-stack/http-2.json index 4e231bd3..c274a17e 100644 --- a/new-api-details/tech-stack/http-2.json +++ b/new-api-details/tech-stack/http-2.json @@ -1,7 +1,7 @@ { "slug": "http-2", "name": "http/2", - "published_at": "2026-01-24T21:33:12.553Z", + "published_at": "2026-02-19T13:35:59.702Z", "metrics": { "org_count": 1, "project_count": 3, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.553Z" + "generated_at": "2026-02-19T13:35:59.702Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/huggingface.json b/new-api-details/tech-stack/huggingface.json index ed3c1aa8..66b25e4d 100644 --- a/new-api-details/tech-stack/huggingface.json +++ b/new-api-details/tech-stack/huggingface.json @@ -1,13 +1,13 @@ { "slug": "huggingface", "name": "HuggingFace", - "published_at": "2026-01-24T21:33:12.214Z", + "published_at": "2026-02-19T13:35:59.598Z", "metrics": { "org_count": 1, "project_count": 14, "avg_projects_per_org": 14, "first_year_used": 2024, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -19,7 +19,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -74,11 +75,16 @@ "year": 2025, "org_count": 1, "project_count": 6 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.214Z" + "generated_at": "2026-02-19T13:35:59.598Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/hydra.json b/new-api-details/tech-stack/hydra.json index 0be3742f..828d902b 100644 --- a/new-api-details/tech-stack/hydra.json +++ b/new-api-details/tech-stack/hydra.json @@ -1,7 +1,7 @@ { "slug": "hydra", "name": "hydra", - "published_at": "2026-01-24T21:33:12.299Z", + "published_at": "2026-02-19T13:35:59.708Z", "metrics": { "org_count": 1, "project_count": 8, @@ -76,11 +76,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.299Z" + "generated_at": "2026-02-19T13:35:59.708Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/hyperledger-aries.json b/new-api-details/tech-stack/hyperledger-aries.json index ee870efd..4ea0efa8 100644 --- a/new-api-details/tech-stack/hyperledger-aries.json +++ b/new-api-details/tech-stack/hyperledger-aries.json @@ -1,7 +1,7 @@ { "slug": "hyperledger-aries", "name": "hyperledger aries", - "published_at": "2026-01-24T21:33:12.419Z", + "published_at": "2026-02-19T13:35:59.862Z", "metrics": { "org_count": 1, "project_count": 9, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.419Z" + "generated_at": "2026-02-19T13:35:59.862Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/hypervisor.json b/new-api-details/tech-stack/hypervisor.json index 74bcccd6..472bbddb 100644 --- a/new-api-details/tech-stack/hypervisor.json +++ b/new-api-details/tech-stack/hypervisor.json @@ -1,7 +1,7 @@ { "slug": "hypervisor", "name": "hypervisor", - "published_at": "2026-01-24T21:33:12.563Z", + "published_at": "2026-02-19T13:35:59.797Z", "metrics": { "org_count": 1, "project_count": 19, @@ -80,11 +80,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.563Z" + "generated_at": "2026-02-19T13:35:59.797Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/i386.json b/new-api-details/tech-stack/i386.json index e0546190..ffaf5547 100644 --- a/new-api-details/tech-stack/i386.json +++ b/new-api-details/tech-stack/i386.json @@ -1,13 +1,13 @@ { "slug": "i386", "name": "i386", - "published_at": "2026-01-24T21:33:12.345Z", + "published_at": "2026-02-19T13:35:59.771Z", "metrics": { "org_count": 1, "project_count": 6, "avg_projects_per_org": 6, "first_year_used": 2016, - "latest_year_used": 2024 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,10 +16,11 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kolibrios-project-team.webp", "category": "Operating systems", "total_projects": 6, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, - 2024 + 2024, + 2026 ] } ], @@ -74,11 +75,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.345Z" + "generated_at": "2026-02-19T13:35:59.771Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/i586.json b/new-api-details/tech-stack/i586.json index b2dd9078..f3b64ed4 100644 --- a/new-api-details/tech-stack/i586.json +++ b/new-api-details/tech-stack/i586.json @@ -1,13 +1,13 @@ { "slug": "i586", "name": "i586", - "published_at": "2026-01-24T21:33:12.345Z", + "published_at": "2026-02-19T13:35:59.771Z", "metrics": { "org_count": 1, "project_count": 6, "avg_projects_per_org": 6, "first_year_used": 2016, - "latest_year_used": 2024 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,10 +16,11 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kolibrios-project-team.webp", "category": "Operating systems", "total_projects": 6, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, - 2024 + 2024, + 2026 ] } ], @@ -74,11 +75,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.345Z" + "generated_at": "2026-02-19T13:35:59.771Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/iaccessible2.json b/new-api-details/tech-stack/iaccessible2.json index 61b11fd0..95abdcdf 100644 --- a/new-api-details/tech-stack/iaccessible2.json +++ b/new-api-details/tech-stack/iaccessible2.json @@ -1,7 +1,7 @@ { "slug": "iaccessible2", "name": "iaccessible2", - "published_at": "2026-01-24T21:33:12.392Z", + "published_at": "2026-02-19T13:35:59.841Z", "metrics": { "org_count": 1, "project_count": 2, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.392Z" + "generated_at": "2026-02-19T13:35:59.841Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/ice-zeroc.json b/new-api-details/tech-stack/ice-zeroc.json index 6bb3b60f..4abda800 100644 --- a/new-api-details/tech-stack/ice-zeroc.json +++ b/new-api-details/tech-stack/ice-zeroc.json @@ -1,7 +1,7 @@ { "slug": "ice-zeroc", "name": "ice - zeroc", - "published_at": "2026-01-24T21:33:12.463Z", + "published_at": "2026-02-19T13:35:59.921Z", "metrics": { "org_count": 1, "project_count": 57, @@ -79,11 +79,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.463Z" + "generated_at": "2026-02-19T13:35:59.921Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/ida-pro.json b/new-api-details/tech-stack/ida-pro.json index 08948348..e0f25c39 100644 --- a/new-api-details/tech-stack/ida-pro.json +++ b/new-api-details/tech-stack/ida-pro.json @@ -1,13 +1,13 @@ { "slug": "ida-pro", "name": "ida-pro", - "published_at": "2026-01-24T21:33:12.240Z", + "published_at": "2026-02-19T13:35:59.633Z", "metrics": { "org_count": 1, "project_count": 7, "avg_projects_per_org": 7, "first_year_used": 2023, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -20,7 +20,8 @@ "active_years": [ 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -75,11 +76,16 @@ "year": 2025, "org_count": 1, "project_count": 2 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.240Z" + "generated_at": "2026-02-19T13:35:59.633Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/ide.json b/new-api-details/tech-stack/ide.json index 21426ad8..0047aa86 100644 --- a/new-api-details/tech-stack/ide.json +++ b/new-api-details/tech-stack/ide.json @@ -1,13 +1,13 @@ { "slug": "ide", "name": "ide", - "published_at": "2026-01-24T21:33:12.226Z", + "published_at": "2026-02-19T13:35:59.614Z", "metrics": { "org_count": 3, "project_count": 152, "avg_projects_per_org": 50.7, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,16 +26,17 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "jboss-community", "name": "JBoss Community", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jboss-community.webp", - "category": "Data", + "category": "Web", "total_projects": 52, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -43,7 +44,8 @@ 2019, 2020, 2021, - 2022 + 2022, + 2026 ] }, { @@ -58,7 +60,8 @@ 2019, 2021, 2023, - 2025 + 2025, + 2026 ] } ], @@ -113,11 +116,16 @@ "year": 2025, "org_count": 2, "project_count": 15 + }, + { + "year": 2026, + "org_count": 3, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.226Z" + "generated_at": "2026-02-19T13:35:59.614Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/ignition.json b/new-api-details/tech-stack/ignition.json index 266729c3..496d1f55 100644 --- a/new-api-details/tech-stack/ignition.json +++ b/new-api-details/tech-stack/ignition.json @@ -1,13 +1,13 @@ { "slug": "ignition", "name": "ignition", - "published_at": "2026-01-24T21:33:12.409Z", + "published_at": "2026-02-19T13:35:59.850Z", "metrics": { "org_count": 1, "project_count": 46, "avg_projects_per_org": 46, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 9 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.409Z" + "generated_at": "2026-02-19T13:35:59.850Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/illumos.json b/new-api-details/tech-stack/illumos.json index 5fa0cf06..1442723c 100644 --- a/new-api-details/tech-stack/illumos.json +++ b/new-api-details/tech-stack/illumos.json @@ -1,7 +1,7 @@ { "slug": "illumos", "name": "illumos", - "published_at": "2026-01-24T21:33:12.555Z", + "published_at": "2026-02-19T13:35:59.715Z", "metrics": { "org_count": 1, "project_count": 0, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.555Z" + "generated_at": "2026-02-19T13:35:59.715Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/imaging.json b/new-api-details/tech-stack/imaging.json index 6ca111ce..15fb2aee 100644 --- a/new-api-details/tech-stack/imaging.json +++ b/new-api-details/tech-stack/imaging.json @@ -1,7 +1,7 @@ { "slug": "imaging", "name": "Imaging", - "published_at": "2026-01-24T21:33:12.318Z", + "published_at": "2026-02-19T13:35:59.734Z", "metrics": { "org_count": 1, "project_count": 12, @@ -78,11 +78,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.318Z" + "generated_at": "2026-02-19T13:35:59.734Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/index.json b/new-api-details/tech-stack/index.json index 9a926f72..2ffd92d0 100644 --- a/new-api-details/tech-stack/index.json +++ b/new-api-details/tech-stack/index.json @@ -1,57 +1,57 @@ { "slug": "tech-stack-index", - "published_at": "2026-01-24T21:33:12.586Z", + "published_at": "2026-02-19T13:36:00.123Z", "metrics": { - "total_technologies": 807, - "total_organizations": 504 + "total_technologies": 825, + "total_organizations": 522 }, "all_techs": [ { "name": "python", "slug": "python", - "org_count": 277, - "project_count": 7616 + "org_count": 293, + "project_count": 7705 }, { "name": "javascript", "slug": "javascript", - "org_count": 220, + "org_count": 225, "project_count": 6654 }, { "name": "c++", "slug": "cpp", - "org_count": 173, + "org_count": 178, "project_count": 6024 }, { "name": "c", "slug": "c", - "org_count": 167, + "org_count": 170, "project_count": 5815 }, { "name": "java", "slug": "java", - "org_count": 116, + "org_count": 117, "project_count": 3352 }, { "name": "android", "slug": "android", - "org_count": 52, + "org_count": 53, "project_count": 2061 }, { "name": "react", "slug": "react", - "org_count": 52, - "project_count": 1398 + "org_count": 53, + "project_count": 1401 }, { "name": "rust", "slug": "rust", - "org_count": 47, + "org_count": 49, "project_count": 1407 }, { @@ -60,24 +60,30 @@ "org_count": 40, "project_count": 1102 }, + { + "name": "html", + "slug": "html", + "org_count": 38, + "project_count": 1481 + }, { "name": "golang", "slug": "golang", "org_count": 37, "project_count": 828 }, - { - "name": "html", - "slug": "html", - "org_count": 36, - "project_count": 1481 - }, { "name": "machine learning", "slug": "machine-learning", "org_count": 36, "project_count": 1652 }, + { + "name": "css", + "slug": "css", + "org_count": 36, + "project_count": 1294 + }, { "name": "postgresql", "slug": "postgresql", @@ -90,18 +96,18 @@ "org_count": 35, "project_count": 991 }, - { - "name": "css", - "slug": "css", - "org_count": 33, - "project_count": 1294 - }, { "name": "mysql", "slug": "mysql", "org_count": 33, "project_count": 845 }, + { + "name": "typescript", + "slug": "typescript", + "org_count": 33, + "project_count": 825 + }, { "name": "opengl", "slug": "opengl", @@ -109,10 +115,10 @@ "project_count": 994 }, { - "name": "typescript", - "slug": "typescript", + "name": "go", + "slug": "go", "org_count": 31, - "project_count": 822 + "project_count": 911 }, { "name": "php", @@ -120,36 +126,36 @@ "org_count": 31, "project_count": 1305 }, - { - "name": "go", - "slug": "go", - "org_count": 30, - "project_count": 911 - }, - { - "name": "ruby", - "slug": "ruby", - "org_count": 28, - "project_count": 969 - }, { "name": "qt", "slug": "qt", - "org_count": 27, + "org_count": 28, "project_count": 772 }, { "name": "docker", "slug": "docker", - "org_count": 27, + "org_count": 28, "project_count": 682 }, + { + "name": "ruby", + "slug": "ruby", + "org_count": 28, + "project_count": 969 + }, { "name": "django", "slug": "django", - "org_count": 24, + "org_count": 26, "project_count": 713 }, + { + "name": "kubernetes", + "slug": "kubernetes", + "org_count": 23, + "project_count": 444 + }, { "name": "python 3", "slug": "python-3", @@ -162,12 +168,6 @@ "org_count": 21, "project_count": 443 }, - { - "name": "kubernetes", - "slug": "kubernetes", - "org_count": 21, - "project_count": 444 - }, { "name": "tensorflow", "slug": "tensorflow", @@ -183,7 +183,7 @@ { "name": "sql", "slug": "sql", - "org_count": 17, + "org_count": 18, "project_count": 376 }, { @@ -204,6 +204,12 @@ "org_count": 15, "project_count": 333 }, + { + "name": "ai", + "slug": "ai", + "org_count": 15, + "project_count": 585 + }, { "name": "perl", "slug": "perl", @@ -211,34 +217,34 @@ "project_count": 546 }, { - "name": "lua", - "slug": "lua", - "org_count": 14, - "project_count": 286 + "name": "pytorch", + "slug": "pytorch", + "org_count": 15, + "project_count": 184 }, { "name": "llvm", "slug": "llvm", - "org_count": 13, - "project_count": 476 - }, - { - "name": "kotlin", - "slug": "kotlin", - "org_count": 13, - "project_count": 508 + "org_count": 14, + "project_count": 480 }, { "name": "rest", "slug": "rest", - "org_count": 13, + "org_count": 14, "project_count": 333 }, { - "name": "ai", - "slug": "ai", + "name": "lua", + "slug": "lua", + "org_count": 14, + "project_count": 286 + }, + { + "name": "kotlin", + "slug": "kotlin", "org_count": 13, - "project_count": 547 + "project_count": 508 }, { "name": "gtk", @@ -264,12 +270,6 @@ "org_count": 12, "project_count": 390 }, - { - "name": "pytorch", - "slug": "pytorch", - "org_count": 12, - "project_count": 137 - }, { "name": "opencv", "slug": "opencv", @@ -306,6 +306,12 @@ "org_count": 10, "project_count": 744 }, + { + "name": "shell script", + "slug": "shell-script", + "org_count": 10, + "project_count": 326 + }, { "name": "scala", "slug": "scala", @@ -313,10 +319,10 @@ "project_count": 257 }, { - "name": "shell script", - "slug": "shell-script", + "name": "linux kernel", + "slug": "linux-kernel", "org_count": 10, - "project_count": 326 + "project_count": 144 }, { "name": "deep learning", @@ -325,10 +331,10 @@ "project_count": 370 }, { - "name": "flutter", - "slug": "flutter", - "org_count": 9, - "project_count": 562 + "name": "numpy", + "slug": "numpy", + "org_count": 10, + "project_count": 212 }, { "name": "artificial intelligence", @@ -342,12 +348,24 @@ "org_count": 9, "project_count": 345 }, + { + "name": "jupyter", + "slug": "jupyter", + "org_count": 9, + "project_count": 384 + }, { "name": "vulkan", "slug": "vulkan", "org_count": 9, "project_count": 134 }, + { + "name": "flutter", + "slug": "flutter", + "org_count": 9, + "project_count": 562 + }, { "name": "elasticsearch", "slug": "elasticsearch", @@ -355,10 +373,10 @@ "project_count": 155 }, { - "name": "jupyter", - "slug": "jupyter", + "name": "shell", + "slug": "shell", "org_count": 9, - "project_count": 384 + "project_count": 227 }, { "name": "mongodb", @@ -367,10 +385,10 @@ "project_count": 126 }, { - "name": "numpy", - "slug": "numpy", + "name": "cloud", + "slug": "cloud", "org_count": 9, - "project_count": 212 + "project_count": 474 }, { "name": "cython", @@ -384,24 +402,6 @@ "org_count": 8, "project_count": 536 }, - { - "name": "linux kernel", - "slug": "linux-kernel", - "org_count": 8, - "project_count": 135 - }, - { - "name": "shell", - "slug": "shell", - "org_count": 8, - "project_count": 227 - }, - { - "name": "cloud", - "slug": "cloud", - "org_count": 8, - "project_count": 422 - }, { "name": "jvm", "slug": "jvm", @@ -462,12 +462,6 @@ "org_count": 7, "project_count": 160 }, - { - "name": "grpc", - "slug": "grpc", - "org_count": 6, - "project_count": 141 - }, { "name": "postgres", "slug": "postgres", @@ -480,6 +474,12 @@ "org_count": 6, "project_count": 290 }, + { + "name": "grpc", + "slug": "grpc", + "org_count": 6, + "project_count": 141 + }, { "name": "c++17", "slug": "c-17", @@ -498,6 +498,12 @@ "org_count": 6, "project_count": 189 }, + { + "name": "verilog", + "slug": "verilog", + "org_count": 6, + "project_count": 101 + }, { "name": "data analysis", "slug": "data-analysis", @@ -510,18 +516,18 @@ "org_count": 6, "project_count": 156 }, - { - "name": "asm", - "slug": "asm", - "org_count": 6, - "project_count": 166 - }, { "name": "x86", "slug": "x86", "org_count": 6, "project_count": 76 }, + { + "name": "asm", + "slug": "asm", + "org_count": 6, + "project_count": 166 + }, { "name": "kvm", "slug": "kvm", @@ -540,6 +546,12 @@ "org_count": 6, "project_count": 244 }, + { + "name": "gis", + "slug": "gis", + "org_count": 6, + "project_count": 93 + }, { "name": "qt5", "slug": "qt5", @@ -564,12 +576,6 @@ "org_count": 5, "project_count": 87 }, - { - "name": "lisp", - "slug": "lisp", - "org_count": 5, - "project_count": 99 - }, { "name": "sqlite", "slug": "sqlite", @@ -577,10 +583,10 @@ "project_count": 324 }, { - "name": "opencl", - "slug": "opencl", + "name": "lisp", + "slug": "lisp", "org_count": 5, - "project_count": 212 + "project_count": 99 }, { "name": "xmpp", @@ -600,6 +606,12 @@ "org_count": 5, "project_count": 213 }, + { + "name": "opencl", + "slug": "opencl", + "org_count": 5, + "project_count": 212 + }, { "name": "c++14", "slug": "c-14", @@ -612,18 +624,6 @@ "org_count": 5, "project_count": 131 }, - { - "name": "prometheus", - "slug": "prometheus", - "org_count": 5, - "project_count": 127 - }, - { - "name": "verilog", - "slug": "verilog", - "org_count": 5, - "project_count": 101 - }, { "name": "gpu", "slug": "gpu", @@ -636,6 +636,18 @@ "org_count": 5, "project_count": 220 }, + { + "name": "prometheus", + "slug": "prometheus", + "org_count": 5, + "project_count": 127 + }, + { + "name": "kernel", + "slug": "kernel", + "org_count": 5, + "project_count": 120 + }, { "name": "make", "slug": "make", @@ -666,18 +678,6 @@ "org_count": 5, "project_count": 70 }, - { - "name": "gis", - "slug": "gis", - "org_count": 5, - "project_count": 86 - }, - { - "name": "qemu", - "slug": "qemu", - "org_count": 4, - "project_count": 41 - }, { "name": "compiler", "slug": "compiler", @@ -691,9 +691,15 @@ "project_count": 114 }, { - "name": "gradle", - "slug": "gradle", - "org_count": 4, + "name": "qemu", + "slug": "qemu", + "org_count": 4, + "project_count": 41 + }, + { + "name": "gradle", + "slug": "gradle", + "org_count": 4, "project_count": 75 }, { @@ -702,12 +708,6 @@ "org_count": 4, "project_count": 66 }, - { - "name": "scripting", - "slug": "scripting", - "org_count": 4, - "project_count": 93 - }, { "name": "windows", "slug": "windows", @@ -733,16 +733,16 @@ "project_count": 58 }, { - "name": "clang", - "slug": "clang", + "name": "scripting", + "slug": "scripting", "org_count": 4, - "project_count": 210 + "project_count": 93 }, { - "name": "kernel", - "slug": "kernel", + "name": "clang", + "slug": "clang", "org_count": 4, - "project_count": 110 + "project_count": 210 }, { "name": "jenkins", @@ -780,12 +780,6 @@ "org_count": 4, "project_count": 129 }, - { - "name": "grafana", - "slug": "grafana", - "org_count": 4, - "project_count": 29 - }, { "name": "ansible", "slug": "ansible", @@ -793,10 +787,10 @@ "project_count": 59 }, { - "name": "posix", - "slug": "posix", + "name": "grafana", + "slug": "grafana", "org_count": 4, - "project_count": 132 + "project_count": 29 }, { "name": "xen", @@ -805,16 +799,22 @@ "project_count": 40 }, { - "name": "graphql", - "slug": "graphql", + "name": "scikit-learn", + "slug": "scikit-learn", "org_count": 4, - "project_count": 58 + "project_count": 99 }, { - "name": "unix", - "slug": "unix", + "name": "posix", + "slug": "posix", "org_count": 4, - "project_count": 69 + "project_count": 132 + }, + { + "name": "graphql", + "slug": "graphql", + "org_count": 4, + "project_count": 58 }, { "name": "distributed systems", @@ -822,6 +822,12 @@ "org_count": 4, "project_count": 53 }, + { + "name": "unix", + "slug": "unix", + "org_count": 4, + "project_count": 69 + }, { "name": "gstreamer", "slug": "gstreamer", @@ -858,24 +864,6 @@ "org_count": 3, "project_count": 83 }, - { - "name": "api", - "slug": "api", - "org_count": 3, - "project_count": 52 - }, - { - "name": "dart", - "slug": "dart", - "org_count": 3, - "project_count": 36 - }, - { - "name": "ui/ux", - "slug": "ui-ux", - "org_count": 3, - "project_count": 12 - }, { "name": "nlp", "slug": "nlp", @@ -918,12 +906,36 @@ "org_count": 3, "project_count": 164 }, + { + "name": "api", + "slug": "api", + "org_count": 3, + "project_count": 52 + }, + { + "name": "dart", + "slug": "dart", + "org_count": 3, + "project_count": 36 + }, + { + "name": "ui/ux", + "slug": "ui-ux", + "org_count": 3, + "project_count": 12 + }, { "name": "robotics", "slug": "robotics", "org_count": 3, "project_count": 68 }, + { + "name": "wxwidgets", + "slug": "wxwidgets", + "org_count": 3, + "project_count": 11 + }, { "name": "gcc", "slug": "gcc", @@ -936,6 +948,12 @@ "org_count": 3, "project_count": 32 }, + { + "name": "tcl", + "slug": "tcl", + "org_count": 3, + "project_count": 80 + }, { "name": "bootstrap", "slug": "bootstrap", @@ -948,6 +966,12 @@ "org_count": 3, "project_count": 52 }, + { + "name": "r-project", + "slug": "r-project", + "org_count": 3, + "project_count": 255 + }, { "name": "video", "slug": "video", @@ -955,34 +979,34 @@ "project_count": 184 }, { - "name": "swig", - "slug": "swig", + "name": "aws", + "slug": "aws", "org_count": 3, - "project_count": 83 + "project_count": 40 }, { - "name": "chisel", - "slug": "chisel", + "name": "swig", + "slug": "swig", "org_count": 3, - "project_count": 82 + "project_count": 83 }, { - "name": "r-project", - "slug": "r-project", + "name": "compilers", + "slug": "compilers", "org_count": 3, - "project_count": 255 + "project_count": 183 }, { - "name": "aws", - "slug": "aws", + "name": "antlr", + "slug": "antlr", "org_count": 3, - "project_count": 40 + "project_count": 61 }, { - "name": "compilers", - "slug": "compilers", + "name": "chisel", + "slug": "chisel", "org_count": 3, - "project_count": 183 + "project_count": 82 }, { "name": "ebpf", @@ -1008,6 +1032,12 @@ "org_count": 3, "project_count": 156 }, + { + "name": "open hardware", + "slug": "open-hardware", + "org_count": 3, + "project_count": 84 + }, { "name": "C\\C++", "slug": "c-c", @@ -1056,18 +1086,18 @@ "org_count": 3, "project_count": 247 }, - { - "name": "open hardware", - "slug": "open-hardware", - "org_count": 3, - "project_count": 84 - }, { "name": "autotools", "slug": "autotools", "org_count": 3, "project_count": 91 }, + { + "name": "visualization", + "slug": "visualization", + "org_count": 3, + "project_count": 48 + }, { "name": "vala", "slug": "vala", @@ -1116,6 +1146,12 @@ "org_count": 3, "project_count": 192 }, + { + "name": "spark", + "slug": "spark", + "org_count": 3, + "project_count": 143 + }, { "name": "gwt", "slug": "gwt", @@ -1128,12 +1164,6 @@ "org_count": 3, "project_count": 142 }, - { - "name": "spark", - "slug": "spark", - "org_count": 3, - "project_count": 143 - }, { "name": "midi", "slug": "midi", @@ -1141,10 +1171,10 @@ "project_count": 41 }, { - "name": "scikit-learn", - "slug": "scikit-learn", + "name": "LLM", + "slug": "llm", "org_count": 3, - "project_count": 99 + "project_count": 311 }, { "name": "numba", @@ -1152,12 +1182,6 @@ "org_count": 3, "project_count": 101 }, - { - "name": "antlr", - "slug": "antlr", - "org_count": 3, - "project_count": 61 - }, { "name": "win32", "slug": "win32", @@ -1170,24 +1194,6 @@ "org_count": 2, "project_count": 126 }, - { - "name": "browser extension", - "slug": "browser-extension", - "org_count": 2, - "project_count": 121 - }, - { - "name": "openapi", - "slug": "openapi", - "org_count": 2, - "project_count": 20 - }, - { - "name": "rpc", - "slug": "rpc", - "org_count": 2, - "project_count": 9 - }, { "name": "restful api", "slug": "restful-api", @@ -1200,6 +1206,12 @@ "org_count": 2, "project_count": 16 }, + { + "name": "browser extension", + "slug": "browser-extension", + "org_count": 2, + "project_count": 121 + }, { "name": "arrow", "slug": "arrow", @@ -1213,22 +1225,22 @@ "project_count": 21 }, { - "name": "rtos", - "slug": "rtos", + "name": "openapi", + "slug": "openapi", "org_count": 2, - "project_count": 106 + "project_count": 20 }, { - "name": "wxwidgets", - "slug": "wxwidgets", + "name": "rpc", + "slug": "rpc", "org_count": 2, - "project_count": 11 + "project_count": 9 }, { - "name": "tcl", - "slug": "tcl", + "name": "rtos", + "slug": "rtos", "org_count": 2, - "project_count": 80 + "project_count": 106 }, { "name": "iot", @@ -1284,12 +1296,30 @@ "org_count": 2, "project_count": 69 }, + { + "name": "awk", + "slug": "awk", + "org_count": 2, + "project_count": 30 + }, { "name": "bytecode", "slug": "bytecode", "org_count": 2, "project_count": 48 }, + { + "name": "database", + "slug": "database", + "org_count": 2, + "project_count": 139 + }, + { + "name": "LLMs", + "slug": "llms", + "org_count": 2, + "project_count": 13 + }, { "name": "parallel algorithms", "slug": "parallel-algorithms", @@ -1308,24 +1338,18 @@ "org_count": 2, "project_count": 59 }, + { + "name": "xpath", + "slug": "xpath", + "org_count": 2, + "project_count": 24 + }, { "name": "systemverilog", "slug": "systemverilog", "org_count": 2, "project_count": 22 }, - { - "name": "awk", - "slug": "awk", - "org_count": 2, - "project_count": 30 - }, - { - "name": "LLMs", - "slug": "llms", - "org_count": 2, - "project_count": 13 - }, { "name": "rails", "slug": "rails", @@ -1344,6 +1368,24 @@ "org_count": 2, "project_count": 32 }, + { + "name": "emberjs", + "slug": "emberjs", + "org_count": 2, + "project_count": 39 + }, + { + "name": "tekton", + "slug": "tekton", + "org_count": 2, + "project_count": 9 + }, + { + "name": "assembler", + "slug": "assembler", + "org_count": 2, + "project_count": 60 + }, { "name": "mariadb", "slug": "mariadb", @@ -1368,6 +1410,12 @@ "org_count": 2, "project_count": 56 }, + { + "name": "terraform", + "slug": "terraform", + "org_count": 2, + "project_count": 10 + }, { "name": "nosql", "slug": "nosql", @@ -1380,12 +1428,6 @@ "org_count": 2, "project_count": 89 }, - { - "name": "terraform", - "slug": "terraform", - "org_count": 2, - "project_count": 10 - }, { "name": "deeplearning", "slug": "deeplearning", @@ -1398,6 +1440,12 @@ "org_count": 2, "project_count": 75 }, + { + "name": "xarray", + "slug": "xarray", + "org_count": 2, + "project_count": 4 + }, { "name": "geospatial", "slug": "geospatial", @@ -1428,12 +1476,6 @@ "org_count": 2, "project_count": 5 }, - { - "name": "assembler", - "slug": "assembler", - "org_count": 2, - "project_count": 60 - }, { "name": "rpm", "slug": "rpm", @@ -1453,10 +1495,16 @@ "project_count": 51 }, { - "name": "materialui", - "slug": "materialui", + "name": "openwrt", + "slug": "openwrt", "org_count": 2, - "project_count": 5 + "project_count": 100 + }, + { + "name": "gnu/linux", + "slug": "gnu-linux", + "org_count": 2, + "project_count": 131 }, { "name": "nextflow", @@ -1494,6 +1542,30 @@ "org_count": 2, "project_count": 20 }, + { + "name": "sqlalchemy", + "slug": "sqlalchemy", + "org_count": 2, + "project_count": 4 + }, + { + "name": "zope", + "slug": "zope", + "org_count": 2, + "project_count": 26 + }, + { + "name": "scheme", + "slug": "scheme", + "org_count": 2, + "project_count": 59 + }, + { + "name": "simd", + "slug": "simd", + "org_count": 2, + "project_count": 20 + }, { "name": "fhir", "slug": "fhir", @@ -1501,10 +1573,10 @@ "project_count": 99 }, { - "name": "big data science", - "slug": "big-data-science", + "name": "materialui", + "slug": "materialui", "org_count": 2, - "project_count": 110 + "project_count": 5 }, { "name": "svg", @@ -1531,10 +1603,16 @@ "project_count": 67 }, { - "name": "JSON Schema", - "slug": "json-schema", + "name": "big data science", + "slug": "big-data-science", "org_count": 2, - "project_count": 33 + "project_count": 110 + }, + { + "name": "Zarr", + "slug": "zarr", + "org_count": 2, + "project_count": 22 }, { "name": "gazebo", @@ -1549,10 +1627,10 @@ "project_count": 152 }, { - "name": "mlir", - "slug": "mlir", + "name": "JSON Schema", + "slug": "json-schema", "org_count": 2, - "project_count": 131 + "project_count": 33 }, { "name": "luarocks", @@ -1573,10 +1651,10 @@ "project_count": 163 }, { - "name": "visualization", - "slug": "visualization", + "name": "mlir", + "slug": "mlir", "org_count": 2, - "project_count": 48 + "project_count": 131 }, { "name": "waf", @@ -1596,18 +1674,6 @@ "org_count": 2, "project_count": 5 }, - { - "name": "database", - "slug": "database", - "org_count": 2, - "project_count": 139 - }, - { - "name": "middleware", - "slug": "middleware", - "org_count": 2, - "project_count": 20 - }, { "name": "NextJs", "slug": "nextjs", @@ -1626,18 +1692,6 @@ "org_count": 2, "project_count": 96 }, - { - "name": "openwrt", - "slug": "openwrt", - "org_count": 2, - "project_count": 100 - }, - { - "name": "emberjs", - "slug": "emberjs", - "org_count": 2, - "project_count": 39 - }, { "name": "webpack", "slug": "webpack", @@ -1645,16 +1699,16 @@ "project_count": 87 }, { - "name": "singularity", - "slug": "singularity", + "name": "middleware", + "slug": "middleware", "org_count": 2, - "project_count": 118 + "project_count": 20 }, { - "name": "xpath", - "slug": "xpath", + "name": "singularity", + "slug": "singularity", "org_count": 2, - "project_count": 24 + "project_count": 118 }, { "name": "blender", @@ -1674,24 +1728,12 @@ "org_count": 2, "project_count": 11 }, - { - "name": "gnu/linux", - "slug": "gnu-linux", - "org_count": 2, - "project_count": 131 - }, { "name": "c programming", "slug": "c-programming", "org_count": 2, "project_count": 51 }, - { - "name": "couchdb", - "slug": "couchdb", - "org_count": 2, - "project_count": 250 - }, { "name": "natural language processing", "slug": "natural-language-processing", @@ -1705,10 +1747,10 @@ "project_count": 94 }, { - "name": "LLM", - "slug": "llm", + "name": "couchdb", + "slug": "couchdb", "org_count": 2, - "project_count": 192 + "project_count": 250 }, { "name": "network stack", @@ -1728,6 +1770,48 @@ "org_count": 2, "project_count": 24 }, + { + "name": "static analysis", + "slug": "static-analysis", + "org_count": 1, + "project_count": 32 + }, + { + "name": "automaton", + "slug": "automaton", + "org_count": 1, + "project_count": 32 + }, + { + "name": "search", + "slug": "search", + "org_count": 1, + "project_count": 32 + }, + { + "name": "Django+PostgreSQL", + "slug": "django-postgresql", + "org_count": 1, + "project_count": 32 + }, + { + "name": "C/Rust/Go", + "slug": "c-rust-go", + "org_count": 1, + "project_count": 32 + }, + { + "name": "coq", + "slug": "coq", + "org_count": 1, + "project_count": 13 + }, + { + "name": "boinc", + "slug": "boinc", + "org_count": 1, + "project_count": 30 + }, { "name": "fuzzing", "slug": "fuzzing", @@ -1746,6 +1830,18 @@ "org_count": 1, "project_count": 10 }, + { + "name": "streaming", + "slug": "streaming", + "org_count": 1, + "project_count": 18 + }, + { + "name": "spir-v", + "slug": "spir-v", + "org_count": 1, + "project_count": 8 + }, { "name": "android/ios", "slug": "android-ios", @@ -1777,82 +1873,34 @@ "project_count": 117 }, { - "name": "protocol buffers", - "slug": "protocol-buffers", + "name": "Solidity", + "slug": "solidity", "org_count": 1, - "project_count": 1 + "project_count": 117 }, { - "name": "static analysis", - "slug": "static-analysis", + "name": "finite-state technologies", + "slug": "finite-state-technologies", "org_count": 1, - "project_count": 32 + "project_count": 67 }, { - "name": "automaton", - "slug": "automaton", + "name": "fsts", + "slug": "fsts", "org_count": 1, - "project_count": 32 + "project_count": 67 }, { - "name": "search", - "slug": "search", + "name": "protocol buffers", + "slug": "protocol-buffers", "org_count": 1, - "project_count": 32 + "project_count": 1 }, { - "name": "Django+PostgreSQL", - "slug": "django-postgresql", + "name": "archc", + "slug": "archc", "org_count": 1, - "project_count": 32 - }, - { - "name": "C/Rust/Go", - "slug": "c-rust-go", - "org_count": 1, - "project_count": 32 - }, - { - "name": "coq", - "slug": "coq", - "org_count": 1, - "project_count": 13 - }, - { - "name": "boinc", - "slug": "boinc", - "org_count": 1, - "project_count": 30 - }, - { - "name": "streaming", - "slug": "streaming", - "org_count": 1, - "project_count": 18 - }, - { - "name": "spir-v", - "slug": "spir-v", - "org_count": 1, - "project_count": 8 - }, - { - "name": "finite-state technologies", - "slug": "finite-state-technologies", - "org_count": 1, - "project_count": 67 - }, - { - "name": "fsts", - "slug": "fsts", - "org_count": 1, - "project_count": 67 - }, - { - "name": "archc", - "slug": "archc", - "org_count": 1, - "project_count": 2 + "project_count": 2 }, { "name": "drones", @@ -1878,12 +1926,6 @@ "org_count": 1, "project_count": 3 }, - { - "name": "tcl/tk", - "slug": "tcl-tk", - "org_count": 1, - "project_count": 73 - }, { "name": "babel", "slug": "babel", @@ -1945,112 +1987,16 @@ "project_count": 8 }, { - "name": "kconfig", - "slug": "kconfig", - "org_count": 1, - "project_count": 1 - }, - { - "name": "subtitles", - "slug": "subtitles", - "org_count": 1, - "project_count": 80 - }, - { - "name": "visual studio", - "slug": "visual-studio", - "org_count": 1, - "project_count": 80 - }, - { - "name": "ml", - "slug": "ml", - "org_count": 1, - "project_count": 80 - }, - { - "name": "parallelization", - "slug": "parallelization", - "org_count": 1, - "project_count": 214 - }, - { - "name": "container orchestration", - "slug": "container-orchestration", - "org_count": 1, - "project_count": 214 - }, - { - "name": "elasicsearch", - "slug": "elasicsearch", - "org_count": 1, - "project_count": 29 - }, - { - "name": "kibana", - "slug": "kibana", - "org_count": 1, - "project_count": 29 - }, - { - "name": "fossology", - "slug": "fossology", - "org_count": 1, - "project_count": 29 - }, - { - "name": "airflow", - "slug": "airflow", - "org_count": 1, - "project_count": 29 - }, - { - "name": "metrics", - "slug": "metrics", - "org_count": 1, - "project_count": 29 - }, - { - "name": "ASIC", - "slug": "asic", - "org_count": 1, - "project_count": 12 - }, - { - "name": "cross-platform", - "slug": "cross-platform", - "org_count": 1, - "project_count": 11 - }, - { - "name": "hidden markov models", - "slug": "hidden-markov-models", - "org_count": 1, - "project_count": 11 - }, - { - "name": "fluentd", - "slug": "fluentd", - "org_count": 1, - "project_count": 113 - }, - { - "name": "service mesh", - "slug": "service-mesh", - "org_count": 1, - "project_count": 113 - }, - { - "name": "OpenTelemetry", - "slug": "opentelemetry", + "name": "tcl/tk", + "slug": "tcl-tk", "org_count": 1, - "project_count": 113 + "project_count": 73 }, { - "name": "envoy", - "slug": "envoy", + "name": "kconfig", + "slug": "kconfig", "org_count": 1, - "project_count": 113 + "project_count": 1 }, { "name": "javasc", @@ -2076,6 +2022,30 @@ "org_count": 1, "project_count": 22 }, + { + "name": "web apps", + "slug": "web-apps", + "org_count": 1, + "project_count": 38 + }, + { + "name": "subtitles", + "slug": "subtitles", + "org_count": 1, + "project_count": 80 + }, + { + "name": "visual studio", + "slug": "visual-studio", + "org_count": 1, + "project_count": 80 + }, + { + "name": "ml", + "slug": "ml", + "org_count": 1, + "project_count": 80 + }, { "name": "multi-threading", "slug": "multi-threading", @@ -2124,6 +2094,48 @@ "org_count": 1, "project_count": 31 }, + { + "name": "parallelization", + "slug": "parallelization", + "org_count": 1, + "project_count": 214 + }, + { + "name": "container orchestration", + "slug": "container-orchestration", + "org_count": 1, + "project_count": 214 + }, + { + "name": "elasicsearch", + "slug": "elasicsearch", + "org_count": 1, + "project_count": 29 + }, + { + "name": "kibana", + "slug": "kibana", + "org_count": 1, + "project_count": 29 + }, + { + "name": "fossology", + "slug": "fossology", + "org_count": 1, + "project_count": 29 + }, + { + "name": "airflow", + "slug": "airflow", + "org_count": 1, + "project_count": 29 + }, + { + "name": "metrics", + "slug": "metrics", + "org_count": 1, + "project_count": 29 + }, { "name": "chapel", "slug": "chapel", @@ -2148,6 +2160,12 @@ "org_count": 1, "project_count": 17 }, + { + "name": "ASIC", + "slug": "asic", + "org_count": 1, + "project_count": 12 + }, { "name": "html5 canvas", "slug": "html5-canvas", @@ -2185,10 +2203,40 @@ "project_count": 28 }, { - "name": "tekton", - "slug": "tekton", + "name": "cross-platform", + "slug": "cross-platform", "org_count": 1, - "project_count": 9 + "project_count": 11 + }, + { + "name": "hidden markov models", + "slug": "hidden-markov-models", + "org_count": 1, + "project_count": 11 + }, + { + "name": "fluentd", + "slug": "fluentd", + "org_count": 1, + "project_count": 113 + }, + { + "name": "service mesh", + "slug": "service-mesh", + "org_count": 1, + "project_count": 113 + }, + { + "name": "OpenTelemetry", + "slug": "opentelemetry", + "org_count": 1, + "project_count": 113 + }, + { + "name": "envoy", + "slug": "envoy", + "org_count": 1, + "project_count": 113 }, { "name": "spinnaker", @@ -2238,18 +2286,6 @@ "org_count": 1, "project_count": 11 }, - { - "name": "sparql", - "slug": "sparql", - "org_count": 1, - "project_count": 61 - }, - { - "name": "skala", - "slug": "skala", - "org_count": 1, - "project_count": 61 - }, { "name": "programming-language", "slug": "programming-language", @@ -2274,6 +2310,18 @@ "org_count": 1, "project_count": 1 }, + { + "name": "sparql", + "slug": "sparql", + "org_count": 1, + "project_count": 61 + }, + { + "name": "skala", + "slug": "skala", + "org_count": 1, + "project_count": 61 + }, { "name": "irc", "slug": "irc", @@ -2310,6 +2358,12 @@ "org_count": 1, "project_count": 6 }, + { + "name": "Autonomous drive", + "slug": "autonomous-drive", + "org_count": 1, + "project_count": 2 + }, { "name": "drupal 8", "slug": "drupal-8", @@ -2334,12 +2388,6 @@ "org_count": 1, "project_count": 4 }, - { - "name": "xarray", - "slug": "xarray", - "org_count": 1, - "project_count": 4 - }, { "name": "gdal", "slug": "gdal", @@ -2419,22 +2467,70 @@ "project_count": 4 }, { - "name": "lfe", - "slug": "lfe", + "name": "lfe", + "slug": "lfe", + "org_count": 1, + "project_count": 3 + }, + { + "name": "Containerd", + "slug": "containerd", + "org_count": 1, + "project_count": 0 + }, + { + "name": "gVisor", + "slug": "gvisor", + "org_count": 1, + "project_count": 0 + }, + { + "name": "linux distribution", + "slug": "linux-distribution", + "org_count": 1, + "project_count": 27 + }, + { + "name": "Container", + "slug": "container", + "org_count": 1, + "project_count": 27 + }, + { + "name": "ida-pro", + "slug": "ida-pro", + "org_count": 1, + "project_count": 7 + }, + { + "name": "Ghidra", + "slug": "ghidra", + "org_count": 1, + "project_count": 7 + }, + { + "name": "Sandbox", + "slug": "sandbox", + "org_count": 1, + "project_count": 7 + }, + { + "name": "bios", + "slug": "bios", "org_count": 1, - "project_count": 3 + "project_count": 1 }, { - "name": "ida-pro", - "slug": "ida-pro", + "name": "rom", + "slug": "rom", "org_count": 1, - "project_count": 7 + "project_count": 1 }, { - "name": "Ghidra", - "slug": "ghidra", + "name": "spi", + "slug": "spi", "org_count": 1, - "project_count": 7 + "project_count": 1 }, { "name": "voctomix", @@ -2466,42 +2562,6 @@ "org_count": 1, "project_count": 42 }, - { - "name": "routing", - "slug": "routing", - "org_count": 1, - "project_count": 3 - }, - { - "name": "linux distribution", - "slug": "linux-distribution", - "org_count": 1, - "project_count": 27 - }, - { - "name": "Container", - "slug": "container", - "org_count": 1, - "project_count": 27 - }, - { - "name": "bios", - "slug": "bios", - "org_count": 1, - "project_count": 1 - }, - { - "name": "rom", - "slug": "rom", - "org_count": 1, - "project_count": 1 - }, - { - "name": "spi", - "slug": "spi", - "org_count": 1, - "project_count": 1 - }, { "name": "synthesis", "slug": "synthesis", @@ -2544,18 +2604,66 @@ "org_count": 1, "project_count": 17 }, + { + "name": "olsr", + "slug": "olsr", + "org_count": 1, + "project_count": 74 + }, + { + "name": "batman", + "slug": "batman", + "org_count": 1, + "project_count": 74 + }, + { + "name": "lede/openwrt", + "slug": "lede-openwrt", + "org_count": 1, + "project_count": 74 + }, { "name": "pyqt", "slug": "pyqt", "org_count": 1, "project_count": 2 }, + { + "name": "routing", + "slug": "routing", + "org_count": 1, + "project_count": 3 + }, { "name": "game development", "slug": "game-development", "org_count": 1, "project_count": 2 }, + { + "name": "GenAI", + "slug": "genai", + "org_count": 1, + "project_count": 0 + }, + { + "name": "MCP", + "slug": "mcp", + "org_count": 1, + "project_count": 0 + }, + { + "name": "Software Agent", + "slug": "software-agent", + "org_count": 1, + "project_count": 0 + }, + { + "name": "A2A", + "slug": "a2a", + "org_count": 1, + "project_count": 0 + }, { "name": "yocto", "slug": "yocto", @@ -2574,6 +2682,18 @@ "org_count": 1, "project_count": 3 }, + { + "name": "protobuf", + "slug": "protobuf", + "org_count": 1, + "project_count": 45 + }, + { + "name": "hl7 fhir", + "slug": "hl7-fhir", + "org_count": 1, + "project_count": 45 + }, { "name": "gobject", "slug": "gobject", @@ -2604,12 +2724,6 @@ "org_count": 1, "project_count": 4 }, - { - "name": "sqlalchemy", - "slug": "sqlalchemy", - "org_count": 1, - "project_count": 4 - }, { "name": "hg", "slug": "hg", @@ -2635,8 +2749,8 @@ "project_count": 59 }, { - "name": "scheme", - "slug": "scheme", + "name": "GNU", + "slug": "gnu", "org_count": 1, "project_count": 59 }, @@ -2658,48 +2772,6 @@ "org_count": 1, "project_count": 18 }, - { - "name": "simd", - "slug": "simd", - "org_count": 1, - "project_count": 18 - }, - { - "name": "mp4", - "slug": "mp4", - "org_count": 1, - "project_count": 1 - }, - { - "name": "dash", - "slug": "dash", - "org_count": 1, - "project_count": 1 - }, - { - "name": "mp4box", - "slug": "mp4box", - "org_count": 1, - "project_count": 1 - }, - { - "name": "backend", - "slug": "backend", - "org_count": 1, - "project_count": 0 - }, - { - "name": "protobuf", - "slug": "protobuf", - "org_count": 1, - "project_count": 45 - }, - { - "name": "hl7 fhir", - "slug": "hl7-fhir", - "org_count": 1, - "project_count": 45 - }, { "name": "Cryptography", "slug": "cryptography", @@ -2730,6 +2802,24 @@ "org_count": 1, "project_count": 45 }, + { + "name": "mp4", + "slug": "mp4", + "org_count": 1, + "project_count": 1 + }, + { + "name": "dash", + "slug": "dash", + "org_count": 1, + "project_count": 1 + }, + { + "name": "mp4box", + "slug": "mp4box", + "org_count": 1, + "project_count": 1 + }, { "name": "polymer", "slug": "polymer", @@ -2742,6 +2832,24 @@ "org_count": 1, "project_count": 8 }, + { + "name": "scalability", + "slug": "scalability", + "org_count": 1, + "project_count": 3 + }, + { + "name": "http/2", + "slug": "http-2", + "org_count": 1, + "project_count": 3 + }, + { + "name": "backend", + "slug": "backend", + "org_count": 1, + "project_count": 0 + }, { "name": "webkit", "slug": "webkit", @@ -2803,28 +2911,28 @@ "project_count": 8 }, { - "name": "ocean technology", - "slug": "ocean-technology", + "name": "dtrace", + "slug": "dtrace", "org_count": 1, - "project_count": 22 + "project_count": 0 }, { - "name": "ocean science", - "slug": "ocean-science", + "name": "illumos", + "slug": "illumos", "org_count": 1, - "project_count": 22 + "project_count": 0 }, { - "name": "Zarr", - "slug": "zarr", + "name": "openzfs", + "slug": "openzfs", "org_count": 1, - "project_count": 22 + "project_count": 0 }, { - "name": "NetCDF", - "slug": "netcdf", + "name": "zfs", + "slug": "zfs", "org_count": 1, - "project_count": 22 + "project_count": 0 }, { "name": "communication protocol", @@ -2953,46 +3061,22 @@ "project_count": 13 }, { - "name": "asciidoctor", - "slug": "asciidoctor", - "org_count": 1, - "project_count": 52 - }, - { - "name": "aerogear", - "slug": "aerogear", - "org_count": 1, - "project_count": 52 - }, - { - "name": "mobil", - "slug": "mobil", - "org_count": 1, - "project_count": 52 - }, - { - "name": "opentracing", - "slug": "opentracing", - "org_count": 1, - "project_count": 52 - }, - { - "name": "euslisp", - "slug": "euslisp", + "name": "ocean technology", + "slug": "ocean-technology", "org_count": 1, - "project_count": 4 + "project_count": 22 }, { - "name": "openhrp", - "slug": "openhrp", + "name": "ocean science", + "slug": "ocean-science", "org_count": 1, - "project_count": 4 + "project_count": 22 }, { - "name": "openrtm", - "slug": "openrtm", + "name": "NetCDF", + "slug": "netcdf", "org_count": 1, - "project_count": 4 + "project_count": 22 }, { "name": "latex", @@ -3006,6 +3090,30 @@ "org_count": 1, "project_count": 11 }, + { + "name": "asciidoctor", + "slug": "asciidoctor", + "org_count": 1, + "project_count": 52 + }, + { + "name": "aerogear", + "slug": "aerogear", + "org_count": 1, + "project_count": 52 + }, + { + "name": "mobil", + "slug": "mobil", + "org_count": 1, + "project_count": 52 + }, + { + "name": "opentracing", + "slug": "opentracing", + "org_count": 1, + "project_count": 52 + }, { "name": "gitops", "slug": "gitops", @@ -3031,10 +3139,22 @@ "project_count": 17 }, { - "name": "data structures", - "slug": "data-structures", + "name": "euslisp", + "slug": "euslisp", "org_count": 1, - "project_count": 167 + "project_count": 4 + }, + { + "name": "openhrp", + "slug": "openhrp", + "org_count": 1, + "project_count": 4 + }, + { + "name": "openrtm", + "slug": "openrtm", + "org_count": 1, + "project_count": 4 }, { "name": "jsonnet", @@ -3048,6 +3168,12 @@ "org_count": 1, "project_count": 2 }, + { + "name": "data structures", + "slug": "data-structures", + "org_count": 1, + "project_count": 167 + }, { "name": "MERN", "slug": "mern", @@ -3126,6 +3252,18 @@ "org_count": 1, "project_count": 16 }, + { + "name": "controller-runtime", + "slug": "controller-runtime", + "org_count": 1, + "project_count": 2 + }, + { + "name": "CEL", + "slug": "cel", + "org_count": 1, + "project_count": 2 + }, { "name": "jupyter notebook", "slug": "jupyter-notebook", @@ -3144,6 +3282,30 @@ "org_count": 1, "project_count": 21 }, + { + "name": "céu", + "slug": "c-u", + "org_count": 1, + "project_count": 43 + }, + { + "name": "netbsd", + "slug": "netbsd", + "org_count": 1, + "project_count": 43 + }, + { + "name": "lunatik", + "slug": "lunatik", + "org_count": 1, + "project_count": 43 + }, + { + "name": "pallene", + "slug": "pallene", + "org_count": 1, + "project_count": 43 + }, { "name": "jupyter hub", "slug": "jupyter-hub", @@ -3169,28 +3331,10 @@ "project_count": 2 }, { - "name": "céu", - "slug": "c-u", - "org_count": 1, - "project_count": 43 - }, - { - "name": "netbsd", - "slug": "netbsd", - "org_count": 1, - "project_count": 43 - }, - { - "name": "lunatik", - "slug": "lunatik", - "org_count": 1, - "project_count": 43 - }, - { - "name": "pallene", - "slug": "pallene", + "name": "v4l2", + "slug": "v4l2", "org_count": 1, - "project_count": 43 + "project_count": 7 }, { "name": "space applications", @@ -3228,6 +3372,30 @@ "org_count": 1, "project_count": 31 }, + { + "name": "ssh", + "slug": "ssh", + "org_count": 1, + "project_count": 6 + }, + { + "name": "sftp", + "slug": "sftp", + "org_count": 1, + "project_count": 6 + }, + { + "name": "hypervisor", + "slug": "hypervisor", + "org_count": 1, + "project_count": 19 + }, + { + "name": "lxc", + "slug": "lxc", + "org_count": 1, + "project_count": 19 + }, { "name": "linkerd", "slug": "linkerd", @@ -3258,36 +3426,6 @@ "org_count": 1, "project_count": 75 }, - { - "name": "mapping", - "slug": "mapping", - "org_count": 1, - "project_count": 3 - }, - { - "name": "statistics", - "slug": "statistics", - "org_count": 1, - "project_count": 3 - }, - { - "name": "app", - "slug": "app", - "org_count": 1, - "project_count": 45 - }, - { - "name": "google web toolkit", - "slug": "google-web-toolkit", - "org_count": 1, - "project_count": 45 - }, - { - "name": "junit", - "slug": "junit", - "org_count": 1, - "project_count": 45 - }, { "name": "frontend", "slug": "frontend", @@ -3300,6 +3438,12 @@ "org_count": 1, "project_count": 7 }, + { + "name": "GCS", + "slug": "gcs", + "org_count": 1, + "project_count": 0 + }, { "name": "Rxjava", "slug": "rxjava", @@ -3360,6 +3504,18 @@ "org_count": 1, "project_count": 19 }, + { + "name": "mapping", + "slug": "mapping", + "org_count": 1, + "project_count": 3 + }, + { + "name": "statistics", + "slug": "statistics", + "org_count": 1, + "project_count": 3 + }, { "name": "RISCV", "slug": "riscv", @@ -3390,6 +3546,24 @@ "org_count": 1, "project_count": 12 }, + { + "name": "app", + "slug": "app", + "org_count": 1, + "project_count": 45 + }, + { + "name": "google web toolkit", + "slug": "google-web-toolkit", + "org_count": 1, + "project_count": 45 + }, + { + "name": "junit", + "slug": "junit", + "org_count": 1, + "project_count": 45 + }, { "name": "hid", "slug": "hid", @@ -3408,6 +3582,18 @@ "org_count": 1, "project_count": 16 }, + { + "name": "templates", + "slug": "templates", + "org_count": 1, + "project_count": 60 + }, + { + "name": "C++ template metaprogramming", + "slug": "c-template-metaprogramming", + "org_count": 1, + "project_count": 60 + }, { "name": "webs", "slug": "webs", @@ -3456,24 +3642,6 @@ "org_count": 1, "project_count": 24 }, - { - "name": "ui automation", - "slug": "ui-automation", - "org_count": 1, - "project_count": 2 - }, - { - "name": "iaccessible2", - "slug": "iaccessible2", - "org_count": 1, - "project_count": 2 - }, - { - "name": "win32 api", - "slug": "win32-api", - "org_count": 1, - "project_count": 2 - }, { "name": "vim", "slug": "vim", @@ -3511,46 +3679,22 @@ "project_count": 2 }, { - "name": "standards", - "slug": "standards", - "org_count": 1, - "project_count": 101 - }, - { - "name": "open source databases", - "slug": "open-source-databases", - "org_count": 1, - "project_count": 101 - }, - { - "name": "bpm", - "slug": "bpm", - "org_count": 1, - "project_count": 0 - }, - { - "name": "wiki", - "slug": "wiki", - "org_count": 1, - "project_count": 0 - }, - { - "name": "net", - "slug": "net", + "name": "ui automation", + "slug": "ui-automation", "org_count": 1, - "project_count": 102 + "project_count": 2 }, { - "name": "ZAP", - "slug": "zap", + "name": "iaccessible2", + "slug": "iaccessible2", "org_count": 1, - "project_count": 102 + "project_count": 2 }, { - "name": "Juice Shop", - "slug": "juice-shop", + "name": "win32 api", + "slug": "win32-api", "org_count": 1, - "project_count": 102 + "project_count": 2 }, { "name": "biojs", @@ -3594,6 +3738,12 @@ "org_count": 1, "project_count": 46 }, + { + "name": "Bevy", + "slug": "bevy", + "org_count": 1, + "project_count": 46 + }, { "name": "AST", "slug": "ast", @@ -3630,18 +3780,6 @@ "org_count": 1, "project_count": 2 }, - { - "name": "hibernate", - "slug": "hibernate", - "org_count": 1, - "project_count": 94 - }, - { - "name": "Cypress", - "slug": "cypress", - "org_count": 1, - "project_count": 94 - }, { "name": "federated learning", "slug": "federated-learning", @@ -3672,12 +3810,60 @@ "org_count": 1, "project_count": 9 }, + { + "name": "hibernate", + "slug": "hibernate", + "org_count": 1, + "project_count": 94 + }, + { + "name": "Cypress", + "slug": "cypress", + "org_count": 1, + "project_count": 94 + }, + { + "name": "Streamlit", + "slug": "streamlit", + "org_count": 1, + "project_count": 2 + }, { "name": "postgis", "slug": "postgis", "org_count": 1, "project_count": 45 }, + { + "name": "glTF", + "slug": "gltf", + "org_count": 1, + "project_count": 45 + }, + { + "name": "ruby on rail", + "slug": "ruby-on-rail", + "org_count": 1, + "project_count": 52 + }, + { + "name": "Testing", + "slug": "testing", + "org_count": 1, + "project_count": 52 + }, + { + "name": "configuration management", + "slug": "configuration-management", + "org_count": 1, + "project_count": 52 + }, + { + "name": "reactjs javascript", + "slug": "reactjs-javascript", + "org_count": 1, + "project_count": 52 + }, { "name": "Apache Beam", "slug": "apache-beam", @@ -3691,16 +3877,52 @@ "project_count": 10 }, { - "name": "sockets", - "slug": "sockets", + "name": "standards", + "slug": "standards", "org_count": 1, - "project_count": 5 + "project_count": 101 }, { - "name": "javacc", - "slug": "javacc", + "name": "open source databases", + "slug": "open-source-databases", "org_count": 1, - "project_count": 3 + "project_count": 101 + }, + { + "name": "bpm", + "slug": "bpm", + "org_count": 1, + "project_count": 0 + }, + { + "name": "wiki", + "slug": "wiki", + "org_count": 1, + "project_count": 0 + }, + { + "name": "net", + "slug": "net", + "org_count": 1, + "project_count": 102 + }, + { + "name": "ZAP", + "slug": "zap", + "org_count": 1, + "project_count": 102 + }, + { + "name": "Juice Shop", + "slug": "juice-shop", + "org_count": 1, + "project_count": 102 + }, + { + "name": "sockets", + "slug": "sockets", + "org_count": 1, + "project_count": 5 }, { "name": "celery", @@ -3774,6 +3996,12 @@ "org_count": 1, "project_count": 32 }, + { + "name": "cakephp", + "slug": "cakephp", + "org_count": 1, + "project_count": 9 + }, { "name": "internet of things", "slug": "internet-of-things", @@ -3811,10 +4039,10 @@ "project_count": 8 }, { - "name": "zope", - "slug": "zope", + "name": "javacc", + "slug": "javacc", "org_count": 1, - "project_count": 26 + "project_count": 3 }, { "name": "firmware", @@ -3906,6 +4134,18 @@ "org_count": 1, "project_count": 7 }, + { + "name": "object oriented programming", + "slug": "object-oriented-programming", + "org_count": 1, + "project_count": 7 + }, + { + "name": "network topology", + "slug": "network-topology", + "org_count": 1, + "project_count": 7 + }, { "name": "mediawiki", "slug": "mediawiki", @@ -4015,58 +4255,64 @@ "project_count": 57 }, { - "name": "clickhouse", - "slug": "clickhouse", + "name": "mongo", + "slug": "mongo", "org_count": 1, - "project_count": 3 + "project_count": 103 }, { - "name": "rubygems", - "slug": "rubygems", + "name": "reactnative", + "slug": "reactnative", "org_count": 1, - "project_count": 38 + "project_count": 103 }, { - "name": "bundler", - "slug": "bundler", + "name": "chatbots", + "slug": "chatbots", "org_count": 1, - "project_count": 38 + "project_count": 103 }, { - "name": "science", - "slug": "science", + "name": "meteorJS", + "slug": "meteorjs", "org_count": 1, - "project_count": 13 + "project_count": 103 }, { - "name": "data", - "slug": "data", + "name": "generative ai", + "slug": "generative-ai", "org_count": 1, - "project_count": 13 + "project_count": 103 }, { - "name": "gcp", - "slug": "gcp", + "name": "clickhouse", + "slug": "clickhouse", "org_count": 1, - "project_count": 149 + "project_count": 3 }, { - "name": "golan", - "slug": "golan", + "name": "science", + "slug": "science", "org_count": 1, - "project_count": 149 + "project_count": 13 }, { - "name": "pyth", - "slug": "pyth", + "name": "data", + "slug": "data", "org_count": 1, - "project_count": 149 + "project_count": 13 }, { - "name": "SpringBoot", - "slug": "springboot", + "name": "rubygems", + "slug": "rubygems", "org_count": 1, - "project_count": 2 + "project_count": 38 + }, + { + "name": "bundler", + "slug": "bundler", + "org_count": 1, + "project_count": 38 }, { "name": "smb", @@ -4116,6 +4362,24 @@ "org_count": 1, "project_count": 14 }, + { + "name": "gcp", + "slug": "gcp", + "org_count": 1, + "project_count": 149 + }, + { + "name": "golan", + "slug": "golan", + "org_count": 1, + "project_count": 149 + }, + { + "name": "pyth", + "slug": "pyth", + "org_count": 1, + "project_count": 149 + }, { "name": "sdl", "slug": "sdl", @@ -4200,6 +4464,12 @@ "org_count": 1, "project_count": 9 }, + { + "name": "gawk", + "slug": "gawk", + "org_count": 1, + "project_count": 15 + }, { "name": "textual", "slug": "textual", @@ -4230,6 +4500,18 @@ "org_count": 1, "project_count": 89 }, + { + "name": "javascipt", + "slug": "javascipt", + "org_count": 1, + "project_count": 89 + }, + { + "name": "SpringBoot", + "slug": "springboot", + "org_count": 1, + "project_count": 2 + }, { "name": "programming languages", "slug": "programming-languages", @@ -4250,33 +4532,15 @@ }, { "name": "gtkmm", - "slug": "gtkmm", - "org_count": 1, - "project_count": 12 - }, - { - "name": "java ee", - "slug": "java-ee", - "org_count": 1, - "project_count": 20 - }, - { - "name": "tla+", - "slug": "tla", - "org_count": 1, - "project_count": 1 - }, - { - "name": "eclipse", - "slug": "eclipse", + "slug": "gtkmm", "org_count": 1, - "project_count": 1 + "project_count": 12 }, { - "name": "smt", - "slug": "smt", + "name": "java ee", + "slug": "java-ee", "org_count": 1, - "project_count": 1 + "project_count": 20 }, { "name": "keras", @@ -4356,6 +4620,12 @@ "org_count": 1, "project_count": 10 }, + { + "name": "libevent", + "slug": "libevent", + "org_count": 1, + "project_count": 10 + }, { "name": "cups", "slug": "cups", @@ -4410,6 +4680,12 @@ "org_count": 1, "project_count": 38 }, + { + "name": "OpenRoad", + "slug": "openroad", + "org_count": 1, + "project_count": 0 + }, { "name": "Z3", "slug": "z3", @@ -4488,6 +4764,24 @@ "org_count": 1, "project_count": 8 }, + { + "name": "tla+", + "slug": "tla", + "org_count": 1, + "project_count": 1 + }, + { + "name": "eclipse", + "slug": "eclipse", + "org_count": 1, + "project_count": 1 + }, + { + "name": "smt", + "slug": "smt", + "org_count": 1, + "project_count": 1 + }, { "name": "tokio_rs", "slug": "tokio-rs", @@ -4536,18 +4830,6 @@ "org_count": 1, "project_count": 6 }, - { - "name": "soa", - "slug": "soa", - "org_count": 1, - "project_count": 20 - }, - { - "name": "distributed computing", - "slug": "distributed-computing", - "org_count": 1, - "project_count": 20 - }, { "name": "Zig", "slug": "zig", @@ -4560,6 +4842,12 @@ "org_count": 1, "project_count": 1 }, + { + "name": "webasssembly", + "slug": "webasssembly", + "org_count": 1, + "project_count": 10 + }, { "name": "Cloud Storage", "slug": "cloud-storage", @@ -4585,250 +4873,52 @@ "project_count": 4 }, { - "name": "DRM", - "slug": "drm", - "org_count": 1, - "project_count": 19 - }, - { - "name": "asynchronous i/o", - "slug": "asynchronous-i-o", - "org_count": 1, - "project_count": 11 - }, - { - "name": "Objective C", - "slug": "objective-c", - "org_count": 1, - "project_count": 11 - }, - { - "name": "css3", - "slug": "css3", - "org_count": 1, - "project_count": 12 - }, - { - "name": "velocity", - "slug": "velocity", - "org_count": 1, - "project_count": 12 - }, - { - "name": "free/netbsd", - "slug": "free-netbsd", - "org_count": 1, - "project_count": 2 - }, - { - "name": "asm/c/c++", - "slug": "asm-c-c", - "org_count": 1, - "project_count": 2 - }, - { - "name": "open-sound-control", - "slug": "open-sound-control", - "org_count": 1, - "project_count": 1 - }, - { - "name": "web apps", - "slug": "web-apps", - "org_count": 1, - "project_count": 38 - }, - { - "name": "Autonomous drive", - "slug": "autonomous-drive", - "org_count": 1, - "project_count": 2 - }, - { - "name": "olsr", - "slug": "olsr", - "org_count": 1, - "project_count": 74 - }, - { - "name": "batman", - "slug": "batman", - "org_count": 1, - "project_count": 74 - }, - { - "name": "lede/openwrt", - "slug": "lede-openwrt", - "org_count": 1, - "project_count": 74 - }, - { - "name": "scalability", - "slug": "scalability", - "org_count": 1, - "project_count": 3 - }, - { - "name": "http/2", - "slug": "http-2", - "org_count": 1, - "project_count": 3 - }, - { - "name": "dtrace", - "slug": "dtrace", - "org_count": 1, - "project_count": 0 - }, - { - "name": "illumos", - "slug": "illumos", - "org_count": 1, - "project_count": 0 - }, - { - "name": "openzfs", - "slug": "openzfs", - "org_count": 1, - "project_count": 0 - }, - { - "name": "zfs", - "slug": "zfs", - "org_count": 1, - "project_count": 0 - }, - { - "name": "controller-runtime", - "slug": "controller-runtime", - "org_count": 1, - "project_count": 2 - }, - { - "name": "CEL", - "slug": "cel", - "org_count": 1, - "project_count": 2 - }, - { - "name": "v4l2", - "slug": "v4l2", - "org_count": 1, - "project_count": 7 - }, - { - "name": "ssh", - "slug": "ssh", - "org_count": 1, - "project_count": 6 - }, - { - "name": "sftp", - "slug": "sftp", - "org_count": 1, - "project_count": 6 - }, - { - "name": "hypervisor", - "slug": "hypervisor", - "org_count": 1, - "project_count": 19 - }, - { - "name": "lxc", - "slug": "lxc", - "org_count": 1, - "project_count": 19 - }, - { - "name": "templates", - "slug": "templates", - "org_count": 1, - "project_count": 60 - }, - { - "name": "C++ template metaprogramming", - "slug": "c-template-metaprogramming", - "org_count": 1, - "project_count": 60 - }, - { - "name": "ruby on rail", - "slug": "ruby-on-rail", - "org_count": 1, - "project_count": 52 - }, - { - "name": "Testing", - "slug": "testing", - "org_count": 1, - "project_count": 52 - }, - { - "name": "configuration management", - "slug": "configuration-management", - "org_count": 1, - "project_count": 52 - }, - { - "name": "reactjs javascript", - "slug": "reactjs-javascript", - "org_count": 1, - "project_count": 52 - }, - { - "name": "cakephp", - "slug": "cakephp", - "org_count": 1, - "project_count": 9 - }, - { - "name": "mongo", - "slug": "mongo", + "name": "soa", + "slug": "soa", "org_count": 1, - "project_count": 103 + "project_count": 20 }, { - "name": "reactnative", - "slug": "reactnative", + "name": "distributed computing", + "slug": "distributed-computing", "org_count": 1, - "project_count": 103 + "project_count": 20 }, { - "name": "chatbots", - "slug": "chatbots", + "name": "cocoa", + "slug": "cocoa", "org_count": 1, - "project_count": 103 + "project_count": 2 }, { - "name": "meteorJS", - "slug": "meteorjs", + "name": "free/netbsd", + "slug": "free-netbsd", "org_count": 1, - "project_count": 103 + "project_count": 2 }, { - "name": "generative ai", - "slug": "generative-ai", + "name": "asm/c/c++", + "slug": "asm-c-c", "org_count": 1, - "project_count": 103 + "project_count": 2 }, { - "name": "gawk", - "slug": "gawk", + "name": "asynchronous i/o", + "slug": "asynchronous-i-o", "org_count": 1, - "project_count": 15 + "project_count": 11 }, { - "name": "webasssembly", - "slug": "webasssembly", + "name": "Objective C", + "slug": "objective-c", "org_count": 1, - "project_count": 10 + "project_count": 11 }, { - "name": "cocoa", - "slug": "cocoa", + "name": "DRM", + "slug": "drm", "org_count": 1, - "project_count": 2 + "project_count": 19 }, { "name": "compression", @@ -4847,6 +4937,24 @@ "slug": "glib", "org_count": 1, "project_count": 2 + }, + { + "name": "css3", + "slug": "css3", + "org_count": 1, + "project_count": 12 + }, + { + "name": "velocity", + "slug": "velocity", + "org_count": 1, + "project_count": 12 + }, + { + "name": "open-sound-control", + "slug": "open-sound-control", + "org_count": 1, + "project_count": 1 } ], "charts": { @@ -4854,61 +4962,66 @@ { "label": "python", "slug": "python", - "value": 277 + "value": 293 }, { "label": "javascript", "slug": "javascript", - "value": 220 + "value": 225 }, { "label": "c++", "slug": "cpp", - "value": 173 + "value": 178 }, { "label": "c", "slug": "c", - "value": 167 + "value": 170 }, { "label": "java", "slug": "java", - "value": 116 + "value": 117 }, { "label": "android", "slug": "android", - "value": 52 + "value": 53 }, { "label": "react", "slug": "react", - "value": 52 + "value": 53 }, { "label": "rust", "slug": "rust", - "value": 47 + "value": 49 }, { "label": "node.js", "slug": "nodejs", "value": 40 }, + { + "label": "html", + "slug": "html", + "value": 38 + }, { "label": "golang", "slug": "golang", "value": 37 }, { - "label": "html", - "slug": "html", + "label": "machine learning", + "slug": "machine-learning", "value": 36 }, { - "label": "machine learning", - "slug": "machine-learning", + "label": "css", + "slug": "css", "value": 36 }, { @@ -4920,18 +5033,13 @@ "label": "linux", "slug": "linux", "value": 35 - }, - { - "label": "css", - "slug": "css", - "value": 33 } ], "top_tech_by_projects": [ { "label": "python", "slug": "python", - "value": 7616 + "value": 7705 }, { "label": "javascript", @@ -4976,7 +5084,7 @@ { "label": "react", "slug": "react", - "value": 1398 + "value": 1401 }, { "label": "php", @@ -5008,43 +5116,47 @@ "python": [ { "year": 2016, - "count": 102 + "count": 103 }, { "year": 2017, - "count": 117 + "count": 118 }, { "year": 2018, - "count": 126 + "count": 127 }, { "year": 2019, - "count": 126 + "count": 127 }, { "year": 2020, - "count": 124 + "count": 125 }, { "year": 2021, - "count": 133 + "count": 134 }, { "year": 2022, - "count": 129 + "count": 130 }, { "year": 2023, - "count": 115 + "count": 116 }, { "year": 2024, - "count": 124 + "count": 126 }, { "year": 2025, - "count": 119 + "count": 122 + }, + { + "year": 2026, + "count": 123 } ], "javascript": [ @@ -5087,48 +5199,56 @@ { "year": 2025, "count": 92 + }, + { + "year": 2026, + "count": 84 } ], "cpp": [ { "year": 2016, - "count": 82 + "count": 86 }, { "year": 2017, - "count": 90 + "count": 96 }, { "year": 2018, - "count": 95 + "count": 103 }, { "year": 2019, - "count": 94 + "count": 101 }, { "year": 2020, - "count": 102 + "count": 110 }, { "year": 2021, - "count": 97 + "count": 106 }, { "year": 2022, - "count": 100 + "count": 109 }, { "year": 2023, - "count": 83 + "count": 93 }, { "year": 2024, - "count": 88 + "count": 98 }, { "year": 2025, - "count": 80 + "count": 90 + }, + { + "year": 2026, + "count": 87 } ], "c": [ @@ -5171,6 +5291,10 @@ { "year": 2025, "count": 71 + }, + { + "year": 2026, + "count": 73 } ], "java": [ @@ -5213,6 +5337,10 @@ { "year": 2025, "count": 42 + }, + { + "year": 2026, + "count": 40 } ], "android": [ @@ -5255,6 +5383,10 @@ { "year": 2025, "count": 23 + }, + { + "year": 2026, + "count": 26 } ], "react": [ @@ -5292,11 +5424,15 @@ }, { "year": 2024, - "count": 21 + "count": 22 }, { "year": 2025, - "count": 18 + "count": 19 + }, + { + "year": 2026, + "count": 21 } ], "rust": [ @@ -5339,48 +5475,102 @@ { "year": 2025, "count": 25 + }, + { + "year": 2026, + "count": 23 } ], "nodejs": [ { "year": 2016, - "count": 13 + "count": 14 }, { "year": 2017, - "count": 14 + "count": 17 }, { "year": 2018, - "count": 21 + "count": 25 }, { "year": 2019, - "count": 18 + "count": 23 }, { "year": 2020, - "count": 23 + "count": 27 }, { "year": 2021, - "count": 21 + "count": 26 }, { "year": 2022, - "count": 19 + "count": 23 }, { "year": 2023, + "count": 22 + }, + { + "year": 2024, + "count": 28 + }, + { + "year": 2025, + "count": 18 + }, + { + "year": 2026, + "count": 24 + } + ], + "html": [ + { + "year": 2016, + "count": 25 + }, + { + "year": 2017, + "count": 25 + }, + { + "year": 2018, + "count": 26 + }, + { + "year": 2019, + "count": 24 + }, + { + "year": 2020, + "count": 22 + }, + { + "year": 2021, "count": 17 }, + { + "year": 2022, + "count": 22 + }, + { + "year": 2023, + "count": 19 + }, { "year": 2024, - "count": 21 + "count": 19 }, { "year": 2025, - "count": 13 + "count": 17 + }, + { + "year": 2026, + "count": 20 } ], "golang": [ @@ -5423,66 +5613,74 @@ { "year": 2025, "count": 14 + }, + { + "year": 2026, + "count": 9 } ], - "html": [ + "machine-learning": [ { "year": 2016, - "count": 25 + "count": 16 }, { "year": 2017, - "count": 25 + "count": 17 }, { "year": 2018, - "count": 26 + "count": 19 }, { "year": 2019, - "count": 24 + "count": 21 }, { "year": 2020, - "count": 22 + "count": 18 }, { "year": 2021, - "count": 17 + "count": 18 }, { "year": 2022, - "count": 22 + "count": 18 }, { "year": 2023, - "count": 19 + "count": 17 }, { "year": 2024, - "count": 19 + "count": 18 }, { "year": 2025, - "count": 17 + "count": 19 + }, + { + "year": 2026, + "count": 13 } ], - "machine-learning": [ + "css": [ { "year": 2016, - "count": 16 + "count": 23 }, { "year": 2017, - "count": 17 + "count": 22 }, { "year": 2018, - "count": 19 + "count": 26 }, { "year": 2019, - "count": 21 + "count": 23 }, { "year": 2020, @@ -5490,7 +5688,7 @@ }, { "year": 2021, - "count": 18 + "count": 15 }, { "year": 2022, @@ -5498,15 +5696,19 @@ }, { "year": 2023, - "count": 17 + "count": 16 }, { "year": 2024, - "count": 18 + "count": 16 }, { "year": 2025, - "count": 19 + "count": 14 + }, + { + "year": 2026, + "count": 16 } ], "postgresql": [ @@ -5549,6 +5751,10 @@ { "year": 2025, "count": 11 + }, + { + "year": 2026, + "count": 11 } ], "linux": [ @@ -5591,78 +5797,86 @@ { "year": 2025, "count": 15 + }, + { + "year": 2026, + "count": 14 } ], - "css": [ + "mysql": [ { "year": 2016, - "count": 23 + "count": 13 }, { "year": 2017, - "count": 22 + "count": 17 }, { "year": 2018, - "count": 26 + "count": 22 }, { "year": 2019, - "count": 23 + "count": 20 }, { "year": 2020, - "count": 18 + "count": 14 }, { "year": 2021, - "count": 15 + "count": 13 }, { "year": 2022, - "count": 18 + "count": 17 }, { "year": 2023, - "count": 16 + "count": 11 }, { "year": 2024, - "count": 16 + "count": 10 }, { "year": 2025, + "count": 11 + }, + { + "year": 2026, "count": 14 } ], - "mysql": [ + "typescript": [ { "year": 2016, - "count": 13 + "count": 6 }, { "year": 2017, - "count": 17 + "count": 7 }, { "year": 2018, - "count": 22 + "count": 11 }, { "year": 2019, - "count": 20 + "count": 12 }, { "year": 2020, - "count": 14 + "count": 12 }, { "year": 2021, - "count": 13 + "count": 14 }, { "year": 2022, - "count": 17 + "count": 15 }, { "year": 2023, @@ -5670,11 +5884,15 @@ }, { "year": 2024, - "count": 10 + "count": 23 }, { "year": 2025, - "count": 11 + "count": 21 + }, + { + "year": 2026, + "count": 20 } ], "opengl": [ @@ -5717,32 +5935,36 @@ { "year": 2025, "count": 11 + }, + { + "year": 2026, + "count": 9 } ], - "typescript": [ + "go": [ { "year": 2016, - "count": 6 + "count": 10 }, { "year": 2017, - "count": 7 + "count": 15 }, { "year": 2018, - "count": 11 + "count": 16 }, { "year": 2019, - "count": 12 + "count": 16 }, { "year": 2020, - "count": 12 + "count": 17 }, { "year": 2021, - "count": 14 + "count": 16 }, { "year": 2022, @@ -5750,15 +5972,19 @@ }, { "year": 2023, - "count": 11 + "count": 14 }, { "year": 2024, - "count": 22 + "count": 15 }, { "year": 2025, - "count": 20 + "count": 14 + }, + { + "year": 2026, + "count": 13 } ], "php": [ @@ -5801,160 +6027,126 @@ { "year": 2025, "count": 14 - } - ], - "go": [ - { - "year": 2016, - "count": 10 - }, - { - "year": 2017, - "count": 15 - }, - { - "year": 2018, - "count": 16 - }, - { - "year": 2019, - "count": 16 - }, - { - "year": 2020, - "count": 17 - }, - { - "year": 2021, - "count": 16 - }, - { - "year": 2022, - "count": 15 - }, - { - "year": 2023, - "count": 14 - }, - { - "year": 2024, - "count": 15 }, { - "year": 2025, - "count": 14 + "year": 2026, + "count": 18 } ] }, "fastest_growing": [ { - "slug": "jvm", - "name": "jvm", - "growth_pct": 400, - "first_year_count": 1, - "last_year_count": 5 + "slug": "numpy", + "name": "numpy", + "growth_pct": 100, + "first_year_count": 4, + "last_year_count": 8 }, { - "slug": "grpc", - "name": "grpc", - "growth_pct": 200, - "first_year_count": 1, - "last_year_count": 3 + "slug": "pytorch", + "name": "pytorch", + "growth_pct": 100, + "first_year_count": 4, + "last_year_count": 8 }, { - "slug": "scala", - "name": "scala", - "growth_pct": 150, - "first_year_count": 2, - "last_year_count": 5 + "slug": "kubernetes", + "name": "kubernetes", + "growth_pct": 83, + "first_year_count": 6, + "last_year_count": 11 }, { - "slug": "llvm", - "name": "llvm", - "growth_pct": 80, - "first_year_count": 5, - "last_year_count": 9 + "slug": "spring", + "name": "spring", + "growth_pct": 67, + "first_year_count": 3, + "last_year_count": 5 }, { - "slug": "numpy", - "name": "numpy", - "growth_pct": 75, - "first_year_count": 4, - "last_year_count": 7 + "slug": "ide", + "name": "ide", + "growth_pct": 50, + "first_year_count": 2, + "last_year_count": 3 }, { "slug": "typescript", "name": "typescript", - "growth_pct": 67, - "first_year_count": 12, + "growth_pct": 43, + "first_year_count": 14, "last_year_count": 20 }, { - "slug": "pytorch", - "name": "pytorch", - "growth_pct": 67, + "slug": "web", + "name": "web", + "growth_pct": 40, + "first_year_count": 5, + "last_year_count": 7 + }, + { + "slug": "asm", + "name": "asm", + "growth_pct": 33, "first_year_count": 3, - "last_year_count": 5 + "last_year_count": 4 }, { "slug": "cython", "name": "cython", - "growth_pct": 67, - "first_year_count": 3, + "growth_pct": 25, + "first_year_count": 4, "last_year_count": 5 }, { - "slug": "ai", - "name": "ai", - "growth_pct": 60, - "first_year_count": 5, - "last_year_count": 8 - }, - { - "slug": "artificial-intelligence", - "name": "artificial intelligence", - "growth_pct": 60, - "first_year_count": 5, - "last_year_count": 8 + "slug": "html", + "name": "html", + "growth_pct": 18, + "first_year_count": 17, + "last_year_count": 20 } ], "most_selections": [ { "name": "python", "slug": "python", - "total": 277, + "total": 293, "byYear": [ + { + "year": 2026, + "count": 123 + }, { "year": 2025, - "count": 119 + "count": 122 }, { "year": 2024, - "count": 124 + "count": 126 }, { "year": 2023, - "count": 115 + "count": 116 }, { "year": 2022, - "count": 129 + "count": 130 }, { "year": 2021, - "count": 133 - }, - { - "year": 2020, - "count": 124 + "count": 134 } ] }, { "name": "javascript", "slug": "javascript", - "total": 220, + "total": 225, "byYear": [ + { + "year": 2026, + "count": 84 + }, { "year": 2025, "count": 92 @@ -5974,49 +6166,49 @@ { "year": 2021, "count": 92 - }, - { - "year": 2020, - "count": 97 } ] }, { "name": "c++", "slug": "cpp", - "total": 173, + "total": 178, "byYear": [ + { + "year": 2026, + "count": 87 + }, { "year": 2025, - "count": 80 + "count": 90 }, { "year": 2024, - "count": 88 + "count": 98 }, { "year": 2023, - "count": 83 + "count": 93 }, { "year": 2022, - "count": 100 + "count": 109 }, { "year": 2021, - "count": 97 - }, - { - "year": 2020, - "count": 102 + "count": 106 } ] }, { "name": "c", "slug": "c", - "total": 167, + "total": 170, "byYear": [ + { + "year": 2026, + "count": 73 + }, { "year": 2025, "count": 71 @@ -6036,18 +6228,18 @@ { "year": 2021, "count": 101 - }, - { - "year": 2020, - "count": 104 } ] }, { "name": "java", "slug": "java", - "total": 116, + "total": 117, "byYear": [ + { + "year": 2026, + "count": 40 + }, { "year": 2025, "count": 42 @@ -6067,18 +6259,18 @@ { "year": 2021, "count": 49 - }, - { - "year": 2020, - "count": 49 } ] }, { "name": "android", "slug": "android", - "total": 52, + "total": 53, "byYear": [ + { + "year": 2026, + "count": 26 + }, { "year": 2025, "count": 23 @@ -6098,25 +6290,25 @@ { "year": 2021, "count": 26 - }, - { - "year": 2020, - "count": 27 } ] }, { "name": "react", "slug": "react", - "total": 52, + "total": 53, "byYear": [ + { + "year": 2026, + "count": 21 + }, { "year": 2025, - "count": 18 + "count": 19 }, { "year": 2024, - "count": 21 + "count": 22 }, { "year": 2023, @@ -6129,18 +6321,18 @@ { "year": 2021, "count": 23 - }, - { - "year": 2020, - "count": 26 } ] }, { "name": "rust", "slug": "rust", - "total": 47, + "total": 49, "byYear": [ + { + "year": 2026, + "count": 23 + }, { "year": 2025, "count": 25 @@ -6160,10 +6352,6 @@ { "year": 2021, "count": 25 - }, - { - "year": 2020, - "count": 23 } ] }, @@ -6172,60 +6360,60 @@ "slug": "nodejs", "total": 40, "byYear": [ + { + "year": 2026, + "count": 24 + }, { "year": 2025, - "count": 13 + "count": 18 }, { "year": 2024, - "count": 21 + "count": 28 }, { "year": 2023, - "count": 17 + "count": 22 }, { "year": 2022, - "count": 19 + "count": 23 }, { "year": 2021, - "count": 21 - }, - { - "year": 2020, - "count": 23 + "count": 26 } ] }, { - "name": "golang", - "slug": "golang", - "total": 37, + "name": "html", + "slug": "html", + "total": 38, "byYear": [ + { + "year": 2026, + "count": 20 + }, { "year": 2025, - "count": 14 + "count": 17 }, { "year": 2024, - "count": 8 + "count": 19 }, { "year": 2023, - "count": 11 + "count": 19 }, { "year": 2022, - "count": 18 + "count": 22 }, { "year": 2021, - "count": 15 - }, - { - "year": 2020, - "count": 18 + "count": 17 } ] } @@ -6234,31 +6422,31 @@ { "name": "python", "slug": "python", - "total": 7616, + "total": 7705, "byYear": [ + { + "year": 2026, + "count": 0 + }, { "year": 2025, - "count": 906 + "count": 917 }, { "year": 2024, - "count": 785 + "count": 794 }, { "year": 2023, - "count": 660 + "count": 667 }, { "year": 2022, - "count": 773 + "count": 784 }, { "year": 2021, - "count": 873 - }, - { - "year": 2020, - "count": 761 + "count": 886 } ] }, @@ -6267,6 +6455,10 @@ "slug": "javascript", "total": 6654, "byYear": [ + { + "year": 2026, + "count": 0 + }, { "year": 2025, "count": 724 @@ -6286,10 +6478,6 @@ { "year": 2021, "count": 723 - }, - { - "year": 2020, - "count": 647 } ] }, @@ -6298,29 +6486,29 @@ "slug": "cpp", "total": 6024, "byYear": [ + { + "year": 2026, + "count": 0 + }, { "year": 2025, - "count": 670 + "count": 770 }, { "year": 2024, - "count": 612 + "count": 700 }, { "year": 2023, - "count": 528 + "count": 599 }, { "year": 2022, - "count": 604 + "count": 666 }, { "year": 2021, - "count": 700 - }, - { - "year": 2020, - "count": 649 + "count": 766 } ] }, @@ -6329,6 +6517,10 @@ "slug": "c", "total": 5815, "byYear": [ + { + "year": 2026, + "count": 0 + }, { "year": 2025, "count": 614 @@ -6348,10 +6540,6 @@ { "year": 2021, "count": 654 - }, - { - "year": 2020, - "count": 603 } ] }, @@ -6360,6 +6548,10 @@ "slug": "java", "total": 3352, "byYear": [ + { + "year": 2026, + "count": 0 + }, { "year": 2025, "count": 315 @@ -6379,10 +6571,6 @@ { "year": 2021, "count": 349 - }, - { - "year": 2020, - "count": 328 } ] }, @@ -6391,6 +6579,10 @@ "slug": "android", "total": 2061, "byYear": [ + { + "year": 2026, + "count": 0 + }, { "year": 2025, "count": 186 @@ -6410,10 +6602,6 @@ { "year": 2021, "count": 228 - }, - { - "year": 2020, - "count": 237 } ] }, @@ -6422,6 +6610,10 @@ "slug": "machine-learning", "total": 1652, "byYear": [ + { + "year": 2026, + "count": 0 + }, { "year": 2025, "count": 199 @@ -6441,10 +6633,6 @@ { "year": 2021, "count": 197 - }, - { - "year": 2020, - "count": 188 } ] }, @@ -6453,6 +6641,10 @@ "slug": "html", "total": 1481, "byYear": [ + { + "year": 2026, + "count": 0 + }, { "year": 2025, "count": 128 @@ -6472,10 +6664,6 @@ { "year": 2021, "count": 144 - }, - { - "year": 2020, - "count": 149 } ] }, @@ -6484,6 +6672,10 @@ "slug": "rust", "total": 1407, "byYear": [ + { + "year": 2026, + "count": 0 + }, { "year": 2025, "count": 153 @@ -6503,25 +6695,25 @@ { "year": 2021, "count": 166 - }, - { - "year": 2020, - "count": 142 } ] }, { "name": "react", "slug": "react", - "total": 1398, + "total": 1401, "byYear": [ + { + "year": 2026, + "count": 0 + }, { "year": 2025, - "count": 119 + "count": 121 }, { "year": 2024, - "count": 121 + "count": 122 }, { "year": 2023, @@ -6534,10 +6726,6 @@ { "year": 2021, "count": 150 - }, - { - "year": 2020, - "count": 149 } ] } @@ -6545,6 +6733,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.586Z" + "generated_at": "2026-02-19T13:36:00.123Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/influxdb.json b/new-api-details/tech-stack/influxdb.json index 89ce42cc..9ed9a326 100644 --- a/new-api-details/tech-stack/influxdb.json +++ b/new-api-details/tech-stack/influxdb.json @@ -1,7 +1,7 @@ { "slug": "influxdb", "name": "influxdb", - "published_at": "2026-01-24T21:33:12.242Z", + "published_at": "2026-02-19T13:35:59.639Z", "metrics": { "org_count": 1, "project_count": 4, @@ -75,11 +75,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.242Z" + "generated_at": "2026-02-19T13:35:59.639Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/instrumentation.json b/new-api-details/tech-stack/instrumentation.json index f15df5b6..9ed4f88c 100644 --- a/new-api-details/tech-stack/instrumentation.json +++ b/new-api-details/tech-stack/instrumentation.json @@ -1,13 +1,13 @@ { "slug": "instrumentation", "name": "instrumentation", - "published_at": "2026-01-24T21:33:12.059Z", + "published_at": "2026-02-19T13:35:59.404Z", "metrics": { "org_count": 1, "project_count": 10, "avg_projects_per_org": 10, "first_year_used": 2020, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -23,7 +23,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,11 +79,16 @@ "year": 2025, "org_count": 1, "project_count": 1 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.059Z" + "generated_at": "2026-02-19T13:35:59.404Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/integer-set-library.json b/new-api-details/tech-stack/integer-set-library.json index 4473dbd2..74913adc 100644 --- a/new-api-details/tech-stack/integer-set-library.json +++ b/new-api-details/tech-stack/integer-set-library.json @@ -1,7 +1,7 @@ { "slug": "integer-set-library", "name": "integer set library", - "published_at": "2026-01-24T21:33:12.442Z", + "published_at": "2026-02-19T13:35:59.898Z", "metrics": { "org_count": 1, "project_count": 4, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.442Z" + "generated_at": "2026-02-19T13:35:59.898Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/internationalization.json b/new-api-details/tech-stack/internationalization.json index 7b12939d..d2b06d84 100644 --- a/new-api-details/tech-stack/internationalization.json +++ b/new-api-details/tech-stack/internationalization.json @@ -1,13 +1,13 @@ { "slug": "internationalization", "name": "internationalization", - "published_at": "2026-01-24T21:33:12.187Z", + "published_at": "2026-02-19T13:35:59.546Z", "metrics": { "org_count": 1, "project_count": 32, "avg_projects_per_org": 32, "first_year_used": 2019, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -24,7 +24,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -79,11 +80,16 @@ "year": 2025, "org_count": 1, "project_count": 6 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.187Z" + "generated_at": "2026-02-19T13:35:59.546Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/internet-of-things.json b/new-api-details/tech-stack/internet-of-things.json index 686a0261..2e1bf0b4 100644 --- a/new-api-details/tech-stack/internet-of-things.json +++ b/new-api-details/tech-stack/internet-of-things.json @@ -1,7 +1,7 @@ { "slug": "internet-of-things", "name": "internet of things", - "published_at": "2026-01-24T21:33:12.434Z", + "published_at": "2026-02-19T13:35:59.888Z", "metrics": { "org_count": 1, "project_count": 8, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.434Z" + "generated_at": "2026-02-19T13:35:59.888Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/ionic.json b/new-api-details/tech-stack/ionic.json index 6e6890f4..0330a3ed 100644 --- a/new-api-details/tech-stack/ionic.json +++ b/new-api-details/tech-stack/ionic.json @@ -1,7 +1,7 @@ { "slug": "ionic", "name": "ionic", - "published_at": "2026-01-24T21:33:12.390Z", + "published_at": "2026-02-19T13:35:59.834Z", "metrics": { "org_count": 1, "project_count": 7, @@ -76,11 +76,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.390Z" + "generated_at": "2026-02-19T13:35:59.834Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/ios.json b/new-api-details/tech-stack/ios.json index 68fcf98c..4e93cf7c 100644 --- a/new-api-details/tech-stack/ios.json +++ b/new-api-details/tech-stack/ios.json @@ -1,13 +1,13 @@ { "slug": "ios", "name": "ios", - "published_at": "2026-01-24T21:33:12.064Z", + "published_at": "2026-02-19T13:35:59.415Z", "metrics": { "org_count": 18, "project_count": 660, "avg_projects_per_org": 36.7, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -46,7 +47,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -65,7 +67,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -85,16 +88,17 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "jboss-community", "name": "JBoss Community", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jboss-community.webp", - "category": "Data", + "category": "Web", "total_projects": 52, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -102,7 +106,8 @@ 2019, 2020, 2021, - 2022 + 2022, + 2026 ] }, { @@ -149,7 +154,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -187,7 +193,8 @@ "active_years": [ 2018, 2022, - 2025 + 2025, + 2026 ] }, { @@ -199,7 +206,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -208,7 +216,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/organic-maps.webp", "category": "End user applications", "total_projects": 10, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2023, @@ -240,28 +248,28 @@ ] }, { - "slug": "p2psporg", - "name": "P2PSP.org", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/p2psporg.webp", - "category": "Media", + "slug": "owncloud", + "name": "ownCloud", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/owncloud.webp", + "category": "Infrastructure and cloud", "total_projects": 5, "is_currently_active": false, "active_years": [ 2016, - 2017, - 2018 + 2017 ] }, { - "slug": "owncloud", - "name": "ownCloud", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/owncloud.webp", - "category": "Infrastructure and cloud", + "slug": "p2psporg", + "name": "P2PSP.org", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/p2psporg.webp", + "category": "Media", "total_projects": 5, "is_currently_active": false, "active_years": [ 2016, - 2017 + 2017, + 2018 ] }, { @@ -327,11 +335,16 @@ "year": 2025, "org_count": 8, "project_count": 77 + }, + { + "year": 2026, + "org_count": 8, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.064Z" + "generated_at": "2026-02-19T13:35:59.415Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/iot.json b/new-api-details/tech-stack/iot.json index 12e345c5..a76502f9 100644 --- a/new-api-details/tech-stack/iot.json +++ b/new-api-details/tech-stack/iot.json @@ -1,13 +1,13 @@ { "slug": "iot", "name": "iot", - "published_at": "2026-01-24T21:33:12.118Z", + "published_at": "2026-02-19T13:35:59.466Z", "metrics": { "org_count": 2, "project_count": 112, "avg_projects_per_org": 56, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -35,7 +36,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/beagleboardorg.webp", "category": "Science and medicine", "total_projects": 44, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -101,11 +102,16 @@ "year": 2025, "org_count": 2, "project_count": 12 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.118Z" + "generated_at": "2026-02-19T13:35:59.466Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/ipp.json b/new-api-details/tech-stack/ipp.json index 95b2d836..2f79ba80 100644 --- a/new-api-details/tech-stack/ipp.json +++ b/new-api-details/tech-stack/ipp.json @@ -1,13 +1,13 @@ { "slug": "ipp", "name": "ipp", - "published_at": "2026-01-24T21:33:12.510Z", + "published_at": "2026-02-19T13:35:59.973Z", "metrics": { "org_count": 1, "project_count": 137, "avg_projects_per_org": 137, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -82,11 +83,16 @@ "year": 2025, "org_count": 1, "project_count": 21 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.510Z" + "generated_at": "2026-02-19T13:35:59.973Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/irc.json b/new-api-details/tech-stack/irc.json index 864e1c4f..5f7e0219 100644 --- a/new-api-details/tech-stack/irc.json +++ b/new-api-details/tech-stack/irc.json @@ -1,13 +1,13 @@ { "slug": "irc", "name": "irc", - "published_at": "2026-01-24T21:33:12.212Z", + "published_at": "2026-02-19T13:35:59.593Z", "metrics": { "org_count": 1, "project_count": 78, "avg_projects_per_org": 78, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -25,7 +25,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] } ], @@ -80,11 +81,16 @@ "year": 2025, "org_count": 1, "project_count": 9 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.212Z" + "generated_at": "2026-02-19T13:35:59.593Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/isabelle-proof-assistant.json b/new-api-details/tech-stack/isabelle-proof-assistant.json index 048812e9..743a88c2 100644 --- a/new-api-details/tech-stack/isabelle-proof-assistant.json +++ b/new-api-details/tech-stack/isabelle-proof-assistant.json @@ -1,13 +1,13 @@ { "slug": "isabelle-proof-assistant", "name": "isabelle proof assistant", - "published_at": "2026-01-24T21:33:12.063Z", + "published_at": "2026-02-19T13:35:59.423Z", "metrics": { "org_count": 1, "project_count": 117, "avg_projects_per_org": 117, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 21 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.063Z" + "generated_at": "2026-02-19T13:35:59.423Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/isl.json b/new-api-details/tech-stack/isl.json index b93a1a16..63379433 100644 --- a/new-api-details/tech-stack/isl.json +++ b/new-api-details/tech-stack/isl.json @@ -1,7 +1,7 @@ { "slug": "isl", "name": "isl", - "published_at": "2026-01-24T21:33:12.443Z", + "published_at": "2026-02-19T13:35:59.900Z", "metrics": { "org_count": 1, "project_count": 4, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.443Z" + "generated_at": "2026-02-19T13:35:59.900Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/jakarta.json b/new-api-details/tech-stack/jakarta.json index 23118d68..04019b55 100644 --- a/new-api-details/tech-stack/jakarta.json +++ b/new-api-details/tech-stack/jakarta.json @@ -1,13 +1,13 @@ { "slug": "jakarta", "name": "jakarta", - "published_at": "2026-01-24T21:33:12.227Z", + "published_at": "2026-02-19T13:35:59.615Z", "metrics": { "org_count": 1, "project_count": 68, "avg_projects_per_org": 68, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 7 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.227Z" + "generated_at": "2026-02-19T13:35:59.615Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/jakartaee.json b/new-api-details/tech-stack/jakartaee.json index e4261947..a28dab94 100644 --- a/new-api-details/tech-stack/jakartaee.json +++ b/new-api-details/tech-stack/jakartaee.json @@ -1,13 +1,13 @@ { "slug": "jakartaee", "name": "jakartaee", - "published_at": "2026-01-24T21:33:12.229Z", + "published_at": "2026-02-19T13:35:59.616Z", "metrics": { "org_count": 1, "project_count": 68, "avg_projects_per_org": 68, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 7 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.229Z" + "generated_at": "2026-02-19T13:35:59.616Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/java-ee.json b/new-api-details/tech-stack/java-ee.json index 0ddd9b62..ca090e8b 100644 --- a/new-api-details/tech-stack/java-ee.json +++ b/new-api-details/tech-stack/java-ee.json @@ -1,7 +1,7 @@ { "slug": "java-ee", "name": "java ee", - "published_at": "2026-01-24T21:33:12.497Z", + "published_at": "2026-02-19T13:35:59.958Z", "metrics": { "org_count": 1, "project_count": 20, @@ -75,11 +75,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.497Z" + "generated_at": "2026-02-19T13:35:59.958Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/java.json b/new-api-details/tech-stack/java.json index 792a35b5..59013bee 100644 --- a/new-api-details/tech-stack/java.json +++ b/new-api-details/tech-stack/java.json @@ -1,13 +1,13 @@ { "slug": "java", "name": "java", - "published_at": "2026-01-24T21:33:12.046Z", + "published_at": "2026-02-19T13:35:59.374Z", "metrics": { - "org_count": 116, + "org_count": 117, "project_count": 3352, - "avg_projects_per_org": 28.9, + "avg_projects_per_org": 28.6, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-apache-software-foundation.webp", "category": "Web", "total_projects": 248, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -47,7 +47,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -72,7 +73,7 @@ "slug": "fossasia", "name": "FOSSASIA", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/fossasia.webp", - "category": "Science and medicine", + "category": "End user applications", "total_projects": 140, "is_currently_active": true, "active_years": [ @@ -81,7 +82,8 @@ 2018, 2019, 2024, - 2025 + 2025, + 2026 ] }, { @@ -101,7 +103,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -120,7 +123,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -139,7 +143,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -159,7 +164,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -179,7 +185,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -197,7 +204,8 @@ 2021, 2022, 2023, - 2025 + 2025, + 2026 ] }, { @@ -217,7 +225,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -235,7 +244,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] }, { @@ -254,7 +264,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -263,7 +274,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/chromium.webp", "category": "Operating systems", "total_projects": 71, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2021, 2022, @@ -276,7 +287,7 @@ "slug": "open-technologies-alliance-gfoss", "name": "Open Technologies Alliance - GFOSS", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-technologies-alliance-gfoss.webp", - "category": "Development tools", + "category": "Science and medicine", "total_projects": 70, "is_currently_active": true, "active_years": [ @@ -287,7 +298,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -306,7 +318,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -326,14 +339,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "dbpedia", "name": "DBpedia", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/dbpedia.webp", - "category": "Science and medicine", + "category": "Data", "total_projects": 61, "is_currently_active": true, "active_years": [ @@ -346,16 +360,17 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "jboss-community", "name": "JBoss Community", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jboss-community.webp", - "category": "Data", + "category": "Web", "total_projects": 52, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -363,7 +378,8 @@ 2019, 2020, 2021, - 2022 + 2022, + 2026 ] }, { @@ -402,7 +418,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -411,7 +428,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/global-alliance-for-genomics-and-health.webp", "category": "Science and medicine", "total_projects": 45, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -421,7 +438,8 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -440,7 +458,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -477,7 +496,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -513,41 +533,44 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "ruby", - "name": "Ruby", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ruby.webp", - "category": "Programming languages", + "slug": "cbioportal-for-cancer-genomics", + "name": "cBioPortal for Cancer Genomics", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cbioportal-for-cancer-genomics.webp", + "category": "Science and medicine", "total_projects": 38, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, - 2018, + 2017, 2019, - 2020, - 2021, 2022, - 2023 + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "cbioportal-for-cancer-genomics", - "name": "cBioPortal for Cancer Genomics", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cbioportal-for-cancer-genomics.webp", - "category": "Science and medicine", + "slug": "ruby", + "name": "Ruby", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ruby.webp", + "category": "Programming languages", "total_projects": 38, "is_currently_active": true, "active_years": [ 2016, - 2017, + 2018, 2019, + 2020, + 2021, 2022, 2023, - 2024, - 2025 + 2026 ] }, { @@ -579,7 +602,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -602,7 +626,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/librehealth.webp", "category": "Science and medicine", "total_projects": 31, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, @@ -610,7 +634,8 @@ 2020, 2021, 2022, - 2023 + 2023, + 2026 ] }, { @@ -634,13 +659,14 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cuneiform-digital-library-initiative-cdli.webp", "category": "Science and medicine", "total_projects": 30, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2018, 2019, 2020, 2021, - 2022 + 2022, + 2026 ] }, { @@ -678,14 +704,15 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-genome-informatics.webp", "category": "Science and medicine", "total_projects": 28, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, 2020, 2021, 2022, - 2023 + 2023, + 2026 ] }, { @@ -694,7 +721,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/department-of-biomedical-informatics-emory-university.webp", "category": "Security", "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2021, 2022, @@ -720,7 +747,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -747,39 +775,42 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "jitsi", - "name": "Jitsi", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jitsi.webp", - "category": "Media", + "slug": "checkstyle", + "name": "checkstyle", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/checkstyle.webp", + "category": "Programming languages", "total_projects": 21, "is_currently_active": true, "active_years": [ 2017, - 2018, + 2020, + 2021, 2022, + 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "checkstyle", - "name": "checkstyle", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/checkstyle.webp", - "category": "Programming languages", + "slug": "jitsi", + "name": "Jitsi", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jitsi.webp", + "category": "Media", "total_projects": 21, "is_currently_active": true, "active_years": [ 2017, - 2020, - 2021, + 2018, 2022, - 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -865,7 +896,8 @@ 2021, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -874,7 +906,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/checker-framework.webp", "category": "Security", "total_projects": 17, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2017, 2018, @@ -903,7 +935,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/asyncapi.webp", "category": "Programming languages", "total_projects": 15, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2024, 2025 @@ -928,7 +960,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/software-and-computational-systems-lab-at-lmu-munich.webp", "category": "Programming languages", "total_projects": 14, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2018, 2019, @@ -960,18 +992,20 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { "slug": "c2si", "name": "C2SI", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/c2si.webp", - "category": "Security", + "category": "End user applications", "total_projects": 12, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ - 2024 + 2024, + 2026 ] }, { @@ -987,37 +1021,37 @@ ] }, { - "slug": "xwiki", - "name": "XWiki", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/xwiki.webp", - "category": "Web", + "slug": "syslog-ng", + "name": "syslog-ng", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/syslog-ng.webp", + "category": "Data", "total_projects": 12, "is_currently_active": false, "active_years": [ 2016, - 2017, 2018, 2019, 2020, 2021, - 2022, - 2023 + 2022 ] }, { - "slug": "syslog-ng", - "name": "syslog-ng", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/syslog-ng.webp", - "category": "Data", + "slug": "xwiki", + "name": "XWiki", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/xwiki.webp", + "category": "Web", "total_projects": 12, "is_currently_active": false, "active_years": [ 2016, + 2017, 2018, 2019, 2020, 2021, - 2022 + 2022, + 2023 ] }, { @@ -1032,7 +1066,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1041,7 +1076,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/keploy.webp", "category": "Programming languages", "total_projects": 11, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2023, 2024, @@ -1075,7 +1110,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1098,7 +1134,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -1107,7 +1144,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/organic-maps.webp", "category": "End user applications", "total_projects": 10, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2023, @@ -1136,7 +1173,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -1158,7 +1196,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/unicode-inc.webp", "category": "Programming languages", "total_projects": 9, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2024, 2025 @@ -1245,7 +1283,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/sqlancer.webp", "category": "Data", "total_projects": 6, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2023, 2025 @@ -1523,6 +1561,17 @@ 2019 ] }, + { + "slug": "languagetoolorg", + "name": "languagetool.org", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/languagetoolorg.webp", + "category": "End user applications", + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2018 + ] + }, { "slug": "leap-encryption-access-project", "name": "LEAP Encryption Access Project", @@ -1536,10 +1585,10 @@ ] }, { - "slug": "mzmine-and-ms-dial", - "name": "MZmine and MS-DIAL", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mzmine-and-ms-dial.webp", - "category": "Science and medicine", + "slug": "mantis", + "name": "Mantis", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mantis.webp", + "category": "Data", "total_projects": 2, "is_currently_active": false, "active_years": [ @@ -1547,10 +1596,10 @@ ] }, { - "slug": "mantis", - "name": "Mantis", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mantis.webp", - "category": "Data", + "slug": "mzmine-and-ms-dial", + "name": "MZmine and MS-DIAL", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mzmine-and-ms-dial.webp", + "category": "Science and medicine", "total_projects": 2, "is_currently_active": false, "active_years": [ @@ -1568,6 +1617,17 @@ 2019 ] }, + { + "slug": "ovirt", + "name": "oVirt", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ovirt.webp", + "category": "End user applications", + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2017 + ] + }, { "slug": "pocket-science-lab", "name": "Pocket Science Lab", @@ -1587,7 +1647,8 @@ "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] }, { @@ -1601,28 +1662,6 @@ 2016 ] }, - { - "slug": "languagetoolorg", - "name": "languagetool.org", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/languagetoolorg.webp", - "category": "End user applications", - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2018 - ] - }, - { - "slug": "ovirt", - "name": "oVirt", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ovirt.webp", - "category": "End user applications", - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2017 - ] - }, { "slug": "institut-für-angewandte-informatik-infai-ev", "name": "Institut für Angewandte Informatik (InfAI) e.V.", @@ -1667,6 +1706,17 @@ 2018 ] }, + { + "slug": "apache-software-foundation", + "name": "Apache Software Foundation", + "logo_url": "https://summerofcode.withgoogle.com/media/org/apache-software-foundation/hq22fwtmvdfjnsh9-360.png", + "category": "Web", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + }, { "slug": "ow2", "name": "OW2", @@ -1730,11 +1780,16 @@ "year": 2025, "org_count": 42, "project_count": 315 + }, + { + "year": 2026, + "org_count": 40, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.046Z" + "generated_at": "2026-02-19T13:35:59.374Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/javacc.json b/new-api-details/tech-stack/javacc.json index a33f3061..bf71b423 100644 --- a/new-api-details/tech-stack/javacc.json +++ b/new-api-details/tech-stack/javacc.json @@ -1,7 +1,7 @@ { "slug": "javacc", "name": "javacc", - "published_at": "2026-01-24T21:33:12.424Z", + "published_at": "2026-02-19T13:35:59.891Z", "metrics": { "org_count": 1, "project_count": 3, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.424Z" + "generated_at": "2026-02-19T13:35:59.891Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/javafx.json b/new-api-details/tech-stack/javafx.json index d0f2f5ba..8227ed3e 100644 --- a/new-api-details/tech-stack/javafx.json +++ b/new-api-details/tech-stack/javafx.json @@ -1,13 +1,13 @@ { "slug": "javafx", "name": "javafx", - "published_at": "2026-01-24T21:33:12.198Z", + "published_at": "2026-02-19T13:35:59.570Z", "metrics": { "org_count": 4, "project_count": 20, "avg_projects_per_org": 5, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -22,7 +22,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] }, { @@ -112,11 +113,16 @@ "year": 2025, "org_count": 1, "project_count": 4 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.198Z" + "generated_at": "2026-02-19T13:35:59.570Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/javasc.json b/new-api-details/tech-stack/javasc.json index 7ce38f73..ba1b7d52 100644 --- a/new-api-details/tech-stack/javasc.json +++ b/new-api-details/tech-stack/javasc.json @@ -1,7 +1,7 @@ { "slug": "javasc", "name": "javasc", - "published_at": "2026-01-24T21:33:12.166Z", + "published_at": "2026-02-19T13:35:59.497Z", "metrics": { "org_count": 1, "project_count": 1, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.166Z" + "generated_at": "2026-02-19T13:35:59.497Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/javascipt.json b/new-api-details/tech-stack/javascipt.json new file mode 100644 index 00000000..c2849c21 --- /dev/null +++ b/new-api-details/tech-stack/javascipt.json @@ -0,0 +1,98 @@ +{ + "slug": "javascipt", + "name": "javascipt", + "published_at": "2026-02-19T13:35:59.954Z", + "metrics": { + "org_count": 1, + "project_count": 89, + "avg_projects_per_org": 89, + "first_year_used": 2016, + "latest_year_used": 2026 + }, + "organizations": [ + { + "slug": "sugar-labs", + "name": "Sugar Labs", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/sugar-labs.webp", + "category": "End user applications", + "total_projects": 89, + "is_currently_active": true, + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ] + } + ], + "charts": { + "popularity_by_year": [ + { + "year": 2016, + "org_count": 1, + "project_count": 5 + }, + { + "year": 2017, + "org_count": 1, + "project_count": 9 + }, + { + "year": 2018, + "org_count": 1, + "project_count": 11 + }, + { + "year": 2019, + "org_count": 1, + "project_count": 8 + }, + { + "year": 2020, + "org_count": 1, + "project_count": 9 + }, + { + "year": 2021, + "org_count": 1, + "project_count": 8 + }, + { + "year": 2022, + "org_count": 1, + "project_count": 9 + }, + { + "year": 2023, + "org_count": 1, + "project_count": 8 + }, + { + "year": 2024, + "org_count": 1, + "project_count": 11 + }, + { + "year": 2025, + "org_count": 1, + "project_count": 11 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 + } + ] + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:35:59.954Z" + } +} \ No newline at end of file diff --git a/new-api-details/tech-stack/javascr.json b/new-api-details/tech-stack/javascr.json index d3173337..1cfdd192 100644 --- a/new-api-details/tech-stack/javascr.json +++ b/new-api-details/tech-stack/javascr.json @@ -1,13 +1,13 @@ { "slug": "javascr", "name": "javascr", - "published_at": "2026-01-24T21:33:12.448Z", + "published_at": "2026-02-19T13:35:59.904Z", "metrics": { "org_count": 1, "project_count": 87, "avg_projects_per_org": 87, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -25,7 +25,8 @@ 2021, 2022, 2023, - 2025 + 2025, + 2026 ] } ], @@ -80,11 +81,16 @@ "year": 2025, "org_count": 1, "project_count": 3 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.448Z" + "generated_at": "2026-02-19T13:35:59.904Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/javascript.json b/new-api-details/tech-stack/javascript.json index 96890f97..60d71cf8 100644 --- a/new-api-details/tech-stack/javascript.json +++ b/new-api-details/tech-stack/javascript.json @@ -1,13 +1,13 @@ { "slug": "javascript", "name": "javascript", - "published_at": "2026-01-24T21:33:12.045Z", + "published_at": "2026-02-19T13:35:59.372Z", "metrics": { - "org_count": 220, + "org_count": 225, "project_count": 6654, - "avg_projects_per_org": 30.2, + "avg_projects_per_org": 29.6, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,14 +27,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "python-software-foundation", "name": "Python Software Foundation", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/python-software-foundation.webp", - "category": "Science and medicine", + "category": "End user applications", "total_projects": 277, "is_currently_active": true, "active_years": [ @@ -47,7 +48,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -56,7 +58,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-apache-software-foundation.webp", "category": "Web", "total_projects": 248, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -87,7 +89,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -107,14 +110,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "fossasia", "name": "FOSSASIA", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/fossasia.webp", - "category": "Science and medicine", + "category": "End user applications", "total_projects": 140, "is_currently_active": true, "active_years": [ @@ -123,7 +127,8 @@ 2018, 2019, 2024, - 2025 + 2025, + 2026 ] }, { @@ -142,7 +147,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -162,7 +168,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -182,7 +189,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -201,7 +209,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -221,7 +230,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -240,7 +250,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -259,7 +270,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -278,7 +290,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -298,7 +311,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -318,7 +332,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -338,7 +353,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -347,7 +363,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/opencv.webp", "category": "Media", "total_projects": 93, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -377,7 +393,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -395,7 +412,8 @@ 2021, 2022, 2023, - 2025 + 2025, + 2026 ] }, { @@ -404,7 +422,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/wikimedia-foundation.webp", "category": "Web", "total_projects": 85, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -414,7 +432,8 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -434,7 +453,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -469,7 +489,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -487,7 +508,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] }, { @@ -507,7 +529,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -527,7 +550,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -546,7 +570,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -570,7 +595,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/freifunk.webp", "category": "Operating systems", "total_projects": 74, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -600,7 +625,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -609,7 +635,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/chromium.webp", "category": "Operating systems", "total_projects": 71, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2021, 2022, @@ -622,7 +648,7 @@ "slug": "open-technologies-alliance-gfoss", "name": "Open Technologies Alliance - GFOSS", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-technologies-alliance-gfoss.webp", - "category": "Development tools", + "category": "Science and medicine", "total_projects": 70, "is_currently_active": true, "active_years": [ @@ -633,7 +659,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -652,7 +679,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -677,7 +705,7 @@ "slug": "dbpedia", "name": "DBpedia", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/dbpedia.webp", - "category": "Science and medicine", + "category": "Data", "total_projects": 61, "is_currently_active": true, "active_years": [ @@ -690,7 +718,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -710,7 +739,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -730,7 +760,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -739,7 +770,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnu-project.webp", "category": "Operating systems", "total_projects": 59, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -747,7 +778,8 @@ 2019, 2020, 2023, - 2024 + 2024, + 2026 ] }, { @@ -767,7 +799,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -786,7 +819,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -824,7 +858,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -837,7 +872,8 @@ "active_years": [ 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -856,7 +892,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -865,7 +902,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/google-deepmind.webp", "category": "Artificial Intelligence", "total_projects": 45, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2025 ] @@ -886,7 +923,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -923,7 +961,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -932,7 +971,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/beagleboardorg.webp", "category": "Science and medicine", "total_projects": 44, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -961,7 +1000,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -980,7 +1020,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1000,40 +1041,42 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "public-lab", - "name": "Public Lab", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/public-lab.webp", + "slug": "cbioportal-for-cancer-genomics", + "name": "cBioPortal for Cancer Genomics", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cbioportal-for-cancer-genomics.webp", "category": "Science and medicine", "total_projects": 38, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, - 2018, 2019, - 2021, - 2022 + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "cbioportal-for-cancer-genomics", - "name": "cBioPortal for Cancer Genomics", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cbioportal-for-cancer-genomics.webp", + "slug": "public-lab", + "name": "Public Lab", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/public-lab.webp", "category": "Science and medicine", "total_projects": 38, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, + 2018, 2019, - 2022, - 2023, - 2024, - 2025 + 2021, + 2022 ] }, { @@ -1050,7 +1093,8 @@ 2019, 2021, 2022, - 2025 + 2025, + 2026 ] }, { @@ -1059,7 +1103,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-palisadoes-foundation.webp", "category": "Social and communication", "total_projects": 36, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2021, 2022, @@ -1083,7 +1127,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1101,7 +1146,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1118,7 +1164,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1136,7 +1183,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1159,7 +1207,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/librehealth.webp", "category": "Science and medicine", "total_projects": 31, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, @@ -1167,7 +1215,8 @@ 2020, 2021, 2022, - 2023 + 2023, + 2026 ] }, { @@ -1176,13 +1225,14 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cuneiform-digital-library-initiative-cdli.webp", "category": "Science and medicine", "total_projects": 30, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2018, 2019, 2020, 2021, - 2022 + 2022, + 2026 ] }, { @@ -1201,7 +1251,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1222,7 +1273,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/chaoss.webp", "category": "Data", "total_projects": 29, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2018, 2019, @@ -1255,7 +1306,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cloudcv.webp", "category": "Web", "total_projects": 28, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -1274,14 +1325,15 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-genome-informatics.webp", "category": "Science and medicine", "total_projects": 28, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, 2020, 2021, 2022, - 2023 + 2023, + 2026 ] }, { @@ -1290,7 +1342,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/department-of-biomedical-informatics-emory-university.webp", "category": "Security", "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2021, 2022, @@ -1305,7 +1357,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/fedora-project.webp", "category": "Operating systems", "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -1330,7 +1382,8 @@ 2021, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1349,7 +1402,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1358,7 +1412,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/plone-foundation.webp", "category": "Web", "total_projects": 26, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -1386,7 +1440,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1429,7 +1484,8 @@ 2018, 2022, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1479,12 +1535,13 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/metacall.webp", "category": "Programming languages", "total_projects": 19, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -1523,14 +1580,15 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/submitty.webp", "category": "End user applications", "total_projects": 19, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2018, 2019, 2020, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -1539,7 +1597,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-tor-project.webp", "category": "Web", "total_projects": 19, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -1590,7 +1648,8 @@ 2021, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1599,12 +1658,27 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/joplin.webp", "category": "End user applications", "total_projects": 17, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2020, 2021, 2022, - 2024 + 2024, + 2026 + ] + }, + { + "slug": "aimacode", + "name": "aimacode", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/aimacode.webp", + "category": "Programming languages", + "total_projects": 16, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2018, + 2019 ] }, { @@ -1619,7 +1693,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1636,21 +1711,8 @@ 2020, 2022, 2024, - 2025 - ] - }, - { - "slug": "aimacode", - "name": "aimacode", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/aimacode.webp", - "category": "Programming languages", - "total_projects": 16, - "is_currently_active": false, - "active_years": [ - 2016, - 2017, - 2018, - 2019 + 2025, + 2026 ] }, { @@ -1659,7 +1721,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/asyncapi.webp", "category": "Programming languages", "total_projects": 15, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2024, 2025 @@ -1685,7 +1747,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gitlab.webp", "category": "Infrastructure and cloud", "total_projects": 15, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2021, 2022, @@ -1699,7 +1761,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/internet-health-report.webp", "category": "Science and medicine", "total_projects": 15, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2023, @@ -1744,11 +1806,12 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/genome-assembly-and-annotation.webp", "category": "Science and medicine", "total_projects": 14, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2021, 2022, - 2023 + 2023, + 2026 ] }, { @@ -1760,7 +1823,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -1769,7 +1833,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/software-and-computational-systems-lab-at-lmu-munich.webp", "category": "Programming languages", "total_projects": 14, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2018, 2019, @@ -1789,7 +1853,8 @@ 2020, 2021, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1838,7 +1903,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/society-for-arts-and-technology-sat.webp", "category": "Media", "total_projects": 12, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2023, @@ -1909,7 +1974,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1939,7 +2005,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1988,7 +2055,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -2001,7 +2069,8 @@ "active_years": [ 2018, 2022, - 2025 + 2025, + 2026 ] }, { @@ -2017,18 +2086,6 @@ 2022 ] }, - { - "slug": "zendalona", - "name": "Zendalona", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/zendalona.webp", - "category": "End user applications", - "total_projects": 10, - "is_currently_active": true, - "active_years": [ - 2024, - 2025 - ] - }, { "slug": "webpack", "name": "webpack", @@ -2040,6 +2097,19 @@ 2018, 2019, 2020, + 2024, + 2025, + 2026 + ] + }, + { + "slug": "zendalona", + "name": "Zendalona", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/zendalona.webp", + "category": "End user applications", + "total_projects": 10, + "is_currently_active": false, + "active_years": [ 2024, 2025 ] @@ -2066,7 +2136,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -2082,42 +2153,29 @@ ] }, { - "slug": "polypheny", - "name": "Polypheny", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/polypheny.webp", + "slug": "phpmyadmin", + "name": "phpMyAdmin", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/phpmyadmin.webp", "category": "Data", "total_projects": 9, "is_currently_active": false, "active_years": [ - 2021, - 2022, - 2024 - ] - }, - { - "slug": "stony-brook-university-biomedical-informatics", - "name": "Stony Brook University Biomedical Informatics", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/stony-brook-university-biomedical-informatics.webp", - "category": "Science and medicine", - "total_projects": 9, - "is_currently_active": false, - "active_years": [ - 2016, 2017, - 2018 + 2018, + 2019 ] }, { - "slug": "phpmyadmin", - "name": "phpMyAdmin", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/phpmyadmin.webp", + "slug": "polypheny", + "name": "Polypheny", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/polypheny.webp", "category": "Data", "total_projects": 9, "is_currently_active": false, "active_years": [ - 2017, - 2018, - 2019 + 2021, + 2022, + 2024 ] }, { @@ -2129,7 +2187,21 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "stony-brook-university-biomedical-informatics", + "name": "Stony Brook University Biomedical Informatics", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/stony-brook-university-biomedical-informatics.webp", + "category": "Science and medicine", + "total_projects": 9, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2018 ] }, { @@ -2141,7 +2213,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -2181,7 +2254,8 @@ 2018, 2019, 2020, - 2025 + 2025, + 2026 ] }, { @@ -2207,7 +2281,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -2216,7 +2291,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/wellcome-sanger-tree-of-life.webp", "category": "Science and medicine", "total_projects": 8, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2024, @@ -2247,6 +2322,17 @@ 2016 ] }, + { + "slug": "jquery-foundation", + "name": "jQuery Foundation", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jquery-foundation.webp", + "category": "Web", + "total_projects": 7, + "is_currently_active": false, + "active_years": [ + 2016 + ] + }, { "slug": "macports", "name": "MacPorts", @@ -2275,17 +2361,6 @@ 2019 ] }, - { - "slug": "jquery-foundation", - "name": "jQuery Foundation", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jquery-foundation.webp", - "category": "Web", - "total_projects": 7, - "is_currently_active": false, - "active_years": [ - 2016 - ] - }, { "slug": "discourse", "name": "Discourse", @@ -2407,6 +2482,18 @@ 2019 ] }, + { + "slug": "owncloud", + "name": "ownCloud", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/owncloud.webp", + "category": "Infrastructure and cloud", + "total_projects": 5, + "is_currently_active": false, + "active_years": [ + 2016, + 2017 + ] + }, { "slug": "p2psporg", "name": "P2PSP.org", @@ -2446,18 +2533,6 @@ 2022 ] }, - { - "slug": "owncloud", - "name": "ownCloud", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/owncloud.webp", - "category": "Infrastructure and cloud", - "total_projects": 5, - "is_currently_active": false, - "active_years": [ - 2016, - 2017 - ] - }, { "slug": "anitaborg-open-source", "name": "AnitaB.org Open Source", @@ -2522,7 +2597,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/electron.webp", "category": "End user applications", "total_projects": 4, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2024, @@ -2548,10 +2623,11 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/neutralinojs.webp", "category": "Web", "total_projects": 4, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2022, - 2024 + 2024, + 2026 ] }, { @@ -2562,7 +2638,8 @@ "total_projects": 4, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] }, { @@ -2574,7 +2651,20 @@ "is_currently_active": true, "active_years": [ 2022, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "phpbb-forum-software", + "name": "phpBB Forum Software", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/phpbb-forum-software.webp", + "category": "Social and communication", + "total_projects": 4, + "is_currently_active": false, + "active_years": [ + 2017, + 2018 ] }, { @@ -2612,18 +2702,6 @@ 2018 ] }, - { - "slug": "phpbb-forum-software", - "name": "phpBB Forum Software", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/phpbb-forum-software.webp", - "category": "Social and communication", - "total_projects": 4, - "is_currently_active": false, - "active_years": [ - 2017, - 2018 - ] - }, { "slug": "biojs", "name": "BioJS", @@ -2693,6 +2771,17 @@ 2020 ] }, + { + "slug": "moja-global", + "name": "moja global", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/moja-global.webp", + "category": "Data", + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2022 + ] + }, { "slug": "openemr", "name": "OpenEMR", @@ -2746,7 +2835,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/rspamd.webp", "category": "Security", "total_projects": 3, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2017, 2018, @@ -2788,17 +2877,6 @@ 2019 ] }, - { - "slug": "moja-global", - "name": "moja global", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/moja-global.webp", - "category": "Data", - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2022 - ] - }, { "slug": "babel", "name": "Babel", @@ -2865,6 +2943,17 @@ 2019 ] }, + { + "slug": "languagetoolorg", + "name": "languagetool.org", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/languagetoolorg.webp", + "category": "End user applications", + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2018 + ] + }, { "slug": "leap-encryption-access-project", "name": "LEAP Encryption Access Project", @@ -2885,7 +2974,8 @@ "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] }, { @@ -2927,7 +3017,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/pal-robotics.webp", "category": "Other", "total_projects": 2, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2025 ] @@ -3021,17 +3111,6 @@ 2024 ] }, - { - "slug": "languagetoolorg", - "name": "languagetool.org", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/languagetoolorg.webp", - "category": "End user applications", - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2018 - ] - }, { "slug": "cadasta", "name": "Cadasta", @@ -3078,26 +3157,26 @@ ] }, { - "slug": "osu-open-source-lab", - "name": "OSU Open Source Lab", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/osu-open-source-lab.webp", + "slug": "open-states", + "name": "Open States", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-states.webp", "category": "Other", "total_projects": 1, "is_currently_active": false, "active_years": [ - 2016 + 2017, + 2018 ] }, { - "slug": "open-states", - "name": "Open States", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-states.webp", + "slug": "osu-open-source-lab", + "name": "OSU Open Source Lab", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/osu-open-source-lab.webp", "category": "Other", "total_projects": 1, "is_currently_active": false, "active_years": [ - 2017, - 2018 + 2016 ] }, { @@ -3144,6 +3223,17 @@ 2016 ] }, + { + "slug": "boa", + "name": "Boa", + "logo_url": "https://summerofcode.withgoogle.com/media/org/boa/vhimc4zkw6j9t8wm-360.png", + "category": "Programming languages", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + }, { "slug": "clojure", "name": "Clojure", @@ -3155,6 +3245,28 @@ 2017 ] }, + { + "slug": "learning-unlimited", + "name": "Learning Unlimited", + "logo_url": "https://summerofcode.withgoogle.com/media/org/learning-unlimited/prqi7cnmji8guahm-360.png", + "category": "End user applications", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + }, + { + "slug": "measurement-lab", + "name": "Measurement Lab", + "logo_url": "https://summerofcode.withgoogle.com/media/org/measurement-lab/0sttrnvo03uejp1z.png", + "category": "Data", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + }, { "slug": "media-cloud", "name": "Media Cloud", @@ -3166,6 +3278,17 @@ 2021 ] }, + { + "slug": "metaflow", + "name": "Metaflow", + "logo_url": "https://summerofcode.withgoogle.com/media/org/metaflow/lxpx64opqtnss7yx-360.png", + "category": "Infrastructure and cloud", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + }, { "slug": "peragro", "name": "Peragro", @@ -3177,6 +3300,17 @@ 2016 ] }, + { + "slug": "united-nations-office-of-information-communication-technology", + "name": "United Nations Office of Information Communication Technology", + "logo_url": "https://summerofcode.withgoogle.com/media/org/united-nations-office-of-information-communication-technology/bl0zv6y6mjmzuybz-360.png", + "category": "End user applications", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + }, { "slug": "xpra", "name": "xpra", @@ -3241,11 +3375,16 @@ "year": 2025, "org_count": 92, "project_count": 724 + }, + { + "year": 2026, + "org_count": 84, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.045Z" + "generated_at": "2026-02-19T13:35:59.373Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/jax.json b/new-api-details/tech-stack/jax.json index c96e69e9..cd679586 100644 --- a/new-api-details/tech-stack/jax.json +++ b/new-api-details/tech-stack/jax.json @@ -1,7 +1,7 @@ { "slug": "jax", "name": "Jax", - "published_at": "2026-01-24T21:33:12.289Z", + "published_at": "2026-02-19T13:35:59.689Z", "metrics": { "org_count": 3, "project_count": 129, @@ -31,7 +31,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/google-deepmind.webp", "category": "Artificial Intelligence", "total_projects": 45, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2025 ] @@ -99,11 +99,16 @@ "year": 2025, "org_count": 1, "project_count": 45 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.289Z" + "generated_at": "2026-02-19T13:35:59.689Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/jenkins.json b/new-api-details/tech-stack/jenkins.json index bd6464b4..5dae9e5e 100644 --- a/new-api-details/tech-stack/jenkins.json +++ b/new-api-details/tech-stack/jenkins.json @@ -1,13 +1,13 @@ { "slug": "jenkins", "name": "jenkins", - "published_at": "2026-01-24T21:33:12.178Z", + "published_at": "2026-02-19T13:35:59.519Z", "metrics": { "org_count": 4, "project_count": 133, "avg_projects_per_org": 33.3, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -45,7 +46,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -63,7 +65,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -130,11 +133,16 @@ "year": 2025, "org_count": 3, "project_count": 16 + }, + { + "year": 2026, + "org_count": 3, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.178Z" + "generated_at": "2026-02-19T13:35:59.519Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/jinja2.json b/new-api-details/tech-stack/jinja2.json index e4c80f65..9d274bac 100644 --- a/new-api-details/tech-stack/jinja2.json +++ b/new-api-details/tech-stack/jinja2.json @@ -1,7 +1,7 @@ { "slug": "jinja2", "name": "jinja2", - "published_at": "2026-01-24T21:33:12.339Z", + "published_at": "2026-02-19T13:35:59.759Z", "metrics": { "org_count": 1, "project_count": 2, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.339Z" + "generated_at": "2026-02-19T13:35:59.759Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/jni.json b/new-api-details/tech-stack/jni.json index b72bce0b..5571de4c 100644 --- a/new-api-details/tech-stack/jni.json +++ b/new-api-details/tech-stack/jni.json @@ -1,7 +1,7 @@ { "slug": "jni", "name": "jni", - "published_at": "2026-01-24T21:33:12.395Z", + "published_at": "2026-02-19T13:35:59.837Z", "metrics": { "org_count": 1, "project_count": 1, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.395Z" + "generated_at": "2026-02-19T13:35:59.837Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/jquery.json b/new-api-details/tech-stack/jquery.json index e5311f5e..e5b1cb0a 100644 --- a/new-api-details/tech-stack/jquery.json +++ b/new-api-details/tech-stack/jquery.json @@ -1,13 +1,13 @@ { "slug": "jquery", "name": "jquery", - "published_at": "2026-01-24T21:33:12.244Z", + "published_at": "2026-02-19T13:35:59.641Z", "metrics": { "org_count": 7, "project_count": 197, "avg_projects_per_org": 28.1, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/wikimedia-foundation.webp", "category": "Web", "total_projects": 85, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -26,7 +26,8 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -44,7 +45,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -61,7 +63,8 @@ 2019, 2021, 2022, - 2025 + 2025, + 2026 ] }, { @@ -90,6 +93,17 @@ 2019 ] }, + { + "slug": "jquery-foundation", + "name": "jQuery Foundation", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jquery-foundation.webp", + "category": "Web", + "total_projects": 7, + "is_currently_active": false, + "active_years": [ + 2016 + ] + }, { "slug": "moodle", "name": "Moodle", @@ -103,17 +117,6 @@ 2018, 2019 ] - }, - { - "slug": "jquery-foundation", - "name": "jQuery Foundation", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jquery-foundation.webp", - "category": "Web", - "total_projects": 7, - "is_currently_active": false, - "active_years": [ - 2016 - ] } ], "charts": { @@ -167,11 +170,16 @@ "year": 2025, "org_count": 2, "project_count": 14 + }, + { + "year": 2026, + "org_count": 3, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.244Z" + "generated_at": "2026-02-19T13:35:59.641Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/jruby.json b/new-api-details/tech-stack/jruby.json index c8eec176..b1fa05f3 100644 --- a/new-api-details/tech-stack/jruby.json +++ b/new-api-details/tech-stack/jruby.json @@ -1,7 +1,7 @@ { "slug": "jruby", "name": "jruby", - "published_at": "2026-01-24T21:33:12.233Z", + "published_at": "2026-02-19T13:35:59.621Z", "metrics": { "org_count": 2, "project_count": 17, @@ -88,11 +88,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.233Z" + "generated_at": "2026-02-19T13:35:59.621Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/js.json b/new-api-details/tech-stack/js.json index c3326e0d..52b783ee 100644 --- a/new-api-details/tech-stack/js.json +++ b/new-api-details/tech-stack/js.json @@ -1,7 +1,7 @@ { "slug": "js", "name": "#js", - "published_at": "2026-01-24T21:33:12.475Z", + "published_at": "2026-02-19T13:35:59.933Z", "metrics": { "org_count": 1, "project_count": 56, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/scala-center.webp", "category": "Programming languages", "total_projects": 56, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -80,11 +80,16 @@ "year": 2025, "org_count": 1, "project_count": 14 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.475Z" + "generated_at": "2026-02-19T13:35:59.933Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/json-api.json b/new-api-details/tech-stack/json-api.json index 1e9c2867..07e2897c 100644 --- a/new-api-details/tech-stack/json-api.json +++ b/new-api-details/tech-stack/json-api.json @@ -1,20 +1,20 @@ { "slug": "json-api", "name": "json api", - "published_at": "2026-01-24T21:33:12.242Z", + "published_at": "2026-02-19T13:35:59.640Z", "metrics": { "org_count": 1, "project_count": 140, "avg_projects_per_org": 140, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { "slug": "fossasia", "name": "FOSSASIA", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/fossasia.webp", - "category": "Science and medicine", + "category": "End user applications", "total_projects": 140, "is_currently_active": true, "active_years": [ @@ -23,7 +23,8 @@ 2018, 2019, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,11 +79,16 @@ "year": 2025, "org_count": 1, "project_count": 20 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.242Z" + "generated_at": "2026-02-19T13:35:59.640Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/json-json-ld.json b/new-api-details/tech-stack/json-json-ld.json index 24f287bf..f8a0b093 100644 --- a/new-api-details/tech-stack/json-json-ld.json +++ b/new-api-details/tech-stack/json-json-ld.json @@ -1,7 +1,7 @@ { "slug": "json-json-ld", "name": "json/json-ld", - "published_at": "2026-01-24T21:33:12.300Z", + "published_at": "2026-02-19T13:35:59.709Z", "metrics": { "org_count": 1, "project_count": 8, @@ -76,11 +76,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.300Z" + "generated_at": "2026-02-19T13:35:59.709Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/json-schema.json b/new-api-details/tech-stack/json-schema.json index 050c4f81..8ddd2f9e 100644 --- a/new-api-details/tech-stack/json-schema.json +++ b/new-api-details/tech-stack/json-schema.json @@ -1,13 +1,13 @@ { "slug": "json-schema", "name": "JSON Schema", - "published_at": "2026-01-24T21:33:12.328Z", + "published_at": "2026-02-19T13:35:59.757Z", "metrics": { "org_count": 2, "project_count": 33, "avg_projects_per_org": 16.5, "first_year_used": 2020, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -33,7 +33,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -88,11 +89,16 @@ "year": 2025, "org_count": 1, "project_count": 6 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.328Z" + "generated_at": "2026-02-19T13:35:59.757Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/json.json b/new-api-details/tech-stack/json.json index 69ace9c1..5342947a 100644 --- a/new-api-details/tech-stack/json.json +++ b/new-api-details/tech-stack/json.json @@ -1,13 +1,13 @@ { "slug": "json", "name": "json", - "published_at": "2026-01-24T21:33:12.082Z", + "published_at": "2026-02-19T13:35:59.397Z", "metrics": { "org_count": 6, "project_count": 290, "avg_projects_per_org": 48.3, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -36,7 +37,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/freifunk.webp", "category": "Operating systems", "total_projects": 74, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -93,7 +94,8 @@ 2020, 2021, 2024, - 2025 + 2025, + 2026 ] }, { @@ -164,11 +166,16 @@ "year": 2025, "org_count": 3, "project_count": 18 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.082Z" + "generated_at": "2026-02-19T13:35:59.397Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/jsonnet.json b/new-api-details/tech-stack/jsonnet.json index 43a61025..38ea9e8c 100644 --- a/new-api-details/tech-stack/jsonnet.json +++ b/new-api-details/tech-stack/jsonnet.json @@ -1,7 +1,7 @@ { "slug": "jsonnet", "name": "jsonnet", - "published_at": "2026-01-24T21:33:12.339Z", + "published_at": "2026-02-19T13:35:59.757Z", "metrics": { "org_count": 1, "project_count": 2, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.339Z" + "generated_at": "2026-02-19T13:35:59.757Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/juce.json b/new-api-details/tech-stack/juce.json index 4ea37b13..13aadebc 100644 --- a/new-api-details/tech-stack/juce.json +++ b/new-api-details/tech-stack/juce.json @@ -1,7 +1,7 @@ { "slug": "juce", "name": "juce", - "published_at": "2026-01-24T21:33:12.408Z", + "published_at": "2026-02-19T13:35:59.849Z", "metrics": { "org_count": 1, "project_count": 2, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.408Z" + "generated_at": "2026-02-19T13:35:59.849Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/juice-shop.json b/new-api-details/tech-stack/juice-shop.json index 451288ea..d794e71c 100644 --- a/new-api-details/tech-stack/juice-shop.json +++ b/new-api-details/tech-stack/juice-shop.json @@ -1,13 +1,13 @@ { "slug": "juice-shop", "name": "Juice Shop", - "published_at": "2026-01-24T21:33:12.403Z", + "published_at": "2026-02-19T13:35:59.875Z", "metrics": { "org_count": 1, "project_count": 102, "avg_projects_per_org": 102, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 15 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.403Z" + "generated_at": "2026-02-19T13:35:59.875Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/julia.json b/new-api-details/tech-stack/julia.json index 6b000b38..65792019 100644 --- a/new-api-details/tech-stack/julia.json +++ b/new-api-details/tech-stack/julia.json @@ -1,13 +1,13 @@ { "slug": "julia", "name": "julia", - "published_at": "2026-01-24T21:33:12.365Z", + "published_at": "2026-02-19T13:35:59.816Z", "metrics": { "org_count": 6, "project_count": 555, "avg_projects_per_org": 92.5, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -46,7 +47,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -66,7 +68,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -85,7 +88,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -97,7 +101,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -164,11 +169,16 @@ "year": 2025, "org_count": 5, "project_count": 63 + }, + { + "year": 2026, + "org_count": 5, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.365Z" + "generated_at": "2026-02-19T13:35:59.816Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/julialang.json b/new-api-details/tech-stack/julialang.json index 16be893d..104514d1 100644 --- a/new-api-details/tech-stack/julialang.json +++ b/new-api-details/tech-stack/julialang.json @@ -1,13 +1,13 @@ { "slug": "julialang", "name": "julialang", - "published_at": "2026-01-24T21:33:12.504Z", + "published_at": "2026-02-19T13:35:59.967Z", "metrics": { "org_count": 1, "project_count": 140, "avg_projects_per_org": 140, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 14 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.504Z" + "generated_at": "2026-02-19T13:35:59.967Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/junit.json b/new-api-details/tech-stack/junit.json index 5483f67c..100cb7ce 100644 --- a/new-api-details/tech-stack/junit.json +++ b/new-api-details/tech-stack/junit.json @@ -1,13 +1,13 @@ { "slug": "junit", "name": "junit", - "published_at": "2026-01-24T21:33:12.369Z", + "published_at": "2026-02-19T13:35:59.822Z", "metrics": { "org_count": 1, "project_count": 45, "avg_projects_per_org": 45, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.369Z" + "generated_at": "2026-02-19T13:35:59.822Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/jupyter-hub.json b/new-api-details/tech-stack/jupyter-hub.json index 9db4d54e..4c23be7e 100644 --- a/new-api-details/tech-stack/jupyter-hub.json +++ b/new-api-details/tech-stack/jupyter-hub.json @@ -1,7 +1,7 @@ { "slug": "jupyter-hub", "name": "jupyter hub", - "published_at": "2026-01-24T21:33:12.351Z", + "published_at": "2026-02-19T13:35:59.785Z", "metrics": { "org_count": 1, "project_count": 4, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.351Z" + "generated_at": "2026-02-19T13:35:59.785Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/jupyter-notebook.json b/new-api-details/tech-stack/jupyter-notebook.json index 6259be11..2c51e2e7 100644 --- a/new-api-details/tech-stack/jupyter-notebook.json +++ b/new-api-details/tech-stack/jupyter-notebook.json @@ -1,13 +1,13 @@ { "slug": "jupyter-notebook", "name": "jupyter notebook", - "published_at": "2026-01-24T21:33:12.349Z", + "published_at": "2026-02-19T13:35:59.777Z", "metrics": { "org_count": 1, "project_count": 21, "avg_projects_per_org": 21, "first_year_used": 2020, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -20,7 +20,8 @@ "active_years": [ 2020, 2024, - 2025 + 2025, + 2026 ] } ], @@ -75,11 +76,16 @@ "year": 2025, "org_count": 1, "project_count": 11 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.349Z" + "generated_at": "2026-02-19T13:35:59.777Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/jupyter.json b/new-api-details/tech-stack/jupyter.json index 392cbfd0..914d5b1f 100644 --- a/new-api-details/tech-stack/jupyter.json +++ b/new-api-details/tech-stack/jupyter.json @@ -1,13 +1,13 @@ { "slug": "jupyter", "name": "jupyter", - "published_at": "2026-01-24T21:33:12.152Z", + "published_at": "2026-02-19T13:35:59.405Z", "metrics": { "org_count": 9, "project_count": 384, "avg_projects_per_org": 42.7, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -47,7 +48,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -63,7 +65,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -72,7 +75,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/chaoss.webp", "category": "Data", "total_projects": 29, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2018, 2019, @@ -107,7 +110,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -132,7 +136,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -199,11 +204,16 @@ "year": 2025, "org_count": 6, "project_count": 49 + }, + { + "year": 2026, + "org_count": 5, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.152Z" + "generated_at": "2026-02-19T13:35:59.405Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/jvm.json b/new-api-details/tech-stack/jvm.json index 3ab1ee6a..bd04e441 100644 --- a/new-api-details/tech-stack/jvm.json +++ b/new-api-details/tech-stack/jvm.json @@ -1,13 +1,13 @@ { "slug": "jvm", "name": "jvm", - "published_at": "2026-01-24T21:33:12.191Z", + "published_at": "2026-02-19T13:35:59.550Z", "metrics": { "org_count": 8, "project_count": 130, "avg_projects_per_org": 16.3, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/scala-center.webp", "category": "Programming languages", "total_projects": 56, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -45,7 +45,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -58,7 +59,8 @@ "active_years": [ 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -105,7 +107,8 @@ "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] }, { @@ -171,11 +174,16 @@ "year": 2025, "org_count": 5, "project_count": 41 + }, + { + "year": 2026, + "org_count": 3, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.191Z" + "generated_at": "2026-02-19T13:35:59.550Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/kafka.json b/new-api-details/tech-stack/kafka.json index 74456f46..77d888bb 100644 --- a/new-api-details/tech-stack/kafka.json +++ b/new-api-details/tech-stack/kafka.json @@ -1,7 +1,7 @@ { "slug": "kafka", "name": "kafka", - "published_at": "2026-01-24T21:33:12.453Z", + "published_at": "2026-02-19T13:35:59.913Z", "metrics": { "org_count": 2, "project_count": 15, @@ -89,11 +89,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.453Z" + "generated_at": "2026-02-19T13:35:59.913Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/kconfig.json b/new-api-details/tech-stack/kconfig.json index 337bcb27..5ed0dafe 100644 --- a/new-api-details/tech-stack/kconfig.json +++ b/new-api-details/tech-stack/kconfig.json @@ -1,7 +1,7 @@ { "slug": "kconfig", "name": "kconfig", - "published_at": "2026-01-24T21:33:12.139Z", + "published_at": "2026-02-19T13:35:59.495Z", "metrics": { "org_count": 1, "project_count": 1, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.139Z" + "generated_at": "2026-02-19T13:35:59.495Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/keras.json b/new-api-details/tech-stack/keras.json index 355dccda..7d3834e2 100644 --- a/new-api-details/tech-stack/keras.json +++ b/new-api-details/tech-stack/keras.json @@ -1,7 +1,7 @@ { "slug": "keras", "name": "keras", - "published_at": "2026-01-24T21:33:12.500Z", + "published_at": "2026-02-19T13:35:59.960Z", "metrics": { "org_count": 1, "project_count": 81, @@ -77,11 +77,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.500Z" + "generated_at": "2026-02-19T13:35:59.960Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/kernel.json b/new-api-details/tech-stack/kernel.json index 3f5fde16..d3a11ece 100644 --- a/new-api-details/tech-stack/kernel.json +++ b/new-api-details/tech-stack/kernel.json @@ -1,13 +1,13 @@ { "slug": "kernel", "name": "kernel", - "published_at": "2026-01-24T21:33:12.165Z", + "published_at": "2026-02-19T13:35:59.576Z", "metrics": { - "org_count": 4, - "project_count": 110, - "avg_projects_per_org": 27.5, + "org_count": 5, + "project_count": 120, + "avg_projects_per_org": 24, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -25,7 +25,8 @@ 2020, 2021, 2024, - 2025 + 2025, + 2026 ] }, { @@ -45,7 +46,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -62,7 +64,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -78,6 +81,23 @@ 2018, 2019 ] + }, + { + "slug": "the-libreswan-project", + "name": "The Libreswan Project", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-libreswan-project.webp", + "category": "Security", + "total_projects": 10, + "is_currently_active": true, + "active_years": [ + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2026 + ] } ], "charts": { @@ -89,32 +109,32 @@ }, { "year": 2017, - "org_count": 3, - "project_count": 11 + "org_count": 4, + "project_count": 13 }, { "year": 2018, - "org_count": 3, - "project_count": 12 + "org_count": 4, + "project_count": 15 }, { "year": 2019, - "org_count": 4, - "project_count": 16 + "org_count": 5, + "project_count": 17 }, { "year": 2020, - "org_count": 3, - "project_count": 15 + "org_count": 4, + "project_count": 18 }, { "year": 2021, - "org_count": 3, - "project_count": 7 + "org_count": 4, + "project_count": 8 }, { "year": 2022, - "org_count": 2, + "org_count": 3, "project_count": 7 }, { @@ -131,11 +151,16 @@ "year": 2025, "org_count": 3, "project_count": 11 + }, + { + "year": 2026, + "org_count": 4, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.165Z" + "generated_at": "2026-02-19T13:35:59.576Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/kibana.json b/new-api-details/tech-stack/kibana.json index f712a682..5272ddf2 100644 --- a/new-api-details/tech-stack/kibana.json +++ b/new-api-details/tech-stack/kibana.json @@ -1,7 +1,7 @@ { "slug": "kibana", "name": "kibana", - "published_at": "2026-01-24T21:33:12.153Z", + "published_at": "2026-02-19T13:35:59.525Z", "metrics": { "org_count": 1, "project_count": 29, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/chaoss.webp", "category": "Data", "total_projects": 29, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2018, 2019, @@ -78,11 +78,16 @@ "year": 2025, "org_count": 1, "project_count": 3 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.153Z" + "generated_at": "2026-02-19T13:35:59.525Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/kms.json b/new-api-details/tech-stack/kms.json index bc0b6b4f..53fa66bb 100644 --- a/new-api-details/tech-stack/kms.json +++ b/new-api-details/tech-stack/kms.json @@ -1,7 +1,7 @@ { "slug": "kms", "name": "kms", - "published_at": "2026-01-24T21:33:12.536Z", + "published_at": "2026-02-19T13:36:00.075Z", "metrics": { "org_count": 1, "project_count": 1, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.536Z" + "generated_at": "2026-02-19T13:36:00.075Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/kotlin.json b/new-api-details/tech-stack/kotlin.json index 60fa0a33..392b95af 100644 --- a/new-api-details/tech-stack/kotlin.json +++ b/new-api-details/tech-stack/kotlin.json @@ -1,13 +1,13 @@ { "slug": "kotlin", "name": "kotlin", - "published_at": "2026-01-24T21:33:12.065Z", + "published_at": "2026-02-19T13:35:59.418Z", "metrics": { "org_count": 13, "project_count": 508, "avg_projects_per_org": 39.1, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -45,7 +46,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -65,7 +67,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -85,7 +88,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -116,7 +120,8 @@ 2018, 2022, 2024, - 2025 + 2025, + 2026 ] }, { @@ -133,7 +138,8 @@ 2021, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -146,7 +152,8 @@ "active_years": [ 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -160,7 +167,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] }, { @@ -262,11 +270,16 @@ "year": 2025, "org_count": 8, "project_count": 65 + }, + { + "year": 2026, + "org_count": 8, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.065Z" + "generated_at": "2026-02-19T13:35:59.418Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/kubernetes-operators.json b/new-api-details/tech-stack/kubernetes-operators.json index 5d6ddafa..91fc2bfa 100644 --- a/new-api-details/tech-stack/kubernetes-operators.json +++ b/new-api-details/tech-stack/kubernetes-operators.json @@ -1,7 +1,7 @@ { "slug": "kubernetes-operators", "name": "kubernetes operators", - "published_at": "2026-01-24T21:33:12.449Z", + "published_at": "2026-02-19T13:35:59.907Z", "metrics": { "org_count": 1, "project_count": 5, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/prometheus-operator.webp", "category": "Infrastructure and cloud", "total_projects": 5, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2024, 2025 @@ -74,11 +74,16 @@ "year": 2025, "org_count": 1, "project_count": 2 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.449Z" + "generated_at": "2026-02-19T13:35:59.907Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/kubernetes.json b/new-api-details/tech-stack/kubernetes.json index 2e2f5e42..b2504eab 100644 --- a/new-api-details/tech-stack/kubernetes.json +++ b/new-api-details/tech-stack/kubernetes.json @@ -1,13 +1,13 @@ { "slug": "kubernetes", "name": "kubernetes", - "published_at": "2026-01-24T21:33:12.162Z", + "published_at": "2026-02-19T13:35:59.539Z", "metrics": { - "org_count": 21, + "org_count": 23, "project_count": 444, - "avg_projects_per_org": 21.1, + "avg_projects_per_org": 19.3, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -45,16 +46,17 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "jboss-community", "name": "JBoss Community", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jboss-community.webp", - "category": "Data", + "category": "Web", "total_projects": 52, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -62,7 +64,8 @@ 2019, 2020, 2021, - 2022 + 2022, + 2026 ] }, { @@ -81,7 +84,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -99,7 +103,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -118,7 +123,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -131,7 +137,8 @@ "active_years": [ 2020, 2024, - 2025 + 2025, + 2026 ] }, { @@ -143,7 +150,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -152,7 +160,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/prometheus-operator.webp", "category": "Infrastructure and cloud", "total_projects": 5, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2024, 2025 @@ -239,25 +247,26 @@ ] }, { - "slug": "meshery", - "name": "Meshery", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/meshery.webp", + "slug": "kro-kube-resource-orchestrator", + "name": "kro | Kube Resource Orchestrator", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kro-kube-resource-orchestrator.webp", "category": "Infrastructure and cloud", "total_projects": 2, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2025 ] }, { - "slug": "kro-kube-resource-orchestrator", - "name": "kro | Kube Resource Orchestrator", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kro-kube-resource-orchestrator.webp", + "slug": "meshery", + "name": "Meshery", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/meshery.webp", "category": "Infrastructure and cloud", "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] }, { @@ -292,6 +301,28 @@ "active_years": [ 2019 ] + }, + { + "slug": "konflux", + "name": "Konflux", + "logo_url": "https://summerofcode.withgoogle.com/media/org/konflux/7znpk8j83biro6rn.png", + "category": "Infrastructure and cloud", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + }, + { + "slug": "metaflow", + "name": "Metaflow", + "logo_url": "https://summerofcode.withgoogle.com/media/org/metaflow/lxpx64opqtnss7yx-360.png", + "category": "Infrastructure and cloud", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] } ], "charts": { @@ -345,11 +376,16 @@ "year": 2025, "org_count": 10, "project_count": 67 + }, + { + "year": 2026, + "org_count": 11, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.162Z" + "generated_at": "2026-02-19T13:35:59.539Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/kustomize.json b/new-api-details/tech-stack/kustomize.json index af979b40..026c09c4 100644 --- a/new-api-details/tech-stack/kustomize.json +++ b/new-api-details/tech-stack/kustomize.json @@ -1,13 +1,13 @@ { "slug": "kustomize", "name": "kustomize", - "published_at": "2026-01-24T21:33:12.349Z", + "published_at": "2026-02-19T13:35:59.780Z", "metrics": { "org_count": 1, "project_count": 21, "avg_projects_per_org": 21, "first_year_used": 2020, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -20,7 +20,8 @@ "active_years": [ 2020, 2024, - 2025 + 2025, + 2026 ] } ], @@ -75,11 +76,16 @@ "year": 2025, "org_count": 1, "project_count": 11 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.349Z" + "generated_at": "2026-02-19T13:35:59.780Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/kvm.json b/new-api-details/tech-stack/kvm.json index 57e02325..1af61bc3 100644 --- a/new-api-details/tech-stack/kvm.json +++ b/new-api-details/tech-stack/kvm.json @@ -1,13 +1,13 @@ { "slug": "kvm", "name": "kvm", - "published_at": "2026-01-24T21:33:12.278Z", + "published_at": "2026-02-19T13:35:59.657Z", "metrics": { "org_count": 6, "project_count": 89, "avg_projects_per_org": 14.8, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2021, 2022, 2023, - 2025 + 2025, + 2026 ] }, { @@ -58,23 +59,25 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "the-libreswan-project", "name": "The Libreswan Project", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-libreswan-project.webp", - "category": "Infrastructure and cloud", + "category": "Security", "total_projects": 10, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, 2019, 2020, 2021, - 2022 + 2022, + 2026 ] }, { @@ -151,11 +154,16 @@ "year": 2025, "org_count": 2, "project_count": 10 + }, + { + "year": 2026, + "org_count": 3, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.278Z" + "generated_at": "2026-02-19T13:35:59.657Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/lamp.json b/new-api-details/tech-stack/lamp.json index f83c12b0..13ff589f 100644 --- a/new-api-details/tech-stack/lamp.json +++ b/new-api-details/tech-stack/lamp.json @@ -1,13 +1,13 @@ { "slug": "lamp", "name": "lamp", - "published_at": "2026-01-24T21:33:12.243Z", + "published_at": "2026-02-19T13:35:59.640Z", "metrics": { "org_count": 1, "project_count": 42, "avg_projects_per_org": 42, "first_year_used": 2018, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -25,7 +25,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -80,11 +81,16 @@ "year": 2025, "org_count": 1, "project_count": 10 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.243Z" + "generated_at": "2026-02-19T13:35:59.640Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/language-agnostic.json b/new-api-details/tech-stack/language-agnostic.json index 043f8cc9..009bbfcf 100644 --- a/new-api-details/tech-stack/language-agnostic.json +++ b/new-api-details/tech-stack/language-agnostic.json @@ -1,7 +1,7 @@ { "slug": "language-agnostic", "name": "language-agnostic", - "published_at": "2026-01-24T21:33:12.444Z", + "published_at": "2026-02-19T13:35:59.900Z", "metrics": { "org_count": 1, "project_count": 13, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.444Z" + "generated_at": "2026-02-19T13:35:59.900Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/latex.json b/new-api-details/tech-stack/latex.json index cdfdcce3..5d94bb97 100644 --- a/new-api-details/tech-stack/latex.json +++ b/new-api-details/tech-stack/latex.json @@ -1,13 +1,13 @@ { "slug": "latex", "name": "latex", - "published_at": "2026-01-24T21:33:12.328Z", + "published_at": "2026-02-19T13:35:59.741Z", "metrics": { "org_count": 1, "project_count": 11, "avg_projects_per_org": 11, "first_year_used": 2019, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -22,7 +22,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] } ], @@ -77,11 +78,16 @@ "year": 2025, "org_count": 1, "project_count": 4 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.328Z" + "generated_at": "2026-02-19T13:35:59.741Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/leaflet.json b/new-api-details/tech-stack/leaflet.json index 0036f0eb..e32e5e6d 100644 --- a/new-api-details/tech-stack/leaflet.json +++ b/new-api-details/tech-stack/leaflet.json @@ -1,7 +1,7 @@ { "slug": "leaflet", "name": "leaflet", - "published_at": "2026-01-24T21:33:12.450Z", + "published_at": "2026-02-19T13:35:59.907Z", "metrics": { "org_count": 1, "project_count": 38, @@ -78,11 +78,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.450Z" + "generated_at": "2026-02-19T13:35:59.907Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/lede-openwrt.json b/new-api-details/tech-stack/lede-openwrt.json index 6fc3c32a..707d494f 100644 --- a/new-api-details/tech-stack/lede-openwrt.json +++ b/new-api-details/tech-stack/lede-openwrt.json @@ -1,7 +1,7 @@ { "slug": "lede-openwrt", "name": "lede/openwrt", - "published_at": "2026-01-24T21:33:12.551Z", + "published_at": "2026-02-19T13:35:59.652Z", "metrics": { "org_count": 1, "project_count": 74, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/freifunk.webp", "category": "Operating systems", "total_projects": 74, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -81,11 +81,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.551Z" + "generated_at": "2026-02-19T13:35:59.652Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/lfe.json b/new-api-details/tech-stack/lfe.json index b3cbe44d..5983ebba 100644 --- a/new-api-details/tech-stack/lfe.json +++ b/new-api-details/tech-stack/lfe.json @@ -1,7 +1,7 @@ { "slug": "lfe", "name": "lfe", - "published_at": "2026-01-24T21:33:12.237Z", + "published_at": "2026-02-19T13:35:59.624Z", "metrics": { "org_count": 1, "project_count": 3, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.237Z" + "generated_at": "2026-02-19T13:35:59.624Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/libevent.json b/new-api-details/tech-stack/libevent.json new file mode 100644 index 00000000..17aeec04 --- /dev/null +++ b/new-api-details/tech-stack/libevent.json @@ -0,0 +1,94 @@ +{ + "slug": "libevent", + "name": "libevent", + "published_at": "2026-02-19T13:35:59.971Z", + "metrics": { + "org_count": 1, + "project_count": 10, + "avg_projects_per_org": 10, + "first_year_used": 2017, + "latest_year_used": 2026 + }, + "organizations": [ + { + "slug": "the-libreswan-project", + "name": "The Libreswan Project", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-libreswan-project.webp", + "category": "Security", + "total_projects": 10, + "is_currently_active": true, + "active_years": [ + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2026 + ] + } + ], + "charts": { + "popularity_by_year": [ + { + "year": 2016, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2017, + "org_count": 1, + "project_count": 2 + }, + { + "year": 2018, + "org_count": 1, + "project_count": 3 + }, + { + "year": 2019, + "org_count": 1, + "project_count": 1 + }, + { + "year": 2020, + "org_count": 1, + "project_count": 3 + }, + { + "year": 2021, + "org_count": 1, + "project_count": 1 + }, + { + "year": 2022, + "org_count": 1, + "project_count": 0 + }, + { + "year": 2023, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2024, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2025, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 + } + ] + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:35:59.971Z" + } +} \ No newline at end of file diff --git a/new-api-details/tech-stack/library.json b/new-api-details/tech-stack/library.json index eadc4853..f42054e9 100644 --- a/new-api-details/tech-stack/library.json +++ b/new-api-details/tech-stack/library.json @@ -1,7 +1,7 @@ { "slug": "library", "name": "library", - "published_at": "2026-01-24T21:33:12.257Z", + "published_at": "2026-02-19T13:35:59.648Z", "metrics": { "org_count": 1, "project_count": 17, @@ -80,11 +80,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.257Z" + "generated_at": "2026-02-19T13:35:59.648Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/libusb.json b/new-api-details/tech-stack/libusb.json index ea1b7761..1d3df388 100644 --- a/new-api-details/tech-stack/libusb.json +++ b/new-api-details/tech-stack/libusb.json @@ -1,7 +1,7 @@ { "slug": "libusb", "name": "libusb", - "published_at": "2026-01-24T21:33:12.414Z", + "published_at": "2026-02-19T13:35:59.856Z", "metrics": { "org_count": 1, "project_count": 0, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.414Z" + "generated_at": "2026-02-19T13:35:59.856Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/libuv.json b/new-api-details/tech-stack/libuv.json index c6628c14..8fd337c1 100644 --- a/new-api-details/tech-stack/libuv.json +++ b/new-api-details/tech-stack/libuv.json @@ -1,7 +1,7 @@ { "slug": "libuv", "name": "libuv", - "published_at": "2026-01-24T21:33:12.427Z", + "published_at": "2026-02-19T13:35:59.881Z", "metrics": { "org_count": 1, "project_count": 19, @@ -78,11 +78,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.427Z" + "generated_at": "2026-02-19T13:35:59.881Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/libxcam.json b/new-api-details/tech-stack/libxcam.json index 230f03f6..52a96641 100644 --- a/new-api-details/tech-stack/libxcam.json +++ b/new-api-details/tech-stack/libxcam.json @@ -1,7 +1,7 @@ { "slug": "libxcam", "name": "libxcam", - "published_at": "2026-01-24T21:33:12.316Z", + "published_at": "2026-02-19T13:35:59.731Z", "metrics": { "org_count": 1, "project_count": 12, @@ -78,11 +78,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.316Z" + "generated_at": "2026-02-19T13:35:59.731Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/linkerd.json b/new-api-details/tech-stack/linkerd.json index 2ab3efdc..8c297510 100644 --- a/new-api-details/tech-stack/linkerd.json +++ b/new-api-details/tech-stack/linkerd.json @@ -1,7 +1,7 @@ { "slug": "linkerd", "name": "linkerd", - "published_at": "2026-01-24T21:33:12.361Z", + "published_at": "2026-02-19T13:35:59.799Z", "metrics": { "org_count": 1, "project_count": 4, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.361Z" + "generated_at": "2026-02-19T13:35:59.799Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/linux-distribution.json b/new-api-details/tech-stack/linux-distribution.json index ace3944a..5caa7df2 100644 --- a/new-api-details/tech-stack/linux-distribution.json +++ b/new-api-details/tech-stack/linux-distribution.json @@ -1,7 +1,7 @@ { "slug": "linux-distribution", "name": "linux distribution", - "published_at": "2026-01-24T21:33:12.247Z", + "published_at": "2026-02-19T13:35:59.630Z", "metrics": { "org_count": 1, "project_count": 27, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/fedora-project.webp", "category": "Operating systems", "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -78,11 +78,16 @@ "year": 2025, "org_count": 1, "project_count": 2 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.247Z" + "generated_at": "2026-02-19T13:35:59.630Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/linux-kernel.json b/new-api-details/tech-stack/linux-kernel.json index 2d5dc863..f33bf32f 100644 --- a/new-api-details/tech-stack/linux-kernel.json +++ b/new-api-details/tech-stack/linux-kernel.json @@ -1,13 +1,13 @@ { "slug": "linux-kernel", "name": "linux kernel", - "published_at": "2026-01-24T21:33:12.120Z", + "published_at": "2026-02-19T13:35:59.469Z", "metrics": { - "org_count": 8, - "project_count": 135, - "avg_projects_per_org": 16.9, + "org_count": 10, + "project_count": 144, + "avg_projects_per_org": 14.4, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/beagleboardorg.webp", "category": "Science and medicine", "total_projects": 44, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -78,7 +78,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -95,6 +96,19 @@ 2019 ] }, + { + "slug": "the-p4-language-consortium", + "name": "The P4 Language Consortium", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-p4-language-consortium.webp", + "category": "Programming languages", + "total_projects": 9, + "is_currently_active": true, + "active_years": [ + 2024, + 2025, + 2026 + ] + }, { "slug": "boston-university-xia", "name": "Boston University / XIA", @@ -133,6 +147,17 @@ 2021, 2022 ] + }, + { + "slug": "erofs-filesystem", + "name": "EROFS filesystem", + "logo_url": "https://summerofcode.withgoogle.com/media/org/erofs-filesystem/qrkpvwkzjqmwoyau-360.png", + "category": "Operating systems", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] } ], "charts": { @@ -179,18 +204,23 @@ }, { "year": 2024, - "org_count": 2, - "project_count": 6 + "org_count": 3, + "project_count": 10 }, { "year": 2025, - "org_count": 2, - "project_count": 8 + "org_count": 3, + "project_count": 13 + }, + { + "year": 2026, + "org_count": 3, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.120Z" + "generated_at": "2026-02-19T13:35:59.469Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/linux.json b/new-api-details/tech-stack/linux.json index a21e6e44..35aaadbd 100644 --- a/new-api-details/tech-stack/linux.json +++ b/new-api-details/tech-stack/linux.json @@ -1,13 +1,13 @@ { "slug": "linux", "name": "linux", - "published_at": "2026-01-24T21:33:12.101Z", + "published_at": "2026-02-19T13:35:59.440Z", "metrics": { "org_count": 35, "project_count": 991, "avg_projects_per_org": 28.3, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -47,7 +48,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -67,7 +69,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -87,7 +90,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -106,7 +110,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -125,7 +130,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -134,7 +140,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/beagleboardorg.webp", "category": "Science and medicine", "total_projects": 44, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -163,7 +169,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -182,7 +189,8 @@ 2021, 2022, 2023, - 2025 + 2025, + 2026 ] }, { @@ -201,7 +209,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -224,7 +233,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/fedora-project.webp", "category": "Operating systems", "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -250,7 +259,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -317,14 +327,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "xapian-search-engine-library", - "name": "Xapian Search Engine Library", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/xapian-search-engine-library.webp", - "category": "Data", + "slug": "strace", + "name": "strace", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/strace.webp", + "category": "Development tools", "total_projects": 15, "is_currently_active": false, "active_years": [ @@ -332,14 +343,16 @@ 2017, 2018, 2019, - 2020 + 2020, + 2021, + 2022 ] }, { - "slug": "strace", - "name": "strace", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/strace.webp", - "category": "Development tools", + "slug": "xapian-search-engine-library", + "name": "Xapian Search Engine Library", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/xapian-search-engine-library.webp", + "category": "Data", "total_projects": 15, "is_currently_active": false, "active_years": [ @@ -347,9 +360,7 @@ 2017, 2018, 2019, - 2020, - 2021, - 2022 + 2020 ] }, { @@ -362,7 +373,8 @@ "active_years": [ 2016, 2019, - 2025 + 2025, + 2026 ] }, { @@ -426,11 +438,12 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/qubes-os.webp", "category": "Operating systems", "total_projects": 4, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2020, - 2021 + 2021, + 2026 ] }, { @@ -482,6 +495,17 @@ 2019 ] }, + { + "slug": "eunomia-bpf", + "name": "eunomia-bpf", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/eunomia-bpf.webp", + "category": "Operating systems", + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2024 + ] + }, { "slug": "typelevel", "name": "Typelevel", @@ -490,7 +514,8 @@ "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] }, { @@ -505,14 +530,14 @@ ] }, { - "slug": "eunomia-bpf", - "name": "eunomia-bpf", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/eunomia-bpf.webp", + "slug": "gvisor", + "name": "gVisor", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gvisor.webp", "category": "Operating systems", - "total_projects": 2, + "total_projects": 1, "is_currently_active": false, "active_years": [ - 2024 + 2021 ] }, { @@ -536,17 +561,6 @@ "active_years": [ 2019 ] - }, - { - "slug": "gvisor", - "name": "gVisor", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gvisor.webp", - "category": "Operating systems", - "total_projects": 1, - "is_currently_active": false, - "active_years": [ - 2021 - ] } ], "charts": { @@ -600,11 +614,16 @@ "year": 2025, "org_count": 15, "project_count": 102 + }, + { + "year": 2026, + "org_count": 14, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.101Z" + "generated_at": "2026-02-19T13:35:59.440Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/lisp.json b/new-api-details/tech-stack/lisp.json index 356fbc4e..d228911f 100644 --- a/new-api-details/tech-stack/lisp.json +++ b/new-api-details/tech-stack/lisp.json @@ -1,13 +1,13 @@ { "slug": "lisp", "name": "lisp", - "published_at": "2026-01-24T21:33:12.070Z", + "published_at": "2026-02-19T13:35:59.420Z", "metrics": { "org_count": 5, "project_count": 99, "avg_projects_per_org": 19.8, "first_year_used": 2016, - "latest_year_used": 2024 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnu-project.webp", "category": "Operating systems", "total_projects": 59, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -24,7 +24,8 @@ 2019, 2020, 2023, - 2024 + 2024, + 2026 ] }, { @@ -129,11 +130,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.070Z" + "generated_at": "2026-02-19T13:35:59.420Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/llm.json b/new-api-details/tech-stack/llm.json index a2aae8ba..f30a054d 100644 --- a/new-api-details/tech-stack/llm.json +++ b/new-api-details/tech-stack/llm.json @@ -1,15 +1,36 @@ { "slug": "llm", "name": "LLM", - "published_at": "2026-01-24T21:33:12.493Z", + "published_at": "2026-02-19T13:35:59.836Z", "metrics": { - "org_count": 2, - "project_count": 192, - "avg_projects_per_org": 96, + "org_count": 3, + "project_count": 311, + "avg_projects_per_org": 103.7, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ + { + "slug": "national-resource-for-network-biology-nrnb", + "name": "National Resource for Network Biology (NRNB)", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/national-resource-for-network-biology-nrnb.webp", + "category": "Science and medicine", + "total_projects": 119, + "is_currently_active": true, + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ] + }, { "slug": "rocketchat", "name": "rocket.chat", @@ -26,7 +47,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -46,7 +68,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -54,58 +77,63 @@ "popularity_by_year": [ { "year": 2016, - "org_count": 1, - "project_count": 5 + "org_count": 2, + "project_count": 20 }, { "year": 2017, - "org_count": 2, - "project_count": 13 + "org_count": 3, + "project_count": 33 }, { "year": 2018, - "org_count": 2, - "project_count": 18 + "org_count": 3, + "project_count": 28 }, { "year": 2019, - "org_count": 2, - "project_count": 23 + "org_count": 3, + "project_count": 34 }, { "year": 2020, - "org_count": 2, - "project_count": 16 + "org_count": 3, + "project_count": 31 }, { "year": 2021, - "org_count": 2, - "project_count": 20 + "org_count": 3, + "project_count": 33 }, { "year": 2022, - "org_count": 2, - "project_count": 21 + "org_count": 3, + "project_count": 29 }, { "year": 2023, - "org_count": 2, - "project_count": 18 + "org_count": 3, + "project_count": 26 }, { "year": 2024, - "org_count": 2, - "project_count": 28 + "org_count": 3, + "project_count": 39 }, { "year": 2025, - "org_count": 2, - "project_count": 30 + "org_count": 3, + "project_count": 38 + }, + { + "year": 2026, + "org_count": 3, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.493Z" + "generated_at": "2026-02-19T13:35:59.836Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/llms.json b/new-api-details/tech-stack/llms.json index ddba2e23..ed89a6dd 100644 --- a/new-api-details/tech-stack/llms.json +++ b/new-api-details/tech-stack/llms.json @@ -1,13 +1,13 @@ { "slug": "llms", "name": "LLMs", - "published_at": "2026-01-24T21:33:12.177Z", + "published_at": "2026-02-19T13:35:59.518Z", "metrics": { "org_count": 2, "project_count": 13, "avg_projects_per_org": 6.5, "first_year_used": 2022, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -19,7 +19,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -28,7 +29,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/center-for-translational-data-science.webp", "category": "Science and medicine", "total_projects": 6, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2025 @@ -86,11 +87,16 @@ "year": 2025, "org_count": 2, "project_count": 8 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.177Z" + "generated_at": "2026-02-19T13:35:59.518Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/llvm.json b/new-api-details/tech-stack/llvm.json index 321a0698..b45da724 100644 --- a/new-api-details/tech-stack/llvm.json +++ b/new-api-details/tech-stack/llvm.json @@ -1,13 +1,13 @@ { "slug": "llvm", "name": "llvm", - "published_at": "2026-01-24T21:33:12.054Z", + "published_at": "2026-02-19T13:35:59.402Z", "metrics": { - "org_count": 13, - "project_count": 476, - "avg_projects_per_org": 36.6, + "org_count": 14, + "project_count": 480, + "avg_projects_per_org": 34.3, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -46,7 +47,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -66,7 +68,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -75,7 +78,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/scala-center.webp", "category": "Programming languages", "total_projects": 56, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -102,7 +105,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -117,7 +121,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -133,7 +138,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -145,7 +151,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -159,6 +166,18 @@ 2016 ] }, + { + "slug": "open-science-labs", + "name": "Open Science Labs", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-science-labs.webp", + "category": "Science and medicine", + "total_projects": 4, + "is_currently_active": true, + "active_years": [ + 2025, + 2026 + ] + }, { "slug": "polly-labs", "name": "Polly Labs", @@ -183,25 +202,25 @@ ] }, { - "slug": "halide", - "name": "Halide", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/halide.webp", - "category": "Programming languages", + "slug": "eunomia-bpf", + "name": "eunomia-bpf", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/eunomia-bpf.webp", + "category": "Operating systems", "total_projects": 2, "is_currently_active": false, "active_years": [ - 2021 + 2024 ] }, { - "slug": "eunomia-bpf", - "name": "eunomia-bpf", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/eunomia-bpf.webp", - "category": "Operating systems", + "slug": "halide", + "name": "Halide", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/halide.webp", + "category": "Programming languages", "total_projects": 2, "is_currently_active": false, "active_years": [ - 2024 + 2021 ] } ], @@ -254,13 +273,18 @@ }, { "year": 2025, - "org_count": 9, - "project_count": 84 + "org_count": 10, + "project_count": 88 + }, + { + "year": 2026, + "org_count": 8, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.054Z" + "generated_at": "2026-02-19T13:35:59.402Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/lua.json b/new-api-details/tech-stack/lua.json index e3651dde..8cef97c5 100644 --- a/new-api-details/tech-stack/lua.json +++ b/new-api-details/tech-stack/lua.json @@ -1,13 +1,13 @@ { "slug": "lua", "name": "lua", - "published_at": "2026-01-24T21:33:12.106Z", + "published_at": "2026-02-19T13:35:59.455Z", "metrics": { "org_count": 14, "project_count": 286, "avg_projects_per_org": 20.4, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/freifunk.webp", "category": "Operating systems", "total_projects": 74, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -44,7 +44,8 @@ 2020, 2021, 2024, - 2025 + 2025, + 2026 ] }, { @@ -63,7 +64,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -83,7 +85,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -92,7 +95,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cloudcv.webp", "category": "Web", "total_projects": 28, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -121,7 +124,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -163,7 +167,8 @@ 2018, 2019, 2020, - 2025 + 2025, + 2026 ] }, { @@ -198,7 +203,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/rspamd.webp", "category": "Security", "total_projects": 3, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2017, 2018, @@ -280,11 +285,16 @@ "year": 2025, "org_count": 8, "project_count": 33 + }, + { + "year": 2026, + "org_count": 5, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.106Z" + "generated_at": "2026-02-19T13:35:59.455Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/luarocks.json b/new-api-details/tech-stack/luarocks.json index e16b391d..212d883b 100644 --- a/new-api-details/tech-stack/luarocks.json +++ b/new-api-details/tech-stack/luarocks.json @@ -1,13 +1,13 @@ { "slug": "luarocks", "name": "luarocks", - "published_at": "2026-01-24T21:33:12.354Z", + "published_at": "2026-02-19T13:35:59.783Z", "metrics": { "org_count": 2, "project_count": 48, "avg_projects_per_org": 24, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -25,7 +25,8 @@ 2020, 2021, 2024, - 2025 + 2025, + 2026 ] }, { @@ -93,11 +94,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.354Z" + "generated_at": "2026-02-19T13:35:59.783Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/lunatik.json b/new-api-details/tech-stack/lunatik.json index 378aaab8..19ce22c8 100644 --- a/new-api-details/tech-stack/lunatik.json +++ b/new-api-details/tech-stack/lunatik.json @@ -1,13 +1,13 @@ { "slug": "lunatik", "name": "lunatik", - "published_at": "2026-01-24T21:33:12.355Z", + "published_at": "2026-02-19T13:35:59.784Z", "metrics": { "org_count": 1, "project_count": 43, "avg_projects_per_org": 43, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -25,7 +25,8 @@ 2020, 2021, 2024, - 2025 + 2025, + 2026 ] } ], @@ -80,11 +81,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.355Z" + "generated_at": "2026-02-19T13:35:59.784Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/lwgjl.json b/new-api-details/tech-stack/lwgjl.json index b4484b4a..e010fce0 100644 --- a/new-api-details/tech-stack/lwgjl.json +++ b/new-api-details/tech-stack/lwgjl.json @@ -1,7 +1,7 @@ { "slug": "lwgjl", "name": "lwgjl", - "published_at": "2026-01-24T21:33:12.521Z", + "published_at": "2026-02-19T13:36:00.016Z", "metrics": { "org_count": 1, "project_count": 43, @@ -78,11 +78,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.521Z" + "generated_at": "2026-02-19T13:36:00.016Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/lwjgl.json b/new-api-details/tech-stack/lwjgl.json index 09b9a3ee..4bfb3608 100644 --- a/new-api-details/tech-stack/lwjgl.json +++ b/new-api-details/tech-stack/lwjgl.json @@ -1,7 +1,7 @@ { "slug": "lwjgl", "name": "lwjgl", - "published_at": "2026-01-24T21:33:12.521Z", + "published_at": "2026-02-19T13:36:00.007Z", "metrics": { "org_count": 1, "project_count": 43, @@ -78,11 +78,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.521Z" + "generated_at": "2026-02-19T13:36:00.007Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/lxc.json b/new-api-details/tech-stack/lxc.json index 991236b6..1988bdb9 100644 --- a/new-api-details/tech-stack/lxc.json +++ b/new-api-details/tech-stack/lxc.json @@ -1,7 +1,7 @@ { "slug": "lxc", "name": "lxc", - "published_at": "2026-01-24T21:33:12.564Z", + "published_at": "2026-02-19T13:35:59.798Z", "metrics": { "org_count": 1, "project_count": 19, @@ -80,11 +80,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.565Z" + "generated_at": "2026-02-19T13:35:59.798Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/machine-learning-ml.json b/new-api-details/tech-stack/machine-learning-ml.json index 8183e70e..8e6d4175 100644 --- a/new-api-details/tech-stack/machine-learning-ml.json +++ b/new-api-details/tech-stack/machine-learning-ml.json @@ -1,20 +1,20 @@ { "slug": "machine-learning-ml", "name": "Machine Learning (ML)", - "published_at": "2026-01-24T21:33:12.411Z", + "published_at": "2026-02-19T13:35:59.853Z", "metrics": { "org_count": 1, "project_count": 70, "avg_projects_per_org": 70, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { "slug": "open-technologies-alliance-gfoss", "name": "Open Technologies Alliance - GFOSS", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-technologies-alliance-gfoss.webp", - "category": "Development tools", + "category": "Science and medicine", "total_projects": 70, "is_currently_active": true, "active_years": [ @@ -25,7 +25,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -80,11 +81,16 @@ "year": 2025, "org_count": 1, "project_count": 9 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.411Z" + "generated_at": "2026-02-19T13:35:59.853Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/machine-learning.json b/new-api-details/tech-stack/machine-learning.json index 20eb2ad5..e6690721 100644 --- a/new-api-details/tech-stack/machine-learning.json +++ b/new-api-details/tech-stack/machine-learning.json @@ -1,13 +1,13 @@ { "slug": "machine-learning", "name": "machine learning", - "published_at": "2026-01-24T21:33:12.066Z", + "published_at": "2026-02-19T13:35:59.401Z", "metrics": { "org_count": 36, "project_count": 1652, "avg_projects_per_org": 45.9, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -63,7 +64,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -78,7 +80,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -97,7 +100,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -117,7 +121,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -126,7 +131,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/opencv.webp", "category": "Media", "total_projects": 93, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -156,7 +161,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -210,7 +216,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -242,7 +249,8 @@ "active_years": [ 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -260,7 +268,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -277,7 +286,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -301,7 +311,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/chaoss.webp", "category": "Data", "total_projects": 29, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2018, 2019, @@ -317,7 +327,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cloudcv.webp", "category": "Web", "total_projects": 28, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -339,7 +349,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -393,7 +404,8 @@ "active_years": [ 2018, 2022, - 2025 + 2025, + 2026 ] }, { @@ -419,7 +431,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -428,7 +441,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/wellcome-sanger-tree-of-life.webp", "category": "Science and medicine", "total_projects": 8, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2024, @@ -478,7 +491,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jax-and-keras.webp", "category": "Artificial Intelligence", "total_projects": 4, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2025 ] @@ -500,7 +513,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/rspamd.webp", "category": "Security", "total_projects": 3, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2017, 2018, @@ -603,11 +616,16 @@ "year": 2025, "org_count": 19, "project_count": 199 + }, + { + "year": 2026, + "org_count": 13, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.066Z" + "generated_at": "2026-02-19T13:35:59.401Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/machinelearning.json b/new-api-details/tech-stack/machinelearning.json index c796f201..5934c8a3 100644 --- a/new-api-details/tech-stack/machinelearning.json +++ b/new-api-details/tech-stack/machinelearning.json @@ -1,13 +1,13 @@ { "slug": "machinelearning", "name": "machinelearning", - "published_at": "2026-01-24T21:33:12.363Z", + "published_at": "2026-02-19T13:35:59.801Z", "metrics": { "org_count": 2, "project_count": 163, "avg_projects_per_org": 81.5, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -45,7 +45,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -100,11 +101,16 @@ "year": 2025, "org_count": 1, "project_count": 11 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.363Z" + "generated_at": "2026-02-19T13:35:59.801Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/macos.json b/new-api-details/tech-stack/macos.json index 30fd9fc6..d672e3bf 100644 --- a/new-api-details/tech-stack/macos.json +++ b/new-api-details/tech-stack/macos.json @@ -1,7 +1,7 @@ { "slug": "macos", "name": "macos", - "published_at": "2026-01-24T21:33:12.298Z", + "published_at": "2026-02-19T13:35:59.707Z", "metrics": { "org_count": 1, "project_count": 11, @@ -77,11 +77,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.298Z" + "generated_at": "2026-02-19T13:35:59.707Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/make.json b/new-api-details/tech-stack/make.json index 67538a35..7b4ee82d 100644 --- a/new-api-details/tech-stack/make.json +++ b/new-api-details/tech-stack/make.json @@ -1,13 +1,13 @@ { "slug": "make", "name": "make", - "published_at": "2026-01-24T21:33:12.204Z", + "published_at": "2026-02-19T13:35:59.584Z", "metrics": { "org_count": 5, "project_count": 147, "avg_projects_per_org": 29.4, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -47,7 +48,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -77,7 +79,8 @@ "active_years": [ 2016, 2019, - 2025 + 2025, + 2026 ] }, { @@ -146,11 +149,16 @@ "year": 2025, "org_count": 3, "project_count": 17 + }, + { + "year": 2026, + "org_count": 3, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.204Z" + "generated_at": "2026-02-19T13:35:59.584Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/many-more.json b/new-api-details/tech-stack/many-more.json index c0fcac40..cf7cc4c2 100644 --- a/new-api-details/tech-stack/many-more.json +++ b/new-api-details/tech-stack/many-more.json @@ -1,7 +1,7 @@ { "slug": "many-more", "name": "many more", - "published_at": "2026-01-24T21:33:12.217Z", + "published_at": "2026-02-19T13:35:59.602Z", "metrics": { "org_count": 1, "project_count": 31, @@ -76,11 +76,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.217Z" + "generated_at": "2026-02-19T13:35:59.602Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/mapping.json b/new-api-details/tech-stack/mapping.json index cc188294..62110d2d 100644 --- a/new-api-details/tech-stack/mapping.json +++ b/new-api-details/tech-stack/mapping.json @@ -1,7 +1,7 @@ { "slug": "mapping", "name": "mapping", - "published_at": "2026-01-24T21:33:12.365Z", + "published_at": "2026-02-19T13:35:59.816Z", "metrics": { "org_count": 1, "project_count": 3, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.365Z" + "generated_at": "2026-02-19T13:35:59.816Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/maps-api.json b/new-api-details/tech-stack/maps-api.json index db43e1a4..db0c16d4 100644 --- a/new-api-details/tech-stack/maps-api.json +++ b/new-api-details/tech-stack/maps-api.json @@ -1,13 +1,13 @@ { "slug": "maps-api", "name": "maps api", - "published_at": "2026-01-24T21:33:12.363Z", + "published_at": "2026-02-19T13:35:59.800Z", "metrics": { "org_count": 1, "project_count": 75, "avg_projects_per_org": 75, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 11 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.363Z" + "generated_at": "2026-02-19T13:35:59.800Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/mariadb.json b/new-api-details/tech-stack/mariadb.json index 6e6f6ed4..577c3b06 100644 --- a/new-api-details/tech-stack/mariadb.json +++ b/new-api-details/tech-stack/mariadb.json @@ -1,13 +1,13 @@ { "slug": "mariadb", "name": "mariadb", - "published_at": "2026-01-24T21:33:12.200Z", + "published_at": "2026-02-19T13:35:59.577Z", "metrics": { "org_count": 2, "project_count": 69, "avg_projects_per_org": 34.5, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -36,13 +37,14 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cuneiform-digital-library-initiative-cdli.webp", "category": "Science and medicine", "total_projects": 30, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2018, 2019, 2020, 2021, - 2022 + 2022, + 2026 ] } ], @@ -97,11 +99,16 @@ "year": 2025, "org_count": 1, "project_count": 7 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.200Z" + "generated_at": "2026-02-19T13:35:59.577Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/materialui.json b/new-api-details/tech-stack/materialui.json index 4eeb6f6b..3e9a5400 100644 --- a/new-api-details/tech-stack/materialui.json +++ b/new-api-details/tech-stack/materialui.json @@ -1,7 +1,7 @@ { "slug": "materialui", "name": "materialui", - "published_at": "2026-01-24T21:33:12.276Z", + "published_at": "2026-02-19T13:35:59.691Z", "metrics": { "org_count": 2, "project_count": 5, @@ -84,11 +84,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.276Z" + "generated_at": "2026-02-19T13:35:59.691Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/matlab-simulink.json b/new-api-details/tech-stack/matlab-simulink.json index 0e902a40..aeae6924 100644 --- a/new-api-details/tech-stack/matlab-simulink.json +++ b/new-api-details/tech-stack/matlab-simulink.json @@ -1,7 +1,7 @@ { "slug": "matlab-simulink", "name": "matlab/simulink", - "published_at": "2026-01-24T21:33:12.175Z", + "published_at": "2026-02-19T13:35:59.516Z", "metrics": { "org_count": 1, "project_count": 20, @@ -76,11 +76,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.175Z" + "generated_at": "2026-02-19T13:35:59.516Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/matlab.json b/new-api-details/tech-stack/matlab.json index f47cc6b9..65247c9c 100644 --- a/new-api-details/tech-stack/matlab.json +++ b/new-api-details/tech-stack/matlab.json @@ -1,13 +1,13 @@ { "slug": "matlab", "name": "matlab", - "published_at": "2026-01-24T21:33:12.088Z", + "published_at": "2026-02-19T13:35:59.407Z", "metrics": { "org_count": 3, "project_count": 31, "avg_projects_per_org": 10.3, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -19,7 +19,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -101,11 +102,16 @@ "year": 2025, "org_count": 1, "project_count": 8 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.088Z" + "generated_at": "2026-02-19T13:35:59.407Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/mbed.json b/new-api-details/tech-stack/mbed.json index e17326f1..ca0193c7 100644 --- a/new-api-details/tech-stack/mbed.json +++ b/new-api-details/tech-stack/mbed.json @@ -1,13 +1,13 @@ { "slug": "mbed", "name": "mbed", - "published_at": "2026-01-24T21:33:12.359Z", + "published_at": "2026-02-19T13:35:59.791Z", "metrics": { "org_count": 1, "project_count": 7, "avg_projects_per_org": 7, "first_year_used": 2021, - "latest_year_used": 2024 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,11 +16,12 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/librecube-initiative.webp", "category": "Science and medicine", "total_projects": 7, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2021, 2022, - 2024 + 2024, + 2026 ] } ], @@ -75,11 +76,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.359Z" + "generated_at": "2026-02-19T13:35:59.791Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/mcp.json b/new-api-details/tech-stack/mcp.json new file mode 100644 index 00000000..f7d2e35b --- /dev/null +++ b/new-api-details/tech-stack/mcp.json @@ -0,0 +1,88 @@ +{ + "slug": "mcp", + "name": "MCP", + "published_at": "2026-02-19T13:35:59.659Z", + "metrics": { + "org_count": 1, + "project_count": 0, + "avg_projects_per_org": 0, + "first_year_used": 2026, + "latest_year_used": 2026 + }, + "organizations": [ + { + "slug": "gemini-cli", + "name": "Gemini CLI", + "logo_url": "https://summerofcode.withgoogle.com/media/org/gemini-cli/mhi8cx7tyjt91i6n-360.png", + "category": "Development tools", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + } + ], + "charts": { + "popularity_by_year": [ + { + "year": 2016, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2017, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2018, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2019, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2020, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2021, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2022, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2023, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2024, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2025, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 + } + ] + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:35:59.659Z" + } +} \ No newline at end of file diff --git a/new-api-details/tech-stack/media.json b/new-api-details/tech-stack/media.json index 7f8c62fe..f8aaf804 100644 --- a/new-api-details/tech-stack/media.json +++ b/new-api-details/tech-stack/media.json @@ -1,7 +1,7 @@ { "slug": "media", "name": "Media", - "published_at": "2026-01-24T21:33:12.318Z", + "published_at": "2026-02-19T13:35:59.733Z", "metrics": { "org_count": 1, "project_count": 12, @@ -78,11 +78,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.318Z" + "generated_at": "2026-02-19T13:35:59.733Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/mediawiki.json b/new-api-details/tech-stack/mediawiki.json index 23e6adb2..17e67376 100644 --- a/new-api-details/tech-stack/mediawiki.json +++ b/new-api-details/tech-stack/mediawiki.json @@ -1,7 +1,7 @@ { "slug": "mediawiki", "name": "mediawiki", - "published_at": "2026-01-24T21:33:12.449Z", + "published_at": "2026-02-19T13:35:59.906Z", "metrics": { "org_count": 1, "project_count": 3, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.449Z" + "generated_at": "2026-02-19T13:35:59.906Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/medical-imaging.json b/new-api-details/tech-stack/medical-imaging.json index 02fc3d8f..39c5b473 100644 --- a/new-api-details/tech-stack/medical-imaging.json +++ b/new-api-details/tech-stack/medical-imaging.json @@ -1,7 +1,7 @@ { "slug": "medical-imaging", "name": "medical imaging", - "published_at": "2026-01-24T21:33:12.131Z", + "published_at": "2026-02-19T13:35:59.484Z", "metrics": { "org_count": 4, "project_count": 58, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/department-of-biomedical-informatics-emory-university.webp", "category": "Security", "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2021, 2022, @@ -116,11 +116,16 @@ "year": 2025, "org_count": 1, "project_count": 3 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.131Z" + "generated_at": "2026-02-19T13:35:59.484Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/memory.json b/new-api-details/tech-stack/memory.json index 3969b962..cae57624 100644 --- a/new-api-details/tech-stack/memory.json +++ b/new-api-details/tech-stack/memory.json @@ -1,7 +1,7 @@ { "slug": "memory", "name": "memory", - "published_at": "2026-01-24T21:33:12.382Z", + "published_at": "2026-02-19T13:35:59.819Z", "metrics": { "org_count": 1, "project_count": 12, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/micro-electronics-research-lab-uitu.webp", "category": "Other", "total_projects": 12, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2023, @@ -76,11 +76,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.382Z" + "generated_at": "2026-02-19T13:35:59.819Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/mercurial.json b/new-api-details/tech-stack/mercurial.json index 38f4269b..1f7ec22b 100644 --- a/new-api-details/tech-stack/mercurial.json +++ b/new-api-details/tech-stack/mercurial.json @@ -1,20 +1,20 @@ { "slug": "mercurial", "name": "mercurial", - "published_at": "2026-01-24T21:33:12.452Z", + "published_at": "2026-02-19T13:35:59.909Z", "metrics": { "org_count": 1, "project_count": 277, "avg_projects_per_org": 277, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { "slug": "python-software-foundation", "name": "Python Software Foundation", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/python-software-foundation.webp", - "category": "Science and medicine", + "category": "End user applications", "total_projects": 277, "is_currently_active": true, "active_years": [ @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -82,11 +83,16 @@ "year": 2025, "org_count": 1, "project_count": 17 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.452Z" + "generated_at": "2026-02-19T13:35:59.909Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/mern.json b/new-api-details/tech-stack/mern.json index 51b4add3..49748c7d 100644 --- a/new-api-details/tech-stack/mern.json +++ b/new-api-details/tech-stack/mern.json @@ -1,7 +1,7 @@ { "slug": "mern", "name": "MERN", - "published_at": "2026-01-24T21:33:12.341Z", + "published_at": "2026-02-19T13:35:59.765Z", "metrics": { "org_count": 1, "project_count": 11, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/keploy.webp", "category": "Programming languages", "total_projects": 11, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2023, 2024, @@ -75,11 +75,16 @@ "year": 2025, "org_count": 1, "project_count": 6 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.341Z" + "generated_at": "2026-02-19T13:35:59.765Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/meson.json b/new-api-details/tech-stack/meson.json index a84702d2..04ff7894 100644 --- a/new-api-details/tech-stack/meson.json +++ b/new-api-details/tech-stack/meson.json @@ -1,7 +1,7 @@ { "slug": "meson", "name": "meson", - "published_at": "2026-01-24T21:33:12.259Z", + "published_at": "2026-02-19T13:35:59.650Z", "metrics": { "org_count": 1, "project_count": 17, @@ -80,11 +80,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.259Z" + "generated_at": "2026-02-19T13:35:59.650Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/metadata-management.json b/new-api-details/tech-stack/metadata-management.json index 23bdb619..25102e89 100644 --- a/new-api-details/tech-stack/metadata-management.json +++ b/new-api-details/tech-stack/metadata-management.json @@ -1,7 +1,7 @@ { "slug": "metadata-management", "name": "Metadata management", - "published_at": "2026-01-24T21:33:12.211Z", + "published_at": "2026-02-19T13:35:59.588Z", "metrics": { "org_count": 1, "project_count": 1, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.211Z" + "generated_at": "2026-02-19T13:35:59.588Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/meteor-js.json b/new-api-details/tech-stack/meteor-js.json index 0d604a55..55d19b2a 100644 --- a/new-api-details/tech-stack/meteor-js.json +++ b/new-api-details/tech-stack/meteor-js.json @@ -1,13 +1,13 @@ { "slug": "meteor-js", "name": "meteor.js", - "published_at": "2026-01-24T21:33:12.126Z", + "published_at": "2026-02-19T13:35:59.480Z", "metrics": { "org_count": 2, "project_count": 123, "avg_projects_per_org": 61.5, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -95,11 +96,16 @@ "year": 2025, "org_count": 1, "project_count": 19 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.126Z" + "generated_at": "2026-02-19T13:35:59.480Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/meteorjs.json b/new-api-details/tech-stack/meteorjs.json index 041c4f70..16a6ad2b 100644 --- a/new-api-details/tech-stack/meteorjs.json +++ b/new-api-details/tech-stack/meteorjs.json @@ -1,13 +1,13 @@ { "slug": "meteorjs", "name": "meteorJS", - "published_at": "2026-01-24T21:33:12.574Z", + "published_at": "2026-02-19T13:35:59.923Z", "metrics": { "org_count": 1, "project_count": 103, "avg_projects_per_org": 103, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 19 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.574Z" + "generated_at": "2026-02-19T13:35:59.923Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/metrics.json b/new-api-details/tech-stack/metrics.json index 5cbf08f7..36df7812 100644 --- a/new-api-details/tech-stack/metrics.json +++ b/new-api-details/tech-stack/metrics.json @@ -1,7 +1,7 @@ { "slug": "metrics", "name": "metrics", - "published_at": "2026-01-24T21:33:12.156Z", + "published_at": "2026-02-19T13:35:59.532Z", "metrics": { "org_count": 1, "project_count": 29, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/chaoss.webp", "category": "Data", "total_projects": 29, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2018, 2019, @@ -78,11 +78,16 @@ "year": 2025, "org_count": 1, "project_count": 3 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.156Z" + "generated_at": "2026-02-19T13:35:59.532Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/micro-services.json b/new-api-details/tech-stack/micro-services.json index 0142a88e..511d5926 100644 --- a/new-api-details/tech-stack/micro-services.json +++ b/new-api-details/tech-stack/micro-services.json @@ -1,7 +1,7 @@ { "slug": "micro-services", "name": "micro-services", - "published_at": "2026-01-24T21:33:12.230Z", + "published_at": "2026-02-19T13:35:59.618Z", "metrics": { "org_count": 2, "project_count": 9, @@ -86,11 +86,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.230Z" + "generated_at": "2026-02-19T13:35:59.618Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/micropython.json b/new-api-details/tech-stack/micropython.json index cc4db1a0..8477c834 100644 --- a/new-api-details/tech-stack/micropython.json +++ b/new-api-details/tech-stack/micropython.json @@ -1,13 +1,13 @@ { "slug": "micropython", "name": "micropython", - "published_at": "2026-01-24T21:33:12.358Z", + "published_at": "2026-02-19T13:35:59.789Z", "metrics": { "org_count": 1, "project_count": 7, "avg_projects_per_org": 7, "first_year_used": 2021, - "latest_year_used": 2024 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,11 +16,12 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/librecube-initiative.webp", "category": "Science and medicine", "total_projects": 7, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2021, 2022, - 2024 + 2024, + 2026 ] } ], @@ -75,11 +76,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.358Z" + "generated_at": "2026-02-19T13:35:59.789Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/microservices.json b/new-api-details/tech-stack/microservices.json index b69b1d46..2feb75a2 100644 --- a/new-api-details/tech-stack/microservices.json +++ b/new-api-details/tech-stack/microservices.json @@ -1,7 +1,7 @@ { "slug": "microservices", "name": "microservices", - "published_at": "2026-01-24T21:33:12.232Z", + "published_at": "2026-02-19T13:35:59.620Z", "metrics": { "org_count": 3, "project_count": 10, @@ -97,11 +97,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.232Z" + "generated_at": "2026-02-19T13:35:59.620Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/middleware.json b/new-api-details/tech-stack/middleware.json index 0d168d7f..7dc84372 100644 --- a/new-api-details/tech-stack/middleware.json +++ b/new-api-details/tech-stack/middleware.json @@ -1,7 +1,7 @@ { "slug": "middleware", "name": "middleware", - "published_at": "2026-01-24T21:33:12.400Z", + "published_at": "2026-02-19T13:35:59.872Z", "metrics": { "org_count": 2, "project_count": 20, @@ -85,11 +85,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.400Z" + "generated_at": "2026-02-19T13:35:59.872Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/midi.json b/new-api-details/tech-stack/midi.json index c2390ca8..3b95322b 100644 --- a/new-api-details/tech-stack/midi.json +++ b/new-api-details/tech-stack/midi.json @@ -1,13 +1,13 @@ { "slug": "midi", "name": "midi", - "published_at": "2026-01-24T21:33:12.383Z", + "published_at": "2026-02-19T13:35:59.822Z", "metrics": { "org_count": 3, "project_count": 41, "avg_projects_per_org": 13.7, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -43,7 +43,8 @@ 2020, 2022, 2024, - 2025 + 2025, + 2026 ] }, { @@ -109,11 +110,16 @@ "year": 2025, "org_count": 1, "project_count": 3 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.383Z" + "generated_at": "2026-02-19T13:35:59.822Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/milp.json b/new-api-details/tech-stack/milp.json index 19ccbe10..49bb2830 100644 --- a/new-api-details/tech-stack/milp.json +++ b/new-api-details/tech-stack/milp.json @@ -1,7 +1,7 @@ { "slug": "milp", "name": "milp", - "published_at": "2026-01-24T21:33:12.532Z", + "published_at": "2026-02-19T13:36:00.070Z", "metrics": { "org_count": 1, "project_count": 6, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.532Z" + "generated_at": "2026-02-19T13:36:00.070Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/mips.json b/new-api-details/tech-stack/mips.json index 46ac0673..369fa9bf 100644 --- a/new-api-details/tech-stack/mips.json +++ b/new-api-details/tech-stack/mips.json @@ -1,13 +1,13 @@ { "slug": "mips", "name": "mips", - "published_at": "2026-01-24T21:33:12.514Z", + "published_at": "2026-02-19T13:35:59.984Z", "metrics": { "org_count": 1, "project_count": 38, "avg_projects_per_org": 38, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -82,11 +83,16 @@ "year": 2025, "org_count": 1, "project_count": 3 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.514Z" + "generated_at": "2026-02-19T13:35:59.984Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/ml.json b/new-api-details/tech-stack/ml.json index e30e2221..7cf50f59 100644 --- a/new-api-details/tech-stack/ml.json +++ b/new-api-details/tech-stack/ml.json @@ -1,13 +1,13 @@ { "slug": "ml", "name": "ml", - "published_at": "2026-01-24T21:33:12.145Z", + "published_at": "2026-02-19T13:35:59.507Z", "metrics": { "org_count": 1, "project_count": 80, "avg_projects_per_org": 80, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -82,11 +83,16 @@ "year": 2025, "org_count": 1, "project_count": 10 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.145Z" + "generated_at": "2026-02-19T13:35:59.507Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/mlir.json b/new-api-details/tech-stack/mlir.json index 2a32a60b..9f40b0bb 100644 --- a/new-api-details/tech-stack/mlir.json +++ b/new-api-details/tech-stack/mlir.json @@ -1,13 +1,13 @@ { "slug": "mlir", "name": "mlir", - "published_at": "2026-01-24T21:33:12.353Z", + "published_at": "2026-02-19T13:35:59.803Z", "metrics": { "org_count": 2, "project_count": 131, "avg_projects_per_org": 65.5, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -39,7 +40,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -94,11 +96,16 @@ "year": 2025, "org_count": 2, "project_count": 20 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.353Z" + "generated_at": "2026-02-19T13:35:59.803Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/mobil.json b/new-api-details/tech-stack/mobil.json index 1e0c2fc8..4818d245 100644 --- a/new-api-details/tech-stack/mobil.json +++ b/new-api-details/tech-stack/mobil.json @@ -1,22 +1,22 @@ { "slug": "mobil", "name": "mobil", - "published_at": "2026-01-24T21:33:12.324Z", + "published_at": "2026-02-19T13:35:59.746Z", "metrics": { "org_count": 1, "project_count": 52, "avg_projects_per_org": 52, "first_year_used": 2016, - "latest_year_used": 2022 + "latest_year_used": 2026 }, "organizations": [ { "slug": "jboss-community", "name": "JBoss Community", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jboss-community.webp", - "category": "Data", + "category": "Web", "total_projects": 52, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -24,7 +24,8 @@ 2019, 2020, 2021, - 2022 + 2022, + 2026 ] } ], @@ -79,11 +80,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.324Z" + "generated_at": "2026-02-19T13:35:59.746Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/mobile.json b/new-api-details/tech-stack/mobile.json index 90e5d164..c5f7534e 100644 --- a/new-api-details/tech-stack/mobile.json +++ b/new-api-details/tech-stack/mobile.json @@ -1,13 +1,13 @@ { "slug": "mobile", "name": "mobile", - "published_at": "2026-01-24T21:33:12.096Z", + "published_at": "2026-02-19T13:35:59.419Z", "metrics": { "org_count": 3, "project_count": 164, "avg_projects_per_org": 54.7, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -39,7 +39,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] }, { @@ -106,11 +107,16 @@ "year": 2025, "org_count": 1, "project_count": 2 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.096Z" + "generated_at": "2026-02-19T13:35:59.419Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/models.json b/new-api-details/tech-stack/models.json index a10dadfe..0a615c8d 100644 --- a/new-api-details/tech-stack/models.json +++ b/new-api-details/tech-stack/models.json @@ -1,13 +1,13 @@ { "slug": "models", "name": "models", - "published_at": "2026-01-24T21:33:12.506Z", + "published_at": "2026-02-19T13:35:59.969Z", "metrics": { "org_count": 1, "project_count": 140, "avg_projects_per_org": 140, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 14 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.506Z" + "generated_at": "2026-02-19T13:35:59.969Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/mongo.json b/new-api-details/tech-stack/mongo.json index cedbd9f5..17063025 100644 --- a/new-api-details/tech-stack/mongo.json +++ b/new-api-details/tech-stack/mongo.json @@ -1,13 +1,13 @@ { "slug": "mongo", "name": "mongo", - "published_at": "2026-01-24T21:33:12.571Z", + "published_at": "2026-02-19T13:35:59.921Z", "metrics": { "org_count": 1, "project_count": 103, "avg_projects_per_org": 103, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 19 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.571Z" + "generated_at": "2026-02-19T13:35:59.921Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/mongodb.json b/new-api-details/tech-stack/mongodb.json index 10e351fc..3a037bea 100644 --- a/new-api-details/tech-stack/mongodb.json +++ b/new-api-details/tech-stack/mongodb.json @@ -1,13 +1,13 @@ { "slug": "mongodb", "name": "mongodb", - "published_at": "2026-01-24T21:33:12.159Z", + "published_at": "2026-02-19T13:35:59.498Z", "metrics": { "org_count": 9, "project_count": 126, "avg_projects_per_org": 14, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/global-alliance-for-genomics-and-health.webp", "category": "Science and medicine", "total_projects": 45, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -26,7 +26,8 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -35,7 +36,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-palisadoes-foundation.webp", "category": "Social and communication", "total_projects": 36, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2021, 2022, @@ -81,7 +82,8 @@ "active_years": [ 2018, 2022, - 2025 + 2025, + 2026 ] }, { @@ -90,11 +92,12 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/librecube-initiative.webp", "category": "Science and medicine", "total_projects": 7, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2021, 2022, - 2024 + 2024, + 2026 ] }, { @@ -182,11 +185,16 @@ "year": 2025, "org_count": 2, "project_count": 11 + }, + { + "year": 2026, + "org_count": 3, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.159Z" + "generated_at": "2026-02-19T13:35:59.498Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/mp4.json b/new-api-details/tech-stack/mp4.json index b7a1854c..518a37d8 100644 --- a/new-api-details/tech-stack/mp4.json +++ b/new-api-details/tech-stack/mp4.json @@ -1,7 +1,7 @@ { "slug": "mp4", "name": "mp4", - "published_at": "2026-01-24T21:33:12.274Z", + "published_at": "2026-02-19T13:35:59.692Z", "metrics": { "org_count": 1, "project_count": 1, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.274Z" + "generated_at": "2026-02-19T13:35:59.692Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/mp4box.json b/new-api-details/tech-stack/mp4box.json index 68d1f80e..95b0e6a1 100644 --- a/new-api-details/tech-stack/mp4box.json +++ b/new-api-details/tech-stack/mp4box.json @@ -1,7 +1,7 @@ { "slug": "mp4box", "name": "mp4box", - "published_at": "2026-01-24T21:33:12.276Z", + "published_at": "2026-02-19T13:35:59.696Z", "metrics": { "org_count": 1, "project_count": 1, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.276Z" + "generated_at": "2026-02-19T13:35:59.696Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/mpi.json b/new-api-details/tech-stack/mpi.json index 483512d8..90decb99 100644 --- a/new-api-details/tech-stack/mpi.json +++ b/new-api-details/tech-stack/mpi.json @@ -1,13 +1,13 @@ { "slug": "mpi", "name": "mpi", - "published_at": "2026-01-24T21:33:12.251Z", + "published_at": "2026-02-19T13:35:59.637Z", "metrics": { "org_count": 3, "project_count": 28, "avg_projects_per_org": 9.3, "first_year_used": 2019, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -22,7 +22,8 @@ 2021, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -100,11 +101,16 @@ "year": 2025, "org_count": 1, "project_count": 4 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.251Z" + "generated_at": "2026-02-19T13:35:59.637Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/mqtt.json b/new-api-details/tech-stack/mqtt.json index 77c6474c..9d6f4935 100644 --- a/new-api-details/tech-stack/mqtt.json +++ b/new-api-details/tech-stack/mqtt.json @@ -1,7 +1,7 @@ { "slug": "mqtt", "name": "mqtt", - "published_at": "2026-01-24T21:33:12.125Z", + "published_at": "2026-02-19T13:35:59.476Z", "metrics": { "org_count": 1, "project_count": 19, @@ -75,11 +75,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.125Z" + "generated_at": "2026-02-19T13:35:59.476Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/multi-core.json b/new-api-details/tech-stack/multi-core.json index 44a8c01e..8977291d 100644 --- a/new-api-details/tech-stack/multi-core.json +++ b/new-api-details/tech-stack/multi-core.json @@ -1,7 +1,7 @@ { "slug": "multi-core", "name": "multi-core", - "published_at": "2026-01-24T21:33:12.171Z", + "published_at": "2026-02-19T13:35:59.509Z", "metrics": { "org_count": 1, "project_count": 3, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.171Z" + "generated_at": "2026-02-19T13:35:59.509Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/multi-threading.json b/new-api-details/tech-stack/multi-threading.json index 8660d03f..2906014a 100644 --- a/new-api-details/tech-stack/multi-threading.json +++ b/new-api-details/tech-stack/multi-threading.json @@ -1,7 +1,7 @@ { "slug": "multi-threading", "name": "multi-threading", - "published_at": "2026-01-24T21:33:12.171Z", + "published_at": "2026-02-19T13:35:59.508Z", "metrics": { "org_count": 1, "project_count": 3, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.171Z" + "generated_at": "2026-02-19T13:35:59.508Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/multimedia.json b/new-api-details/tech-stack/multimedia.json index 3f4ad414..fbaed264 100644 --- a/new-api-details/tech-stack/multimedia.json +++ b/new-api-details/tech-stack/multimedia.json @@ -1,7 +1,7 @@ { "slug": "multimedia", "name": "multimedia", - "published_at": "2026-01-24T21:33:12.312Z", + "published_at": "2026-02-19T13:35:59.724Z", "metrics": { "org_count": 1, "project_count": 12, @@ -78,11 +78,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.312Z" + "generated_at": "2026-02-19T13:35:59.724Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/multimodal-analysis.json b/new-api-details/tech-stack/multimodal-analysis.json index d3d2ef8b..d7cff1f3 100644 --- a/new-api-details/tech-stack/multimodal-analysis.json +++ b/new-api-details/tech-stack/multimodal-analysis.json @@ -1,7 +1,7 @@ { "slug": "multimodal-analysis", "name": "multimodal analysis", - "published_at": "2026-01-24T21:33:12.458Z", + "published_at": "2026-02-19T13:35:59.917Z", "metrics": { "org_count": 1, "project_count": 88, @@ -81,11 +81,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.458Z" + "generated_at": "2026-02-19T13:35:59.917Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/multimodel-ai.json b/new-api-details/tech-stack/multimodel-ai.json index 4b88b1de..375036ea 100644 --- a/new-api-details/tech-stack/multimodel-ai.json +++ b/new-api-details/tech-stack/multimodel-ai.json @@ -1,7 +1,7 @@ { "slug": "multimodel-ai", "name": "Multimodel AI", - "published_at": "2026-01-24T21:33:12.332Z", + "published_at": "2026-02-19T13:35:59.750Z", "metrics": { "org_count": 1, "project_count": 1, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.332Z" + "generated_at": "2026-02-19T13:35:59.750Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/multiplatform.json b/new-api-details/tech-stack/multiplatform.json index 39b15285..ec710835 100644 --- a/new-api-details/tech-stack/multiplatform.json +++ b/new-api-details/tech-stack/multiplatform.json @@ -1,13 +1,13 @@ { "slug": "multiplatform", "name": "Multiplatform", - "published_at": "2026-01-24T21:33:12.348Z", + "published_at": "2026-02-19T13:35:59.774Z", "metrics": { "org_count": 1, "project_count": 16, "avg_projects_per_org": 16, "first_year_used": 2023, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -20,7 +20,8 @@ "active_years": [ 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -75,11 +76,16 @@ "year": 2025, "org_count": 1, "project_count": 8 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.348Z" + "generated_at": "2026-02-19T13:35:59.774Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/music.json b/new-api-details/tech-stack/music.json index 4375da11..16c46e9f 100644 --- a/new-api-details/tech-stack/music.json +++ b/new-api-details/tech-stack/music.json @@ -1,13 +1,13 @@ { "slug": "music", "name": "music", - "published_at": "2026-01-24T21:33:12.384Z", + "published_at": "2026-02-19T13:35:59.824Z", "metrics": { "org_count": 1, "project_count": 16, "avg_projects_per_org": 16, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -24,7 +24,8 @@ 2020, 2022, 2024, - 2025 + 2025, + 2026 ] } ], @@ -79,11 +80,16 @@ "year": 2025, "org_count": 1, "project_count": 3 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.384Z" + "generated_at": "2026-02-19T13:35:59.824Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/mysql.json b/new-api-details/tech-stack/mysql.json index 4b3767e6..0ace95b7 100644 --- a/new-api-details/tech-stack/mysql.json +++ b/new-api-details/tech-stack/mysql.json @@ -1,13 +1,13 @@ { "slug": "mysql", "name": "mysql", - "published_at": "2026-01-24T21:33:12.087Z", + "published_at": "2026-02-19T13:35:59.406Z", "metrics": { "org_count": 33, "project_count": 845, "avg_projects_per_org": 25.6, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -46,7 +47,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -66,14 +68,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "open-technologies-alliance-gfoss", "name": "Open Technologies Alliance - GFOSS", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-technologies-alliance-gfoss.webp", - "category": "Development tools", + "category": "Science and medicine", "total_projects": 70, "is_currently_active": true, "active_years": [ @@ -84,7 +87,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -103,7 +107,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -123,7 +128,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -140,7 +146,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -157,7 +164,8 @@ 2019, 2021, 2022, - 2025 + 2025, + 2026 ] }, { @@ -166,7 +174,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/librehealth.webp", "category": "Science and medicine", "total_projects": 31, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, @@ -174,7 +182,8 @@ 2020, 2021, 2022, - 2023 + 2023, + 2026 ] }, { @@ -183,13 +192,14 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cuneiform-digital-library-initiative-cdli.webp", "category": "Science and medicine", "total_projects": 30, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2018, 2019, 2020, 2021, - 2022 + 2022, + 2026 ] }, { @@ -210,7 +220,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/chaoss.webp", "category": "Data", "total_projects": 29, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2018, 2019, @@ -226,14 +236,15 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-genome-informatics.webp", "category": "Science and medicine", "total_projects": 28, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, 2020, 2021, 2022, - 2023 + 2023, + 2026 ] }, { @@ -271,11 +282,12 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/genome-assembly-and-annotation.webp", "category": "Science and medicine", "total_projects": 14, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2021, 2022, - 2023 + 2023, + 2026 ] }, { @@ -287,7 +299,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -332,7 +345,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -540,11 +554,16 @@ "year": 2025, "org_count": 11, "project_count": 87 + }, + { + "year": 2026, + "org_count": 14, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.087Z" + "generated_at": "2026-02-19T13:35:59.406Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/named-entity-recognition.json b/new-api-details/tech-stack/named-entity-recognition.json index 62670627..b35878bb 100644 --- a/new-api-details/tech-stack/named-entity-recognition.json +++ b/new-api-details/tech-stack/named-entity-recognition.json @@ -1,7 +1,7 @@ { "slug": "named-entity-recognition", "name": "named entity recognition", - "published_at": "2026-01-24T21:33:12.513Z", + "published_at": "2026-02-19T13:35:59.981Z", "metrics": { "org_count": 1, "project_count": 1, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.513Z" + "generated_at": "2026-02-19T13:35:59.981Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/namespaces.json b/new-api-details/tech-stack/namespaces.json index 027e8961..e816e928 100644 --- a/new-api-details/tech-stack/namespaces.json +++ b/new-api-details/tech-stack/namespaces.json @@ -1,29 +1,30 @@ { "slug": "namespaces", "name": "namespaces", - "published_at": "2026-01-24T21:33:12.508Z", + "published_at": "2026-02-19T13:35:59.970Z", "metrics": { "org_count": 1, "project_count": 10, "avg_projects_per_org": 10, "first_year_used": 2017, - "latest_year_used": 2022 + "latest_year_used": 2026 }, "organizations": [ { "slug": "the-libreswan-project", "name": "The Libreswan Project", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-libreswan-project.webp", - "category": "Infrastructure and cloud", + "category": "Security", "total_projects": 10, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, 2019, 2020, 2021, - 2022 + 2022, + 2026 ] } ], @@ -78,11 +79,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.508Z" + "generated_at": "2026-02-19T13:35:59.970Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/napari.json b/new-api-details/tech-stack/napari.json index 2b489cb6..4b612abf 100644 --- a/new-api-details/tech-stack/napari.json +++ b/new-api-details/tech-stack/napari.json @@ -1,13 +1,13 @@ { "slug": "napari", "name": "napari", - "published_at": "2026-01-24T21:33:12.396Z", + "published_at": "2026-02-19T13:35:59.839Z", "metrics": { "org_count": 1, "project_count": 2, "avg_projects_per_org": 2, "first_year_used": 2025, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -18,7 +18,8 @@ "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] } ], @@ -73,11 +74,16 @@ "year": 2025, "org_count": 1, "project_count": 2 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.396Z" + "generated_at": "2026-02-19T13:35:59.839Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/natural-language-processing.json b/new-api-details/tech-stack/natural-language-processing.json index 3ddd1e48..5e97ef62 100644 --- a/new-api-details/tech-stack/natural-language-processing.json +++ b/new-api-details/tech-stack/natural-language-processing.json @@ -1,7 +1,7 @@ { "slug": "natural-language-processing", "name": "natural language processing", - "published_at": "2026-01-24T21:33:12.481Z", + "published_at": "2026-02-19T13:35:59.940Z", "metrics": { "org_count": 2, "project_count": 11, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/wellcome-sanger-tree-of-life.webp", "category": "Science and medicine", "total_projects": 8, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2024, @@ -86,11 +86,16 @@ "year": 2025, "org_count": 1, "project_count": 4 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.481Z" + "generated_at": "2026-02-19T13:35:59.940Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/neo4j.json b/new-api-details/tech-stack/neo4j.json index df82bd48..8e471a03 100644 --- a/new-api-details/tech-stack/neo4j.json +++ b/new-api-details/tech-stack/neo4j.json @@ -1,13 +1,13 @@ { "slug": "neo4j", "name": "neo4j", - "published_at": "2026-01-24T21:33:12.307Z", + "published_at": "2026-02-19T13:35:59.719Z", "metrics": { "org_count": 2, "project_count": 29, "avg_projects_per_org": 14.5, "first_year_used": 2016, - "latest_year_used": 2023 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,14 +16,15 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-genome-informatics.webp", "category": "Science and medicine", "total_projects": 28, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, 2020, 2021, 2022, - 2023 + 2023, + 2026 ] }, { @@ -89,11 +90,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.307Z" + "generated_at": "2026-02-19T13:35:59.719Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/net.json b/new-api-details/tech-stack/net.json index d5514a06..79a02d90 100644 --- a/new-api-details/tech-stack/net.json +++ b/new-api-details/tech-stack/net.json @@ -1,13 +1,13 @@ { "slug": "net", "name": "net", - "published_at": "2026-01-24T21:33:12.402Z", + "published_at": "2026-02-19T13:35:59.873Z", "metrics": { "org_count": 1, "project_count": 102, "avg_projects_per_org": 102, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 15 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.402Z" + "generated_at": "2026-02-19T13:35:59.873Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/netbsd.json b/new-api-details/tech-stack/netbsd.json index 26cf9992..25723a50 100644 --- a/new-api-details/tech-stack/netbsd.json +++ b/new-api-details/tech-stack/netbsd.json @@ -1,13 +1,13 @@ { "slug": "netbsd", "name": "netbsd", - "published_at": "2026-01-24T21:33:12.355Z", + "published_at": "2026-02-19T13:35:59.783Z", "metrics": { "org_count": 1, "project_count": 43, "avg_projects_per_org": 43, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -25,7 +25,8 @@ 2020, 2021, 2024, - 2025 + 2025, + 2026 ] } ], @@ -80,11 +81,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.355Z" + "generated_at": "2026-02-19T13:35:59.783Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/netcdf.json b/new-api-details/tech-stack/netcdf.json index 4aaf3f63..883fa38e 100644 --- a/new-api-details/tech-stack/netcdf.json +++ b/new-api-details/tech-stack/netcdf.json @@ -1,13 +1,13 @@ { "slug": "netcdf", "name": "NetCDF", - "published_at": "2026-01-24T21:33:12.305Z", + "published_at": "2026-02-19T13:35:59.741Z", "metrics": { "org_count": 1, "project_count": 22, "avg_projects_per_org": 22, "first_year_used": 2021, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -21,7 +21,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] } ], @@ -76,11 +77,16 @@ "year": 2025, "org_count": 1, "project_count": 9 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.305Z" + "generated_at": "2026-02-19T13:35:59.741Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/netty.json b/new-api-details/tech-stack/netty.json index b124be17..3fbe67bd 100644 --- a/new-api-details/tech-stack/netty.json +++ b/new-api-details/tech-stack/netty.json @@ -1,7 +1,7 @@ { "slug": "netty", "name": "Netty", - "published_at": "2026-01-24T21:33:12.372Z", + "published_at": "2026-02-19T13:35:59.806Z", "metrics": { "org_count": 1, "project_count": 2, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.372Z" + "generated_at": "2026-02-19T13:35:59.806Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/network-stack.json b/new-api-details/tech-stack/network-stack.json index c7d2e132..1d7cc231 100644 --- a/new-api-details/tech-stack/network-stack.json +++ b/new-api-details/tech-stack/network-stack.json @@ -1,13 +1,13 @@ { "slug": "network-stack", "name": "network stack", - "published_at": "2026-01-24T21:33:12.502Z", + "published_at": "2026-02-19T13:35:59.966Z", "metrics": { "org_count": 2, "project_count": 139, "avg_projects_per_org": 69.5, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -47,7 +48,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -102,11 +104,16 @@ "year": 2025, "org_count": 2, "project_count": 12 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.502Z" + "generated_at": "2026-02-19T13:35:59.966Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/network-topology.json b/new-api-details/tech-stack/network-topology.json new file mode 100644 index 00000000..6f33b7eb --- /dev/null +++ b/new-api-details/tech-stack/network-topology.json @@ -0,0 +1,90 @@ +{ + "slug": "network-topology", + "name": "network topology", + "published_at": "2026-02-19T13:35:59.906Z", + "metrics": { + "org_count": 1, + "project_count": 7, + "avg_projects_per_org": 7, + "first_year_used": 2024, + "latest_year_used": 2026 + }, + "organizations": [ + { + "slug": "project-mesa", + "name": "Project Mesa", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/project-mesa.webp", + "category": "Science and medicine", + "total_projects": 7, + "is_currently_active": true, + "active_years": [ + 2024, + 2025, + 2026 + ] + } + ], + "charts": { + "popularity_by_year": [ + { + "year": 2016, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2017, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2018, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2019, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2020, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2021, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2022, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2023, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2024, + "org_count": 1, + "project_count": 3 + }, + { + "year": 2025, + "org_count": 1, + "project_count": 4 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 + } + ] + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:35:59.906Z" + } +} \ No newline at end of file diff --git a/new-api-details/tech-stack/networking.json b/new-api-details/tech-stack/networking.json index 18b1ab1f..68ef5aee 100644 --- a/new-api-details/tech-stack/networking.json +++ b/new-api-details/tech-stack/networking.json @@ -1,13 +1,13 @@ { "slug": "networking", "name": "networking", - "published_at": "2026-01-24T21:33:12.245Z", + "published_at": "2026-02-19T13:35:59.654Z", "metrics": { "org_count": 7, "project_count": 160, "avg_projects_per_org": 22.9, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -47,7 +48,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -77,17 +79,6 @@ 2022 ] }, - { - "slug": "soletta-project", - "name": "Soletta Project", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/soletta-project.webp", - "category": "Programming languages", - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2016 - ] - }, { "slug": "grpc", "name": "gRPC", @@ -100,6 +91,17 @@ 2018 ] }, + { + "slug": "soletta-project", + "name": "Soletta Project", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/soletta-project.webp", + "category": "Programming languages", + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2016 + ] + }, { "slug": "tungsten-fabric", "name": "Tungsten Fabric", @@ -163,11 +165,16 @@ "year": 2025, "org_count": 2, "project_count": 12 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.245Z" + "generated_at": "2026-02-19T13:35:59.654Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/nextflow.json b/new-api-details/tech-stack/nextflow.json index 5db97b19..6d20ba05 100644 --- a/new-api-details/tech-stack/nextflow.json +++ b/new-api-details/tech-stack/nextflow.json @@ -1,13 +1,13 @@ { "slug": "nextflow", "name": "nextflow", - "published_at": "2026-01-24T21:33:12.280Z", + "published_at": "2026-02-19T13:35:59.666Z", "metrics": { "org_count": 2, "project_count": 22, "avg_projects_per_org": 11, "first_year_used": 2021, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,11 +16,12 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/genome-assembly-and-annotation.webp", "category": "Science and medicine", "total_projects": 14, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2021, 2022, - 2023 + 2023, + 2026 ] }, { @@ -29,7 +30,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/wellcome-sanger-tree-of-life.webp", "category": "Science and medicine", "total_projects": 8, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2024, @@ -88,11 +89,16 @@ "year": 2025, "org_count": 1, "project_count": 4 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.280Z" + "generated_at": "2026-02-19T13:35:59.666Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/nextjs.json b/new-api-details/tech-stack/nextjs.json index 986dbc1c..f8ec1ca2 100644 --- a/new-api-details/tech-stack/nextjs.json +++ b/new-api-details/tech-stack/nextjs.json @@ -1,13 +1,13 @@ { "slug": "nextjs", "name": "NextJs", - "published_at": "2026-01-24T21:33:12.408Z", + "published_at": "2026-02-19T13:35:59.849Z", "metrics": { "org_count": 2, "project_count": 19, "avg_projects_per_org": 9.5, "first_year_used": 2020, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -32,7 +32,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -87,11 +88,16 @@ "year": 2025, "org_count": 1, "project_count": 6 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.408Z" + "generated_at": "2026-02-19T13:35:59.849Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/nix.json b/new-api-details/tech-stack/nix.json index b1836b61..35719c8e 100644 --- a/new-api-details/tech-stack/nix.json +++ b/new-api-details/tech-stack/nix.json @@ -1,13 +1,13 @@ { "slug": "nix", "name": "nix", - "published_at": "2026-01-24T21:33:12.104Z", + "published_at": "2026-02-19T13:35:59.442Z", "metrics": { "org_count": 2, "project_count": 21, "avg_projects_per_org": 10.5, "first_year_used": 2017, - "latest_year_used": 2024 + "latest_year_used": 2026 }, "organizations": [ { @@ -32,9 +32,10 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/nixos-foundation.webp", "category": "Programming languages", "total_projects": 3, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ - 2024 + 2024, + 2026 ] } ], @@ -89,11 +90,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.104Z" + "generated_at": "2026-02-19T13:35:59.442Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/nlp.json b/new-api-details/tech-stack/nlp.json index 6c538e61..aa06afe4 100644 --- a/new-api-details/tech-stack/nlp.json +++ b/new-api-details/tech-stack/nlp.json @@ -1,13 +1,13 @@ { "slug": "nlp", "name": "nlp", - "published_at": "2026-01-24T21:33:12.076Z", + "published_at": "2026-02-19T13:35:59.385Z", "metrics": { "org_count": 3, "project_count": 187, "avg_projects_per_org": 62.3, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -62,7 +62,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -117,11 +118,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.076Z" + "generated_at": "2026-02-19T13:35:59.385Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/nltk.json b/new-api-details/tech-stack/nltk.json index a634740d..6f532eea 100644 --- a/new-api-details/tech-stack/nltk.json +++ b/new-api-details/tech-stack/nltk.json @@ -1,13 +1,13 @@ { "slug": "nltk", "name": "nltk", - "published_at": "2026-01-24T21:33:12.154Z", + "published_at": "2026-02-19T13:35:59.528Z", "metrics": { "org_count": 2, "project_count": 59, "avg_projects_per_org": 29.5, "first_year_used": 2018, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,13 +16,14 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cuneiform-digital-library-initiative-cdli.webp", "category": "Science and medicine", "total_projects": 30, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2018, 2019, 2020, 2021, - 2022 + 2022, + 2026 ] }, { @@ -31,7 +32,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/chaoss.webp", "category": "Data", "total_projects": 29, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2018, 2019, @@ -93,11 +94,16 @@ "year": 2025, "org_count": 1, "project_count": 3 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.154Z" + "generated_at": "2026-02-19T13:35:59.528Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/nodejs.json b/new-api-details/tech-stack/nodejs.json index 5dd3d9dc..0d5f25fa 100644 --- a/new-api-details/tech-stack/nodejs.json +++ b/new-api-details/tech-stack/nodejs.json @@ -1,13 +1,13 @@ { "slug": "nodejs", "name": "node.js", - "published_at": "2026-01-24T21:33:12.114Z", + "published_at": "2026-02-19T13:35:59.463Z", "metrics": { "org_count": 40, "project_count": 1102, "avg_projects_per_org": 27.6, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -44,7 +44,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -63,7 +64,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -83,7 +85,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -102,14 +105,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "open-technologies-alliance-gfoss", "name": "Open Technologies Alliance - GFOSS", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-technologies-alliance-gfoss.webp", - "category": "Development tools", + "category": "Science and medicine", "total_projects": 70, "is_currently_active": true, "active_years": [ @@ -120,16 +124,17 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "jboss-community", "name": "JBoss Community", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jboss-community.webp", - "category": "Data", + "category": "Web", "total_projects": 52, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -137,7 +142,8 @@ 2019, 2020, 2021, - 2022 + 2022, + 2026 ] }, { @@ -146,7 +152,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/global-alliance-for-genomics-and-health.webp", "category": "Science and medicine", "total_projects": 45, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -156,7 +162,8 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -181,7 +188,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-palisadoes-foundation.webp", "category": "Social and communication", "total_projects": 36, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2021, 2022, @@ -230,14 +237,15 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-genome-informatics.webp", "category": "Science and medicine", "total_projects": 28, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, 2020, 2021, 2022, - 2023 + 2023, + 2026 ] }, { @@ -255,7 +263,8 @@ 2021, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -277,12 +286,13 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/metacall.webp", "category": "Programming languages", "total_projects": 19, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -313,7 +323,8 @@ 2021, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -322,12 +333,13 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/joplin.webp", "category": "End user applications", "total_projects": 17, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2020, 2021, 2022, - 2024 + 2024, + 2026 ] }, { @@ -393,11 +405,12 @@ "slug": "c2si", "name": "C2SI", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/c2si.webp", - "category": "Security", + "category": "End user applications", "total_projects": 12, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ - 2024 + 2024, + 2026 ] }, { @@ -419,7 +432,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/keploy.webp", "category": "Programming languages", "total_projects": 11, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2023, 2024, @@ -438,7 +451,8 @@ 2019, 2020, 2024, - 2025 + 2025, + 2026 ] }, { @@ -450,7 +464,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -483,7 +498,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/electron.webp", "category": "End user applications", "total_projects": 4, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2024, @@ -507,10 +522,11 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/neutralinojs.webp", "category": "Web", "total_projects": 4, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2022, - 2024 + 2024, + 2026 ] }, { @@ -576,7 +592,8 @@ "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] }, { @@ -595,58 +612,63 @@ "popularity_by_year": [ { "year": 2016, - "org_count": 13, - "project_count": 61 + "org_count": 14, + "project_count": 65 }, { "year": 2017, - "org_count": 14, - "project_count": 65 + "org_count": 17, + "project_count": 76 }, { "year": 2018, - "org_count": 21, - "project_count": 102 + "org_count": 25, + "project_count": 124 }, { "year": 2019, - "org_count": 18, - "project_count": 137 + "org_count": 23, + "project_count": 176 }, { "year": 2020, - "org_count": 23, - "project_count": 123 + "org_count": 27, + "project_count": 142 }, { "year": 2021, - "org_count": 21, - "project_count": 160 + "org_count": 26, + "project_count": 198 }, { "year": 2022, - "org_count": 19, - "project_count": 137 + "org_count": 23, + "project_count": 172 }, { "year": 2023, - "org_count": 17, - "project_count": 103 + "org_count": 22, + "project_count": 137 }, { "year": 2024, - "org_count": 21, - "project_count": 119 + "org_count": 28, + "project_count": 181 }, { "year": 2025, - "org_count": 13, - "project_count": 95 + "org_count": 18, + "project_count": 138 + }, + { + "year": 2026, + "org_count": 24, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.114Z" + "generated_at": "2026-02-19T13:35:59.463Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/nosql.json b/new-api-details/tech-stack/nosql.json index f150133a..cd1b8947 100644 --- a/new-api-details/tech-stack/nosql.json +++ b/new-api-details/tech-stack/nosql.json @@ -1,20 +1,20 @@ { "slug": "nosql", "name": "nosql", - "published_at": "2026-01-24T21:33:12.206Z", + "published_at": "2026-02-19T13:35:59.589Z", "metrics": { "org_count": 2, "project_count": 87, "avg_projects_per_org": 43.5, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { "slug": "dbpedia", "name": "DBpedia", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/dbpedia.webp", - "category": "Science and medicine", + "category": "Data", "total_projects": 61, "is_currently_active": true, "active_years": [ @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -36,7 +37,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/plone-foundation.webp", "category": "Web", "total_projects": 26, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -99,11 +100,16 @@ "year": 2025, "org_count": 2, "project_count": 8 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.206Z" + "generated_at": "2026-02-19T13:35:59.589Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/nss.json b/new-api-details/tech-stack/nss.json index ec3489fa..03cca135 100644 --- a/new-api-details/tech-stack/nss.json +++ b/new-api-details/tech-stack/nss.json @@ -1,29 +1,30 @@ { "slug": "nss", "name": "nss", - "published_at": "2026-01-24T21:33:12.507Z", + "published_at": "2026-02-19T13:35:59.970Z", "metrics": { "org_count": 1, "project_count": 10, "avg_projects_per_org": 10, "first_year_used": 2017, - "latest_year_used": 2022 + "latest_year_used": 2026 }, "organizations": [ { "slug": "the-libreswan-project", "name": "The Libreswan Project", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-libreswan-project.webp", - "category": "Infrastructure and cloud", + "category": "Security", "total_projects": 10, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, 2019, 2020, 2021, - 2022 + 2022, + 2026 ] } ], @@ -78,11 +79,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.507Z" + "generated_at": "2026-02-19T13:35:59.970Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/nt.json b/new-api-details/tech-stack/nt.json index 403fa516..48960478 100644 --- a/new-api-details/tech-stack/nt.json +++ b/new-api-details/tech-stack/nt.json @@ -1,7 +1,7 @@ { "slug": "nt", "name": "nt", - "published_at": "2026-01-24T21:33:12.455Z", + "published_at": "2026-02-19T13:35:59.915Z", "metrics": { "org_count": 1, "project_count": 15, @@ -79,11 +79,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.455Z" + "generated_at": "2026-02-19T13:35:59.915Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/numba.json b/new-api-details/tech-stack/numba.json index 5dc3c68f..071a1683 100644 --- a/new-api-details/tech-stack/numba.json +++ b/new-api-details/tech-stack/numba.json @@ -1,13 +1,13 @@ { "slug": "numba", "name": "numba", - "published_at": "2026-01-24T21:33:12.412Z", + "published_at": "2026-02-19T13:35:59.855Z", "metrics": { "org_count": 3, "project_count": 101, "avg_projects_per_org": 33.7, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -41,7 +42,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -109,11 +111,16 @@ "year": 2025, "org_count": 2, "project_count": 7 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.413Z" + "generated_at": "2026-02-19T13:35:59.855Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/numpy.json b/new-api-details/tech-stack/numpy.json index 102ebfd4..726f72dd 100644 --- a/new-api-details/tech-stack/numpy.json +++ b/new-api-details/tech-stack/numpy.json @@ -1,13 +1,13 @@ { "slug": "numpy", "name": "numpy", - "published_at": "2026-01-24T21:33:12.213Z", + "published_at": "2026-02-19T13:35:59.594Z", "metrics": { - "org_count": 9, + "org_count": 10, "project_count": 212, - "avg_projects_per_org": 23.6, + "avg_projects_per_org": 21.2, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -47,7 +48,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -63,7 +65,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -77,7 +80,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -89,7 +93,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -102,7 +107,8 @@ "active_years": [ 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -137,7 +143,19 @@ "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 + ] + }, + { + "slug": "mllam", + "name": "MLLAM", + "logo_url": "https://summerofcode.withgoogle.com/media/org/mllam/ltm3mtlosvdcrw0c.png", + "category": "Science and medicine", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 ] } ], @@ -192,11 +210,16 @@ "year": 2025, "org_count": 7, "project_count": 31 + }, + { + "year": 2026, + "org_count": 8, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.213Z" + "generated_at": "2026-02-19T13:35:59.595Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/oauth.json b/new-api-details/tech-stack/oauth.json index 5b2a66ea..746061a2 100644 --- a/new-api-details/tech-stack/oauth.json +++ b/new-api-details/tech-stack/oauth.json @@ -1,7 +1,7 @@ { "slug": "oauth", "name": "OAuth", - "published_at": "2026-01-24T21:33:12.169Z", + "published_at": "2026-02-19T13:35:59.502Z", "metrics": { "org_count": 1, "project_count": 22, @@ -75,11 +75,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.169Z" + "generated_at": "2026-02-19T13:35:59.502Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/object-oriented-programming.json b/new-api-details/tech-stack/object-oriented-programming.json new file mode 100644 index 00000000..97638a77 --- /dev/null +++ b/new-api-details/tech-stack/object-oriented-programming.json @@ -0,0 +1,90 @@ +{ + "slug": "object-oriented-programming", + "name": "object oriented programming", + "published_at": "2026-02-19T13:35:59.905Z", + "metrics": { + "org_count": 1, + "project_count": 7, + "avg_projects_per_org": 7, + "first_year_used": 2024, + "latest_year_used": 2026 + }, + "organizations": [ + { + "slug": "project-mesa", + "name": "Project Mesa", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/project-mesa.webp", + "category": "Science and medicine", + "total_projects": 7, + "is_currently_active": true, + "active_years": [ + 2024, + 2025, + 2026 + ] + } + ], + "charts": { + "popularity_by_year": [ + { + "year": 2016, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2017, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2018, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2019, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2020, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2021, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2022, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2023, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2024, + "org_count": 1, + "project_count": 3 + }, + { + "year": 2025, + "org_count": 1, + "project_count": 4 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 + } + ] + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:35:59.905Z" + } +} \ No newline at end of file diff --git a/new-api-details/tech-stack/object-oriented.json b/new-api-details/tech-stack/object-oriented.json index fe8df038..065a315f 100644 --- a/new-api-details/tech-stack/object-oriented.json +++ b/new-api-details/tech-stack/object-oriented.json @@ -1,13 +1,13 @@ { "slug": "object-oriented", "name": "object-oriented", - "published_at": "2026-01-24T21:33:12.221Z", + "published_at": "2026-02-19T13:35:59.606Z", "metrics": { "org_count": 1, "project_count": 39, "avg_projects_per_org": 39, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 7 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.221Z" + "generated_at": "2026-02-19T13:35:59.606Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/object-storage.json b/new-api-details/tech-stack/object-storage.json index de4d624a..a379bb92 100644 --- a/new-api-details/tech-stack/object-storage.json +++ b/new-api-details/tech-stack/object-storage.json @@ -1,13 +1,13 @@ { "slug": "object-storage", "name": "object-storage", - "published_at": "2026-01-24T21:33:12.178Z", + "published_at": "2026-02-19T13:35:59.518Z", "metrics": { "org_count": 1, "project_count": 31, "avg_projects_per_org": 31, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -25,7 +25,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -80,11 +81,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.178Z" + "generated_at": "2026-02-19T13:35:59.518Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/objective-c.json b/new-api-details/tech-stack/objective-c.json index a7796c53..1f29d7dc 100644 --- a/new-api-details/tech-stack/objective-c.json +++ b/new-api-details/tech-stack/objective-c.json @@ -1,7 +1,7 @@ { "slug": "objective-c", "name": "Objective C", - "published_at": "2026-01-24T21:33:12.541Z", + "published_at": "2026-02-19T13:36:00.106Z", "metrics": { "org_count": 1, "project_count": 11, @@ -78,11 +78,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.541Z" + "generated_at": "2026-02-19T13:36:00.106Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/ocaml.json b/new-api-details/tech-stack/ocaml.json index 43a62a86..1ae8e952 100644 --- a/new-api-details/tech-stack/ocaml.json +++ b/new-api-details/tech-stack/ocaml.json @@ -1,13 +1,13 @@ { "slug": "ocaml", "name": "ocaml", - "published_at": "2026-01-24T21:33:12.081Z", + "published_at": "2026-02-19T13:35:59.393Z", "metrics": { "org_count": 3, "project_count": 16, "avg_projects_per_org": 5.3, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -21,7 +21,8 @@ 2020, 2021, 2024, - 2025 + 2025, + 2026 ] }, { @@ -98,11 +99,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.081Z" + "generated_at": "2026-02-19T13:35:59.394Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/ocean-science.json b/new-api-details/tech-stack/ocean-science.json index 5fde43ec..2b8b9374 100644 --- a/new-api-details/tech-stack/ocean-science.json +++ b/new-api-details/tech-stack/ocean-science.json @@ -1,13 +1,13 @@ { "slug": "ocean-science", "name": "ocean science", - "published_at": "2026-01-24T21:33:12.304Z", + "published_at": "2026-02-19T13:35:59.739Z", "metrics": { "org_count": 1, "project_count": 22, "avg_projects_per_org": 22, "first_year_used": 2021, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -21,7 +21,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] } ], @@ -76,11 +77,16 @@ "year": 2025, "org_count": 1, "project_count": 9 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.304Z" + "generated_at": "2026-02-19T13:35:59.739Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/ocean-technology.json b/new-api-details/tech-stack/ocean-technology.json index 9ca6a93d..e19b9a4f 100644 --- a/new-api-details/tech-stack/ocean-technology.json +++ b/new-api-details/tech-stack/ocean-technology.json @@ -1,13 +1,13 @@ { "slug": "ocean-technology", "name": "ocean technology", - "published_at": "2026-01-24T21:33:12.303Z", + "published_at": "2026-02-19T13:35:59.739Z", "metrics": { "org_count": 1, "project_count": 22, "avg_projects_per_org": 22, "first_year_used": 2021, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -21,7 +21,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] } ], @@ -76,11 +77,16 @@ "year": 2025, "org_count": 1, "project_count": 9 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.303Z" + "generated_at": "2026-02-19T13:35:59.739Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/ogc-standards.json b/new-api-details/tech-stack/ogc-standards.json index 36d12b07..1eed79b5 100644 --- a/new-api-details/tech-stack/ogc-standards.json +++ b/new-api-details/tech-stack/ogc-standards.json @@ -1,13 +1,13 @@ { "slug": "ogc-standards", "name": "ogc standards", - "published_at": "2026-01-24T21:33:12.047Z", + "published_at": "2026-02-19T13:35:59.375Z", "metrics": { "org_count": 2, "project_count": 126, "avg_projects_per_org": 63, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -47,7 +48,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -102,11 +104,16 @@ "year": 2025, "org_count": 2, "project_count": 11 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.047Z" + "generated_at": "2026-02-19T13:35:59.375Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/oidc.json b/new-api-details/tech-stack/oidc.json index 3fdb7e83..0d1df156 100644 --- a/new-api-details/tech-stack/oidc.json +++ b/new-api-details/tech-stack/oidc.json @@ -1,7 +1,7 @@ { "slug": "oidc", "name": "OIDC", - "published_at": "2026-01-24T21:33:12.169Z", + "published_at": "2026-02-19T13:35:59.501Z", "metrics": { "org_count": 1, "project_count": 22, @@ -75,11 +75,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.169Z" + "generated_at": "2026-02-19T13:35:59.501Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/olsr.json b/new-api-details/tech-stack/olsr.json index 232e6674..6b7932e4 100644 --- a/new-api-details/tech-stack/olsr.json +++ b/new-api-details/tech-stack/olsr.json @@ -1,7 +1,7 @@ { "slug": "olsr", "name": "olsr", - "published_at": "2026-01-24T21:33:12.550Z", + "published_at": "2026-02-19T13:35:59.651Z", "metrics": { "org_count": 1, "project_count": 74, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/freifunk.webp", "category": "Operating systems", "total_projects": 74, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -81,11 +81,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.550Z" + "generated_at": "2026-02-19T13:35:59.651Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/onnx.json b/new-api-details/tech-stack/onnx.json index 4cf7f540..51f962c9 100644 --- a/new-api-details/tech-stack/onnx.json +++ b/new-api-details/tech-stack/onnx.json @@ -1,13 +1,13 @@ { "slug": "onnx", "name": "onnx", - "published_at": "2026-01-24T21:33:12.385Z", + "published_at": "2026-02-19T13:35:59.824Z", "metrics": { "org_count": 1, "project_count": 16, "avg_projects_per_org": 16, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -24,7 +24,8 @@ 2020, 2022, 2024, - 2025 + 2025, + 2026 ] } ], @@ -79,11 +80,16 @@ "year": 2025, "org_count": 1, "project_count": 3 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.385Z" + "generated_at": "2026-02-19T13:35:59.824Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/ontologies.json b/new-api-details/tech-stack/ontologies.json index 4aaa83fd..7d1d068b 100644 --- a/new-api-details/tech-stack/ontologies.json +++ b/new-api-details/tech-stack/ontologies.json @@ -1,7 +1,7 @@ { "slug": "ontologies", "name": "ontologies", - "published_at": "2026-01-24T21:33:12.513Z", + "published_at": "2026-02-19T13:35:59.982Z", "metrics": { "org_count": 1, "project_count": 1, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.513Z" + "generated_at": "2026-02-19T13:35:59.982Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/open-hardware.json b/new-api-details/tech-stack/open-hardware.json index 09047967..1a559a9d 100644 --- a/new-api-details/tech-stack/open-hardware.json +++ b/new-api-details/tech-stack/open-hardware.json @@ -1,13 +1,13 @@ { "slug": "open-hardware", "name": "open hardware", - "published_at": "2026-01-24T21:33:12.253Z", + "published_at": "2026-02-19T13:35:59.573Z", "metrics": { "org_count": 3, "project_count": 84, "avg_projects_per_org": 28, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -109,11 +110,16 @@ "year": 2025, "org_count": 1, "project_count": 6 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.253Z" + "generated_at": "2026-02-19T13:35:59.573Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/open-rmf.json b/new-api-details/tech-stack/open-rmf.json index 9d165a1c..62736fbd 100644 --- a/new-api-details/tech-stack/open-rmf.json +++ b/new-api-details/tech-stack/open-rmf.json @@ -1,13 +1,13 @@ { "slug": "open-rmf", "name": "Open-RMF", - "published_at": "2026-01-24T21:33:12.409Z", + "published_at": "2026-02-19T13:35:59.850Z", "metrics": { "org_count": 1, "project_count": 46, "avg_projects_per_org": 46, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 9 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.409Z" + "generated_at": "2026-02-19T13:35:59.850Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/open-sound-control.json b/new-api-details/tech-stack/open-sound-control.json index 1ddce9a2..43231472 100644 --- a/new-api-details/tech-stack/open-sound-control.json +++ b/new-api-details/tech-stack/open-sound-control.json @@ -1,7 +1,7 @@ { "slug": "open-sound-control", "name": "open-sound-control", - "published_at": "2026-01-24T21:33:12.547Z", + "published_at": "2026-02-19T13:36:00.119Z", "metrics": { "org_count": 1, "project_count": 1, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.547Z" + "generated_at": "2026-02-19T13:36:00.119Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/open-source-databases.json b/new-api-details/tech-stack/open-source-databases.json index 156c2ebb..5da0fc1a 100644 --- a/new-api-details/tech-stack/open-source-databases.json +++ b/new-api-details/tech-stack/open-source-databases.json @@ -1,13 +1,13 @@ { "slug": "open-source-databases", "name": "open source databases", - "published_at": "2026-01-24T21:33:12.399Z", + "published_at": "2026-02-19T13:35:59.871Z", "metrics": { "org_count": 1, "project_count": 101, "avg_projects_per_org": 101, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -82,11 +83,16 @@ "year": 2025, "org_count": 1, "project_count": 9 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.399Z" + "generated_at": "2026-02-19T13:35:59.872Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/openapi.json b/new-api-details/tech-stack/openapi.json index 314363db..53681ec6 100644 --- a/new-api-details/tech-stack/openapi.json +++ b/new-api-details/tech-stack/openapi.json @@ -1,7 +1,7 @@ { "slug": "openapi", "name": "openapi", - "published_at": "2026-01-24T21:33:12.071Z", + "published_at": "2026-02-19T13:35:59.445Z", "metrics": { "org_count": 2, "project_count": 20, @@ -87,11 +87,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.071Z" + "generated_at": "2026-02-19T13:35:59.445Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/opencascade.json b/new-api-details/tech-stack/opencascade.json index 1f8f71e1..bc418ff2 100644 --- a/new-api-details/tech-stack/opencascade.json +++ b/new-api-details/tech-stack/opencascade.json @@ -1,13 +1,13 @@ { "slug": "opencascade", "name": "OpenCASCADE", - "published_at": "2026-01-24T21:33:12.255Z", + "published_at": "2026-02-19T13:35:59.643Z", "metrics": { "org_count": 1, "project_count": 8, "avg_projects_per_org": 8, "first_year_used": 2023, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -20,7 +20,8 @@ "active_years": [ 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -75,11 +76,16 @@ "year": 2025, "org_count": 1, "project_count": 3 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.255Z" + "generated_at": "2026-02-19T13:35:59.643Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/opencl.json b/new-api-details/tech-stack/opencl.json index cbd31213..21294416 100644 --- a/new-api-details/tech-stack/opencl.json +++ b/new-api-details/tech-stack/opencl.json @@ -1,13 +1,13 @@ { "slug": "opencl", "name": "opencl", - "published_at": "2026-01-24T21:33:12.111Z", + "published_at": "2026-02-19T13:35:59.485Z", "metrics": { "org_count": 5, "project_count": 212, "avg_projects_per_org": 42.4, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -47,7 +48,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -66,7 +68,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -98,7 +101,8 @@ 2021, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -153,11 +157,16 @@ "year": 2025, "org_count": 4, "project_count": 24 + }, + { + "year": 2026, + "org_count": 4, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.111Z" + "generated_at": "2026-02-19T13:35:59.485Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/opencv.json b/new-api-details/tech-stack/opencv.json index f5cf6d59..0af341d0 100644 --- a/new-api-details/tech-stack/opencv.json +++ b/new-api-details/tech-stack/opencv.json @@ -1,13 +1,13 @@ { "slug": "opencv", "name": "opencv", - "published_at": "2026-01-24T21:33:12.043Z", + "published_at": "2026-02-19T13:35:59.371Z", "metrics": { "org_count": 11, "project_count": 469, "avg_projects_per_org": 42.6, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -82,7 +83,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -91,7 +93,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/beagleboardorg.webp", "category": "Science and medicine", "total_projects": 44, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -121,7 +123,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -237,11 +240,16 @@ "year": 2025, "org_count": 4, "project_count": 33 + }, + { + "year": 2026, + "org_count": 3, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.043Z" + "generated_at": "2026-02-19T13:35:59.371Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/opengl.json b/new-api-details/tech-stack/opengl.json index 8fffaa51..a1b97150 100644 --- a/new-api-details/tech-stack/opengl.json +++ b/new-api-details/tech-stack/opengl.json @@ -1,13 +1,13 @@ { "slug": "opengl", "name": "opengl", - "published_at": "2026-01-24T21:33:12.080Z", + "published_at": "2026-02-19T13:35:59.391Z", "metrics": { "org_count": 32, "project_count": 994, "avg_projects_per_org": 31.1, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -36,7 +37,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/opencv.webp", "category": "Media", "total_projects": 93, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -66,7 +67,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -84,7 +86,8 @@ 2021, 2022, 2023, - 2025 + 2025, + 2026 ] }, { @@ -104,7 +107,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -124,7 +128,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -144,7 +149,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -183,7 +189,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -219,7 +226,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -268,7 +276,8 @@ 2020, 2022, 2024, - 2025 + 2025, + 2026 ] }, { @@ -339,7 +348,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/society-for-arts-and-technology-sat.webp", "category": "Media", "total_projects": 12, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2023, @@ -558,11 +567,16 @@ "year": 2025, "org_count": 11, "project_count": 81 + }, + { + "year": 2026, + "org_count": 9, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.080Z" + "generated_at": "2026-02-19T13:35:59.391Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/openhrp.json b/new-api-details/tech-stack/openhrp.json index 7159b174..54cbd64f 100644 --- a/new-api-details/tech-stack/openhrp.json +++ b/new-api-details/tech-stack/openhrp.json @@ -1,7 +1,7 @@ { "slug": "openhrp", "name": "openhrp", - "published_at": "2026-01-24T21:33:12.326Z", + "published_at": "2026-02-19T13:35:59.755Z", "metrics": { "org_count": 1, "project_count": 4, @@ -76,11 +76,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.326Z" + "generated_at": "2026-02-19T13:35:59.755Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/openinventor.json b/new-api-details/tech-stack/openinventor.json index dc24c6a7..6341d19d 100644 --- a/new-api-details/tech-stack/openinventor.json +++ b/new-api-details/tech-stack/openinventor.json @@ -1,13 +1,13 @@ { "slug": "openinventor", "name": "OpenInventor", - "published_at": "2026-01-24T21:33:12.255Z", + "published_at": "2026-02-19T13:35:59.645Z", "metrics": { "org_count": 1, "project_count": 8, "avg_projects_per_org": 8, "first_year_used": 2023, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -20,7 +20,8 @@ "active_years": [ 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -75,11 +76,16 @@ "year": 2025, "org_count": 1, "project_count": 3 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.255Z" + "generated_at": "2026-02-19T13:35:59.645Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/openj9.json b/new-api-details/tech-stack/openj9.json index 769f0fce..c05471e9 100644 --- a/new-api-details/tech-stack/openj9.json +++ b/new-api-details/tech-stack/openj9.json @@ -1,13 +1,13 @@ { "slug": "openj9", "name": "openj9", - "published_at": "2026-01-24T21:33:12.228Z", + "published_at": "2026-02-19T13:35:59.615Z", "metrics": { "org_count": 1, "project_count": 68, "avg_projects_per_org": 68, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 7 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.228Z" + "generated_at": "2026-02-19T13:35:59.615Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/openmp.json b/new-api-details/tech-stack/openmp.json index e82332a0..a9d59297 100644 --- a/new-api-details/tech-stack/openmp.json +++ b/new-api-details/tech-stack/openmp.json @@ -1,13 +1,13 @@ { "slug": "openmp", "name": "openmp", - "published_at": "2026-01-24T21:33:12.265Z", + "published_at": "2026-02-19T13:35:59.674Z", "metrics": { "org_count": 3, "project_count": 112, "avg_projects_per_org": 37.3, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -44,7 +44,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -59,7 +60,8 @@ 2021, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -114,11 +116,16 @@ "year": 2025, "org_count": 2, "project_count": 10 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.265Z" + "generated_at": "2026-02-19T13:35:59.674Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/openpgp.json b/new-api-details/tech-stack/openpgp.json index c29c1ba8..77055d2c 100644 --- a/new-api-details/tech-stack/openpgp.json +++ b/new-api-details/tech-stack/openpgp.json @@ -1,7 +1,7 @@ { "slug": "openpgp", "name": "openpgp", - "published_at": "2026-01-24T21:33:12.414Z", + "published_at": "2026-02-19T13:35:59.857Z", "metrics": { "org_count": 1, "project_count": 2, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.414Z" + "generated_at": "2026-02-19T13:35:59.857Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/openroad.json b/new-api-details/tech-stack/openroad.json new file mode 100644 index 00000000..938a5fb4 --- /dev/null +++ b/new-api-details/tech-stack/openroad.json @@ -0,0 +1,88 @@ +{ + "slug": "openroad", + "name": "OpenRoad", + "published_at": "2026-02-19T13:35:59.986Z", + "metrics": { + "org_count": 1, + "project_count": 0, + "avg_projects_per_org": 0, + "first_year_used": 2026, + "latest_year_used": 2026 + }, + "organizations": [ + { + "slug": "the-openroad-initiative", + "name": "The OpenROAD Initiative", + "logo_url": "https://summerofcode.withgoogle.com/media/org/the-openroad-initiative/wsxrroe08v4rdaga-360.png", + "category": "Infrastructure and cloud", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + } + ], + "charts": { + "popularity_by_year": [ + { + "year": 2016, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2017, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2018, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2019, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2020, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2021, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2022, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2023, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2024, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2025, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 + } + ] + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:35:59.986Z" + } +} \ No newline at end of file diff --git a/new-api-details/tech-stack/openrtm.json b/new-api-details/tech-stack/openrtm.json index 5c1e1697..8fdd8bcc 100644 --- a/new-api-details/tech-stack/openrtm.json +++ b/new-api-details/tech-stack/openrtm.json @@ -1,7 +1,7 @@ { "slug": "openrtm", "name": "openrtm", - "published_at": "2026-01-24T21:33:12.327Z", + "published_at": "2026-02-19T13:35:59.756Z", "metrics": { "org_count": 1, "project_count": 4, @@ -76,11 +76,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.327Z" + "generated_at": "2026-02-19T13:35:59.756Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/openscenegraph.json b/new-api-details/tech-stack/openscenegraph.json index 6aa7e54f..4a24e130 100644 --- a/new-api-details/tech-stack/openscenegraph.json +++ b/new-api-details/tech-stack/openscenegraph.json @@ -1,7 +1,7 @@ { "slug": "openscenegraph", "name": "openscenegraph", - "published_at": "2026-01-24T21:33:12.462Z", + "published_at": "2026-02-19T13:35:59.920Z", "metrics": { "org_count": 1, "project_count": 57, @@ -79,11 +79,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.462Z" + "generated_at": "2026-02-19T13:35:59.920Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/openstreetmap.json b/new-api-details/tech-stack/openstreetmap.json index 30666cd7..7676af6f 100644 --- a/new-api-details/tech-stack/openstreetmap.json +++ b/new-api-details/tech-stack/openstreetmap.json @@ -1,7 +1,7 @@ { "slug": "openstreetmap", "name": "OpenStreetMap", - "published_at": "2026-01-24T21:33:12.423Z", + "published_at": "2026-02-19T13:35:59.871Z", "metrics": { "org_count": 1, "project_count": 10, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/organic-maps.webp", "category": "End user applications", "total_projects": 10, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2023, @@ -76,11 +76,16 @@ "year": 2025, "org_count": 1, "project_count": 3 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.423Z" + "generated_at": "2026-02-19T13:35:59.871Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/opentelemetry.json b/new-api-details/tech-stack/opentelemetry.json index a3d2312c..fac1c630 100644 --- a/new-api-details/tech-stack/opentelemetry.json +++ b/new-api-details/tech-stack/opentelemetry.json @@ -1,13 +1,13 @@ { "slug": "opentelemetry", "name": "OpenTelemetry", - "published_at": "2026-01-24T21:33:12.163Z", + "published_at": "2026-02-19T13:35:59.560Z", "metrics": { "org_count": 1, "project_count": 113, "avg_projects_per_org": 113, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 11 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.163Z" + "generated_at": "2026-02-19T13:35:59.560Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/opentracing.json b/new-api-details/tech-stack/opentracing.json index e73d3dc7..44412a49 100644 --- a/new-api-details/tech-stack/opentracing.json +++ b/new-api-details/tech-stack/opentracing.json @@ -1,22 +1,22 @@ { "slug": "opentracing", "name": "opentracing", - "published_at": "2026-01-24T21:33:12.325Z", + "published_at": "2026-02-19T13:35:59.747Z", "metrics": { "org_count": 1, "project_count": 52, "avg_projects_per_org": 52, "first_year_used": 2016, - "latest_year_used": 2022 + "latest_year_used": 2026 }, "organizations": [ { "slug": "jboss-community", "name": "JBoss Community", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jboss-community.webp", - "category": "Data", + "category": "Web", "total_projects": 52, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -24,7 +24,8 @@ 2019, 2020, 2021, - 2022 + 2022, + 2026 ] } ], @@ -79,11 +80,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.325Z" + "generated_at": "2026-02-19T13:35:59.747Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/opentype.json b/new-api-details/tech-stack/opentype.json index b45a9c81..68155dbd 100644 --- a/new-api-details/tech-stack/opentype.json +++ b/new-api-details/tech-stack/opentype.json @@ -1,7 +1,7 @@ { "slug": "opentype", "name": "opentype", - "published_at": "2026-01-24T21:33:12.257Z", + "published_at": "2026-02-19T13:35:59.648Z", "metrics": { "org_count": 1, "project_count": 17, @@ -80,11 +80,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.257Z" + "generated_at": "2026-02-19T13:35:59.648Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/openvpn.json b/new-api-details/tech-stack/openvpn.json index 17b7c139..db9dcde5 100644 --- a/new-api-details/tech-stack/openvpn.json +++ b/new-api-details/tech-stack/openvpn.json @@ -1,7 +1,7 @@ { "slug": "openvpn", "name": "openvpn", - "published_at": "2026-01-24T21:33:12.352Z", + "published_at": "2026-02-19T13:35:59.786Z", "metrics": { "org_count": 1, "project_count": 2, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.352Z" + "generated_at": "2026-02-19T13:35:59.786Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/openwrt.json b/new-api-details/tech-stack/openwrt.json index acb9690b..a95726b0 100644 --- a/new-api-details/tech-stack/openwrt.json +++ b/new-api-details/tech-stack/openwrt.json @@ -1,13 +1,13 @@ { "slug": "openwrt", "name": "openwrt", - "published_at": "2026-01-24T21:33:12.420Z", + "published_at": "2026-02-19T13:35:59.651Z", "metrics": { "org_count": 2, "project_count": 100, "avg_projects_per_org": 50, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/freifunk.webp", "category": "Operating systems", "total_projects": 74, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -45,7 +45,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -100,11 +101,16 @@ "year": 2025, "org_count": 2, "project_count": 10 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.420Z" + "generated_at": "2026-02-19T13:35:59.651Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/openxr.json b/new-api-details/tech-stack/openxr.json index e5c3ece4..4d395d86 100644 --- a/new-api-details/tech-stack/openxr.json +++ b/new-api-details/tech-stack/openxr.json @@ -1,7 +1,7 @@ { "slug": "openxr", "name": "openxr", - "published_at": "2026-01-24T21:33:12.388Z", + "published_at": "2026-02-19T13:35:59.832Z", "metrics": { "org_count": 2, "project_count": 4, @@ -84,11 +84,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.388Z" + "generated_at": "2026-02-19T13:35:59.832Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/openzfs.json b/new-api-details/tech-stack/openzfs.json index 02546176..8f4605cc 100644 --- a/new-api-details/tech-stack/openzfs.json +++ b/new-api-details/tech-stack/openzfs.json @@ -1,7 +1,7 @@ { "slug": "openzfs", "name": "openzfs", - "published_at": "2026-01-24T21:33:12.556Z", + "published_at": "2026-02-19T13:35:59.716Z", "metrics": { "org_count": 1, "project_count": 0, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.556Z" + "generated_at": "2026-02-19T13:35:59.716Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/operating-systems.json b/new-api-details/tech-stack/operating-systems.json index fae5bb3d..fc3c372c 100644 --- a/new-api-details/tech-stack/operating-systems.json +++ b/new-api-details/tech-stack/operating-systems.json @@ -1,13 +1,13 @@ { "slug": "operating-systems", "name": "operating systems", - "published_at": "2026-01-24T21:33:12.270Z", + "published_at": "2026-02-19T13:35:59.683Z", "metrics": { "org_count": 1, "project_count": 59, "avg_projects_per_org": 59, "first_year_used": 2016, - "latest_year_used": 2024 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnu-project.webp", "category": "Operating systems", "total_projects": 59, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -24,7 +24,8 @@ 2019, 2020, 2023, - 2024 + 2024, + 2026 ] } ], @@ -79,11 +80,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.270Z" + "generated_at": "2026-02-19T13:35:59.683Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/operator.json b/new-api-details/tech-stack/operator.json index 416e560f..1cd12555 100644 --- a/new-api-details/tech-stack/operator.json +++ b/new-api-details/tech-stack/operator.json @@ -1,7 +1,7 @@ { "slug": "operator", "name": "operator", - "published_at": "2026-01-24T21:33:12.519Z", + "published_at": "2026-02-19T13:35:59.999Z", "metrics": { "org_count": 1, "project_count": 1, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.519Z" + "generated_at": "2026-02-19T13:35:59.999Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/ordbms.json b/new-api-details/tech-stack/ordbms.json index e713ce21..af81211a 100644 --- a/new-api-details/tech-stack/ordbms.json +++ b/new-api-details/tech-stack/ordbms.json @@ -1,13 +1,13 @@ { "slug": "ordbms", "name": "ordbms", - "published_at": "2026-01-24T21:33:12.445Z", + "published_at": "2026-02-19T13:35:59.901Z", "metrics": { "org_count": 1, "project_count": 51, "avg_projects_per_org": 51, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 7 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.445Z" + "generated_at": "2026-02-19T13:35:59.901Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/ortelius.json b/new-api-details/tech-stack/ortelius.json index ab9dd29d..0ef68846 100644 --- a/new-api-details/tech-stack/ortelius.json +++ b/new-api-details/tech-stack/ortelius.json @@ -1,7 +1,7 @@ { "slug": "ortelius", "name": "ortelius", - "published_at": "2026-01-24T21:33:12.197Z", + "published_at": "2026-02-19T13:35:59.569Z", "metrics": { "org_count": 1, "project_count": 9, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.197Z" + "generated_at": "2026-02-19T13:35:59.569Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/os.json b/new-api-details/tech-stack/os.json index adf1a753..94227cd7 100644 --- a/new-api-details/tech-stack/os.json +++ b/new-api-details/tech-stack/os.json @@ -1,13 +1,13 @@ { "slug": "os", "name": "os", - "published_at": "2026-01-24T21:33:12.432Z", + "published_at": "2026-02-19T13:35:59.886Z", "metrics": { "org_count": 1, "project_count": 32, "avg_projects_per_org": 32, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -22,7 +22,8 @@ 2019, 2021, 2023, - 2025 + 2025, + 2026 ] } ], @@ -77,11 +78,16 @@ "year": 2025, "org_count": 1, "project_count": 8 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.432Z" + "generated_at": "2026-02-19T13:35:59.886Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/osx.json b/new-api-details/tech-stack/osx.json index 7e711091..7aed4eb3 100644 --- a/new-api-details/tech-stack/osx.json +++ b/new-api-details/tech-stack/osx.json @@ -1,13 +1,13 @@ { "slug": "osx", "name": "osx", - "published_at": "2026-01-24T21:33:12.203Z", + "published_at": "2026-02-19T13:35:59.582Z", "metrics": { "org_count": 2, "project_count": 22, "avg_projects_per_org": 11, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -20,7 +20,8 @@ "active_years": [ 2016, 2019, - 2025 + 2025, + 2026 ] }, { @@ -90,11 +91,16 @@ "year": 2025, "org_count": 1, "project_count": 2 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.203Z" + "generated_at": "2026-02-19T13:35:59.582Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/pallene.json b/new-api-details/tech-stack/pallene.json index 981ff8ed..61de0a40 100644 --- a/new-api-details/tech-stack/pallene.json +++ b/new-api-details/tech-stack/pallene.json @@ -1,13 +1,13 @@ { "slug": "pallene", "name": "pallene", - "published_at": "2026-01-24T21:33:12.356Z", + "published_at": "2026-02-19T13:35:59.784Z", "metrics": { "org_count": 1, "project_count": 43, "avg_projects_per_org": 43, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -25,7 +25,8 @@ 2020, 2021, 2024, - 2025 + 2025, + 2026 ] } ], @@ -80,11 +81,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.356Z" + "generated_at": "2026-02-19T13:35:59.784Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/pandas.json b/new-api-details/tech-stack/pandas.json index 21b1c83a..82d69580 100644 --- a/new-api-details/tech-stack/pandas.json +++ b/new-api-details/tech-stack/pandas.json @@ -1,13 +1,13 @@ { "slug": "pandas", "name": "pandas", - "published_at": "2026-01-24T21:33:12.405Z", + "published_at": "2026-02-19T13:35:59.846Z", "metrics": { "org_count": 4, "project_count": 29, "avg_projects_per_org": 7.3, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -21,7 +21,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -111,11 +112,16 @@ "year": 2025, "org_count": 1, "project_count": 2 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.406Z" + "generated_at": "2026-02-19T13:35:59.847Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/parallel-algorithms.json b/new-api-details/tech-stack/parallel-algorithms.json index 215331b0..ab7da432 100644 --- a/new-api-details/tech-stack/parallel-algorithms.json +++ b/new-api-details/tech-stack/parallel-algorithms.json @@ -1,13 +1,13 @@ { "slug": "parallel-algorithms", "name": "parallel algorithms", - "published_at": "2026-01-24T21:33:12.147Z", + "published_at": "2026-02-19T13:35:59.521Z", "metrics": { "org_count": 2, "project_count": 252, "avg_projects_per_org": 126, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -45,7 +46,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -100,11 +102,16 @@ "year": 2025, "org_count": 2, "project_count": 32 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.147Z" + "generated_at": "2026-02-19T13:35:59.521Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/parallel-processing.json b/new-api-details/tech-stack/parallel-processing.json index df74b88f..7b7dc63e 100644 --- a/new-api-details/tech-stack/parallel-processing.json +++ b/new-api-details/tech-stack/parallel-processing.json @@ -1,13 +1,13 @@ { "slug": "parallel-processing", "name": "parallel processing", - "published_at": "2026-01-24T21:33:12.486Z", + "published_at": "2026-02-19T13:35:59.948Z", "metrics": { "org_count": 1, "project_count": 38, "avg_projects_per_org": 38, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 6 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.486Z" + "generated_at": "2026-02-19T13:35:59.948Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/parallelization.json b/new-api-details/tech-stack/parallelization.json index 6cd4b0ab..4753868a 100644 --- a/new-api-details/tech-stack/parallelization.json +++ b/new-api-details/tech-stack/parallelization.json @@ -1,13 +1,13 @@ { "slug": "parallelization", "name": "parallelization", - "published_at": "2026-01-24T21:33:12.147Z", + "published_at": "2026-02-19T13:35:59.522Z", "metrics": { "org_count": 1, "project_count": 214, "avg_projects_per_org": 214, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 26 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.147Z" + "generated_at": "2026-02-19T13:35:59.522Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/parsers-compilers.json b/new-api-details/tech-stack/parsers-compilers.json index b492950c..867f0139 100644 --- a/new-api-details/tech-stack/parsers-compilers.json +++ b/new-api-details/tech-stack/parsers-compilers.json @@ -1,13 +1,13 @@ { "slug": "parsers-compilers", "name": "Parsers & Compilers", - "published_at": "2026-01-24T21:33:12.348Z", + "published_at": "2026-02-19T13:35:59.773Z", "metrics": { "org_count": 1, "project_count": 16, "avg_projects_per_org": 16, "first_year_used": 2023, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -20,7 +20,8 @@ "active_years": [ 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -75,11 +76,16 @@ "year": 2025, "org_count": 1, "project_count": 8 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.348Z" + "generated_at": "2026-02-19T13:35:59.773Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/patroni.json b/new-api-details/tech-stack/patroni.json index 3305a035..015b9e0b 100644 --- a/new-api-details/tech-stack/patroni.json +++ b/new-api-details/tech-stack/patroni.json @@ -1,7 +1,7 @@ { "slug": "patroni", "name": "patroni", - "published_at": "2026-01-24T21:33:12.520Z", + "published_at": "2026-02-19T13:36:00.004Z", "metrics": { "org_count": 1, "project_count": 1, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.520Z" + "generated_at": "2026-02-19T13:36:00.004Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/pcap.json b/new-api-details/tech-stack/pcap.json index da7d77ca..6a6ebd81 100644 --- a/new-api-details/tech-stack/pcap.json +++ b/new-api-details/tech-stack/pcap.json @@ -1,7 +1,7 @@ { "slug": "pcap", "name": "pcap", - "published_at": "2026-01-24T21:33:12.538Z", + "published_at": "2026-02-19T13:36:00.088Z", "metrics": { "org_count": 1, "project_count": 1, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.539Z" + "generated_at": "2026-02-19T13:36:00.088Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/pci.json b/new-api-details/tech-stack/pci.json index 919a13d9..b95851b0 100644 --- a/new-api-details/tech-stack/pci.json +++ b/new-api-details/tech-stack/pci.json @@ -1,13 +1,13 @@ { "slug": "pci", "name": "pci", - "published_at": "2026-01-24T21:33:12.346Z", + "published_at": "2026-02-19T13:35:59.772Z", "metrics": { "org_count": 1, "project_count": 6, "avg_projects_per_org": 6, "first_year_used": 2016, - "latest_year_used": 2024 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,10 +16,11 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kolibrios-project-team.webp", "category": "Operating systems", "total_projects": 6, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, - 2024 + 2024, + 2026 ] } ], @@ -74,11 +75,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.346Z" + "generated_at": "2026-02-19T13:35:59.772Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/pcl.json b/new-api-details/tech-stack/pcl.json index 00dcaab2..8423137e 100644 --- a/new-api-details/tech-stack/pcl.json +++ b/new-api-details/tech-stack/pcl.json @@ -1,7 +1,7 @@ { "slug": "pcl", "name": "pcl", - "published_at": "2026-01-24T21:33:12.407Z", + "published_at": "2026-02-19T13:35:59.848Z", "metrics": { "org_count": 1, "project_count": 4, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.407Z" + "generated_at": "2026-02-19T13:35:59.848Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/pencil.json b/new-api-details/tech-stack/pencil.json index e19e510f..50340b44 100644 --- a/new-api-details/tech-stack/pencil.json +++ b/new-api-details/tech-stack/pencil.json @@ -1,7 +1,7 @@ { "slug": "pencil", "name": "pencil", - "published_at": "2026-01-24T21:33:12.442Z", + "published_at": "2026-02-19T13:35:59.899Z", "metrics": { "org_count": 1, "project_count": 4, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.442Z" + "generated_at": "2026-02-19T13:35:59.899Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/perl.json b/new-api-details/tech-stack/perl.json index bd572289..8c4417fb 100644 --- a/new-api-details/tech-stack/perl.json +++ b/new-api-details/tech-stack/perl.json @@ -1,13 +1,13 @@ { "slug": "perl", "name": "perl", - "published_at": "2026-01-24T21:33:12.098Z", + "published_at": "2026-02-19T13:35:59.432Z", "metrics": { "org_count": 15, "project_count": 546, "avg_projects_per_org": 36.4, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -25,14 +25,15 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "open-technologies-alliance-gfoss", "name": "Open Technologies Alliance - GFOSS", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-technologies-alliance-gfoss.webp", - "category": "Development tools", + "category": "Science and medicine", "total_projects": 70, "is_currently_active": true, "active_years": [ @@ -43,7 +44,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -81,7 +83,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -100,7 +103,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -119,7 +123,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -156,7 +161,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -191,7 +197,8 @@ 2021, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -232,7 +239,8 @@ "active_years": [ 2018, 2022, - 2025 + 2025, + 2026 ] }, { @@ -309,11 +317,16 @@ "year": 2025, "org_count": 8, "project_count": 52 + }, + { + "year": 2026, + "org_count": 8, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.098Z" + "generated_at": "2026-02-19T13:35:59.432Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/perl5.json b/new-api-details/tech-stack/perl5.json index 3320d5e7..8a5e4ac1 100644 --- a/new-api-details/tech-stack/perl5.json +++ b/new-api-details/tech-stack/perl5.json @@ -1,7 +1,7 @@ { "slug": "perl5", "name": "perl5", - "published_at": "2026-01-24T21:33:12.518Z", + "published_at": "2026-02-19T13:35:59.990Z", "metrics": { "org_count": 1, "project_count": 4, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.519Z" + "generated_at": "2026-02-19T13:35:59.990Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/perl6.json b/new-api-details/tech-stack/perl6.json index b511bcad..9aeb111f 100644 --- a/new-api-details/tech-stack/perl6.json +++ b/new-api-details/tech-stack/perl6.json @@ -1,7 +1,7 @@ { "slug": "perl6", "name": "perl6", - "published_at": "2026-01-24T21:33:12.518Z", + "published_at": "2026-02-19T13:35:59.989Z", "metrics": { "org_count": 1, "project_count": 4, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.518Z" + "generated_at": "2026-02-19T13:35:59.989Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/pharo.json b/new-api-details/tech-stack/pharo.json index 24472638..81fd9c56 100644 --- a/new-api-details/tech-stack/pharo.json +++ b/new-api-details/tech-stack/pharo.json @@ -1,13 +1,13 @@ { "slug": "pharo", "name": "pharo", - "published_at": "2026-01-24T21:33:12.431Z", + "published_at": "2026-02-19T13:35:59.885Z", "metrics": { "org_count": 1, "project_count": 32, "avg_projects_per_org": 32, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -22,7 +22,8 @@ 2019, 2021, 2023, - 2025 + 2025, + 2026 ] } ], @@ -77,11 +78,16 @@ "year": 2025, "org_count": 1, "project_count": 8 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.431Z" + "generated_at": "2026-02-19T13:35:59.885Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/php.json b/new-api-details/tech-stack/php.json index 1d6286f0..82d69774 100644 --- a/new-api-details/tech-stack/php.json +++ b/new-api-details/tech-stack/php.json @@ -1,13 +1,13 @@ { "slug": "php", "name": "php", - "published_at": "2026-01-24T21:33:12.188Z", + "published_at": "2026-02-19T13:35:59.547Z", "metrics": { "org_count": 31, "project_count": 1305, "avg_projects_per_org": 42.1, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,14 +27,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "fossasia", "name": "FOSSASIA", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/fossasia.webp", - "category": "Science and medicine", + "category": "End user applications", "total_projects": 140, "is_currently_active": true, "active_years": [ @@ -43,7 +44,8 @@ 2018, 2019, 2024, - 2025 + 2025, + 2026 ] }, { @@ -63,7 +65,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -82,7 +85,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -91,7 +95,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/wikimedia-foundation.webp", "category": "Web", "total_projects": 85, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -101,7 +105,8 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -121,14 +126,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "open-technologies-alliance-gfoss", "name": "Open Technologies Alliance - GFOSS", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-technologies-alliance-gfoss.webp", - "category": "Development tools", + "category": "Science and medicine", "total_projects": 70, "is_currently_active": true, "active_years": [ @@ -139,7 +145,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -158,7 +165,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -193,7 +201,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -212,7 +221,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -229,7 +239,8 @@ 2019, 2021, 2022, - 2025 + 2025, + 2026 ] }, { @@ -249,7 +260,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -272,7 +284,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/librehealth.webp", "category": "Science and medicine", "total_projects": 31, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, @@ -280,7 +292,8 @@ 2020, 2021, 2022, - 2023 + 2023, + 2026 ] }, { @@ -289,13 +302,14 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cuneiform-digital-library-initiative-cdli.webp", "category": "Science and medicine", "total_projects": 30, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2018, 2019, 2020, 2021, - 2022 + 2022, + 2026 ] }, { @@ -314,7 +328,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -332,7 +347,8 @@ 2021, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -356,14 +372,15 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/submitty.webp", "category": "End user applications", "total_projects": 19, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2018, 2019, 2020, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -422,7 +439,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -563,11 +581,16 @@ "year": 2025, "org_count": 14, "project_count": 119 + }, + { + "year": 2026, + "org_count": 18, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.188Z" + "generated_at": "2026-02-19T13:35:59.547Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/physical-computing.json b/new-api-details/tech-stack/physical-computing.json index 9d9f0011..7bf15060 100644 --- a/new-api-details/tech-stack/physical-computing.json +++ b/new-api-details/tech-stack/physical-computing.json @@ -1,7 +1,7 @@ { "slug": "physical-computing", "name": "physical computing", - "published_at": "2026-01-24T21:33:12.119Z", + "published_at": "2026-02-19T13:35:59.468Z", "metrics": { "org_count": 1, "project_count": 44, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/beagleboardorg.webp", "category": "Science and medicine", "total_projects": 44, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -82,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.119Z" + "generated_at": "2026-02-19T13:35:59.468Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/physical-web.json b/new-api-details/tech-stack/physical-web.json index d57d2e65..bf4bd17f 100644 --- a/new-api-details/tech-stack/physical-web.json +++ b/new-api-details/tech-stack/physical-web.json @@ -1,7 +1,7 @@ { "slug": "physical-web", "name": "physical web", - "published_at": "2026-01-24T21:33:12.437Z", + "published_at": "2026-02-19T13:35:59.890Z", "metrics": { "org_count": 1, "project_count": 8, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.437Z" + "generated_at": "2026-02-19T13:35:59.890Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/phyton.json b/new-api-details/tech-stack/phyton.json index 72c277c8..99427133 100644 --- a/new-api-details/tech-stack/phyton.json +++ b/new-api-details/tech-stack/phyton.json @@ -1,13 +1,13 @@ { "slug": "phyton", "name": "Phyton", - "published_at": "2026-01-24T21:33:12.538Z", + "published_at": "2026-02-19T13:36:00.086Z", "metrics": { "org_count": 1, "project_count": 85, "avg_projects_per_org": 85, "first_year_used": 2016, - "latest_year_used": 2024 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/wikimedia-foundation.webp", "category": "Web", "total_projects": 85, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -26,7 +26,8 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.538Z" + "generated_at": "2026-02-19T13:36:00.086Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/pixhawk.json b/new-api-details/tech-stack/pixhawk.json index fc982479..bb43f3ea 100644 --- a/new-api-details/tech-stack/pixhawk.json +++ b/new-api-details/tech-stack/pixhawk.json @@ -1,13 +1,13 @@ { "slug": "pixhawk", "name": "pixhawk", - "published_at": "2026-01-24T21:33:12.107Z", + "published_at": "2026-02-19T13:35:59.456Z", "metrics": { "org_count": 1, "project_count": 38, "avg_projects_per_org": 38, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.107Z" + "generated_at": "2026-02-19T13:35:59.456Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/polly.json b/new-api-details/tech-stack/polly.json index 1b407c2c..eddc0a67 100644 --- a/new-api-details/tech-stack/polly.json +++ b/new-api-details/tech-stack/polly.json @@ -1,7 +1,7 @@ { "slug": "polly", "name": "polly", - "published_at": "2026-01-24T21:33:12.441Z", + "published_at": "2026-02-19T13:35:59.897Z", "metrics": { "org_count": 1, "project_count": 4, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.441Z" + "generated_at": "2026-02-19T13:35:59.897Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/polymath.json b/new-api-details/tech-stack/polymath.json index 49b8336a..f69d8858 100644 --- a/new-api-details/tech-stack/polymath.json +++ b/new-api-details/tech-stack/polymath.json @@ -1,13 +1,13 @@ { "slug": "polymath", "name": "polymath", - "published_at": "2026-01-24T21:33:12.430Z", + "published_at": "2026-02-19T13:35:59.884Z", "metrics": { "org_count": 1, "project_count": 32, "avg_projects_per_org": 32, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -22,7 +22,8 @@ 2019, 2021, 2023, - 2025 + 2025, + 2026 ] } ], @@ -77,11 +78,16 @@ "year": 2025, "org_count": 1, "project_count": 8 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.430Z" + "generated_at": "2026-02-19T13:35:59.884Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/polymer.json b/new-api-details/tech-stack/polymer.json index 04cf59f0..7a1a1125 100644 --- a/new-api-details/tech-stack/polymer.json +++ b/new-api-details/tech-stack/polymer.json @@ -1,7 +1,7 @@ { "slug": "polymer", "name": "polymer", - "published_at": "2026-01-24T21:33:12.292Z", + "published_at": "2026-02-19T13:35:59.699Z", "metrics": { "org_count": 1, "project_count": 8, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.292Z" + "generated_at": "2026-02-19T13:35:59.699Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/posix-shell.json b/new-api-details/tech-stack/posix-shell.json index d3289eb8..80422fa4 100644 --- a/new-api-details/tech-stack/posix-shell.json +++ b/new-api-details/tech-stack/posix-shell.json @@ -1,13 +1,13 @@ { "slug": "posix-shell", "name": "POSIX shell", - "published_at": "2026-01-24T21:33:12.501Z", + "published_at": "2026-02-19T13:35:59.964Z", "metrics": { "org_count": 1, "project_count": 76, "avg_projects_per_org": 76, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -82,11 +83,16 @@ "year": 2025, "org_count": 1, "project_count": 12 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.501Z" + "generated_at": "2026-02-19T13:35:59.964Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/posix.json b/new-api-details/tech-stack/posix.json index 738d43f8..a1374591 100644 --- a/new-api-details/tech-stack/posix.json +++ b/new-api-details/tech-stack/posix.json @@ -1,13 +1,13 @@ { "slug": "posix", "name": "posix", - "published_at": "2026-01-24T21:33:12.268Z", + "published_at": "2026-02-19T13:35:59.681Z", "metrics": { "org_count": 4, "project_count": 132, "avg_projects_per_org": 33, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnu-project.webp", "category": "Operating systems", "total_projects": 59, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -24,7 +24,8 @@ 2019, 2020, 2023, - 2024 + 2024, + 2026 ] }, { @@ -44,7 +45,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -53,7 +55,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/haiku.webp", "category": "Operating systems", "total_projects": 26, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, @@ -62,7 +64,8 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -128,11 +131,16 @@ "year": 2025, "org_count": 1, "project_count": 8 + }, + { + "year": 2026, + "org_count": 3, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.269Z" + "generated_at": "2026-02-19T13:35:59.681Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/postgis.json b/new-api-details/tech-stack/postgis.json index ae398289..4269a33f 100644 --- a/new-api-details/tech-stack/postgis.json +++ b/new-api-details/tech-stack/postgis.json @@ -1,13 +1,13 @@ { "slug": "postgis", "name": "postgis", - "published_at": "2026-01-24T21:33:12.419Z", + "published_at": "2026-02-19T13:35:59.866Z", "metrics": { "org_count": 1, "project_count": 45, "avg_projects_per_org": 45, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -82,11 +83,16 @@ "year": 2025, "org_count": 1, "project_count": 6 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.419Z" + "generated_at": "2026-02-19T13:35:59.866Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/postgres.json b/new-api-details/tech-stack/postgres.json index cb1bba02..444eb4cd 100644 --- a/new-api-details/tech-stack/postgres.json +++ b/new-api-details/tech-stack/postgres.json @@ -1,13 +1,13 @@ { "slug": "postgres", "name": "postgres", - "published_at": "2026-01-24T21:33:12.078Z", + "published_at": "2026-02-19T13:35:59.389Z", "metrics": { "org_count": 6, "project_count": 182, "avg_projects_per_org": 30.3, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -46,7 +47,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -64,7 +66,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -73,7 +76,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/fedora-project.webp", "category": "Operating systems", "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -89,7 +92,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/center-for-translational-data-science.webp", "category": "Science and medicine", "total_projects": 6, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2025 @@ -160,11 +163,16 @@ "year": 2025, "org_count": 5, "project_count": 24 + }, + { + "year": 2026, + "org_count": 3, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.078Z" + "generated_at": "2026-02-19T13:35:59.389Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/postgresql.json b/new-api-details/tech-stack/postgresql.json index 81d3765f..d2abea6d 100644 --- a/new-api-details/tech-stack/postgresql.json +++ b/new-api-details/tech-stack/postgresql.json @@ -1,13 +1,13 @@ { "slug": "postgresql", "name": "postgresql", - "published_at": "2026-01-24T21:33:12.069Z", + "published_at": "2026-02-19T13:35:59.388Z", "metrics": { "org_count": 35, "project_count": 600, "avg_projects_per_org": 17.1, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -46,7 +47,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -55,7 +57,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/global-alliance-for-genomics-and-health.webp", "category": "Science and medicine", "total_projects": 45, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -65,7 +67,8 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -85,7 +88,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -103,7 +107,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -112,7 +117,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-palisadoes-foundation.webp", "category": "Social and communication", "total_projects": 36, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2021, 2022, @@ -136,7 +141,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -153,7 +159,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -172,7 +179,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -181,7 +189,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/chaoss.webp", "category": "Data", "total_projects": 29, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2018, 2019, @@ -214,7 +222,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/fedora-project.webp", "category": "Operating systems", "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -230,14 +238,15 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/submitty.webp", "category": "End user applications", "total_projects": 19, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2018, 2019, 2020, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -286,14 +295,15 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/metasploit.webp", "category": "Security", "total_projects": 12, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, 2020, 2021, 2022, - 2023 + 2023, + 2026 ] }, { @@ -305,7 +315,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -562,11 +573,16 @@ "year": 2025, "org_count": 11, "project_count": 60 + }, + { + "year": 2026, + "org_count": 11, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.069Z" + "generated_at": "2026-02-19T13:35:59.388Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/ppcg.json b/new-api-details/tech-stack/ppcg.json index 6802069a..001ce303 100644 --- a/new-api-details/tech-stack/ppcg.json +++ b/new-api-details/tech-stack/ppcg.json @@ -1,7 +1,7 @@ { "slug": "ppcg", "name": "ppcg", - "published_at": "2026-01-24T21:33:12.441Z", + "published_at": "2026-02-19T13:35:59.898Z", "metrics": { "org_count": 1, "project_count": 4, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.441Z" + "generated_at": "2026-02-19T13:35:59.898Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/processor.json b/new-api-details/tech-stack/processor.json index 0398a2cf..92931c59 100644 --- a/new-api-details/tech-stack/processor.json +++ b/new-api-details/tech-stack/processor.json @@ -1,7 +1,7 @@ { "slug": "processor", "name": "Processor", - "published_at": "2026-01-24T21:33:12.380Z", + "published_at": "2026-02-19T13:35:59.818Z", "metrics": { "org_count": 1, "project_count": 12, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/micro-electronics-research-lab-uitu.webp", "category": "Other", "total_projects": 12, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2023, @@ -76,11 +76,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.380Z" + "generated_at": "2026-02-19T13:35:59.818Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/programming-language.json b/new-api-details/tech-stack/programming-language.json index 4f487690..1ea63074 100644 --- a/new-api-details/tech-stack/programming-language.json +++ b/new-api-details/tech-stack/programming-language.json @@ -1,13 +1,13 @@ { "slug": "programming-language", "name": "programming-language", - "published_at": "2026-01-24T21:33:12.209Z", + "published_at": "2026-02-19T13:35:59.586Z", "metrics": { "org_count": 1, "project_count": 22, "avg_projects_per_org": 22, "first_year_used": 2020, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -23,7 +23,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,11 +79,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.209Z" + "generated_at": "2026-02-19T13:35:59.586Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/programming-languages.json b/new-api-details/tech-stack/programming-languages.json index 2f017052..acd1a381 100644 --- a/new-api-details/tech-stack/programming-languages.json +++ b/new-api-details/tech-stack/programming-languages.json @@ -1,13 +1,13 @@ { "slug": "programming-languages", "name": "programming languages", - "published_at": "2026-01-24T21:33:12.493Z", + "published_at": "2026-02-19T13:35:59.955Z", "metrics": { "org_count": 1, "project_count": 26, "avg_projects_per_org": 26, "first_year_used": 2018, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -25,7 +25,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -80,11 +81,16 @@ "year": 2025, "org_count": 1, "project_count": 4 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.493Z" + "generated_at": "2026-02-19T13:35:59.955Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/prolog.json b/new-api-details/tech-stack/prolog.json index 8c956e33..6f876836 100644 --- a/new-api-details/tech-stack/prolog.json +++ b/new-api-details/tech-stack/prolog.json @@ -1,7 +1,7 @@ { "slug": "prolog", "name": "prolog", - "published_at": "2026-01-24T21:33:12.309Z", + "published_at": "2026-02-19T13:35:59.720Z", "metrics": { "org_count": 2, "project_count": 15, @@ -88,11 +88,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.309Z" + "generated_at": "2026-02-19T13:35:59.720Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/prometheus.json b/new-api-details/tech-stack/prometheus.json index f41d2df0..df6c962b 100644 --- a/new-api-details/tech-stack/prometheus.json +++ b/new-api-details/tech-stack/prometheus.json @@ -1,13 +1,13 @@ { "slug": "prometheus", "name": "prometheus", - "published_at": "2026-01-24T21:33:12.161Z", + "published_at": "2026-02-19T13:35:59.556Z", "metrics": { "org_count": 5, "project_count": 127, "avg_projects_per_org": 25.4, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -35,7 +36,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/prometheus-operator.webp", "category": "Infrastructure and cloud", "total_projects": 5, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2024, 2025 @@ -71,7 +72,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kro-kube-resource-orchestrator.webp", "category": "Infrastructure and cloud", "total_projects": 2, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2025 ] @@ -128,11 +129,16 @@ "year": 2025, "org_count": 3, "project_count": 15 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.161Z" + "generated_at": "2026-02-19T13:35:59.557Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/protobuf.json b/new-api-details/tech-stack/protobuf.json index 4495c010..b2d535c1 100644 --- a/new-api-details/tech-stack/protobuf.json +++ b/new-api-details/tech-stack/protobuf.json @@ -1,13 +1,13 @@ { "slug": "protobuf", "name": "protobuf", - "published_at": "2026-01-24T21:33:12.285Z", + "published_at": "2026-02-19T13:35:59.670Z", "metrics": { "org_count": 1, "project_count": 45, "avg_projects_per_org": 45, "first_year_used": 2016, - "latest_year_used": 2024 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/global-alliance-for-genomics-and-health.webp", "category": "Science and medicine", "total_projects": 45, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -26,7 +26,8 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.285Z" + "generated_at": "2026-02-19T13:35:59.670Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/protocol-buffers.json b/new-api-details/tech-stack/protocol-buffers.json index c3e7da00..15ef3bf4 100644 --- a/new-api-details/tech-stack/protocol-buffers.json +++ b/new-api-details/tech-stack/protocol-buffers.json @@ -1,7 +1,7 @@ { "slug": "protocol-buffers", "name": "protocol buffers", - "published_at": "2026-01-24T21:33:12.072Z", + "published_at": "2026-02-19T13:35:59.448Z", "metrics": { "org_count": 1, "project_count": 1, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.072Z" + "generated_at": "2026-02-19T13:35:59.448Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/pthon.json b/new-api-details/tech-stack/pthon.json index a01a62d8..717ef105 100644 --- a/new-api-details/tech-stack/pthon.json +++ b/new-api-details/tech-stack/pthon.json @@ -1,13 +1,13 @@ { "slug": "pthon", "name": "pthon", - "published_at": "2026-01-24T21:33:12.319Z", + "published_at": "2026-02-19T13:35:59.735Z", "metrics": { "org_count": 1, "project_count": 26, "avg_projects_per_org": 26, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -25,7 +25,8 @@ 2021, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -80,11 +81,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.319Z" + "generated_at": "2026-02-19T13:35:59.735Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/pygame.json b/new-api-details/tech-stack/pygame.json index a1bd11a0..79ae08c2 100644 --- a/new-api-details/tech-stack/pygame.json +++ b/new-api-details/tech-stack/pygame.json @@ -1,13 +1,13 @@ { "slug": "pygame", "name": "pygame", - "published_at": "2026-01-24T21:33:12.491Z", + "published_at": "2026-02-19T13:35:59.952Z", "metrics": { "org_count": 1, "project_count": 89, "avg_projects_per_org": 89, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -82,11 +83,16 @@ "year": 2025, "org_count": 1, "project_count": 11 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.491Z" + "generated_at": "2026-02-19T13:35:59.952Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/pyqt.json b/new-api-details/tech-stack/pyqt.json index a16044c2..c9c4bbb0 100644 --- a/new-api-details/tech-stack/pyqt.json +++ b/new-api-details/tech-stack/pyqt.json @@ -1,7 +1,7 @@ { "slug": "pyqt", "name": "pyqt", - "published_at": "2026-01-24T21:33:12.259Z", + "published_at": "2026-02-19T13:35:59.654Z", "metrics": { "org_count": 1, "project_count": 2, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.259Z" + "generated_at": "2026-02-19T13:35:59.654Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/pyth.json b/new-api-details/tech-stack/pyth.json index 6cf59980..6b32d1fb 100644 --- a/new-api-details/tech-stack/pyth.json +++ b/new-api-details/tech-stack/pyth.json @@ -1,7 +1,7 @@ { "slug": "pyth", "name": "pyth", - "published_at": "2026-01-24T21:33:12.471Z", + "published_at": "2026-02-19T13:35:59.937Z", "metrics": { "org_count": 1, "project_count": 149, @@ -80,11 +80,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.471Z" + "generated_at": "2026-02-19T13:35:59.937Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/python-3.json b/new-api-details/tech-stack/python-3.json index ff8bd38f..0eff6387 100644 --- a/new-api-details/tech-stack/python-3.json +++ b/new-api-details/tech-stack/python-3.json @@ -1,13 +1,13 @@ { "slug": "python-3", "name": "python 3", - "published_at": "2026-01-24T21:33:12.094Z", + "published_at": "2026-02-19T13:35:59.406Z", "metrics": { "org_count": 22, "project_count": 643, "avg_projects_per_org": 29.2, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -36,7 +37,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/opencv.webp", "category": "Media", "total_projects": 93, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -53,7 +54,7 @@ "slug": "open-technologies-alliance-gfoss", "name": "Open Technologies Alliance - GFOSS", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-technologies-alliance-gfoss.webp", - "category": "Development tools", + "category": "Science and medicine", "total_projects": 70, "is_currently_active": true, "active_years": [ @@ -64,7 +65,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -84,7 +86,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -117,7 +120,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -126,7 +130,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/librehealth.webp", "category": "Science and medicine", "total_projects": 31, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, @@ -134,7 +138,8 @@ 2020, 2021, 2022, - 2023 + 2023, + 2026 ] }, { @@ -143,13 +148,14 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cuneiform-digital-library-initiative-cdli.webp", "category": "Science and medicine", "total_projects": 30, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2018, 2019, 2020, 2021, - 2022 + 2022, + 2026 ] }, { @@ -158,7 +164,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/chaoss.webp", "category": "Data", "total_projects": 29, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2018, 2019, @@ -174,7 +180,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cloudcv.webp", "category": "Web", "total_projects": 28, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -193,7 +199,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/fedora-project.webp", "category": "Operating systems", "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -209,7 +215,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/inkscape.webp", "category": "End user applications", "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -237,7 +243,8 @@ 2021, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -411,11 +418,16 @@ "year": 2025, "org_count": 10, "project_count": 55 + }, + { + "year": 2026, + "org_count": 7, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.094Z" + "generated_at": "2026-02-19T13:35:59.406Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/python-deep-learning-frameworks.json b/new-api-details/tech-stack/python-deep-learning-frameworks.json index 5f336fb5..5aa73dbd 100644 --- a/new-api-details/tech-stack/python-deep-learning-frameworks.json +++ b/new-api-details/tech-stack/python-deep-learning-frameworks.json @@ -1,13 +1,13 @@ { "slug": "python-deep-learning-frameworks", "name": "python deep learning frameworks", - "published_at": "2026-01-24T21:33:12.215Z", + "published_at": "2026-02-19T13:35:59.598Z", "metrics": { "org_count": 3, "project_count": 154, "avg_projects_per_org": 51.3, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -29,7 +29,7 @@ "slug": "open-technologies-alliance-gfoss", "name": "Open Technologies Alliance - GFOSS", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-technologies-alliance-gfoss.webp", - "category": "Development tools", + "category": "Science and medicine", "total_projects": 70, "is_currently_active": true, "active_years": [ @@ -40,7 +40,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -106,11 +107,16 @@ "year": 2025, "org_count": 1, "project_count": 9 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.215Z" + "generated_at": "2026-02-19T13:35:59.598Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/python-gtk.json b/new-api-details/tech-stack/python-gtk.json index a015795b..055b3bb7 100644 --- a/new-api-details/tech-stack/python-gtk.json +++ b/new-api-details/tech-stack/python-gtk.json @@ -1,13 +1,13 @@ { "slug": "python-gtk", "name": "python gtk", - "published_at": "2026-01-24T21:33:12.491Z", + "published_at": "2026-02-19T13:35:59.953Z", "metrics": { "org_count": 1, "project_count": 89, "avg_projects_per_org": 89, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -82,11 +83,16 @@ "year": 2025, "org_count": 1, "project_count": 11 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.491Z" + "generated_at": "2026-02-19T13:35:59.953Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/python.json b/new-api-details/tech-stack/python.json index 56d3563f..64f3f5fd 100644 --- a/new-api-details/tech-stack/python.json +++ b/new-api-details/tech-stack/python.json @@ -1,13 +1,13 @@ { "slug": "python", "name": "python", - "published_at": "2026-01-24T21:33:12.051Z", + "published_at": "2026-02-19T13:35:59.382Z", "metrics": { - "org_count": 277, - "project_count": 7616, - "avg_projects_per_org": 27.5, + "org_count": 293, + "project_count": 7705, + "avg_projects_per_org": 26.3, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,14 +27,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "python-software-foundation", "name": "Python Software Foundation", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/python-software-foundation.webp", - "category": "Science and medicine", + "category": "End user applications", "total_projects": 277, "is_currently_active": true, "active_years": [ @@ -47,7 +48,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -56,7 +58,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-apache-software-foundation.webp", "category": "Web", "total_projects": 248, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -86,7 +88,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -106,7 +109,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -131,7 +135,7 @@ "slug": "fossasia", "name": "FOSSASIA", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/fossasia.webp", - "category": "Science and medicine", + "category": "End user applications", "total_projects": 140, "is_currently_active": true, "active_years": [ @@ -140,7 +144,8 @@ 2018, 2019, 2024, - 2025 + 2025, + 2026 ] }, { @@ -160,7 +165,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -180,7 +186,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -195,7 +202,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -215,7 +223,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -234,7 +243,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -254,7 +264,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -273,7 +284,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -293,7 +305,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -313,7 +326,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -322,7 +336,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/opencv.webp", "category": "Media", "total_projects": 93, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -352,7 +366,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -389,7 +404,8 @@ 2021, 2022, 2023, - 2025 + 2025, + 2026 ] }, { @@ -398,7 +414,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/wikimedia-foundation.webp", "category": "Web", "total_projects": 85, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -408,7 +424,29 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 + ] + }, + { + "slug": "international-catrobat-association", + "name": "International Catrobat Association", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/international-catrobat-association.webp", + "category": "Programming languages", + "total_projects": 84, + "is_currently_active": true, + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { @@ -443,7 +481,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -461,7 +500,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] }, { @@ -481,7 +521,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -501,7 +542,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -520,7 +562,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -544,7 +587,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/freifunk.webp", "category": "Operating systems", "total_projects": 74, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -574,7 +617,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -583,7 +627,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/chromium.webp", "category": "Operating systems", "total_projects": 71, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2021, 2022, @@ -596,7 +640,7 @@ "slug": "open-technologies-alliance-gfoss", "name": "Open Technologies Alliance - GFOSS", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-technologies-alliance-gfoss.webp", - "category": "Development tools", + "category": "Science and medicine", "total_projects": 70, "is_currently_active": true, "active_years": [ @@ -607,7 +651,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -645,7 +690,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -665,7 +711,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -685,14 +732,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "dbpedia", "name": "DBpedia", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/dbpedia.webp", - "category": "Science and medicine", + "category": "Data", "total_projects": 61, "is_currently_active": true, "active_years": [ @@ -705,7 +753,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -725,7 +774,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -745,7 +795,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -773,7 +824,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnu-project.webp", "category": "Operating systems", "total_projects": 59, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -781,7 +832,8 @@ 2019, 2020, 2023, - 2024 + 2024, + 2026 ] }, { @@ -800,7 +852,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -837,7 +890,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -856,7 +910,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -894,7 +949,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -913,7 +969,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -926,7 +983,8 @@ "active_years": [ 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -945,7 +1003,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -965,7 +1024,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -974,7 +1034,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/global-alliance-for-genomics-and-health.webp", "category": "Science and medicine", "total_projects": 45, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -984,7 +1044,8 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -993,7 +1054,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/google-deepmind.webp", "category": "Artificial Intelligence", "total_projects": 45, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2025 ] @@ -1032,7 +1093,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1041,7 +1103,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/beagleboardorg.webp", "category": "Science and medicine", "total_projects": 44, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -1070,7 +1132,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1089,7 +1152,8 @@ 2021, 2022, 2023, - 2025 + 2025, + 2026 ] }, { @@ -1109,7 +1173,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1128,7 +1193,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1147,7 +1213,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1170,7 +1237,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-palisadoes-foundation.webp", "category": "Social and communication", "total_projects": 36, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2021, 2022, @@ -1196,7 +1263,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1215,7 +1283,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1233,7 +1302,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1247,7 +1317,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1265,7 +1336,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1288,7 +1360,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/librehealth.webp", "category": "Science and medicine", "total_projects": 31, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, @@ -1296,7 +1368,8 @@ 2020, 2021, 2022, - 2023 + 2023, + 2026 ] }, { @@ -1320,13 +1393,14 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cuneiform-digital-library-initiative-cdli.webp", "category": "Science and medicine", "total_projects": 30, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2018, 2019, 2020, 2021, - 2022 + 2022, + 2026 ] }, { @@ -1342,7 +1416,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1361,7 +1436,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1382,7 +1458,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/chaoss.webp", "category": "Data", "total_projects": 29, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2018, 2019, @@ -1432,7 +1508,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cloudcv.webp", "category": "Web", "total_projects": 28, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -1451,14 +1527,15 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-genome-informatics.webp", "category": "Science and medicine", "total_projects": 28, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, 2020, 2021, 2022, - 2023 + 2023, + 2026 ] }, { @@ -1470,7 +1547,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -1479,7 +1557,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/department-of-biomedical-informatics-emory-university.webp", "category": "Security", "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2021, 2022, @@ -1494,7 +1572,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/fedora-project.webp", "category": "Operating systems", "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -1510,7 +1588,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/inkscape.webp", "category": "End user applications", "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -1533,7 +1611,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -1551,7 +1630,8 @@ 2021, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1570,7 +1650,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1579,7 +1660,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/plone-foundation.webp", "category": "Web", "total_projects": 26, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -1607,7 +1688,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1652,7 +1734,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1667,7 +1750,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1680,7 +1764,8 @@ "active_years": [ 2020, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1728,7 +1813,26 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "libvirt", + "name": "libvirt", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/libvirt.webp", + "category": "End user applications", + "total_projects": 19, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2024 ] }, { @@ -1737,12 +1841,13 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/metacall.webp", "category": "Programming languages", "total_projects": 19, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -1767,14 +1872,15 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/submitty.webp", "category": "End user applications", "total_projects": 19, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2018, 2019, 2020, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -1783,7 +1889,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-tor-project.webp", "category": "Web", "total_projects": 19, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -1792,24 +1898,6 @@ 2025 ] }, - { - "slug": "libvirt", - "name": "libvirt", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/libvirt.webp", - "category": "End user applications", - "total_projects": 19, - "is_currently_active": false, - "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2024 - ] - }, { "slug": "apertus-association", "name": "Apertus Association", @@ -1840,7 +1928,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1860,39 +1949,42 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "kiwix", - "name": "Kiwix", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kiwix.webp", - "category": "End user applications", + "slug": "gprmax", + "name": "gprMax", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gprmax.webp", + "category": "Science and medicine", "total_projects": 18, "is_currently_active": true, "active_years": [ - 2018, 2019, - 2020, 2021, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "gprmax", - "name": "gprMax", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gprmax.webp", - "category": "Science and medicine", + "slug": "kiwix", + "name": "Kiwix", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kiwix.webp", + "category": "End user applications", "total_projects": 18, "is_currently_active": true, "active_years": [ + 2018, 2019, + 2020, 2021, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1913,6 +2005,20 @@ 2024 ] }, + { + "slug": "aimacode", + "name": "aimacode", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/aimacode.webp", + "category": "Programming languages", + "total_projects": 16, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2018, + 2019 + ] + }, { "slug": "chapel", "name": "Chapel", @@ -1940,7 +2046,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1956,7 +2063,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -1970,21 +2078,8 @@ 2022, 2023, 2024, - 2025 - ] - }, - { - "slug": "aimacode", - "name": "aimacode", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/aimacode.webp", - "category": "Programming languages", - "total_projects": 16, - "is_currently_active": false, - "active_years": [ - 2016, - 2017, - 2018, - 2019 + 2025, + 2026 ] }, { @@ -2007,7 +2102,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/internet-health-report.webp", "category": "Science and medicine", "total_projects": 15, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2023, @@ -2040,7 +2135,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -2066,7 +2162,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -2075,11 +2172,12 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/genome-assembly-and-annotation.webp", "category": "Science and medicine", "total_projects": 14, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2021, 2022, - 2023 + 2023, + 2026 ] }, { @@ -2091,7 +2189,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -2113,7 +2212,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/software-and-computational-systems-lab-at-lmu-munich.webp", "category": "Programming languages", "total_projects": 14, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2018, 2019, @@ -2133,52 +2232,54 @@ 2020, 2021, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "invesalius", - "name": "Invesalius", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/invesalius.webp", + "slug": "camicroscope", + "name": "caMicroscope", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/camicroscope.webp", "category": "Science and medicine", "total_projects": 13, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ + 2020, + 2021, 2023, - 2024, - 2025 + 2024 ] }, { - "slug": "mbdyn", - "name": "MBDyn", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mbdyn.webp", + "slug": "invesalius", + "name": "Invesalius", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/invesalius.webp", "category": "Science and medicine", "total_projects": 13, "is_currently_active": true, "active_years": [ - 2016, - 2017, - 2019, - 2020, - 2021, - 2022, + 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "camicroscope", - "name": "caMicroscope", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/camicroscope.webp", + "slug": "mbdyn", + "name": "MBDyn", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mbdyn.webp", "category": "Science and medicine", "total_projects": 13, "is_currently_active": false, "active_years": [ + 2016, + 2017, + 2019, 2020, 2021, - 2023, - 2024 + 2022, + 2024, + 2025 ] }, { @@ -2190,18 +2291,20 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { "slug": "c2si", "name": "C2SI", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/c2si.webp", - "category": "Security", + "category": "End user applications", "total_projects": 12, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ - 2024 + 2024, + 2026 ] }, { @@ -2252,14 +2355,15 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/metasploit.webp", "category": "Security", "total_projects": 12, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, 2020, 2021, 2022, - 2023 + 2023, + 2026 ] }, { @@ -2268,7 +2372,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/society-for-arts-and-technology-sat.webp", "category": "Media", "total_projects": 12, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2023, @@ -2289,7 +2393,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -2308,6 +2413,20 @@ 2022 ] }, + { + "slug": "appleseed", + "name": "appleseed", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/appleseed.webp", + "category": "Media", + "total_projects": 11, + "is_currently_active": false, + "active_years": [ + 2017, + 2018, + 2019, + 2020 + ] + }, { "slug": "cmu-sphinx", "name": "CMU Sphinx", @@ -2337,7 +2456,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/keploy.webp", "category": "Programming languages", "total_projects": 11, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2023, 2024, @@ -2366,21 +2485,8 @@ 2022, 2023, 2024, - 2025 - ] - }, - { - "slug": "appleseed", - "name": "appleseed", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/appleseed.webp", - "category": "Media", - "total_projects": 11, - "is_currently_active": false, - "active_years": [ - 2017, - 2018, - 2019, - 2020 + 2025, + 2026 ] }, { @@ -2418,7 +2524,21 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "lowrisc", + "name": "lowRISC", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/lowrisc.webp", + "category": "Other", + "total_projects": 10, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2020 ] }, { @@ -2436,13 +2556,29 @@ 2024 ] }, + { + "slug": "omegaup", + "name": "omegaUp", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/omegaup.webp", + "category": "End user applications", + "total_projects": 10, + "is_currently_active": true, + "active_years": [ + 2018, + 2022, + 2023, + 2024, + 2025, + 2026 + ] + }, { "slug": "open-climate-fix", "name": "Open Climate Fix", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-climate-fix.webp", "category": "Science and medicine", "total_projects": 10, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2024, 2025 @@ -2458,7 +2594,8 @@ "active_years": [ 2018, 2022, - 2025 + 2025, + 2026 ] }, { @@ -2500,7 +2637,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -2521,16 +2659,17 @@ "slug": "the-libreswan-project", "name": "The Libreswan Project", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-libreswan-project.webp", - "category": "Infrastructure and cloud", + "category": "Security", "total_projects": 10, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, 2019, 2020, 2021, - 2022 + 2022, + 2026 ] }, { @@ -2539,36 +2678,8 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/zendalona.webp", "category": "End user applications", "total_projects": 10, - "is_currently_active": true, - "active_years": [ - 2024, - 2025 - ] - }, - { - "slug": "lowrisc", - "name": "lowRISC", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/lowrisc.webp", - "category": "Other", - "total_projects": 10, "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2020 - ] - }, - { - "slug": "omegaup", - "name": "omegaUp", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/omegaup.webp", - "category": "End user applications", - "total_projects": 10, - "is_currently_active": true, - "active_years": [ - 2018, - 2022, - 2023, 2024, 2025 ] @@ -2619,7 +2730,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -2631,7 +2743,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -2681,7 +2794,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -2694,7 +2808,8 @@ "active_years": [ 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -2735,7 +2850,8 @@ 2018, 2019, 2020, - 2025 + 2025, + 2026 ] }, { @@ -2764,6 +2880,18 @@ 2017 ] }, + { + "slug": "sktime", + "name": "sktime", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/sktime.webp", + "category": "Data", + "total_projects": 8, + "is_currently_active": false, + "active_years": [ + 2022, + 2024 + ] + }, { "slug": "tianocore", "name": "TianoCore", @@ -2785,7 +2913,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -2794,25 +2923,13 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/wellcome-sanger-tree-of-life.webp", "category": "Science and medicine", "total_projects": 8, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2024, 2025 ] }, - { - "slug": "sktime", - "name": "sktime", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/sktime.webp", - "category": "Data", - "total_projects": 8, - "is_currently_active": false, - "active_years": [ - 2022, - 2024 - ] - }, { "slug": "classical-language-toolkit", "name": "Classical Language Toolkit", @@ -2836,7 +2953,8 @@ "active_years": [ 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -2869,11 +2987,12 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/librecube-initiative.webp", "category": "Science and medicine", "total_projects": 7, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2021, 2022, - 2024 + 2024, + 2026 ] }, { @@ -2899,7 +3018,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -2911,7 +3031,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -2923,7 +3044,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -2943,7 +3065,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/center-for-translational-data-science.webp", "category": "Science and medicine", "total_projects": 6, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2025 @@ -3233,7 +3355,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jax-and-keras.webp", "category": "Artificial Intelligence", "total_projects": 4, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2025 ] @@ -3257,7 +3379,8 @@ "total_projects": 4, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] }, { @@ -3269,7 +3392,8 @@ "is_currently_active": true, "active_years": [ 2022, - 2025 + 2025, + 2026 ] }, { @@ -3278,11 +3402,12 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/qubes-os.webp", "category": "Operating systems", "total_projects": 4, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2020, - 2021 + 2021, + 2026 ] }, { @@ -3296,17 +3421,6 @@ 2022 ] }, - { - "slug": "ascend", - "name": "ASCEND", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ascend.webp", - "category": "Science and medicine", - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2016 - ] - }, { "slug": "academy-software-foundation", "name": "Academy Software Foundation", @@ -3319,6 +3433,30 @@ 2022 ] }, + { + "slug": "api-dash", + "name": "API Dash", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/api-dash.webp", + "category": "Development tools", + "total_projects": 3, + "is_currently_active": true, + "active_years": [ + 2024, + 2025, + 2026 + ] + }, + { + "slug": "ascend", + "name": "ASCEND", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ascend.webp", + "category": "Science and medicine", + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2016 + ] + }, { "slug": "biojs", "name": "BioJS", @@ -3386,6 +3524,17 @@ 2023 ] }, + { + "slug": "mcgill-space-institute", + "name": "McGill Space Institute", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mcgill-space-institute.webp", + "category": "Science and medicine", + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2016 + ] + }, { "slug": "mggg-redistricting-lab", "name": "MGGG Redistricting Lab", @@ -3399,14 +3548,26 @@ ] }, { - "slug": "mcgill-space-institute", - "name": "McGill Space Institute", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mcgill-space-institute.webp", - "category": "Science and medicine", + "slug": "moja-global", + "name": "moja global", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/moja-global.webp", + "category": "Data", "total_projects": 3, "is_currently_active": false, "active_years": [ - 2016 + 2022 + ] + }, + { + "slug": "mypy", + "name": "mypy", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mypy.webp", + "category": "Programming languages", + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2020, + 2021 ] }, { @@ -3526,36 +3687,13 @@ 2019 ] }, - { - "slug": "moja-global", - "name": "moja global", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/moja-global.webp", - "category": "Data", - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2022 - ] - }, - { - "slug": "mypy", - "name": "mypy", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mypy.webp", - "category": "Programming languages", - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2020, - 2021 - ] - }, { "slug": "apache-datafusion", "name": "Apache DataFusion", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/apache-datafusion.webp", "category": "Data", "total_projects": 2, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2025 ] @@ -3583,25 +3721,25 @@ ] }, { - "slug": "cvat", - "name": "CVAT", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cvat.webp", - "category": "Web", + "slug": "cockpit-project", + "name": "Cockpit Project", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cockpit-project.webp", + "category": "Operating systems", "total_projects": 2, "is_currently_active": false, "active_years": [ - 2024 + 2023 ] }, { - "slug": "cockpit-project", - "name": "Cockpit Project", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cockpit-project.webp", - "category": "Operating systems", + "slug": "cvat", + "name": "CVAT", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cvat.webp", + "category": "Web", "total_projects": 2, "is_currently_active": false, "active_years": [ - 2023 + 2024 ] }, { @@ -3615,6 +3753,18 @@ 2016 ] }, + { + "slug": "dora-rs", + "name": "dora-rs", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/dora-rs.webp", + "category": "End user applications", + "total_projects": 2, + "is_currently_active": true, + "active_years": [ + 2025, + 2026 + ] + }, { "slug": "environmental-data-and-governance-initiative", "name": "Environmental Data And Governance Initiative", @@ -3672,6 +3822,18 @@ 2022 ] }, + { + "slug": "neuroinformatics-unit", + "name": "Neuroinformatics Unit", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/neuroinformatics-unit.webp", + "category": "Science and medicine", + "total_projects": 2, + "is_currently_active": true, + "active_years": [ + 2025, + 2026 + ] + }, { "slug": "nv-access", "name": "NV Access", @@ -3684,17 +3846,6 @@ 2020 ] }, - { - "slug": "neuroinformatics-unit", - "name": "Neuroinformatics Unit", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/neuroinformatics-unit.webp", - "category": "Science and medicine", - "total_projects": 2, - "is_currently_active": true, - "active_years": [ - 2025 - ] - }, { "slug": "openms", "name": "OpenMS", @@ -3703,7 +3854,8 @@ "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] }, { @@ -3728,13 +3880,24 @@ 2022 ] }, + { + "slug": "ovirt", + "name": "oVirt", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ovirt.webp", + "category": "End user applications", + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2017 + ] + }, { "slug": "pal-robotics", "name": "PAL Robotics", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/pal-robotics.webp", "category": "Other", "total_projects": 2, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2025 ] @@ -3772,6 +3935,18 @@ 2018 ] }, + { + "slug": "st-jude-childrens-research-hospital", + "name": "St. Jude Children's Research Hospital", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/st-jude-childrens-research-hospital.webp", + "category": "Science and medicine", + "total_projects": 2, + "is_currently_active": true, + "active_years": [ + 2025, + 2026 + ] + }, { "slug": "stemformatics", "name": "Stemformatics", @@ -3806,28 +3981,6 @@ 2017 ] }, - { - "slug": "dora-rs", - "name": "dora-rs", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/dora-rs.webp", - "category": "End user applications", - "total_projects": 2, - "is_currently_active": true, - "active_years": [ - 2025 - ] - }, - { - "slug": "ovirt", - "name": "oVirt", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ovirt.webp", - "category": "End user applications", - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2017 - ] - }, { "slug": "buildroot", "name": "Buildroot", @@ -3840,25 +3993,25 @@ ] }, { - "slug": "cvxpy", - "name": "CVXPY", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cvxpy.webp", - "category": "Other", + "slug": "cadasta", + "name": "Cadasta", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cadasta.webp", + "category": "End user applications", "total_projects": 1, "is_currently_active": false, "active_years": [ - 2016 + 2017 ] }, { - "slug": "cadasta", - "name": "Cadasta", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cadasta.webp", - "category": "End user applications", + "slug": "cvxpy", + "name": "CVXPY", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cvxpy.webp", + "category": "Other", "total_projects": 1, "is_currently_active": false, "active_years": [ - 2017 + 2016 ] }, { @@ -3905,17 +4058,6 @@ 2021 ] }, - { - "slug": "osu-open-source-lab", - "name": "OSU Open Source Lab", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/osu-open-source-lab.webp", - "category": "Other", - "total_projects": 1, - "is_currently_active": false, - "active_years": [ - 2016 - ] - }, { "slug": "open-states", "name": "Open States", @@ -3939,6 +4081,17 @@ 2018 ] }, + { + "slug": "osu-open-source-lab", + "name": "OSU Open Source Lab", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/osu-open-source-lab.webp", + "category": "Other", + "total_projects": 1, + "is_currently_active": false, + "active_years": [ + 2016 + ] + }, { "slug": "tungsten-fabric", "name": "Tungsten Fabric", @@ -3950,6 +4103,83 @@ 2019 ] }, + { + "slug": "gambit-the-package-for-computation-in-game-theory", + "name": "Gambit: The package for computation in game theory", + "logo_url": "https://summerofcode.withgoogle.com/media/org/gambit-the-package-for-computation-in-game-theory/09u5sma4pizmwbqt-360.png", + "category": "Science and medicine", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + }, + { + "slug": "german-center-for-open-source-ai", + "name": "German Center for Open Source AI", + "logo_url": "https://summerofcode.withgoogle.com/media/org/german-center-for-open-source-ai/mir4i7v7wopcc7wn-360.png", + "category": "Data", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + }, + { + "slug": "gnu-mailman", + "name": "GNU Mailman", + "logo_url": "https://summerofcode.withgoogle.com/media/org/gnu-mailman/cg5sxkouo8rjtjw2-360.png", + "category": "Social and communication", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + }, + { + "slug": "konflux", + "name": "Konflux", + "logo_url": "https://summerofcode.withgoogle.com/media/org/konflux/7znpk8j83biro6rn.png", + "category": "Infrastructure and cloud", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + }, + { + "slug": "learning-unlimited", + "name": "Learning Unlimited", + "logo_url": "https://summerofcode.withgoogle.com/media/org/learning-unlimited/prqi7cnmji8guahm-360.png", + "category": "End user applications", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + }, + { + "slug": "malariagen", + "name": "MalariaGEN", + "logo_url": "https://summerofcode.withgoogle.com/media/org/malariagen/8dgzolp37fdiwm5h-360.png", + "category": "Science and medicine", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + }, + { + "slug": "measurement-lab", + "name": "Measurement Lab", + "logo_url": "https://summerofcode.withgoogle.com/media/org/measurement-lab/0sttrnvo03uejp1z.png", + "category": "Data", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + }, { "slug": "media-cloud", "name": "Media Cloud", @@ -3961,6 +4191,39 @@ 2021 ] }, + { + "slug": "metaflow", + "name": "Metaflow", + "logo_url": "https://summerofcode.withgoogle.com/media/org/metaflow/lxpx64opqtnss7yx-360.png", + "category": "Infrastructure and cloud", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + }, + { + "slug": "mllam", + "name": "MLLAM", + "logo_url": "https://summerofcode.withgoogle.com/media/org/mllam/ltm3mtlosvdcrw0c.png", + "category": "Science and medicine", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + }, + { + "slug": "mofa-org", + "name": "MoFA Org", + "logo_url": "https://summerofcode.withgoogle.com/media/org/mofa-org/fa7e34trht3ou7yo-360.png", + "category": "Development tools", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + }, { "slug": "opensips", "name": "OpenSIPS", @@ -3983,6 +4246,39 @@ 2016 ] }, + { + "slug": "precice", + "name": "preCICE", + "logo_url": "https://summerofcode.withgoogle.com/media/org/precice/19ymcw80uxn8g9ia-360.png", + "category": "Science and medicine", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + }, + { + "slug": "the-openroad-initiative", + "name": "The OpenROAD Initiative", + "logo_url": "https://summerofcode.withgoogle.com/media/org/the-openroad-initiative/wsxrroe08v4rdaga-360.png", + "category": "Infrastructure and cloud", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + }, + { + "slug": "united-nations-office-of-information-communication-technology", + "name": "United Nations Office of Information Communication Technology", + "logo_url": "https://summerofcode.withgoogle.com/media/org/united-nations-office-of-information-communication-technology/bl0zv6y6mjmzuybz-360.png", + "category": "End user applications", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + }, { "slug": "xpra", "name": "xpra", @@ -4000,58 +4296,63 @@ "popularity_by_year": [ { "year": 2016, - "org_count": 102, - "project_count": 644 + "org_count": 103, + "project_count": 651 }, { "year": 2017, - "org_count": 117, - "project_count": 738 + "org_count": 118, + "project_count": 743 }, { "year": 2018, - "org_count": 126, - "project_count": 737 + "org_count": 127, + "project_count": 742 }, { "year": 2019, - "org_count": 126, - "project_count": 739 + "org_count": 127, + "project_count": 748 }, { "year": 2020, - "org_count": 124, - "project_count": 761 + "org_count": 125, + "project_count": 773 }, { "year": 2021, - "org_count": 133, - "project_count": 873 + "org_count": 134, + "project_count": 886 }, { "year": 2022, - "org_count": 129, - "project_count": 773 + "org_count": 130, + "project_count": 784 }, { "year": 2023, - "org_count": 115, - "project_count": 660 + "org_count": 116, + "project_count": 667 }, { "year": 2024, - "org_count": 124, - "project_count": 785 + "org_count": 126, + "project_count": 794 }, { "year": 2025, - "org_count": 119, - "project_count": 906 + "org_count": 122, + "project_count": 917 + }, + { + "year": 2026, + "org_count": 123, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.051Z" + "generated_at": "2026-02-19T13:35:59.382Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/pytorch.json b/new-api-details/tech-stack/pytorch.json index c82cef0b..d126146f 100644 --- a/new-api-details/tech-stack/pytorch.json +++ b/new-api-details/tech-stack/pytorch.json @@ -1,13 +1,13 @@ { "slug": "pytorch", "name": "pytorch", - "published_at": "2026-01-24T21:33:12.213Z", + "published_at": "2026-02-19T13:35:59.597Z", "metrics": { - "org_count": 12, - "project_count": 137, - "avg_projects_per_org": 11.4, + "org_count": 15, + "project_count": 184, + "avg_projects_per_org": 12.3, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,6 +27,20 @@ 2022 ] }, + { + "slug": "uc-ospo", + "name": "UC OSPO", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/uc-ospo.webp", + "category": "Science and medicine", + "total_projects": 47, + "is_currently_active": true, + "active_years": [ + 2023, + 2024, + 2025, + 2026 + ] + }, { "slug": "mixxx", "name": "Mixxx", @@ -41,7 +55,8 @@ 2020, 2022, 2024, - 2025 + 2025, + 2026 ] }, { @@ -53,7 +68,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -62,11 +78,12 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/genome-assembly-and-annotation.webp", "category": "Science and medicine", "total_projects": 14, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2021, 2022, - 2023 + 2023, + 2026 ] }, { @@ -75,7 +92,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-climate-fix.webp", "category": "Science and medicine", "total_projects": 10, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2024, 2025 @@ -145,7 +162,8 @@ "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] }, { @@ -156,7 +174,30 @@ "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 + ] + }, + { + "slug": "german-center-for-open-source-ai", + "name": "German Center for Open Source AI", + "logo_url": "https://summerofcode.withgoogle.com/media/org/german-center-for-open-source-ai/mir4i7v7wopcc7wn-360.png", + "category": "Data", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + }, + { + "slug": "mllam", + "name": "MLLAM", + "logo_url": "https://summerofcode.withgoogle.com/media/org/mllam/ltm3mtlosvdcrw0c.png", + "category": "Science and medicine", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 ] } ], @@ -199,23 +240,28 @@ }, { "year": 2023, - "org_count": 2, - "project_count": 8 + "org_count": 3, + "project_count": 22 }, { "year": 2024, - "org_count": 3, - "project_count": 14 + "org_count": 4, + "project_count": 30 }, { "year": 2025, - "org_count": 5, - "project_count": 19 + "org_count": 6, + "project_count": 36 + }, + { + "year": 2026, + "org_count": 8, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.213Z" + "generated_at": "2026-02-19T13:35:59.597Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/qemu.json b/new-api-details/tech-stack/qemu.json index 4719c126..4bbb6e90 100644 --- a/new-api-details/tech-stack/qemu.json +++ b/new-api-details/tech-stack/qemu.json @@ -1,13 +1,13 @@ { "slug": "qemu", "name": "qemu", - "published_at": "2026-01-24T21:33:12.056Z", + "published_at": "2026-02-19T13:35:59.403Z", "metrics": { "org_count": 4, "project_count": 41, "avg_projects_per_org": 10.3, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -41,23 +41,25 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "the-libreswan-project", "name": "The Libreswan Project", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-libreswan-project.webp", - "category": "Infrastructure and cloud", + "category": "Security", "total_projects": 10, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, 2019, 2020, 2021, - 2022 + 2022, + 2026 ] }, { @@ -123,11 +125,16 @@ "year": 2025, "org_count": 1, "project_count": 1 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.056Z" + "generated_at": "2026-02-19T13:35:59.403Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/qml.json b/new-api-details/tech-stack/qml.json index 68f1165a..16823357 100644 --- a/new-api-details/tech-stack/qml.json +++ b/new-api-details/tech-stack/qml.json @@ -1,13 +1,13 @@ { "slug": "qml", "name": "qml", - "published_at": "2026-01-24T21:33:12.337Z", + "published_at": "2026-02-19T13:35:59.764Z", "metrics": { "org_count": 3, "project_count": 192, "avg_projects_per_org": 64, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -112,11 +113,16 @@ "year": 2025, "org_count": 1, "project_count": 15 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.337Z" + "generated_at": "2026-02-19T13:35:59.764Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/qt.json b/new-api-details/tech-stack/qt.json index f895fb17..604844e2 100644 --- a/new-api-details/tech-stack/qt.json +++ b/new-api-details/tech-stack/qt.json @@ -1,13 +1,13 @@ { "slug": "qt", "name": "qt", - "published_at": "2026-01-24T21:33:12.109Z", + "published_at": "2026-02-19T13:35:59.451Z", "metrics": { - "org_count": 27, + "org_count": 28, "project_count": 772, - "avg_projects_per_org": 28.6, + "avg_projects_per_org": 27.6, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -47,7 +48,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -67,7 +69,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -87,14 +90,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "open-technologies-alliance-gfoss", "name": "Open Technologies Alliance - GFOSS", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-technologies-alliance-gfoss.webp", - "category": "Development tools", + "category": "Science and medicine", "total_projects": 70, "is_currently_active": true, "active_years": [ @@ -105,7 +109,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -124,7 +129,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -180,7 +186,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -197,7 +204,8 @@ 2021, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -214,7 +222,8 @@ 2020, 2022, 2024, - 2025 + 2025, + 2026 ] }, { @@ -237,7 +246,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/society-for-arts-and-technology-sat.webp", "category": "Media", "total_projects": 12, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2023, @@ -270,7 +279,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -279,7 +289,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/zendalona.webp", "category": "End user applications", "total_projects": 10, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2024, 2025 @@ -295,7 +305,8 @@ "active_years": [ 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -323,28 +334,28 @@ ] }, { - "slug": "p2psporg", - "name": "P2PSP.org", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/p2psporg.webp", - "category": "Media", + "slug": "owncloud", + "name": "ownCloud", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/owncloud.webp", + "category": "Infrastructure and cloud", "total_projects": 5, "is_currently_active": false, "active_years": [ 2016, - 2017, - 2018 + 2017 ] }, { - "slug": "owncloud", - "name": "ownCloud", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/owncloud.webp", - "category": "Infrastructure and cloud", + "slug": "p2psporg", + "name": "P2PSP.org", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/p2psporg.webp", + "category": "Media", "total_projects": 5, "is_currently_active": false, "active_years": [ 2016, - 2017 + 2017, + 2018 ] }, { @@ -378,9 +389,10 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/tiled.webp", "category": "End user applications", "total_projects": 3, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ - 2017 + 2017, + 2026 ] }, { @@ -415,6 +427,17 @@ "active_years": [ 2020 ] + }, + { + "slug": "moganlab", + "name": "MoganLab", + "logo_url": "https://summerofcode.withgoogle.com/media/org/moganlab/tuz5k2kmoivlkods-360.png", + "category": "Programming languages", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] } ], "charts": { @@ -468,11 +491,16 @@ "year": 2025, "org_count": 13, "project_count": 81 + }, + { + "year": 2026, + "org_count": 13, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.109Z" + "generated_at": "2026-02-19T13:35:59.451Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/qt5.json b/new-api-details/tech-stack/qt5.json index 7db96422..696e1a34 100644 --- a/new-api-details/tech-stack/qt5.json +++ b/new-api-details/tech-stack/qt5.json @@ -1,13 +1,13 @@ { "slug": "qt5", "name": "qt5", - "published_at": "2026-01-24T21:33:12.336Z", + "published_at": "2026-02-19T13:35:59.763Z", "metrics": { "org_count": 6, "project_count": 266, "avg_projects_per_org": 44.3, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -157,11 +158,16 @@ "year": 2025, "org_count": 1, "project_count": 15 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.336Z" + "generated_at": "2026-02-19T13:35:59.763Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/quarkus.json b/new-api-details/tech-stack/quarkus.json index a4683011..7abb37a7 100644 --- a/new-api-details/tech-stack/quarkus.json +++ b/new-api-details/tech-stack/quarkus.json @@ -1,7 +1,7 @@ { "slug": "quarkus", "name": "Quarkus", - "published_at": "2026-01-24T21:33:12.484Z", + "published_at": "2026-02-19T13:35:59.944Z", "metrics": { "org_count": 1, "project_count": 14, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/software-and-computational-systems-lab-at-lmu-munich.webp", "category": "Programming languages", "total_projects": 14, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2018, 2019, @@ -77,11 +77,16 @@ "year": 2025, "org_count": 1, "project_count": 4 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.484Z" + "generated_at": "2026-02-19T13:35:59.944Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/r-project.json b/new-api-details/tech-stack/r-project.json index 1973752a..a48e1861 100644 --- a/new-api-details/tech-stack/r-project.json +++ b/new-api-details/tech-stack/r-project.json @@ -1,13 +1,13 @@ { "slug": "r-project", "name": "r-project", - "published_at": "2026-01-24T21:33:12.167Z", + "published_at": "2026-02-19T13:35:59.499Z", "metrics": { "org_count": 3, "project_count": 255, "avg_projects_per_org": 85, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -36,14 +37,15 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-genome-informatics.webp", "category": "Science and medicine", "total_projects": 28, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, 2020, 2021, 2022, - 2023 + 2023, + 2026 ] }, { @@ -112,11 +114,16 @@ "year": 2025, "org_count": 1, "project_count": 24 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.167Z" + "generated_at": "2026-02-19T13:35:59.499Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/r.json b/new-api-details/tech-stack/r.json index f3308d5b..49f92c28 100644 --- a/new-api-details/tech-stack/r.json +++ b/new-api-details/tech-stack/r.json @@ -1,13 +1,13 @@ { "slug": "r", "name": "r", - "published_at": "2026-01-24T21:33:12.049Z", + "published_at": "2026-02-19T13:35:59.380Z", "metrics": { "org_count": 10, "project_count": 744, "avg_projects_per_org": 74.4, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -47,7 +48,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -67,7 +69,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -83,7 +86,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -102,7 +106,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -122,7 +127,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -136,7 +142,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] }, { @@ -173,7 +180,8 @@ "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] } ], @@ -228,11 +236,16 @@ "year": 2025, "org_count": 8, "project_count": 87 + }, + { + "year": 2026, + "org_count": 8, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.049Z" + "generated_at": "2026-02-19T13:35:59.380Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/rails.json b/new-api-details/tech-stack/rails.json index ec69cf14..4579283c 100644 --- a/new-api-details/tech-stack/rails.json +++ b/new-api-details/tech-stack/rails.json @@ -1,13 +1,13 @@ { "slug": "rails", "name": "rails", - "published_at": "2026-01-24T21:33:12.185Z", + "published_at": "2026-02-19T13:35:59.541Z", "metrics": { "org_count": 2, "project_count": 33, "avg_projects_per_org": 16.5, "first_year_used": 2018, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -24,7 +24,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -90,11 +91,16 @@ "year": 2025, "org_count": 1, "project_count": 6 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.185Z" + "generated_at": "2026-02-19T13:35:59.541Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/raml.json b/new-api-details/tech-stack/raml.json index a679fd5a..6d98ca57 100644 --- a/new-api-details/tech-stack/raml.json +++ b/new-api-details/tech-stack/raml.json @@ -1,7 +1,7 @@ { "slug": "raml", "name": "RAML", - "published_at": "2026-01-24T21:33:12.109Z", + "published_at": "2026-02-19T13:35:59.458Z", "metrics": { "org_count": 1, "project_count": 15, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/asyncapi.webp", "category": "Programming languages", "total_projects": 15, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2024, 2025 @@ -74,11 +74,16 @@ "year": 2025, "org_count": 1, "project_count": 7 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.109Z" + "generated_at": "2026-02-19T13:35:59.458Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/raspberry-pi.json b/new-api-details/tech-stack/raspberry-pi.json index 3fffac40..55785383 100644 --- a/new-api-details/tech-stack/raspberry-pi.json +++ b/new-api-details/tech-stack/raspberry-pi.json @@ -1,13 +1,13 @@ { "slug": "raspberry-pi", "name": "raspberry pi", - "published_at": "2026-01-24T21:33:12.085Z", + "published_at": "2026-02-19T13:35:59.400Z", "metrics": { "org_count": 9, "project_count": 345, "avg_projects_per_org": 38.3, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -46,7 +47,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -55,7 +57,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/beagleboardorg.webp", "category": "Science and medicine", "total_projects": 44, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -116,7 +118,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -151,11 +154,12 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/librecube-initiative.webp", "category": "Science and medicine", "total_projects": 7, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2021, 2022, - 2024 + 2024, + 2026 ] } ], @@ -210,11 +214,16 @@ "year": 2025, "org_count": 4, "project_count": 39 + }, + { + "year": 2026, + "org_count": 4, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.085Z" + "generated_at": "2026-02-19T13:35:59.400Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/rdbms.json b/new-api-details/tech-stack/rdbms.json index 25ea14f0..c62b2745 100644 --- a/new-api-details/tech-stack/rdbms.json +++ b/new-api-details/tech-stack/rdbms.json @@ -1,13 +1,13 @@ { "slug": "rdbms", "name": "rdbms", - "published_at": "2026-01-24T21:33:12.445Z", + "published_at": "2026-02-19T13:35:59.901Z", "metrics": { "org_count": 1, "project_count": 51, "avg_projects_per_org": 51, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 7 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.445Z" + "generated_at": "2026-02-19T13:35:59.901Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/rdf.json b/new-api-details/tech-stack/rdf.json index f87ff25a..f2ea0735 100644 --- a/new-api-details/tech-stack/rdf.json +++ b/new-api-details/tech-stack/rdf.json @@ -1,20 +1,20 @@ { "slug": "rdf", "name": "rdf", - "published_at": "2026-01-24T21:33:12.201Z", + "published_at": "2026-02-19T13:35:59.579Z", "metrics": { "org_count": 4, "project_count": 128, "avg_projects_per_org": 32, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { "slug": "dbpedia", "name": "DBpedia", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/dbpedia.webp", - "category": "Science and medicine", + "category": "Data", "total_projects": 61, "is_currently_active": true, "active_years": [ @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -36,13 +37,14 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cuneiform-digital-library-initiative-cdli.webp", "category": "Science and medicine", "total_projects": 30, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2018, 2019, 2020, 2021, - 2022 + 2022, + 2026 ] }, { @@ -128,11 +130,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.201Z" + "generated_at": "2026-02-19T13:35:59.579Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/react-native.json b/new-api-details/tech-stack/react-native.json index 94c4a8f3..b6f92e81 100644 --- a/new-api-details/tech-stack/react-native.json +++ b/new-api-details/tech-stack/react-native.json @@ -1,13 +1,13 @@ { "slug": "react-native", "name": "react native", - "published_at": "2026-01-24T21:33:12.334Z", + "published_at": "2026-02-19T13:35:59.752Z", "metrics": { "org_count": 5, "project_count": 278, "avg_projects_per_org": 55.6, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -46,7 +47,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -61,7 +63,8 @@ 2018, 2022, 2024, - 2025 + 2025, + 2026 ] }, { @@ -70,12 +73,13 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/joplin.webp", "category": "End user applications", "total_projects": 17, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2020, 2021, 2022, - 2024 + 2024, + 2026 ] }, { @@ -141,11 +145,16 @@ "year": 2025, "org_count": 3, "project_count": 38 + }, + { + "year": 2026, + "org_count": 5, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.334Z" + "generated_at": "2026-02-19T13:35:59.752Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/react.json b/new-api-details/tech-stack/react.json index 66b7fe9a..675d22a7 100644 --- a/new-api-details/tech-stack/react.json +++ b/new-api-details/tech-stack/react.json @@ -1,13 +1,13 @@ { "slug": "react", "name": "react", - "published_at": "2026-01-24T21:33:12.053Z", + "published_at": "2026-02-19T13:35:59.383Z", "metrics": { - "org_count": 52, - "project_count": 1398, - "avg_projects_per_org": 26.9, + "org_count": 53, + "project_count": 1401, + "avg_projects_per_org": 26.4, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -32,7 +32,7 @@ "slug": "fossasia", "name": "FOSSASIA", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/fossasia.webp", - "category": "Science and medicine", + "category": "End user applications", "total_projects": 140, "is_currently_active": true, "active_years": [ @@ -41,7 +41,8 @@ 2018, 2019, 2024, - 2025 + 2025, + 2026 ] }, { @@ -60,7 +61,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -80,7 +82,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -100,7 +103,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -109,7 +113,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/wikimedia-foundation.webp", "category": "Web", "total_projects": 85, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -119,7 +123,8 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -154,16 +159,17 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "jboss-community", "name": "JBoss Community", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jboss-community.webp", - "category": "Data", + "category": "Web", "total_projects": 52, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -171,7 +177,8 @@ 2019, 2020, 2021, - 2022 + 2022, + 2026 ] }, { @@ -180,7 +187,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/global-alliance-for-genomics-and-health.webp", "category": "Science and medicine", "total_projects": 45, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -190,7 +197,8 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -225,7 +233,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -242,7 +251,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -282,7 +292,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cloudcv.webp", "category": "Web", "total_projects": 28, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -301,14 +311,15 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-genome-informatics.webp", "category": "Science and medicine", "total_projects": 28, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, 2020, 2021, 2022, - 2023 + 2023, + 2026 ] }, { @@ -317,7 +328,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/plone-foundation.webp", "category": "Web", "total_projects": 26, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -345,7 +356,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -373,7 +385,8 @@ 2018, 2022, 2024, - 2025 + 2025, + 2026 ] }, { @@ -396,12 +409,13 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/joplin.webp", "category": "End user applications", "total_projects": 17, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2020, 2021, 2022, - 2024 + 2024, + 2026 ] }, { @@ -429,7 +443,8 @@ 2020, 2021, 2024, - 2025 + 2025, + 2026 ] }, { @@ -454,7 +469,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -466,7 +482,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -478,7 +495,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -566,6 +584,19 @@ 2018 ] }, + { + "slug": "api-dash", + "name": "API Dash", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/api-dash.webp", + "category": "Development tools", + "total_projects": 3, + "is_currently_active": true, + "active_years": [ + 2024, + 2025, + 2026 + ] + }, { "slug": "cbmiuthsc", "name": "CBMI@UTHSC", @@ -614,25 +645,25 @@ ] }, { - "slug": "cvat", - "name": "CVAT", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cvat.webp", - "category": "Web", + "slug": "cockpit-project", + "name": "Cockpit Project", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cockpit-project.webp", + "category": "Operating systems", "total_projects": 2, "is_currently_active": false, "active_years": [ - 2024 + 2023 ] }, { - "slug": "cockpit-project", - "name": "Cockpit Project", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cockpit-project.webp", - "category": "Operating systems", + "slug": "cvat", + "name": "CVAT", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cvat.webp", + "category": "Web", "total_projects": 2, "is_currently_active": false, "active_years": [ - 2023 + 2024 ] }, { @@ -668,17 +699,6 @@ 2021 ] }, - { - "slug": "sw360", - "name": "SW360", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/sw360.webp", - "category": "Web", - "total_projects": 2, - "is_currently_active": true, - "active_years": [ - 2025 - ] - }, { "slug": "salesforce", "name": "Salesforce", @@ -690,6 +710,18 @@ 2019 ] }, + { + "slug": "sw360", + "name": "SW360", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/sw360.webp", + "category": "Web", + "total_projects": 2, + "is_currently_active": true, + "active_years": [ + 2025, + 2026 + ] + }, { "slug": "navidrome", "name": "Navidrome", @@ -791,18 +823,23 @@ }, { "year": 2024, - "org_count": 21, - "project_count": 121 + "org_count": 22, + "project_count": 122 }, { "year": 2025, - "org_count": 18, - "project_count": 119 + "org_count": 19, + "project_count": 121 + }, + { + "year": 2026, + "org_count": 21, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.053Z" + "generated_at": "2026-02-19T13:35:59.383Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/reactive-extensions.json b/new-api-details/tech-stack/reactive-extensions.json index 3e9bfd58..96be4a14 100644 --- a/new-api-details/tech-stack/reactive-extensions.json +++ b/new-api-details/tech-stack/reactive-extensions.json @@ -1,7 +1,7 @@ { "slug": "reactive-extensions", "name": "reactive extensions", - "published_at": "2026-01-24T21:33:12.232Z", + "published_at": "2026-02-19T13:35:59.619Z", "metrics": { "org_count": 1, "project_count": 6, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.232Z" + "generated_at": "2026-02-19T13:35:59.619Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/reactive.json b/new-api-details/tech-stack/reactive.json index e531689c..d81c685c 100644 --- a/new-api-details/tech-stack/reactive.json +++ b/new-api-details/tech-stack/reactive.json @@ -1,7 +1,7 @@ { "slug": "reactive", "name": "reactive", - "published_at": "2026-01-24T21:33:12.231Z", + "published_at": "2026-02-19T13:35:59.619Z", "metrics": { "org_count": 1, "project_count": 6, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.231Z" + "generated_at": "2026-02-19T13:35:59.619Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/reactjs-javascript.json b/new-api-details/tech-stack/reactjs-javascript.json index dec73a15..c51f67fd 100644 --- a/new-api-details/tech-stack/reactjs-javascript.json +++ b/new-api-details/tech-stack/reactjs-javascript.json @@ -1,13 +1,13 @@ { "slug": "reactjs-javascript", "name": "reactjs javascript", - "published_at": "2026-01-24T21:33:12.570Z", + "published_at": "2026-02-19T13:35:59.869Z", "metrics": { "org_count": 1, "project_count": 52, "avg_projects_per_org": 52, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 7 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.570Z" + "generated_at": "2026-02-19T13:35:59.869Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/reactnative.json b/new-api-details/tech-stack/reactnative.json index 7c008c09..86af7b28 100644 --- a/new-api-details/tech-stack/reactnative.json +++ b/new-api-details/tech-stack/reactnative.json @@ -1,13 +1,13 @@ { "slug": "reactnative", "name": "reactnative", - "published_at": "2026-01-24T21:33:12.572Z", + "published_at": "2026-02-19T13:35:59.922Z", "metrics": { "org_count": 1, "project_count": 103, "avg_projects_per_org": 103, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 19 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.572Z" + "generated_at": "2026-02-19T13:35:59.922Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/real-time.json b/new-api-details/tech-stack/real-time.json index 22579832..d26f2519 100644 --- a/new-api-details/tech-stack/real-time.json +++ b/new-api-details/tech-stack/real-time.json @@ -1,13 +1,13 @@ { "slug": "real-time", "name": "real-time", - "published_at": "2026-01-24T21:33:12.118Z", + "published_at": "2026-02-19T13:35:59.467Z", "metrics": { "org_count": 2, "project_count": 60, "avg_projects_per_org": 30, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/beagleboardorg.webp", "category": "Science and medicine", "total_projects": 44, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -44,7 +44,8 @@ 2020, 2022, 2024, - 2025 + 2025, + 2026 ] } ], @@ -99,11 +100,16 @@ "year": 2025, "org_count": 2, "project_count": 8 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.118Z" + "generated_at": "2026-02-19T13:35:59.467Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/recursive-descent.json b/new-api-details/tech-stack/recursive-descent.json index d49f41e5..dd1d9011 100644 --- a/new-api-details/tech-stack/recursive-descent.json +++ b/new-api-details/tech-stack/recursive-descent.json @@ -1,7 +1,7 @@ { "slug": "recursive-descent", "name": "recursive-descent", - "published_at": "2026-01-24T21:33:12.500Z", + "published_at": "2026-02-19T13:35:59.962Z", "metrics": { "org_count": 1, "project_count": 9, @@ -76,11 +76,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.500Z" + "generated_at": "2026-02-19T13:35:59.962Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/redis.json b/new-api-details/tech-stack/redis.json index b45e2d85..27869ed9 100644 --- a/new-api-details/tech-stack/redis.json +++ b/new-api-details/tech-stack/redis.json @@ -1,7 +1,7 @@ { "slug": "redis", "name": "redis", - "published_at": "2026-01-24T21:33:12.300Z", + "published_at": "2026-02-19T13:35:59.711Z", "metrics": { "org_count": 3, "project_count": 29, @@ -104,11 +104,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.300Z" + "generated_at": "2026-02-19T13:35:59.711Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/redux.json b/new-api-details/tech-stack/redux.json index 19735eeb..321464ea 100644 --- a/new-api-details/tech-stack/redux.json +++ b/new-api-details/tech-stack/redux.json @@ -1,7 +1,7 @@ { "slug": "redux", "name": "redux", - "published_at": "2026-01-24T21:33:12.489Z", + "published_at": "2026-02-19T13:35:59.951Z", "metrics": { "org_count": 1, "project_count": 1, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.489Z" + "generated_at": "2026-02-19T13:35:59.951Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/regular-expressions.json b/new-api-details/tech-stack/regular-expressions.json index 27c3bb6b..a3d80e9f 100644 --- a/new-api-details/tech-stack/regular-expressions.json +++ b/new-api-details/tech-stack/regular-expressions.json @@ -1,7 +1,7 @@ { "slug": "regular-expressions", "name": "regular expressions", - "published_at": "2026-01-24T21:33:12.517Z", + "published_at": "2026-02-19T13:35:59.988Z", "metrics": { "org_count": 1, "project_count": 4, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.517Z" + "generated_at": "2026-02-19T13:35:59.988Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/remote-access.json b/new-api-details/tech-stack/remote-access.json index 9bf87f6b..344fbe3a 100644 --- a/new-api-details/tech-stack/remote-access.json +++ b/new-api-details/tech-stack/remote-access.json @@ -1,7 +1,7 @@ { "slug": "remote-access", "name": "remote access", - "published_at": "2026-01-24T21:33:12.580Z", + "published_at": "2026-02-19T13:36:00.115Z", "metrics": { "org_count": 1, "project_count": 0, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.580Z" + "generated_at": "2026-02-19T13:36:00.115Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/rest-api.json b/new-api-details/tech-stack/rest-api.json index 4419bf98..efc155b8 100644 --- a/new-api-details/tech-stack/rest-api.json +++ b/new-api-details/tech-stack/rest-api.json @@ -1,7 +1,7 @@ { "slug": "rest-api", "name": "rest api", - "published_at": "2026-01-24T21:33:12.446Z", + "published_at": "2026-02-19T13:35:59.902Z", "metrics": { "org_count": 1, "project_count": 19, @@ -76,11 +76,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.446Z" + "generated_at": "2026-02-19T13:35:59.902Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/rest.json b/new-api-details/tech-stack/rest.json index f62e3a44..acee99c8 100644 --- a/new-api-details/tech-stack/rest.json +++ b/new-api-details/tech-stack/rest.json @@ -1,13 +1,13 @@ { "slug": "rest", "name": "rest", - "published_at": "2026-01-24T21:33:12.070Z", + "published_at": "2026-02-19T13:35:59.443Z", "metrics": { - "org_count": 13, + "org_count": 14, "project_count": 333, - "avg_projects_per_org": 25.6, + "avg_projects_per_org": 23.8, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -47,7 +48,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -56,7 +58,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/fedora-project.webp", "category": "Operating systems", "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -72,7 +74,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/plone-foundation.webp", "category": "Web", "total_projects": 26, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -149,11 +151,12 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/librecube-initiative.webp", "category": "Science and medicine", "total_projects": 7, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2021, 2022, - 2024 + 2024, + 2026 ] }, { @@ -202,6 +205,17 @@ "active_years": [ 2016 ] + }, + { + "slug": "gnu-mailman", + "name": "GNU Mailman", + "logo_url": "https://summerofcode.withgoogle.com/media/org/gnu-mailman/cg5sxkouo8rjtjw2-360.png", + "category": "Social and communication", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] } ], "charts": { @@ -255,11 +269,16 @@ "year": 2025, "org_count": 4, "project_count": 21 + }, + { + "year": 2026, + "org_count": 4, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.070Z" + "generated_at": "2026-02-19T13:35:59.443Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/restful-api.json b/new-api-details/tech-stack/restful-api.json index f911fa90..fe04fc0a 100644 --- a/new-api-details/tech-stack/restful-api.json +++ b/new-api-details/tech-stack/restful-api.json @@ -1,7 +1,7 @@ { "slug": "restful-api", "name": "restful api", - "published_at": "2026-01-24T21:33:12.091Z", + "published_at": "2026-02-19T13:35:59.410Z", "metrics": { "org_count": 2, "project_count": 22, @@ -89,11 +89,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.091Z" + "generated_at": "2026-02-19T13:35:59.410Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/rf.json b/new-api-details/tech-stack/rf.json index 9613eb16..da109228 100644 --- a/new-api-details/tech-stack/rf.json +++ b/new-api-details/tech-stack/rf.json @@ -1,13 +1,13 @@ { "slug": "rf", "name": "rf", - "published_at": "2026-01-24T21:33:12.272Z", + "published_at": "2026-02-19T13:35:59.686Z", "metrics": { "org_count": 1, "project_count": 18, "avg_projects_per_org": 18, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -82,11 +83,16 @@ "year": 2025, "org_count": 1, "project_count": 4 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.272Z" + "generated_at": "2026-02-19T13:35:59.686Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/rfcs.json b/new-api-details/tech-stack/rfcs.json index b3b3fe0d..48827984 100644 --- a/new-api-details/tech-stack/rfcs.json +++ b/new-api-details/tech-stack/rfcs.json @@ -1,29 +1,30 @@ { "slug": "rfcs", "name": "RFCs", - "published_at": "2026-01-24T21:33:12.508Z", + "published_at": "2026-02-19T13:35:59.971Z", "metrics": { "org_count": 1, "project_count": 10, "avg_projects_per_org": 10, "first_year_used": 2017, - "latest_year_used": 2022 + "latest_year_used": 2026 }, "organizations": [ { "slug": "the-libreswan-project", "name": "The Libreswan Project", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-libreswan-project.webp", - "category": "Infrastructure and cloud", + "category": "Security", "total_projects": 10, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, 2019, 2020, 2021, - 2022 + 2022, + 2026 ] } ], @@ -78,11 +79,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.508Z" + "generated_at": "2026-02-19T13:35:59.971Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/risc-v.json b/new-api-details/tech-stack/risc-v.json index 90a4fd1a..49b5de5d 100644 --- a/new-api-details/tech-stack/risc-v.json +++ b/new-api-details/tech-stack/risc-v.json @@ -1,13 +1,13 @@ { "slug": "risc-v", "name": "risc-v", - "published_at": "2026-01-24T21:33:12.122Z", + "published_at": "2026-02-19T13:35:59.471Z", "metrics": { "org_count": 4, "project_count": 126, "avg_projects_per_org": 31.5, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -36,7 +37,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/beagleboardorg.webp", "category": "Science and medicine", "total_projects": 44, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -128,11 +129,16 @@ "year": 2025, "org_count": 2, "project_count": 11 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.122Z" + "generated_at": "2026-02-19T13:35:59.471Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/riscv.json b/new-api-details/tech-stack/riscv.json index 58913c51..2275371b 100644 --- a/new-api-details/tech-stack/riscv.json +++ b/new-api-details/tech-stack/riscv.json @@ -1,7 +1,7 @@ { "slug": "riscv", "name": "RISCV", - "published_at": "2026-01-24T21:33:12.380Z", + "published_at": "2026-02-19T13:35:59.818Z", "metrics": { "org_count": 1, "project_count": 12, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/micro-electronics-research-lab-uitu.webp", "category": "Other", "total_projects": 12, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2023, @@ -76,11 +76,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.380Z" + "generated_at": "2026-02-19T13:35:59.818Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/roassal.json b/new-api-details/tech-stack/roassal.json index f971c3ef..b170e258 100644 --- a/new-api-details/tech-stack/roassal.json +++ b/new-api-details/tech-stack/roassal.json @@ -1,13 +1,13 @@ { "slug": "roassal", "name": "roassal", - "published_at": "2026-01-24T21:33:12.430Z", + "published_at": "2026-02-19T13:35:59.884Z", "metrics": { "org_count": 1, "project_count": 32, "avg_projects_per_org": 32, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -22,7 +22,8 @@ 2019, 2021, 2023, - 2025 + 2025, + 2026 ] } ], @@ -77,11 +78,16 @@ "year": 2025, "org_count": 1, "project_count": 8 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.430Z" + "generated_at": "2026-02-19T13:35:59.884Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/robotics.json b/new-api-details/tech-stack/robotics.json index 85d6ca86..17bea08f 100644 --- a/new-api-details/tech-stack/robotics.json +++ b/new-api-details/tech-stack/robotics.json @@ -1,13 +1,13 @@ { "slug": "robotics", "name": "robotics", - "published_at": "2026-01-24T21:33:12.106Z", + "published_at": "2026-02-19T13:35:59.455Z", "metrics": { "org_count": 3, "project_count": 68, "avg_projects_per_org": 22.7, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -110,11 +111,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.106Z" + "generated_at": "2026-02-19T13:35:59.455Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/rom.json b/new-api-details/tech-stack/rom.json index 6cb0c579..433a45de 100644 --- a/new-api-details/tech-stack/rom.json +++ b/new-api-details/tech-stack/rom.json @@ -1,7 +1,7 @@ { "slug": "rom", "name": "rom", - "published_at": "2026-01-24T21:33:12.250Z", + "published_at": "2026-02-19T13:35:59.636Z", "metrics": { "org_count": 1, "project_count": 1, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.250Z" + "generated_at": "2026-02-19T13:35:59.636Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/ros-gazebo.json b/new-api-details/tech-stack/ros-gazebo.json index 302dd291..830f0808 100644 --- a/new-api-details/tech-stack/ros-gazebo.json +++ b/new-api-details/tech-stack/ros-gazebo.json @@ -1,13 +1,13 @@ { "slug": "ros-gazebo", "name": "ros/gazebo", - "published_at": "2026-01-24T21:33:12.528Z", + "published_at": "2026-02-19T13:36:00.061Z", "metrics": { "org_count": 1, "project_count": 47, "avg_projects_per_org": 47, "first_year_used": 2023, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -20,7 +20,8 @@ "active_years": [ 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -75,11 +76,16 @@ "year": 2025, "org_count": 1, "project_count": 17 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.528Z" + "generated_at": "2026-02-19T13:36:00.061Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/ros.json b/new-api-details/tech-stack/ros.json index 54a42501..e4a9f997 100644 --- a/new-api-details/tech-stack/ros.json +++ b/new-api-details/tech-stack/ros.json @@ -1,13 +1,13 @@ { "slug": "ros", "name": "ros", - "published_at": "2026-01-24T21:33:12.042Z", + "published_at": "2026-02-19T13:35:59.370Z", "metrics": { "org_count": 10, "project_count": 244, "avg_projects_per_org": 24.4, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -45,7 +46,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -64,7 +66,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -83,7 +86,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -159,7 +163,8 @@ "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] } ], @@ -214,11 +219,16 @@ "year": 2025, "org_count": 5, "project_count": 34 + }, + { + "year": 2026, + "org_count": 5, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.042Z" + "generated_at": "2026-02-19T13:35:59.370Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/routing.json b/new-api-details/tech-stack/routing.json index fff7d5a5..e4ac89e6 100644 --- a/new-api-details/tech-stack/routing.json +++ b/new-api-details/tech-stack/routing.json @@ -1,7 +1,7 @@ { "slug": "routing", "name": "routing", - "published_at": "2026-01-24T21:33:12.246Z", + "published_at": "2026-02-19T13:35:59.655Z", "metrics": { "org_count": 1, "project_count": 3, @@ -75,11 +75,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.246Z" + "generated_at": "2026-02-19T13:35:59.655Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/rpc.json b/new-api-details/tech-stack/rpc.json index 51b6d892..6466801c 100644 --- a/new-api-details/tech-stack/rpc.json +++ b/new-api-details/tech-stack/rpc.json @@ -1,13 +1,13 @@ { "slug": "rpc", "name": "rpc", - "published_at": "2026-01-24T21:33:12.073Z", + "published_at": "2026-02-19T13:35:59.448Z", "metrics": { "org_count": 2, "project_count": 9, "avg_projects_per_org": 4.5, "first_year_used": 2018, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -21,7 +21,8 @@ 2018, 2019, 2020, - 2025 + 2025, + 2026 ] }, { @@ -87,11 +88,16 @@ "year": 2025, "org_count": 1, "project_count": 3 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.073Z" + "generated_at": "2026-02-19T13:35:59.448Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/rpm.json b/new-api-details/tech-stack/rpm.json index 9f7dceac..9fe7dd8d 100644 --- a/new-api-details/tech-stack/rpm.json +++ b/new-api-details/tech-stack/rpm.json @@ -1,13 +1,13 @@ { "slug": "rpm", "name": "rpm", - "published_at": "2026-01-24T21:33:12.247Z", + "published_at": "2026-02-19T13:35:59.631Z", "metrics": { "org_count": 2, "project_count": 79, "avg_projects_per_org": 39.5, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -35,7 +36,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/fedora-project.webp", "category": "Operating systems", "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -97,11 +98,16 @@ "year": 2025, "org_count": 2, "project_count": 9 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.247Z" + "generated_at": "2026-02-19T13:35:59.631Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/rspec.json b/new-api-details/tech-stack/rspec.json index 4623ca63..5bb991af 100644 --- a/new-api-details/tech-stack/rspec.json +++ b/new-api-details/tech-stack/rspec.json @@ -1,7 +1,7 @@ { "slug": "rspec", "name": "rspec", - "published_at": "2026-01-24T21:33:12.299Z", + "published_at": "2026-02-19T13:35:59.708Z", "metrics": { "org_count": 1, "project_count": 11, @@ -77,11 +77,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.299Z" + "generated_at": "2026-02-19T13:35:59.708Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/rtos.json b/new-api-details/tech-stack/rtos.json index 878cdf1c..06c89c15 100644 --- a/new-api-details/tech-stack/rtos.json +++ b/new-api-details/tech-stack/rtos.json @@ -1,13 +1,13 @@ { "slug": "rtos", "name": "rtos", - "published_at": "2026-01-24T21:33:12.105Z", + "published_at": "2026-02-19T13:35:59.454Z", "metrics": { "org_count": 2, "project_count": 106, "avg_projects_per_org": 53, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -45,7 +46,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -100,11 +102,16 @@ "year": 2025, "org_count": 2, "project_count": 12 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.105Z" + "generated_at": "2026-02-19T13:35:59.454Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/ruby-on-rail.json b/new-api-details/tech-stack/ruby-on-rail.json index 53e1458a..f169a3fe 100644 --- a/new-api-details/tech-stack/ruby-on-rail.json +++ b/new-api-details/tech-stack/ruby-on-rail.json @@ -1,13 +1,13 @@ { "slug": "ruby-on-rail", "name": "ruby on rail", - "published_at": "2026-01-24T21:33:12.567Z", + "published_at": "2026-02-19T13:35:59.867Z", "metrics": { "org_count": 1, "project_count": 52, "avg_projects_per_org": 52, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 7 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.567Z" + "generated_at": "2026-02-19T13:35:59.867Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/ruby-on-rails.json b/new-api-details/tech-stack/ruby-on-rails.json index 9b4e9056..518127ae 100644 --- a/new-api-details/tech-stack/ruby-on-rails.json +++ b/new-api-details/tech-stack/ruby-on-rails.json @@ -1,13 +1,13 @@ { "slug": "ruby-on-rails", "name": "ruby on rails", - "published_at": "2026-01-24T21:33:12.090Z", + "published_at": "2026-02-19T13:35:59.408Z", "metrics": { "org_count": 16, "project_count": 336, "avg_projects_per_org": 21, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/wikimedia-foundation.webp", "category": "Web", "total_projects": 85, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -26,7 +26,8 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -45,7 +46,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -70,7 +72,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ruby.webp", "category": "Programming languages", "total_projects": 38, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2018, @@ -78,7 +80,8 @@ 2020, 2021, 2022, - 2023 + 2023, + 2026 ] }, { @@ -127,7 +130,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gitlab.webp", "category": "Infrastructure and cloud", "total_projects": 15, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2021, 2022, @@ -279,11 +282,16 @@ "year": 2025, "org_count": 2, "project_count": 12 + }, + { + "year": 2026, + "org_count": 3, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.090Z" + "generated_at": "2026-02-19T13:35:59.408Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/ruby.json b/new-api-details/tech-stack/ruby.json index e47add62..10942004 100644 --- a/new-api-details/tech-stack/ruby.json +++ b/new-api-details/tech-stack/ruby.json @@ -1,13 +1,13 @@ { "slug": "ruby", "name": "ruby", - "published_at": "2026-01-24T21:33:12.170Z", + "published_at": "2026-02-19T13:35:59.508Z", "metrics": { "org_count": 28, "project_count": 969, "avg_projects_per_org": 34.6, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-apache-software-foundation.webp", "category": "Web", "total_projects": 248, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -46,7 +46,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -65,7 +66,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -83,7 +85,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] }, { @@ -92,7 +95,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/freifunk.webp", "category": "Operating systems", "total_projects": 74, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -121,7 +124,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -158,7 +162,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -183,7 +188,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ruby.webp", "category": "Programming languages", "total_projects": 38, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2018, @@ -191,7 +196,8 @@ 2020, 2021, 2022, - 2023 + 2023, + 2026 ] }, { @@ -208,7 +214,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -233,7 +240,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gitlab.webp", "category": "Infrastructure and cloud", "total_projects": 15, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2021, 2022, @@ -261,14 +268,15 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/metasploit.webp", "category": "Security", "total_projects": 12, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, 2020, 2021, 2022, - 2023 + 2023, + 2026 ] }, { @@ -353,11 +361,12 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/qubes-os.webp", "category": "Operating systems", "total_projects": 4, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2020, - 2021 + 2021, + 2026 ] }, { @@ -384,25 +393,25 @@ ] }, { - "slug": "osu-open-source-lab", - "name": "OSU Open Source Lab", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/osu-open-source-lab.webp", - "category": "Other", + "slug": "opencensus", + "name": "OpenCensus", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/opencensus.webp", + "category": "Infrastructure and cloud", "total_projects": 1, "is_currently_active": false, "active_years": [ - 2016 + 2018 ] }, { - "slug": "opencensus", - "name": "OpenCensus", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/opencensus.webp", - "category": "Infrastructure and cloud", + "slug": "osu-open-source-lab", + "name": "OSU Open Source Lab", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/osu-open-source-lab.webp", + "category": "Other", "total_projects": 1, "is_currently_active": false, "active_years": [ - 2018 + 2016 ] }, { @@ -479,11 +488,16 @@ "year": 2025, "org_count": 9, "project_count": 99 + }, + { + "year": 2026, + "org_count": 9, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.170Z" + "generated_at": "2026-02-19T13:35:59.508Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/rubygems.json b/new-api-details/tech-stack/rubygems.json index 7979deae..618b6347 100644 --- a/new-api-details/tech-stack/rubygems.json +++ b/new-api-details/tech-stack/rubygems.json @@ -1,13 +1,13 @@ { "slug": "rubygems", "name": "rubygems", - "published_at": "2026-01-24T21:33:12.465Z", + "published_at": "2026-02-19T13:35:59.931Z", "metrics": { "org_count": 1, "project_count": 38, "avg_projects_per_org": 38, "first_year_used": 2016, - "latest_year_used": 2023 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ruby.webp", "category": "Programming languages", "total_projects": 38, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2018, @@ -24,7 +24,8 @@ 2020, 2021, 2022, - 2023 + 2023, + 2026 ] } ], @@ -79,11 +80,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.465Z" + "generated_at": "2026-02-19T13:35:59.931Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/rust.json b/new-api-details/tech-stack/rust.json index 2a4706f3..9dc623ab 100644 --- a/new-api-details/tech-stack/rust.json +++ b/new-api-details/tech-stack/rust.json @@ -1,13 +1,13 @@ { "slug": "rust", "name": "rust", - "published_at": "2026-01-24T21:33:12.058Z", + "published_at": "2026-02-19T13:35:59.388Z", "metrics": { - "org_count": 47, + "org_count": 49, "project_count": 1407, - "avg_projects_per_org": 29.9, + "avg_projects_per_org": 28.7, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-apache-software-foundation.webp", "category": "Web", "total_projects": 248, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -47,7 +47,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -66,7 +67,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -86,7 +88,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -104,7 +107,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] }, { @@ -128,7 +132,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/freifunk.webp", "category": "Operating systems", "total_projects": 74, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -158,16 +162,17 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "jboss-community", "name": "JBoss Community", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jboss-community.webp", - "category": "Data", + "category": "Web", "total_projects": 52, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -175,7 +180,8 @@ 2019, 2020, 2021, - 2022 + 2022, + 2026 ] }, { @@ -194,7 +200,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -203,7 +210,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/global-alliance-for-genomics-and-health.webp", "category": "Science and medicine", "total_projects": 45, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -213,7 +220,8 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -233,7 +241,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -252,7 +261,8 @@ 2021, 2022, 2023, - 2025 + 2025, + 2026 ] }, { @@ -270,7 +280,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -299,7 +310,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -321,12 +333,13 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/metacall.webp", "category": "Programming languages", "total_projects": 19, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -335,7 +348,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-tor-project.webp", "category": "Web", "total_projects": 19, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -380,11 +393,12 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/genome-assembly-and-annotation.webp", "category": "Science and medicine", "total_projects": 14, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2021, 2022, - 2023 + 2023, + 2026 ] }, { @@ -416,7 +430,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -430,7 +445,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] }, { @@ -444,7 +460,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -480,7 +497,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/unicode-inc.webp", "category": "Programming languages", "total_projects": 9, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2024, 2025 @@ -495,7 +512,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -516,7 +534,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/wellcome-sanger-tree-of-life.webp", "category": "Science and medicine", "total_projects": 8, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2024, @@ -529,7 +547,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/waycrate.webp", "category": "End user applications", "total_projects": 7, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2024, 2025 @@ -588,7 +606,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/rspamd.webp", "category": "Security", "total_projects": 3, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2017, 2018, @@ -612,11 +630,23 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/apache-datafusion.webp", "category": "Data", "total_projects": 2, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2025 ] }, + { + "slug": "dora-rs", + "name": "dora-rs", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/dora-rs.webp", + "category": "End user applications", + "total_projects": 2, + "is_currently_active": true, + "active_years": [ + 2025, + 2026 + ] + }, { "slug": "kornia", "name": "Kornia", @@ -625,7 +655,8 @@ "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] }, { @@ -643,22 +674,12 @@ "slug": "st-jude-childrens-research-hospital", "name": "St. Jude Children's Research Hospital", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/st-jude-childrens-research-hospital.webp", - "category": "Programming languages", - "total_projects": 2, - "is_currently_active": true, - "active_years": [ - 2025 - ] - }, - { - "slug": "dora-rs", - "name": "dora-rs", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/dora-rs.webp", - "category": "End user applications", + "category": "Science and medicine", "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] }, { @@ -683,6 +704,28 @@ 2019 ] }, + { + "slug": "boa", + "name": "Boa", + "logo_url": "https://summerofcode.withgoogle.com/media/org/boa/vhimc4zkw6j9t8wm-360.png", + "category": "Programming languages", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + }, + { + "slug": "mofa-org", + "name": "MoFA Org", + "logo_url": "https://summerofcode.withgoogle.com/media/org/mofa-org/fa7e34trht3ou7yo-360.png", + "category": "Development tools", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + }, { "slug": "seaql", "name": "SeaQL", @@ -746,11 +789,16 @@ "year": 2025, "org_count": 25, "project_count": 153 + }, + { + "year": 2026, + "org_count": 23, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.058Z" + "generated_at": "2026-02-19T13:35:59.388Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/rxjava.json b/new-api-details/tech-stack/rxjava.json index e1b5006d..8ad15837 100644 --- a/new-api-details/tech-stack/rxjava.json +++ b/new-api-details/tech-stack/rxjava.json @@ -1,7 +1,7 @@ { "slug": "rxjava", "name": "Rxjava", - "published_at": "2026-01-24T21:33:12.371Z", + "published_at": "2026-02-19T13:35:59.805Z", "metrics": { "org_count": 1, "project_count": 2, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.371Z" + "generated_at": "2026-02-19T13:35:59.805Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/sandbox.json b/new-api-details/tech-stack/sandbox.json new file mode 100644 index 00000000..2c057f60 --- /dev/null +++ b/new-api-details/tech-stack/sandbox.json @@ -0,0 +1,91 @@ +{ + "slug": "sandbox", + "name": "Sandbox", + "published_at": "2026-02-19T13:35:59.634Z", + "metrics": { + "org_count": 1, + "project_count": 7, + "avg_projects_per_org": 7, + "first_year_used": 2023, + "latest_year_used": 2026 + }, + "organizations": [ + { + "slug": "flare", + "name": "FLARE", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/flare.webp", + "category": "Security", + "total_projects": 7, + "is_currently_active": true, + "active_years": [ + 2023, + 2024, + 2025, + 2026 + ] + } + ], + "charts": { + "popularity_by_year": [ + { + "year": 2016, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2017, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2018, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2019, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2020, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2021, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2022, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2023, + "org_count": 1, + "project_count": 4 + }, + { + "year": 2024, + "org_count": 1, + "project_count": 1 + }, + { + "year": 2025, + "org_count": 1, + "project_count": 2 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 + } + ] + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:35:59.634Z" + } +} \ No newline at end of file diff --git a/new-api-details/tech-stack/sanitizers.json b/new-api-details/tech-stack/sanitizers.json index 6c913a75..d33f1717 100644 --- a/new-api-details/tech-stack/sanitizers.json +++ b/new-api-details/tech-stack/sanitizers.json @@ -1,13 +1,13 @@ { "slug": "sanitizers", "name": "sanitizers", - "published_at": "2026-01-24T21:33:12.056Z", + "published_at": "2026-02-19T13:35:59.403Z", "metrics": { "org_count": 1, "project_count": 10, "avg_projects_per_org": 10, "first_year_used": 2020, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -23,7 +23,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,11 +79,16 @@ "year": 2025, "org_count": 1, "project_count": 1 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.056Z" + "generated_at": "2026-02-19T13:35:59.403Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/sbom.json b/new-api-details/tech-stack/sbom.json index 01670a26..83e3fd8b 100644 --- a/new-api-details/tech-stack/sbom.json +++ b/new-api-details/tech-stack/sbom.json @@ -1,20 +1,20 @@ { "slug": "sbom", "name": "SBOM", - "published_at": "2026-01-24T21:33:12.452Z", + "published_at": "2026-02-19T13:35:59.911Z", "metrics": { "org_count": 1, "project_count": 277, "avg_projects_per_org": 277, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { "slug": "python-software-foundation", "name": "Python Software Foundation", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/python-software-foundation.webp", - "category": "Science and medicine", + "category": "End user applications", "total_projects": 277, "is_currently_active": true, "active_years": [ @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -82,11 +83,16 @@ "year": 2025, "org_count": 1, "project_count": 17 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.452Z" + "generated_at": "2026-02-19T13:35:59.911Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/scala-js.json b/new-api-details/tech-stack/scala-js.json index 25e71f5c..697c8c4a 100644 --- a/new-api-details/tech-stack/scala-js.json +++ b/new-api-details/tech-stack/scala-js.json @@ -1,7 +1,7 @@ { "slug": "scala-js", "name": "scala.js", - "published_at": "2026-01-24T21:33:12.476Z", + "published_at": "2026-02-19T13:35:59.934Z", "metrics": { "org_count": 1, "project_count": 56, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/scala-center.webp", "category": "Programming languages", "total_projects": 56, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -80,11 +80,16 @@ "year": 2025, "org_count": 1, "project_count": 14 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.476Z" + "generated_at": "2026-02-19T13:35:59.934Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/scala-lang.json b/new-api-details/tech-stack/scala-lang.json index 80a767e9..d750ec19 100644 --- a/new-api-details/tech-stack/scala-lang.json +++ b/new-api-details/tech-stack/scala-lang.json @@ -1,7 +1,7 @@ { "slug": "scala-lang", "name": "#scala_lang", - "published_at": "2026-01-24T21:33:12.474Z", + "published_at": "2026-02-19T13:35:59.933Z", "metrics": { "org_count": 1, "project_count": 56, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/scala-center.webp", "category": "Programming languages", "total_projects": 56, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -80,11 +80,16 @@ "year": 2025, "org_count": 1, "project_count": 14 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.474Z" + "generated_at": "2026-02-19T13:35:59.933Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/scala-native.json b/new-api-details/tech-stack/scala-native.json index a4124a57..c6762f7e 100644 --- a/new-api-details/tech-stack/scala-native.json +++ b/new-api-details/tech-stack/scala-native.json @@ -1,7 +1,7 @@ { "slug": "scala-native", "name": "scala native", - "published_at": "2026-01-24T21:33:12.476Z", + "published_at": "2026-02-19T13:35:59.934Z", "metrics": { "org_count": 1, "project_count": 56, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/scala-center.webp", "category": "Programming languages", "total_projects": 56, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -80,11 +80,16 @@ "year": 2025, "org_count": 1, "project_count": 14 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.476Z" + "generated_at": "2026-02-19T13:35:59.934Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/scala.json b/new-api-details/tech-stack/scala.json index 928183d6..861e9b56 100644 --- a/new-api-details/tech-stack/scala.json +++ b/new-api-details/tech-stack/scala.json @@ -1,13 +1,13 @@ { "slug": "scala", "name": "scala", - "published_at": "2026-01-24T21:33:12.060Z", + "published_at": "2026-02-19T13:35:59.419Z", "metrics": { "org_count": 10, "project_count": 257, "avg_projects_per_org": 25.7, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,14 +26,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "dbpedia", "name": "DBpedia", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/dbpedia.webp", - "category": "Science and medicine", + "category": "Data", "total_projects": 61, "is_currently_active": true, "active_years": [ @@ -46,7 +47,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -55,7 +57,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/scala-center.webp", "category": "Programming languages", "total_projects": 56, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -134,7 +136,8 @@ "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] }, { @@ -200,11 +203,16 @@ "year": 2025, "org_count": 5, "project_count": 56 + }, + { + "year": 2026, + "org_count": 3, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.060Z" + "generated_at": "2026-02-19T13:35:59.419Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/scalability.json b/new-api-details/tech-stack/scalability.json index a78e1222..2a7e34fe 100644 --- a/new-api-details/tech-stack/scalability.json +++ b/new-api-details/tech-stack/scalability.json @@ -1,7 +1,7 @@ { "slug": "scalability", "name": "scalability", - "published_at": "2026-01-24T21:33:12.552Z", + "published_at": "2026-02-19T13:35:59.701Z", "metrics": { "org_count": 1, "project_count": 3, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.552Z" + "generated_at": "2026-02-19T13:35:59.701Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/scheme.json b/new-api-details/tech-stack/scheme.json index 94fe5cfd..b56efecf 100644 --- a/new-api-details/tech-stack/scheme.json +++ b/new-api-details/tech-stack/scheme.json @@ -1,13 +1,13 @@ { "slug": "scheme", "name": "scheme", - "published_at": "2026-01-24T21:33:12.271Z", + "published_at": "2026-02-19T13:35:59.684Z", "metrics": { - "org_count": 1, + "org_count": 2, "project_count": 59, - "avg_projects_per_org": 59, + "avg_projects_per_org": 29.5, "first_year_used": 2016, - "latest_year_used": 2024 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnu-project.webp", "category": "Operating systems", "total_projects": 59, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -24,7 +24,19 @@ 2019, 2020, 2023, - 2024 + 2024, + 2026 + ] + }, + { + "slug": "moganlab", + "name": "MoganLab", + "logo_url": "https://summerofcode.withgoogle.com/media/org/moganlab/tuz5k2kmoivlkods-360.png", + "category": "Programming languages", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 ] } ], @@ -79,11 +91,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.271Z" + "generated_at": "2026-02-19T13:35:59.684Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/science.json b/new-api-details/tech-stack/science.json index 4561d702..1e114d7e 100644 --- a/new-api-details/tech-stack/science.json +++ b/new-api-details/tech-stack/science.json @@ -1,7 +1,7 @@ { "slug": "science", "name": "science", - "published_at": "2026-01-24T21:33:12.468Z", + "published_at": "2026-02-19T13:35:59.928Z", "metrics": { "org_count": 1, "project_count": 13, @@ -76,11 +76,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.468Z" + "generated_at": "2026-02-19T13:35:59.928Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/scikit-learn.json b/new-api-details/tech-stack/scikit-learn.json index 6de9680e..c8d1a5d2 100644 --- a/new-api-details/tech-stack/scikit-learn.json +++ b/new-api-details/tech-stack/scikit-learn.json @@ -1,13 +1,13 @@ { "slug": "scikit-learn", "name": "scikit-learn", - "published_at": "2026-01-24T21:33:12.405Z", + "published_at": "2026-02-19T13:35:59.667Z", "metrics": { - "org_count": 3, + "org_count": 4, "project_count": 99, - "avg_projects_per_org": 33, + "avg_projects_per_org": 24.8, "first_year_used": 2016, - "latest_year_used": 2024 + "latest_year_used": 2026 }, "organizations": [ { @@ -51,6 +51,17 @@ "active_years": [ 2024 ] + }, + { + "slug": "german-center-for-open-source-ai", + "name": "German Center for Open Source AI", + "logo_url": "https://summerofcode.withgoogle.com/media/org/german-center-for-open-source-ai/mir4i7v7wopcc7wn-360.png", + "category": "Data", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] } ], "charts": { @@ -104,11 +115,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.405Z" + "generated_at": "2026-02-19T13:35:59.667Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/scilab.json b/new-api-details/tech-stack/scilab.json index 0e81ef93..b8ba1ace 100644 --- a/new-api-details/tech-stack/scilab.json +++ b/new-api-details/tech-stack/scilab.json @@ -1,7 +1,7 @@ { "slug": "scilab", "name": "scilab", - "published_at": "2026-01-24T21:33:12.478Z", + "published_at": "2026-02-19T13:35:59.935Z", "metrics": { "org_count": 1, "project_count": 14, @@ -75,11 +75,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.478Z" + "generated_at": "2026-02-19T13:35:59.935Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/scipy.json b/new-api-details/tech-stack/scipy.json index bdd5eadd..6b3785f7 100644 --- a/new-api-details/tech-stack/scipy.json +++ b/new-api-details/tech-stack/scipy.json @@ -1,13 +1,13 @@ { "slug": "scipy", "name": "Scipy", - "published_at": "2026-01-24T21:33:12.396Z", + "published_at": "2026-02-19T13:35:59.838Z", "metrics": { "org_count": 1, "project_count": 2, "avg_projects_per_org": 2, "first_year_used": 2025, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -18,7 +18,8 @@ "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] } ], @@ -73,11 +74,16 @@ "year": 2025, "org_count": 1, "project_count": 2 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.396Z" + "generated_at": "2026-02-19T13:35:59.838Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/screwdriver-cd.json b/new-api-details/tech-stack/screwdriver-cd.json index cfc8c4b5..daf1d45d 100644 --- a/new-api-details/tech-stack/screwdriver-cd.json +++ b/new-api-details/tech-stack/screwdriver-cd.json @@ -1,7 +1,7 @@ { "slug": "screwdriver-cd", "name": "screwdriver.cd", - "published_at": "2026-01-24T21:33:12.198Z", + "published_at": "2026-02-19T13:35:59.569Z", "metrics": { "org_count": 1, "project_count": 9, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.198Z" + "generated_at": "2026-02-19T13:35:59.569Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/screwdriver.json b/new-api-details/tech-stack/screwdriver.json index 308f58e9..758a2073 100644 --- a/new-api-details/tech-stack/screwdriver.json +++ b/new-api-details/tech-stack/screwdriver.json @@ -1,7 +1,7 @@ { "slug": "screwdriver", "name": "screwdriver", - "published_at": "2026-01-24T21:33:12.197Z", + "published_at": "2026-02-19T13:35:59.568Z", "metrics": { "org_count": 1, "project_count": 9, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.197Z" + "generated_at": "2026-02-19T13:35:59.568Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/scripting.json b/new-api-details/tech-stack/scripting.json index 4df0ab59..77d860a5 100644 --- a/new-api-details/tech-stack/scripting.json +++ b/new-api-details/tech-stack/scripting.json @@ -1,13 +1,13 @@ { "slug": "scripting", "name": "scripting", - "published_at": "2026-01-24T21:33:12.113Z", + "published_at": "2026-02-19T13:35:59.491Z", "metrics": { "org_count": 4, "project_count": 93, "avg_projects_per_org": 23.3, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -36,7 +37,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mbdyn.webp", "category": "Science and medicine", "total_projects": 13, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -125,11 +126,16 @@ "year": 2025, "org_count": 2, "project_count": 8 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.113Z" + "generated_at": "2026-02-19T13:35:59.491Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/scss.json b/new-api-details/tech-stack/scss.json index ea7b91a5..57797220 100644 --- a/new-api-details/tech-stack/scss.json +++ b/new-api-details/tech-stack/scss.json @@ -1,13 +1,13 @@ { "slug": "scss", "name": "SCSS", - "published_at": "2026-01-24T21:33:12.202Z", + "published_at": "2026-02-19T13:35:59.581Z", "metrics": { "org_count": 1, "project_count": 30, "avg_projects_per_org": 30, "first_year_used": 2018, - "latest_year_used": 2022 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,13 +16,14 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cuneiform-digital-library-initiative-cdli.webp", "category": "Science and medicine", "total_projects": 30, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2018, 2019, 2020, 2021, - 2022 + 2022, + 2026 ] } ], @@ -77,11 +78,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.202Z" + "generated_at": "2026-02-19T13:35:59.581Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/sdl.json b/new-api-details/tech-stack/sdl.json index df85d27c..d94c2d04 100644 --- a/new-api-details/tech-stack/sdl.json +++ b/new-api-details/tech-stack/sdl.json @@ -1,13 +1,13 @@ { "slug": "sdl", "name": "sdl", - "published_at": "2026-01-24T21:33:12.478Z", + "published_at": "2026-02-19T13:35:59.937Z", "metrics": { "org_count": 1, "project_count": 34, "avg_projects_per_org": 34, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -82,11 +83,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.478Z" + "generated_at": "2026-02-19T13:35:59.937Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/sdr.json b/new-api-details/tech-stack/sdr.json index b45d5225..9664c946 100644 --- a/new-api-details/tech-stack/sdr.json +++ b/new-api-details/tech-stack/sdr.json @@ -1,7 +1,7 @@ { "slug": "sdr", "name": "sdr", - "published_at": "2026-01-24T21:33:12.086Z", + "published_at": "2026-02-19T13:35:59.401Z", "metrics": { "org_count": 3, "project_count": 65, @@ -31,7 +31,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnss-sdr.webp", "category": "Science and medicine", "total_projects": 28, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -109,11 +109,16 @@ "year": 2025, "org_count": 1, "project_count": 3 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.086Z" + "generated_at": "2026-02-19T13:35:59.401Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/search.json b/new-api-details/tech-stack/search.json index 316b5342..787870dc 100644 --- a/new-api-details/tech-stack/search.json +++ b/new-api-details/tech-stack/search.json @@ -1,13 +1,13 @@ { "slug": "search", "name": "search", - "published_at": "2026-01-24T21:33:12.077Z", + "published_at": "2026-02-19T13:35:59.387Z", "metrics": { "org_count": 1, "project_count": 32, "avg_projects_per_org": 32, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -25,7 +25,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -80,11 +81,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.077Z" + "generated_at": "2026-02-19T13:35:59.387Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/secure-multi-party-computation.json b/new-api-details/tech-stack/secure-multi-party-computation.json index 25115185..30f0b92b 100644 --- a/new-api-details/tech-stack/secure-multi-party-computation.json +++ b/new-api-details/tech-stack/secure-multi-party-computation.json @@ -1,7 +1,7 @@ { "slug": "secure-multi-party-computation", "name": "secure multi-party computation", - "published_at": "2026-01-24T21:33:12.417Z", + "published_at": "2026-02-19T13:35:59.858Z", "metrics": { "org_count": 1, "project_count": 9, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.417Z" + "generated_at": "2026-02-19T13:35:59.858Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/security.json b/new-api-details/tech-stack/security.json index 2781507d..cd95dd0e 100644 --- a/new-api-details/tech-stack/security.json +++ b/new-api-details/tech-stack/security.json @@ -1,13 +1,13 @@ { "slug": "security", "name": "security", - "published_at": "2026-01-24T21:33:12.247Z", + "published_at": "2026-02-19T13:35:59.631Z", "metrics": { "org_count": 2, "project_count": 65, "avg_projects_per_org": 32.5, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -36,7 +37,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/fedora-project.webp", "category": "Operating systems", "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -98,11 +99,16 @@ "year": 2025, "org_count": 2, "project_count": 5 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.247Z" + "generated_at": "2026-02-19T13:35:59.631Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/selenium.json b/new-api-details/tech-stack/selenium.json index df90c4f5..59fc8ac1 100644 --- a/new-api-details/tech-stack/selenium.json +++ b/new-api-details/tech-stack/selenium.json @@ -1,7 +1,7 @@ { "slug": "selenium", "name": "selenium", - "published_at": "2026-01-24T21:33:12.397Z", + "published_at": "2026-02-19T13:35:59.839Z", "metrics": { "org_count": 2, "project_count": 5, @@ -85,11 +85,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.397Z" + "generated_at": "2026-02-19T13:35:59.839Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/semantic-web.json b/new-api-details/tech-stack/semantic-web.json index e93295d5..8233e036 100644 --- a/new-api-details/tech-stack/semantic-web.json +++ b/new-api-details/tech-stack/semantic-web.json @@ -1,7 +1,7 @@ { "slug": "semantic-web", "name": "semantic web", - "published_at": "2026-01-24T21:33:12.511Z", + "published_at": "2026-02-19T13:35:59.976Z", "metrics": { "org_count": 1, "project_count": 1, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.511Z" + "generated_at": "2026-02-19T13:35:59.976Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/servant.json b/new-api-details/tech-stack/servant.json index 7f50ebdc..5bc42dbd 100644 --- a/new-api-details/tech-stack/servant.json +++ b/new-api-details/tech-stack/servant.json @@ -1,13 +1,13 @@ { "slug": "servant", "name": "servant", - "published_at": "2026-01-24T21:33:12.297Z", + "published_at": "2026-02-19T13:35:59.706Z", "metrics": { "org_count": 1, "project_count": 70, "avg_projects_per_org": 70, "first_year_used": 2018, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -24,7 +24,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] } ], @@ -79,11 +80,16 @@ "year": 2025, "org_count": 1, "project_count": 4 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.297Z" + "generated_at": "2026-02-19T13:35:59.706Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/server.json b/new-api-details/tech-stack/server.json index 34ac383b..43b53c6f 100644 --- a/new-api-details/tech-stack/server.json +++ b/new-api-details/tech-stack/server.json @@ -1,13 +1,13 @@ { "slug": "server", "name": "server", - "published_at": "2026-01-24T21:33:12.494Z", + "published_at": "2026-02-19T13:35:59.956Z", "metrics": { "org_count": 1, "project_count": 26, "avg_projects_per_org": 26, "first_year_used": 2018, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -25,7 +25,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -80,11 +81,16 @@ "year": 2025, "org_count": 1, "project_count": 4 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.494Z" + "generated_at": "2026-02-19T13:35:59.956Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/serverless.json b/new-api-details/tech-stack/serverless.json index d7b62bbf..a77c274c 100644 --- a/new-api-details/tech-stack/serverless.json +++ b/new-api-details/tech-stack/serverless.json @@ -1,7 +1,7 @@ { "slug": "serverless", "name": "Serverless", - "published_at": "2026-01-24T21:33:12.477Z", + "published_at": "2026-02-19T13:35:59.935Z", "metrics": { "org_count": 1, "project_count": 6, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.477Z" + "generated_at": "2026-02-19T13:35:59.935Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/service-mesh.json b/new-api-details/tech-stack/service-mesh.json index dc9caa6c..cf3a7191 100644 --- a/new-api-details/tech-stack/service-mesh.json +++ b/new-api-details/tech-stack/service-mesh.json @@ -1,13 +1,13 @@ { "slug": "service-mesh", "name": "service mesh", - "published_at": "2026-01-24T21:33:12.163Z", + "published_at": "2026-02-19T13:35:59.558Z", "metrics": { "org_count": 1, "project_count": 113, "avg_projects_per_org": 113, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 11 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.163Z" + "generated_at": "2026-02-19T13:35:59.558Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/sftp.json b/new-api-details/tech-stack/sftp.json index 5127ffd8..fbcb5d9e 100644 --- a/new-api-details/tech-stack/sftp.json +++ b/new-api-details/tech-stack/sftp.json @@ -1,13 +1,13 @@ { "slug": "sftp", "name": "sftp", - "published_at": "2026-01-24T21:33:12.562Z", + "published_at": "2026-02-19T13:35:59.796Z", "metrics": { "org_count": 1, "project_count": 6, "avg_projects_per_org": 6, "first_year_used": 2022, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -21,7 +21,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -76,11 +77,16 @@ "year": 2025, "org_count": 1, "project_count": 1 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.562Z" + "generated_at": "2026-02-19T13:35:59.796Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/shell-script.json b/new-api-details/tech-stack/shell-script.json index 82fff3a3..0c437da1 100644 --- a/new-api-details/tech-stack/shell-script.json +++ b/new-api-details/tech-stack/shell-script.json @@ -1,13 +1,13 @@ { "slug": "shell-script", "name": "shell script", - "published_at": "2026-01-24T21:33:12.075Z", + "published_at": "2026-02-19T13:35:59.384Z", "metrics": { "org_count": 10, "project_count": 326, "avg_projects_per_org": 32.6, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -36,7 +37,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/freifunk.webp", "category": "Operating systems", "total_projects": 74, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -66,7 +67,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -84,7 +86,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -102,7 +105,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -140,7 +144,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -164,16 +169,17 @@ "slug": "the-libreswan-project", "name": "The Libreswan Project", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-libreswan-project.webp", - "category": "Infrastructure and cloud", + "category": "Security", "total_projects": 10, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, 2019, 2020, 2021, - 2022 + 2022, + 2026 ] }, { @@ -240,11 +246,16 @@ "year": 2025, "org_count": 6, "project_count": 33 + }, + { + "year": 2026, + "org_count": 6, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.075Z" + "generated_at": "2026-02-19T13:35:59.384Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/shell.json b/new-api-details/tech-stack/shell.json index 503f913d..a14df010 100644 --- a/new-api-details/tech-stack/shell.json +++ b/new-api-details/tech-stack/shell.json @@ -1,13 +1,13 @@ { "slug": "shell", "name": "shell", - "published_at": "2026-01-24T21:33:12.137Z", + "published_at": "2026-02-19T13:35:59.492Z", "metrics": { - "org_count": 8, + "org_count": 9, "project_count": 227, - "avg_projects_per_org": 28.4, + "avg_projects_per_org": 25.2, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -36,7 +37,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/freifunk.webp", "category": "Operating systems", "total_projects": 74, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -84,7 +85,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -108,16 +110,17 @@ "slug": "the-libreswan-project", "name": "The Libreswan Project", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-libreswan-project.webp", - "category": "Infrastructure and cloud", + "category": "Security", "total_projects": 10, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, 2019, 2020, 2021, - 2022 + 2022, + 2026 ] }, { @@ -126,11 +129,12 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/qubes-os.webp", "category": "Operating systems", "total_projects": 4, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2020, - 2021 + 2021, + 2026 ] }, { @@ -143,6 +147,17 @@ "active_years": [ 2019 ] + }, + { + "slug": "precice", + "name": "preCICE", + "logo_url": "https://summerofcode.withgoogle.com/media/org/precice/19ymcw80uxn8g9ia-360.png", + "category": "Science and medicine", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] } ], "charts": { @@ -196,11 +211,16 @@ "year": 2025, "org_count": 3, "project_count": 20 + }, + { + "year": 2026, + "org_count": 5, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.137Z" + "generated_at": "2026-02-19T13:35:59.492Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/simd.json b/new-api-details/tech-stack/simd.json index 38dd1b74..869993a4 100644 --- a/new-api-details/tech-stack/simd.json +++ b/new-api-details/tech-stack/simd.json @@ -1,13 +1,13 @@ { "slug": "simd", "name": "simd", - "published_at": "2026-01-24T21:33:12.274Z", + "published_at": "2026-02-19T13:35:59.686Z", "metrics": { - "org_count": 1, - "project_count": 18, - "avg_projects_per_org": 18, + "org_count": 2, + "project_count": 20, + "avg_projects_per_org": 10, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,20 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "st-jude-childrens-research-hospital", + "name": "St. Jude Children's Research Hospital", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/st-jude-childrens-research-hospital.webp", + "category": "Science and medicine", + "total_projects": 2, + "is_currently_active": true, + "active_years": [ + 2025, + 2026 ] } ], @@ -80,13 +93,18 @@ }, { "year": 2025, - "org_count": 1, - "project_count": 4 + "org_count": 2, + "project_count": 6 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.274Z" + "generated_at": "2026-02-19T13:35:59.686Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/singularity.json b/new-api-details/tech-stack/singularity.json index 335466ae..dee4e9e3 100644 --- a/new-api-details/tech-stack/singularity.json +++ b/new-api-details/tech-stack/singularity.json @@ -1,13 +1,13 @@ { "slug": "singularity", "name": "singularity", - "published_at": "2026-01-24T21:33:12.424Z", + "published_at": "2026-02-19T13:35:59.876Z", "metrics": { "org_count": 2, "project_count": 118, "avg_projects_per_org": 59, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -45,7 +45,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -100,11 +101,16 @@ "year": 2025, "org_count": 1, "project_count": 4 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.424Z" + "generated_at": "2026-02-19T13:35:59.876Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/sip.json b/new-api-details/tech-stack/sip.json index f0a17611..cfe83acd 100644 --- a/new-api-details/tech-stack/sip.json +++ b/new-api-details/tech-stack/sip.json @@ -1,13 +1,13 @@ { "slug": "sip", "name": "sip", - "published_at": "2026-01-24T21:33:12.334Z", + "published_at": "2026-02-19T13:35:59.751Z", "metrics": { "org_count": 1, "project_count": 21, "avg_projects_per_org": 21, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -22,7 +22,8 @@ 2018, 2022, 2024, - 2025 + 2025, + 2026 ] } ], @@ -77,11 +78,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.334Z" + "generated_at": "2026-02-19T13:35:59.751Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/skala.json b/new-api-details/tech-stack/skala.json index 12a2ba49..9e61fc8b 100644 --- a/new-api-details/tech-stack/skala.json +++ b/new-api-details/tech-stack/skala.json @@ -1,20 +1,20 @@ { "slug": "skala", "name": "skala", - "published_at": "2026-01-24T21:33:12.208Z", + "published_at": "2026-02-19T13:35:59.592Z", "metrics": { "org_count": 1, "project_count": 61, "avg_projects_per_org": 61, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { "slug": "dbpedia", "name": "DBpedia", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/dbpedia.webp", - "category": "Science and medicine", + "category": "Data", "total_projects": 61, "is_currently_active": true, "active_years": [ @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -82,11 +83,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.208Z" + "generated_at": "2026-02-19T13:35:59.592Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/smalltalk.json b/new-api-details/tech-stack/smalltalk.json index d4425791..5d06a571 100644 --- a/new-api-details/tech-stack/smalltalk.json +++ b/new-api-details/tech-stack/smalltalk.json @@ -1,13 +1,13 @@ { "slug": "smalltalk", "name": "smalltalk", - "published_at": "2026-01-24T21:33:12.429Z", + "published_at": "2026-02-19T13:35:59.883Z", "metrics": { "org_count": 1, "project_count": 32, "avg_projects_per_org": 32, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -22,7 +22,8 @@ 2019, 2021, 2023, - 2025 + 2025, + 2026 ] } ], @@ -77,11 +78,16 @@ "year": 2025, "org_count": 1, "project_count": 8 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.429Z" + "generated_at": "2026-02-19T13:35:59.883Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/smb.json b/new-api-details/tech-stack/smb.json index 86e81af8..837b8548 100644 --- a/new-api-details/tech-stack/smb.json +++ b/new-api-details/tech-stack/smb.json @@ -1,7 +1,7 @@ { "slug": "smb", "name": "smb", - "published_at": "2026-01-24T21:33:12.473Z", + "published_at": "2026-02-19T13:35:59.932Z", "metrics": { "org_count": 1, "project_count": 3, @@ -76,11 +76,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.473Z" + "generated_at": "2026-02-19T13:35:59.932Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/smt-solvers.json b/new-api-details/tech-stack/smt-solvers.json index a881dc17..5e051a4e 100644 --- a/new-api-details/tech-stack/smt-solvers.json +++ b/new-api-details/tech-stack/smt-solvers.json @@ -1,13 +1,13 @@ { "slug": "smt-solvers", "name": "smt solvers", - "published_at": "2026-01-24T21:33:12.503Z", + "published_at": "2026-02-19T13:35:59.967Z", "metrics": { "org_count": 1, "project_count": 46, "avg_projects_per_org": 46, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -82,11 +83,16 @@ "year": 2025, "org_count": 1, "project_count": 3 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.503Z" + "generated_at": "2026-02-19T13:35:59.967Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/smt.json b/new-api-details/tech-stack/smt.json index f161cf28..29c40979 100644 --- a/new-api-details/tech-stack/smt.json +++ b/new-api-details/tech-stack/smt.json @@ -1,7 +1,7 @@ { "slug": "smt", "name": "smt", - "published_at": "2026-01-24T21:33:12.499Z", + "published_at": "2026-02-19T13:36:00.047Z", "metrics": { "org_count": 1, "project_count": 1, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.499Z" + "generated_at": "2026-02-19T13:36:00.047Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/soa.json b/new-api-details/tech-stack/soa.json index bb12aa4e..e1ba8775 100644 --- a/new-api-details/tech-stack/soa.json +++ b/new-api-details/tech-stack/soa.json @@ -1,7 +1,7 @@ { "slug": "soa", "name": "soa", - "published_at": "2026-01-24T21:33:12.533Z", + "published_at": "2026-02-19T13:36:00.090Z", "metrics": { "org_count": 1, "project_count": 20, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.533Z" + "generated_at": "2026-02-19T13:36:00.090Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/sockets.json b/new-api-details/tech-stack/sockets.json index 3a2d99bf..b8ec08fa 100644 --- a/new-api-details/tech-stack/sockets.json +++ b/new-api-details/tech-stack/sockets.json @@ -1,7 +1,7 @@ { "slug": "sockets", "name": "sockets", - "published_at": "2026-01-24T21:33:12.423Z", + "published_at": "2026-02-19T13:35:59.875Z", "metrics": { "org_count": 1, "project_count": 5, @@ -75,11 +75,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.423Z" + "generated_at": "2026-02-19T13:35:59.875Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/software-agent.json b/new-api-details/tech-stack/software-agent.json new file mode 100644 index 00000000..bb37a95d --- /dev/null +++ b/new-api-details/tech-stack/software-agent.json @@ -0,0 +1,88 @@ +{ + "slug": "software-agent", + "name": "Software Agent", + "published_at": "2026-02-19T13:35:59.662Z", + "metrics": { + "org_count": 1, + "project_count": 0, + "avg_projects_per_org": 0, + "first_year_used": 2026, + "latest_year_used": 2026 + }, + "organizations": [ + { + "slug": "gemini-cli", + "name": "Gemini CLI", + "logo_url": "https://summerofcode.withgoogle.com/media/org/gemini-cli/mhi8cx7tyjt91i6n-360.png", + "category": "Development tools", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + } + ], + "charts": { + "popularity_by_year": [ + { + "year": 2016, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2017, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2018, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2019, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2020, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2021, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2022, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2023, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2024, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2025, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 + } + ] + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:35:59.662Z" + } +} \ No newline at end of file diff --git a/new-api-details/tech-stack/software-defined-radio.json b/new-api-details/tech-stack/software-defined-radio.json index efdd20af..34f473e2 100644 --- a/new-api-details/tech-stack/software-defined-radio.json +++ b/new-api-details/tech-stack/software-defined-radio.json @@ -1,13 +1,13 @@ { "slug": "software-defined-radio", "name": "software defined radio", - "published_at": "2026-01-24T21:33:12.273Z", + "published_at": "2026-02-19T13:35:59.686Z", "metrics": { "org_count": 1, "project_count": 18, "avg_projects_per_org": 18, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -82,11 +83,16 @@ "year": 2025, "org_count": 1, "project_count": 4 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.273Z" + "generated_at": "2026-02-19T13:35:59.686Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/software-radio.json b/new-api-details/tech-stack/software-radio.json index 6697b04e..9b18f8e1 100644 --- a/new-api-details/tech-stack/software-radio.json +++ b/new-api-details/tech-stack/software-radio.json @@ -1,13 +1,13 @@ { "slug": "software-radio", "name": "software radio", - "published_at": "2026-01-24T21:33:12.271Z", + "published_at": "2026-02-19T13:35:59.685Z", "metrics": { "org_count": 1, "project_count": 18, "avg_projects_per_org": 18, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -82,11 +83,16 @@ "year": 2025, "org_count": 1, "project_count": 4 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.271Z" + "generated_at": "2026-02-19T13:35:59.685Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/softwaredefinedvehicles.json b/new-api-details/tech-stack/softwaredefinedvehicles.json index 08de02b1..18dfe729 100644 --- a/new-api-details/tech-stack/softwaredefinedvehicles.json +++ b/new-api-details/tech-stack/softwaredefinedvehicles.json @@ -1,13 +1,13 @@ { "slug": "softwaredefinedvehicles", "name": "softwaredefinedvehicles", - "published_at": "2026-01-24T21:33:12.229Z", + "published_at": "2026-02-19T13:35:59.617Z", "metrics": { "org_count": 1, "project_count": 68, "avg_projects_per_org": 68, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 7 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.229Z" + "generated_at": "2026-02-19T13:35:59.617Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/solidity.json b/new-api-details/tech-stack/solidity.json new file mode 100644 index 00000000..8c93c49f --- /dev/null +++ b/new-api-details/tech-stack/solidity.json @@ -0,0 +1,97 @@ +{ + "slug": "solidity", + "name": "Solidity", + "published_at": "2026-02-19T13:35:59.427Z", + "metrics": { + "org_count": 1, + "project_count": 117, + "avg_projects_per_org": 117, + "first_year_used": 2017, + "latest_year_used": 2026 + }, + "organizations": [ + { + "slug": "aossie", + "name": "AOSSIE", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/aossie.webp", + "category": "End user applications", + "total_projects": 117, + "is_currently_active": true, + "active_years": [ + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ] + } + ], + "charts": { + "popularity_by_year": [ + { + "year": 2016, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2017, + "org_count": 1, + "project_count": 13 + }, + { + "year": 2018, + "org_count": 1, + "project_count": 13 + }, + { + "year": 2019, + "org_count": 1, + "project_count": 18 + }, + { + "year": 2020, + "org_count": 1, + "project_count": 9 + }, + { + "year": 2021, + "org_count": 1, + "project_count": 11 + }, + { + "year": 2022, + "org_count": 1, + "project_count": 8 + }, + { + "year": 2023, + "org_count": 1, + "project_count": 6 + }, + { + "year": 2024, + "org_count": 1, + "project_count": 18 + }, + { + "year": 2025, + "org_count": 1, + "project_count": 21 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 + } + ] + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:35:59.427Z" + } +} \ No newline at end of file diff --git a/new-api-details/tech-stack/solr.json b/new-api-details/tech-stack/solr.json index 9d7b3270..db1bc3e0 100644 --- a/new-api-details/tech-stack/solr.json +++ b/new-api-details/tech-stack/solr.json @@ -1,13 +1,13 @@ { "slug": "solr", "name": "solr", - "published_at": "2026-01-24T21:33:12.378Z", + "published_at": "2026-02-19T13:35:59.814Z", "metrics": { "org_count": 1, "project_count": 60, "avg_projects_per_org": 60, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -82,11 +83,16 @@ "year": 2025, "org_count": 1, "project_count": 6 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.378Z" + "generated_at": "2026-02-19T13:35:59.814Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/some-ip.json b/new-api-details/tech-stack/some-ip.json index 336ed40d..c561c1c5 100644 --- a/new-api-details/tech-stack/some-ip.json +++ b/new-api-details/tech-stack/some-ip.json @@ -1,7 +1,7 @@ { "slug": "some-ip", "name": "some/ip", - "published_at": "2026-01-24T21:33:12.262Z", + "published_at": "2026-02-19T13:35:59.665Z", "metrics": { "org_count": 1, "project_count": 3, @@ -75,11 +75,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.262Z" + "generated_at": "2026-02-19T13:35:59.665Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/sound-open-firmware.json b/new-api-details/tech-stack/sound-open-firmware.json index 43ee676f..06eedac4 100644 --- a/new-api-details/tech-stack/sound-open-firmware.json +++ b/new-api-details/tech-stack/sound-open-firmware.json @@ -1,7 +1,7 @@ { "slug": "sound-open-firmware", "name": "sound open firmware", - "published_at": "2026-01-24T21:33:12.315Z", + "published_at": "2026-02-19T13:35:59.730Z", "metrics": { "org_count": 1, "project_count": 12, @@ -78,11 +78,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.315Z" + "generated_at": "2026-02-19T13:35:59.730Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/space-applications.json b/new-api-details/tech-stack/space-applications.json index c8b2372e..bde5e4f0 100644 --- a/new-api-details/tech-stack/space-applications.json +++ b/new-api-details/tech-stack/space-applications.json @@ -1,7 +1,7 @@ { "slug": "space-applications", "name": "space applications", - "published_at": "2026-01-24T21:33:12.357Z", + "published_at": "2026-02-19T13:35:59.788Z", "metrics": { "org_count": 1, "project_count": 7, @@ -75,11 +75,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.357Z" + "generated_at": "2026-02-19T13:35:59.788Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/spark.json b/new-api-details/tech-stack/spark.json index 680c65b6..a1f4795d 100644 --- a/new-api-details/tech-stack/spark.json +++ b/new-api-details/tech-stack/spark.json @@ -1,13 +1,13 @@ { "slug": "spark", "name": "spark", - "published_at": "2026-01-24T21:33:12.379Z", + "published_at": "2026-02-19T13:35:59.814Z", "metrics": { "org_count": 3, "project_count": 143, "avg_projects_per_org": 47.7, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -47,7 +48,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -115,11 +117,16 @@ "year": 2025, "org_count": 2, "project_count": 11 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.379Z" + "generated_at": "2026-02-19T13:35:59.814Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/sparql.json b/new-api-details/tech-stack/sparql.json index 7a6e15bc..ca218179 100644 --- a/new-api-details/tech-stack/sparql.json +++ b/new-api-details/tech-stack/sparql.json @@ -1,20 +1,20 @@ { "slug": "sparql", "name": "sparql", - "published_at": "2026-01-24T21:33:12.207Z", + "published_at": "2026-02-19T13:35:59.590Z", "metrics": { "org_count": 1, "project_count": 61, "avg_projects_per_org": 61, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { "slug": "dbpedia", "name": "DBpedia", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/dbpedia.webp", - "category": "Science and medicine", + "category": "Data", "total_projects": 61, "is_currently_active": true, "active_years": [ @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -82,11 +83,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.207Z" + "generated_at": "2026-02-19T13:35:59.590Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/spatial-ai.json b/new-api-details/tech-stack/spatial-ai.json index 164d384d..8f5201ab 100644 --- a/new-api-details/tech-stack/spatial-ai.json +++ b/new-api-details/tech-stack/spatial-ai.json @@ -1,13 +1,13 @@ { "slug": "spatial-ai", "name": "Spatial AI", - "published_at": "2026-01-24T21:33:12.347Z", + "published_at": "2026-02-19T13:35:59.773Z", "metrics": { "org_count": 1, "project_count": 2, "avg_projects_per_org": 2, "first_year_used": 2025, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -18,7 +18,8 @@ "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] } ], @@ -73,11 +74,16 @@ "year": 2025, "org_count": 1, "project_count": 2 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.347Z" + "generated_at": "2026-02-19T13:35:59.773Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/spec.json b/new-api-details/tech-stack/spec.json index a9078ce3..e6f09302 100644 --- a/new-api-details/tech-stack/spec.json +++ b/new-api-details/tech-stack/spec.json @@ -1,13 +1,13 @@ { "slug": "spec", "name": "spec", - "published_at": "2026-01-24T21:33:12.433Z", + "published_at": "2026-02-19T13:35:59.886Z", "metrics": { "org_count": 1, "project_count": 32, "avg_projects_per_org": 32, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -22,7 +22,8 @@ 2019, 2021, 2023, - 2025 + 2025, + 2026 ] } ], @@ -77,11 +78,16 @@ "year": 2025, "org_count": 1, "project_count": 8 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.433Z" + "generated_at": "2026-02-19T13:35:59.886Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/sphinx.json b/new-api-details/tech-stack/sphinx.json index fab41859..99d864fe 100644 --- a/new-api-details/tech-stack/sphinx.json +++ b/new-api-details/tech-stack/sphinx.json @@ -1,7 +1,7 @@ { "slug": "sphinx", "name": "sphinx", - "published_at": "2026-01-24T21:33:12.456Z", + "published_at": "2026-02-19T13:35:59.915Z", "metrics": { "org_count": 2, "project_count": 11, @@ -86,11 +86,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.456Z" + "generated_at": "2026-02-19T13:35:59.915Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/spi.json b/new-api-details/tech-stack/spi.json index 5daba3d9..2019bde4 100644 --- a/new-api-details/tech-stack/spi.json +++ b/new-api-details/tech-stack/spi.json @@ -1,7 +1,7 @@ { "slug": "spi", "name": "spi", - "published_at": "2026-01-24T21:33:12.251Z", + "published_at": "2026-02-19T13:35:59.636Z", "metrics": { "org_count": 1, "project_count": 1, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.251Z" + "generated_at": "2026-02-19T13:35:59.636Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/spinnaker.json b/new-api-details/tech-stack/spinnaker.json index 691dea0e..e55fa489 100644 --- a/new-api-details/tech-stack/spinnaker.json +++ b/new-api-details/tech-stack/spinnaker.json @@ -1,7 +1,7 @@ { "slug": "spinnaker", "name": "spinnaker", - "published_at": "2026-01-24T21:33:12.196Z", + "published_at": "2026-02-19T13:35:59.566Z", "metrics": { "org_count": 1, "project_count": 9, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.196Z" + "generated_at": "2026-02-19T13:35:59.566Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/spir-v.json b/new-api-details/tech-stack/spir-v.json index 588e5fbd..d5585276 100644 --- a/new-api-details/tech-stack/spir-v.json +++ b/new-api-details/tech-stack/spir-v.json @@ -1,7 +1,7 @@ { "slug": "spir-v", "name": "spir-v", - "published_at": "2026-01-24T21:33:12.094Z", + "published_at": "2026-02-19T13:35:59.417Z", "metrics": { "org_count": 1, "project_count": 8, @@ -75,11 +75,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.094Z" + "generated_at": "2026-02-19T13:35:59.417Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/spring.json b/new-api-details/tech-stack/spring.json index feefd701..27778a4f 100644 --- a/new-api-details/tech-stack/spring.json +++ b/new-api-details/tech-stack/spring.json @@ -1,13 +1,13 @@ { "slug": "spring", "name": "spring", - "published_at": "2026-01-24T21:33:12.048Z", + "published_at": "2026-02-19T13:35:59.379Z", "metrics": { "org_count": 5, "project_count": 275, "avg_projects_per_org": 55, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -46,7 +47,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -55,7 +57,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/global-alliance-for-genomics-and-health.webp", "category": "Science and medicine", "total_projects": 45, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -65,7 +67,8 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -85,7 +88,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -97,7 +101,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -152,11 +157,16 @@ "year": 2025, "org_count": 4, "project_count": 27 + }, + { + "year": 2026, + "org_count": 5, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.048Z" + "generated_at": "2026-02-19T13:35:59.379Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/springboot.json b/new-api-details/tech-stack/springboot.json index bb191706..7058ffb5 100644 --- a/new-api-details/tech-stack/springboot.json +++ b/new-api-details/tech-stack/springboot.json @@ -1,13 +1,13 @@ { "slug": "springboot", "name": "SpringBoot", - "published_at": "2026-01-24T21:33:12.472Z", + "published_at": "2026-02-19T13:35:59.955Z", "metrics": { "org_count": 1, "project_count": 2, "avg_projects_per_org": 2, "first_year_used": 2025, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -18,7 +18,8 @@ "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] } ], @@ -73,11 +74,16 @@ "year": 2025, "org_count": 1, "project_count": 2 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.472Z" + "generated_at": "2026-02-19T13:35:59.955Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/sql-nosql.json b/new-api-details/tech-stack/sql-nosql.json index 6124f3ce..59770886 100644 --- a/new-api-details/tech-stack/sql-nosql.json +++ b/new-api-details/tech-stack/sql-nosql.json @@ -1,7 +1,7 @@ { "slug": "sql-nosql", "name": "sql/nosql", - "published_at": "2026-01-24T21:33:12.127Z", + "published_at": "2026-02-19T13:35:59.481Z", "metrics": { "org_count": 1, "project_count": 20, @@ -76,11 +76,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.127Z" + "generated_at": "2026-02-19T13:35:59.481Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/sql.json b/new-api-details/tech-stack/sql.json index 26c3246a..74b252da 100644 --- a/new-api-details/tech-stack/sql.json +++ b/new-api-details/tech-stack/sql.json @@ -1,13 +1,13 @@ { "slug": "sql", "name": "sql", - "published_at": "2026-01-24T21:33:12.097Z", + "published_at": "2026-02-19T13:35:59.430Z", "metrics": { - "org_count": 17, + "org_count": 18, "project_count": 376, - "avg_projects_per_org": 22.1, + "avg_projects_per_org": 20.9, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -46,7 +47,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -55,7 +57,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/global-alliance-for-genomics-and-health.webp", "category": "Science and medicine", "total_projects": 45, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -65,7 +67,8 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -85,7 +88,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -104,7 +108,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -202,7 +207,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/sqlancer.webp", "category": "Data", "total_projects": 6, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2023, 2025 @@ -249,11 +254,22 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/apache-datafusion.webp", "category": "Data", "total_projects": 2, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2025 ] }, + { + "slug": "measurement-lab", + "name": "Measurement Lab", + "logo_url": "https://summerofcode.withgoogle.com/media/org/measurement-lab/0sttrnvo03uejp1z.png", + "category": "Data", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + }, { "slug": "seaql", "name": "SeaQL", @@ -317,11 +333,16 @@ "year": 2025, "org_count": 6, "project_count": 35 + }, + { + "year": 2026, + "org_count": 6, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.097Z" + "generated_at": "2026-02-19T13:35:59.430Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/sqlalchemy.json b/new-api-details/tech-stack/sqlalchemy.json index 8da60626..56a6e524 100644 --- a/new-api-details/tech-stack/sqlalchemy.json +++ b/new-api-details/tech-stack/sqlalchemy.json @@ -1,13 +1,13 @@ { "slug": "sqlalchemy", "name": "sqlalchemy", - "published_at": "2026-01-24T21:33:12.267Z", + "published_at": "2026-02-19T13:35:59.676Z", "metrics": { - "org_count": 1, + "org_count": 2, "project_count": 4, - "avg_projects_per_org": 4, + "avg_projects_per_org": 2, "first_year_used": 2016, - "latest_year_used": 2021 + "latest_year_used": 2026 }, "organizations": [ { @@ -22,6 +22,17 @@ 2019, 2021 ] + }, + { + "slug": "gnu-mailman", + "name": "GNU Mailman", + "logo_url": "https://summerofcode.withgoogle.com/media/org/gnu-mailman/cg5sxkouo8rjtjw2-360.png", + "category": "Social and communication", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] } ], "charts": { @@ -75,11 +86,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.267Z" + "generated_at": "2026-02-19T13:35:59.676Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/sqlite.json b/new-api-details/tech-stack/sqlite.json index ec27749b..c79c600e 100644 --- a/new-api-details/tech-stack/sqlite.json +++ b/new-api-details/tech-stack/sqlite.json @@ -1,20 +1,20 @@ { "slug": "sqlite", "name": "sqlite", - "published_at": "2026-01-24T21:33:12.084Z", + "published_at": "2026-02-19T13:35:59.399Z", "metrics": { "org_count": 5, "project_count": 324, "avg_projects_per_org": 64.8, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { "slug": "python-software-foundation", "name": "Python Software Foundation", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/python-software-foundation.webp", - "category": "Science and medicine", + "category": "End user applications", "total_projects": 277, "is_currently_active": true, "active_years": [ @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -135,11 +136,16 @@ "year": 2025, "org_count": 1, "project_count": 17 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.084Z" + "generated_at": "2026-02-19T13:35:59.399Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/squeak.json b/new-api-details/tech-stack/squeak.json index e4f766b9..4355ed1e 100644 --- a/new-api-details/tech-stack/squeak.json +++ b/new-api-details/tech-stack/squeak.json @@ -1,13 +1,13 @@ { "slug": "squeak", "name": "squeak", - "published_at": "2026-01-24T21:33:12.432Z", + "published_at": "2026-02-19T13:35:59.885Z", "metrics": { "org_count": 1, "project_count": 32, "avg_projects_per_org": 32, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -22,7 +22,8 @@ 2019, 2021, 2023, - 2025 + 2025, + 2026 ] } ], @@ -77,11 +78,16 @@ "year": 2025, "org_count": 1, "project_count": 8 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.432Z" + "generated_at": "2026-02-19T13:35:59.885Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/ssh.json b/new-api-details/tech-stack/ssh.json index f2d333fd..f92fcf58 100644 --- a/new-api-details/tech-stack/ssh.json +++ b/new-api-details/tech-stack/ssh.json @@ -1,13 +1,13 @@ { "slug": "ssh", "name": "ssh", - "published_at": "2026-01-24T21:33:12.561Z", + "published_at": "2026-02-19T13:35:59.794Z", "metrics": { "org_count": 1, "project_count": 6, "avg_projects_per_org": 6, "first_year_used": 2022, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -21,7 +21,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -76,11 +77,16 @@ "year": 2025, "org_count": 1, "project_count": 1 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.561Z" + "generated_at": "2026-02-19T13:35:59.794Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/standards.json b/new-api-details/tech-stack/standards.json index 81d0e6e3..bff8d161 100644 --- a/new-api-details/tech-stack/standards.json +++ b/new-api-details/tech-stack/standards.json @@ -1,13 +1,13 @@ { "slug": "standards", "name": "standards", - "published_at": "2026-01-24T21:33:12.399Z", + "published_at": "2026-02-19T13:35:59.871Z", "metrics": { "org_count": 1, "project_count": 101, "avg_projects_per_org": 101, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -82,11 +83,16 @@ "year": 2025, "org_count": 1, "project_count": 9 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.399Z" + "generated_at": "2026-02-19T13:35:59.871Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/static-analysis.json b/new-api-details/tech-stack/static-analysis.json index b78554a5..f5397b0f 100644 --- a/new-api-details/tech-stack/static-analysis.json +++ b/new-api-details/tech-stack/static-analysis.json @@ -1,13 +1,13 @@ { "slug": "static-analysis", "name": "static analysis", - "published_at": "2026-01-24T21:33:12.076Z", + "published_at": "2026-02-19T13:35:59.385Z", "metrics": { "org_count": 1, "project_count": 32, "avg_projects_per_org": 32, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -25,7 +25,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -80,11 +81,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.076Z" + "generated_at": "2026-02-19T13:35:59.385Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/statistics.json b/new-api-details/tech-stack/statistics.json index 4c26beb9..4e9b816d 100644 --- a/new-api-details/tech-stack/statistics.json +++ b/new-api-details/tech-stack/statistics.json @@ -1,7 +1,7 @@ { "slug": "statistics", "name": "statistics", - "published_at": "2026-01-24T21:33:12.366Z", + "published_at": "2026-02-19T13:35:59.817Z", "metrics": { "org_count": 1, "project_count": 3, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.366Z" + "generated_at": "2026-02-19T13:35:59.817Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/streaming.json b/new-api-details/tech-stack/streaming.json index eb098d65..69713720 100644 --- a/new-api-details/tech-stack/streaming.json +++ b/new-api-details/tech-stack/streaming.json @@ -1,7 +1,7 @@ { "slug": "streaming", "name": "streaming", - "published_at": "2026-01-24T21:33:12.092Z", + "published_at": "2026-02-19T13:35:59.413Z", "metrics": { "org_count": 1, "project_count": 18, @@ -76,11 +76,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.092Z" + "generated_at": "2026-02-19T13:35:59.413Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/streamlit.json b/new-api-details/tech-stack/streamlit.json new file mode 100644 index 00000000..9ab9ab4f --- /dev/null +++ b/new-api-details/tech-stack/streamlit.json @@ -0,0 +1,89 @@ +{ + "slug": "streamlit", + "name": "Streamlit", + "published_at": "2026-02-19T13:35:59.865Z", + "metrics": { + "org_count": 1, + "project_count": 2, + "avg_projects_per_org": 2, + "first_year_used": 2025, + "latest_year_used": 2026 + }, + "organizations": [ + { + "slug": "openms", + "name": "OpenMS", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/openms.webp", + "category": "Science and medicine", + "total_projects": 2, + "is_currently_active": true, + "active_years": [ + 2025, + 2026 + ] + } + ], + "charts": { + "popularity_by_year": [ + { + "year": 2016, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2017, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2018, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2019, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2020, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2021, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2022, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2023, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2024, + "org_count": 0, + "project_count": 0 + }, + { + "year": 2025, + "org_count": 1, + "project_count": 2 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 + } + ] + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:35:59.865Z" + } +} \ No newline at end of file diff --git a/new-api-details/tech-stack/subtitles.json b/new-api-details/tech-stack/subtitles.json index da7f15bb..df8c8e6e 100644 --- a/new-api-details/tech-stack/subtitles.json +++ b/new-api-details/tech-stack/subtitles.json @@ -1,13 +1,13 @@ { "slug": "subtitles", "name": "subtitles", - "published_at": "2026-01-24T21:33:12.142Z", + "published_at": "2026-02-19T13:35:59.506Z", "metrics": { "org_count": 1, "project_count": 80, "avg_projects_per_org": 80, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -82,11 +83,16 @@ "year": 2025, "org_count": 1, "project_count": 10 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.142Z" + "generated_at": "2026-02-19T13:35:59.506Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/sunit.json b/new-api-details/tech-stack/sunit.json index ab2c14c1..c8fdeaae 100644 --- a/new-api-details/tech-stack/sunit.json +++ b/new-api-details/tech-stack/sunit.json @@ -1,13 +1,13 @@ { "slug": "sunit", "name": "SUnit", - "published_at": "2026-01-24T21:33:12.433Z", + "published_at": "2026-02-19T13:35:59.887Z", "metrics": { "org_count": 1, "project_count": 32, "avg_projects_per_org": 32, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -22,7 +22,8 @@ 2019, 2021, 2023, - 2025 + 2025, + 2026 ] } ], @@ -77,11 +78,16 @@ "year": 2025, "org_count": 1, "project_count": 8 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.433Z" + "generated_at": "2026-02-19T13:35:59.887Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/supercollider.json b/new-api-details/tech-stack/supercollider.json index 6ff0cd50..63cec9fa 100644 --- a/new-api-details/tech-stack/supercollider.json +++ b/new-api-details/tech-stack/supercollider.json @@ -1,7 +1,7 @@ { "slug": "supercollider", "name": "supercollider", - "published_at": "2026-01-24T21:33:12.483Z", + "published_at": "2026-02-19T13:35:59.941Z", "metrics": { "org_count": 1, "project_count": 12, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/society-for-arts-and-technology-sat.webp", "category": "Media", "total_projects": 12, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2023, @@ -75,11 +75,16 @@ "year": 2025, "org_count": 1, "project_count": 4 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.483Z" + "generated_at": "2026-02-19T13:35:59.942Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/svelte.json b/new-api-details/tech-stack/svelte.json index 7b3c808d..67ad2a41 100644 --- a/new-api-details/tech-stack/svelte.json +++ b/new-api-details/tech-stack/svelte.json @@ -1,7 +1,7 @@ { "slug": "svelte", "name": "svelte", - "published_at": "2026-01-24T21:33:12.375Z", + "published_at": "2026-02-19T13:35:59.808Z", "metrics": { "org_count": 1, "project_count": 5, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.375Z" + "generated_at": "2026-02-19T13:35:59.808Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/svg.json b/new-api-details/tech-stack/svg.json index 888e0ab1..658d170d 100644 --- a/new-api-details/tech-stack/svg.json +++ b/new-api-details/tech-stack/svg.json @@ -1,7 +1,7 @@ { "slug": "svg", "name": "svg", - "published_at": "2026-01-24T21:33:12.305Z", + "published_at": "2026-02-19T13:35:59.717Z", "metrics": { "org_count": 2, "project_count": 42, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/inkscape.webp", "category": "End user applications", "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -99,11 +99,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.305Z" + "generated_at": "2026-02-19T13:35:59.717Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/swift.json b/new-api-details/tech-stack/swift.json index fb92516a..3555e6ed 100644 --- a/new-api-details/tech-stack/swift.json +++ b/new-api-details/tech-stack/swift.json @@ -1,13 +1,13 @@ { "slug": "swift", "name": "swift", - "published_at": "2026-01-24T21:33:12.065Z", + "published_at": "2026-02-19T13:35:59.414Z", "metrics": { "org_count": 7, "project_count": 305, "avg_projects_per_org": 43.6, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -46,7 +47,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -65,7 +67,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -83,7 +86,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -180,11 +184,16 @@ "year": 2025, "org_count": 4, "project_count": 37 + }, + { + "year": 2026, + "org_count": 4, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.065Z" + "generated_at": "2026-02-19T13:35:59.414Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/swig.json b/new-api-details/tech-stack/swig.json index ae7f58a3..4e9cd0ef 100644 --- a/new-api-details/tech-stack/swig.json +++ b/new-api-details/tech-stack/swig.json @@ -1,13 +1,13 @@ { "slug": "swig", "name": "swig", - "published_at": "2026-01-24T21:33:12.151Z", + "published_at": "2026-02-19T13:35:59.524Z", "metrics": { "org_count": 3, "project_count": 83, "avg_projects_per_org": 27.7, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -110,11 +111,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.151Z" + "generated_at": "2026-02-19T13:35:59.524Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/symfony.json b/new-api-details/tech-stack/symfony.json index a7575a47..c6f98cbd 100644 --- a/new-api-details/tech-stack/symfony.json +++ b/new-api-details/tech-stack/symfony.json @@ -1,13 +1,13 @@ { "slug": "symfony", "name": "symfony", - "published_at": "2026-01-24T21:33:12.218Z", + "published_at": "2026-02-19T13:35:59.604Z", "metrics": { "org_count": 4, "project_count": 129, "avg_projects_per_org": 32.3, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -46,7 +47,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -124,11 +126,16 @@ "year": 2025, "org_count": 2, "project_count": 14 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.218Z" + "generated_at": "2026-02-19T13:35:59.604Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/syntaxnet.json b/new-api-details/tech-stack/syntaxnet.json index f2ebd2ba..c29037f5 100644 --- a/new-api-details/tech-stack/syntaxnet.json +++ b/new-api-details/tech-stack/syntaxnet.json @@ -1,7 +1,7 @@ { "slug": "syntaxnet", "name": "syntaxnet", - "published_at": "2026-01-24T21:33:12.459Z", + "published_at": "2026-02-19T13:35:59.918Z", "metrics": { "org_count": 1, "project_count": 88, @@ -81,11 +81,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.459Z" + "generated_at": "2026-02-19T13:35:59.918Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/synthesis.json b/new-api-details/tech-stack/synthesis.json index 57135939..19878261 100644 --- a/new-api-details/tech-stack/synthesis.json +++ b/new-api-details/tech-stack/synthesis.json @@ -1,13 +1,13 @@ { "slug": "synthesis", "name": "synthesis", - "published_at": "2026-01-24T21:33:12.254Z", + "published_at": "2026-02-19T13:35:59.642Z", "metrics": { "org_count": 1, "project_count": 60, "avg_projects_per_org": 60, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -82,11 +83,16 @@ "year": 2025, "org_count": 1, "project_count": 6 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.254Z" + "generated_at": "2026-02-19T13:35:59.642Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/sysstat.json b/new-api-details/tech-stack/sysstat.json index 4bbb2633..92054637 100644 --- a/new-api-details/tech-stack/sysstat.json +++ b/new-api-details/tech-stack/sysstat.json @@ -1,7 +1,7 @@ { "slug": "sysstat", "name": "sysstat", - "published_at": "2026-01-24T21:33:12.429Z", + "published_at": "2026-02-19T13:35:59.882Z", "metrics": { "org_count": 1, "project_count": 19, @@ -78,11 +78,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.429Z" + "generated_at": "2026-02-19T13:35:59.882Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/systemonchip.json b/new-api-details/tech-stack/systemonchip.json index fe8d0b3e..41eaa13c 100644 --- a/new-api-details/tech-stack/systemonchip.json +++ b/new-api-details/tech-stack/systemonchip.json @@ -1,7 +1,7 @@ { "slug": "systemonchip", "name": "systemonchip", - "published_at": "2026-01-24T21:33:12.382Z", + "published_at": "2026-02-19T13:35:59.819Z", "metrics": { "org_count": 1, "project_count": 12, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/micro-electronics-research-lab-uitu.webp", "category": "Other", "total_projects": 12, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2023, @@ -76,11 +76,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.382Z" + "generated_at": "2026-02-19T13:35:59.819Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/systemverilog.json b/new-api-details/tech-stack/systemverilog.json index aa90476c..3e972864 100644 --- a/new-api-details/tech-stack/systemverilog.json +++ b/new-api-details/tech-stack/systemverilog.json @@ -1,7 +1,7 @@ { "slug": "systemverilog", "name": "systemverilog", - "published_at": "2026-01-24T21:33:12.157Z", + "published_at": "2026-02-19T13:35:59.538Z", "metrics": { "org_count": 2, "project_count": 22, @@ -88,11 +88,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.157Z" + "generated_at": "2026-02-19T13:35:59.538Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/tcl-tk.json b/new-api-details/tech-stack/tcl-tk.json index f2daf9a0..610ffacf 100644 --- a/new-api-details/tech-stack/tcl-tk.json +++ b/new-api-details/tech-stack/tcl-tk.json @@ -1,13 +1,13 @@ { "slug": "tcl-tk", "name": "tcl/tk", - "published_at": "2026-01-24T21:33:12.113Z", + "published_at": "2026-02-19T13:35:59.490Z", "metrics": { "org_count": 1, "project_count": 73, "avg_projects_per_org": 73, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -82,11 +83,16 @@ "year": 2025, "org_count": 1, "project_count": 6 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.113Z" + "generated_at": "2026-02-19T13:35:59.490Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/tcl.json b/new-api-details/tech-stack/tcl.json index ff787898..36f75a2a 100644 --- a/new-api-details/tech-stack/tcl.json +++ b/new-api-details/tech-stack/tcl.json @@ -1,13 +1,13 @@ { "slug": "tcl", "name": "tcl", - "published_at": "2026-01-24T21:33:12.112Z", + "published_at": "2026-02-19T13:35:59.490Z", "metrics": { - "org_count": 2, + "org_count": 3, "project_count": 80, - "avg_projects_per_org": 40, + "avg_projects_per_org": 26.7, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -43,6 +44,17 @@ 2019, 2020 ] + }, + { + "slug": "the-openroad-initiative", + "name": "The OpenROAD Initiative", + "logo_url": "https://summerofcode.withgoogle.com/media/org/the-openroad-initiative/wsxrroe08v4rdaga-360.png", + "category": "Infrastructure and cloud", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] } ], "charts": { @@ -96,11 +108,16 @@ "year": 2025, "org_count": 1, "project_count": 6 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.112Z" + "generated_at": "2026-02-19T13:35:59.490Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/tcp-udp.json b/new-api-details/tech-stack/tcp-udp.json index 6f44ae50..7ef72de1 100644 --- a/new-api-details/tech-stack/tcp-udp.json +++ b/new-api-details/tech-stack/tcp-udp.json @@ -1,13 +1,13 @@ { "slug": "tcp-udp", "name": "tcp/udp", - "published_at": "2026-01-24T21:33:12.412Z", + "published_at": "2026-02-19T13:35:59.854Z", "metrics": { "org_count": 1, "project_count": 4, "avg_projects_per_org": 4, "first_year_used": 2022, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -19,7 +19,8 @@ "is_currently_active": true, "active_years": [ 2022, - 2025 + 2025, + 2026 ] } ], @@ -74,11 +75,16 @@ "year": 2025, "org_count": 1, "project_count": 2 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.412Z" + "generated_at": "2026-02-19T13:35:59.854Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/tcp.json b/new-api-details/tech-stack/tcp.json index 9fe5d50a..b6b99268 100644 --- a/new-api-details/tech-stack/tcp.json +++ b/new-api-details/tech-stack/tcp.json @@ -1,7 +1,7 @@ { "slug": "tcp", "name": "tcp", - "published_at": "2026-01-24T21:33:12.480Z", + "published_at": "2026-02-19T13:35:59.939Z", "metrics": { "org_count": 1, "project_count": 1, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.480Z" + "generated_at": "2026-02-19T13:35:59.939Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/technical-writing.json b/new-api-details/tech-stack/technical-writing.json index 33fe3aa2..92ffcd1e 100644 --- a/new-api-details/tech-stack/technical-writing.json +++ b/new-api-details/tech-stack/technical-writing.json @@ -1,7 +1,7 @@ { "slug": "technical-writing", "name": "Technical writing", - "published_at": "2026-01-24T21:33:12.460Z", + "published_at": "2026-02-19T13:35:59.919Z", "metrics": { "org_count": 1, "project_count": 4, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.460Z" + "generated_at": "2026-02-19T13:35:59.919Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/tekton.json b/new-api-details/tech-stack/tekton.json index 5b887f06..4a3115d6 100644 --- a/new-api-details/tech-stack/tekton.json +++ b/new-api-details/tech-stack/tekton.json @@ -1,13 +1,13 @@ { "slug": "tekton", "name": "tekton", - "published_at": "2026-01-24T21:33:12.195Z", + "published_at": "2026-02-19T13:35:59.566Z", "metrics": { - "org_count": 1, + "org_count": 2, "project_count": 9, - "avg_projects_per_org": 9, + "avg_projects_per_org": 4.5, "first_year_used": 2020, - "latest_year_used": 2021 + "latest_year_used": 2026 }, "organizations": [ { @@ -21,6 +21,17 @@ 2020, 2021 ] + }, + { + "slug": "konflux", + "name": "Konflux", + "logo_url": "https://summerofcode.withgoogle.com/media/org/konflux/7znpk8j83biro6rn.png", + "category": "Infrastructure and cloud", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] } ], "charts": { @@ -74,11 +85,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.195Z" + "generated_at": "2026-02-19T13:35:59.566Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/templates.json b/new-api-details/tech-stack/templates.json index f47900c0..e731f9d7 100644 --- a/new-api-details/tech-stack/templates.json +++ b/new-api-details/tech-stack/templates.json @@ -1,7 +1,7 @@ { "slug": "templates", "name": "templates", - "published_at": "2026-01-24T21:33:12.565Z", + "published_at": "2026-02-19T13:35:59.825Z", "metrics": { "org_count": 1, "project_count": 60, @@ -81,11 +81,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.565Z" + "generated_at": "2026-02-19T13:35:59.825Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/tensorflow.json b/new-api-details/tech-stack/tensorflow.json index 93deb36c..971f858b 100644 --- a/new-api-details/tech-stack/tensorflow.json +++ b/new-api-details/tech-stack/tensorflow.json @@ -1,13 +1,13 @@ { "slug": "tensorflow", "name": "tensorflow", - "published_at": "2026-01-24T21:33:12.121Z", + "published_at": "2026-02-19T13:35:59.470Z", "metrics": { "org_count": 20, "project_count": 603, "avg_projects_per_org": 30.2, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -80,7 +81,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -89,7 +91,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/beagleboardorg.webp", "category": "Science and medicine", "total_projects": 44, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -109,7 +111,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/department-of-biomedical-informatics-emory-university.webp", "category": "Security", "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2021, 2022, @@ -128,7 +130,8 @@ "active_years": [ 2020, 2024, - 2025 + 2025, + 2026 ] }, { @@ -149,11 +152,12 @@ "slug": "c2si", "name": "C2SI", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/c2si.webp", - "category": "Security", + "category": "End user applications", "total_projects": 12, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ - 2024 + 2024, + 2026 ] }, { @@ -166,7 +170,8 @@ "active_years": [ 2018, 2022, - 2025 + 2025, + 2026 ] }, { @@ -337,11 +342,16 @@ "year": 2025, "org_count": 6, "project_count": 57 + }, + { + "year": 2026, + "org_count": 5, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.121Z" + "generated_at": "2026-02-19T13:35:59.470Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/terminal-kit.json b/new-api-details/tech-stack/terminal-kit.json index fbaf2709..b7e9c0b8 100644 --- a/new-api-details/tech-stack/terminal-kit.json +++ b/new-api-details/tech-stack/terminal-kit.json @@ -1,13 +1,13 @@ { "slug": "terminal-kit", "name": "terminal-kit", - "published_at": "2026-01-24T21:33:12.336Z", + "published_at": "2026-02-19T13:35:59.754Z", "metrics": { "org_count": 1, "project_count": 17, "avg_projects_per_org": 17, "first_year_used": 2020, - "latest_year_used": 2024 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,12 +16,13 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/joplin.webp", "category": "End user applications", "total_projects": 17, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2020, 2021, 2022, - 2024 + 2024, + 2026 ] } ], @@ -76,11 +77,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.336Z" + "generated_at": "2026-02-19T13:35:59.754Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/terraform.json b/new-api-details/tech-stack/terraform.json index 9cde55cf..365e95a4 100644 --- a/new-api-details/tech-stack/terraform.json +++ b/new-api-details/tech-stack/terraform.json @@ -1,13 +1,13 @@ { "slug": "terraform", "name": "terraform", - "published_at": "2026-01-24T21:33:12.209Z", + "published_at": "2026-02-19T13:35:59.586Z", "metrics": { "org_count": 2, "project_count": 10, "avg_projects_per_org": 5, "first_year_used": 2019, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -19,7 +19,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -86,11 +87,16 @@ "year": 2025, "org_count": 1, "project_count": 4 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.209Z" + "generated_at": "2026-02-19T13:35:59.586Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/testing.json b/new-api-details/tech-stack/testing.json index 56c35421..adf4b387 100644 --- a/new-api-details/tech-stack/testing.json +++ b/new-api-details/tech-stack/testing.json @@ -1,13 +1,13 @@ { "slug": "testing", "name": "Testing", - "published_at": "2026-01-24T21:33:12.568Z", + "published_at": "2026-02-19T13:35:59.867Z", "metrics": { "org_count": 1, "project_count": 52, "avg_projects_per_org": 52, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 7 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.568Z" + "generated_at": "2026-02-19T13:35:59.867Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/text-mining.json b/new-api-details/tech-stack/text-mining.json index 6318be0c..c6f7e404 100644 --- a/new-api-details/tech-stack/text-mining.json +++ b/new-api-details/tech-stack/text-mining.json @@ -1,7 +1,7 @@ { "slug": "text-mining", "name": "text mining", - "published_at": "2026-01-24T21:33:12.512Z", + "published_at": "2026-02-19T13:35:59.980Z", "metrics": { "org_count": 1, "project_count": 1, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.512Z" + "generated_at": "2026-02-19T13:35:59.980Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/textual.json b/new-api-details/tech-stack/textual.json index 3f5724ed..6e2bb215 100644 --- a/new-api-details/tech-stack/textual.json +++ b/new-api-details/tech-stack/textual.json @@ -1,7 +1,7 @@ { "slug": "textual", "name": "textual", - "published_at": "2026-01-24T21:33:12.489Z", + "published_at": "2026-02-19T13:35:59.951Z", "metrics": { "org_count": 1, "project_count": 2, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.489Z" + "generated_at": "2026-02-19T13:35:59.951Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/tla.json b/new-api-details/tech-stack/tla.json index 5327c336..84bfd193 100644 --- a/new-api-details/tech-stack/tla.json +++ b/new-api-details/tech-stack/tla.json @@ -1,7 +1,7 @@ { "slug": "tla", "name": "tla+", - "published_at": "2026-01-24T21:33:12.498Z", + "published_at": "2026-02-19T13:36:00.038Z", "metrics": { "org_count": 1, "project_count": 1, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.498Z" + "generated_at": "2026-02-19T13:36:00.038Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/tls.json b/new-api-details/tech-stack/tls.json index b8463f6d..c8b8a9da 100644 --- a/new-api-details/tech-stack/tls.json +++ b/new-api-details/tech-stack/tls.json @@ -1,7 +1,7 @@ { "slug": "tls", "name": "TLS", - "published_at": "2026-01-24T21:33:12.287Z", + "published_at": "2026-02-19T13:35:59.687Z", "metrics": { "org_count": 1, "project_count": 2, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.287Z" + "generated_at": "2026-02-19T13:35:59.687Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/tokio-rs.json b/new-api-details/tech-stack/tokio-rs.json index 0cc81583..c823f63d 100644 --- a/new-api-details/tech-stack/tokio-rs.json +++ b/new-api-details/tech-stack/tokio-rs.json @@ -1,7 +1,7 @@ { "slug": "tokio-rs", "name": "tokio_rs", - "published_at": "2026-01-24T21:33:12.526Z", + "published_at": "2026-02-19T13:36:00.054Z", "metrics": { "org_count": 1, "project_count": 1, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.526Z" + "generated_at": "2026-02-19T13:36:00.054Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/torch.json b/new-api-details/tech-stack/torch.json index a0eaf908..8d11b47d 100644 --- a/new-api-details/tech-stack/torch.json +++ b/new-api-details/tech-stack/torch.json @@ -1,7 +1,7 @@ { "slug": "torch", "name": "torch", - "published_at": "2026-01-24T21:33:12.193Z", + "published_at": "2026-02-19T13:35:59.553Z", "metrics": { "org_count": 1, "project_count": 28, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cloudcv.webp", "category": "Web", "total_projects": 28, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -81,11 +81,16 @@ "year": 2025, "org_count": 1, "project_count": 3 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.193Z" + "generated_at": "2026-02-19T13:35:59.553Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/twig.json b/new-api-details/tech-stack/twig.json index 6460c53e..bd38c24c 100644 --- a/new-api-details/tech-stack/twig.json +++ b/new-api-details/tech-stack/twig.json @@ -1,13 +1,13 @@ { "slug": "twig", "name": "twig", - "published_at": "2026-01-24T21:33:12.244Z", + "published_at": "2026-02-19T13:35:59.641Z", "metrics": { "org_count": 1, "project_count": 42, "avg_projects_per_org": 42, "first_year_used": 2018, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -25,7 +25,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -80,11 +81,16 @@ "year": 2025, "org_count": 1, "project_count": 10 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.244Z" + "generated_at": "2026-02-19T13:35:59.641Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/twisted.json b/new-api-details/tech-stack/twisted.json index f0f41d05..46b1eb2a 100644 --- a/new-api-details/tech-stack/twisted.json +++ b/new-api-details/tech-stack/twisted.json @@ -1,7 +1,7 @@ { "slug": "twisted", "name": "twisted", - "published_at": "2026-01-24T21:33:12.351Z", + "published_at": "2026-02-19T13:35:59.786Z", "metrics": { "org_count": 1, "project_count": 2, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.351Z" + "generated_at": "2026-02-19T13:35:59.786Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/type-systems.json b/new-api-details/tech-stack/type-systems.json index d217483e..461b5c6f 100644 --- a/new-api-details/tech-stack/type-systems.json +++ b/new-api-details/tech-stack/type-systems.json @@ -1,7 +1,7 @@ { "slug": "type-systems", "name": "type systems", - "published_at": "2026-01-24T21:33:12.183Z", + "published_at": "2026-02-19T13:35:59.536Z", "metrics": { "org_count": 1, "project_count": 17, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/checker-framework.webp", "category": "Security", "total_projects": 17, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2017, 2018, @@ -77,11 +77,16 @@ "year": 2025, "org_count": 1, "project_count": 2 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.183Z" + "generated_at": "2026-02-19T13:35:59.536Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/typescript.json b/new-api-details/tech-stack/typescript.json index d480da79..402f057e 100644 --- a/new-api-details/tech-stack/typescript.json +++ b/new-api-details/tech-stack/typescript.json @@ -1,13 +1,13 @@ { "slug": "typescript", "name": "typescript", - "published_at": "2026-01-24T21:33:12.108Z", + "published_at": "2026-02-19T13:35:59.450Z", "metrics": { - "org_count": 31, - "project_count": 822, - "avg_projects_per_org": 26.5, + "org_count": 33, + "project_count": 825, + "avg_projects_per_org": 25, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -46,7 +47,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -66,7 +68,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -84,7 +87,8 @@ 2021, 2022, 2023, - 2025 + 2025, + 2026 ] }, { @@ -104,7 +108,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -113,7 +118,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/google-deepmind.webp", "category": "Artificial Intelligence", "total_projects": 45, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2025 ] @@ -132,7 +137,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -141,7 +147,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-palisadoes-foundation.webp", "category": "Social and communication", "total_projects": 36, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2021, 2022, @@ -165,7 +171,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -178,7 +185,8 @@ "active_years": [ 2020, 2024, - 2025 + 2025, + 2026 ] }, { @@ -195,7 +203,8 @@ 2021, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -204,12 +213,13 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/joplin.webp", "category": "End user applications", "total_projects": 17, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2020, 2021, 2022, - 2024 + 2024, + 2026 ] }, { @@ -218,7 +228,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/asyncapi.webp", "category": "Programming languages", "total_projects": 15, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2024, 2025 @@ -233,7 +243,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -248,7 +259,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] }, { @@ -262,7 +274,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -277,7 +290,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -292,7 +306,8 @@ 2019, 2020, 2024, - 2025 + 2025, + 2026 ] }, { @@ -304,7 +319,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -316,7 +332,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -352,7 +369,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/electron.webp", "category": "End user applications", "total_projects": 4, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2024, @@ -365,10 +382,11 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/neutralinojs.webp", "category": "Web", "total_projects": 4, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2022, - 2024 + 2024, + 2026 ] }, { @@ -383,6 +401,19 @@ 2019 ] }, + { + "slug": "api-dash", + "name": "API Dash", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/api-dash.webp", + "category": "Development tools", + "total_projects": 3, + "is_currently_active": true, + "active_years": [ + 2024, + 2025, + 2026 + ] + }, { "slug": "moira", "name": "Moira", @@ -439,6 +470,17 @@ 2022 ] }, + { + "slug": "gemini-cli", + "name": "Gemini CLI", + "logo_url": "https://summerofcode.withgoogle.com/media/org/gemini-cli/mhi8cx7tyjt91i6n-360.png", + "category": "Development tools", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + }, { "slug": "grr-rapid-response", "name": "GRR Rapid Response", @@ -495,18 +537,23 @@ }, { "year": 2024, - "org_count": 22, - "project_count": 130 + "org_count": 23, + "project_count": 131 }, { "year": 2025, + "org_count": 21, + "project_count": 167 + }, + { + "year": 2026, "org_count": 20, - "project_count": 165 + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.108Z" + "generated_at": "2026-02-19T13:35:59.450Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/uefi.json b/new-api-details/tech-stack/uefi.json index dc4a9375..153f3c51 100644 --- a/new-api-details/tech-stack/uefi.json +++ b/new-api-details/tech-stack/uefi.json @@ -1,7 +1,7 @@ { "slug": "uefi", "name": "uefi", - "published_at": "2026-01-24T21:33:12.526Z", + "published_at": "2026-02-19T13:36:00.024Z", "metrics": { "org_count": 1, "project_count": 8, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.526Z" + "generated_at": "2026-02-19T13:36:00.024Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/ui-automation.json b/new-api-details/tech-stack/ui-automation.json index e7e66c6d..b4882b7f 100644 --- a/new-api-details/tech-stack/ui-automation.json +++ b/new-api-details/tech-stack/ui-automation.json @@ -1,7 +1,7 @@ { "slug": "ui-automation", "name": "ui automation", - "published_at": "2026-01-24T21:33:12.391Z", + "published_at": "2026-02-19T13:35:59.840Z", "metrics": { "org_count": 1, "project_count": 2, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.391Z" + "generated_at": "2026-02-19T13:35:59.840Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/ui-ux.json b/new-api-details/tech-stack/ui-ux.json index 66493ed2..2bd335b7 100644 --- a/new-api-details/tech-stack/ui-ux.json +++ b/new-api-details/tech-stack/ui-ux.json @@ -1,13 +1,13 @@ { "slug": "ui-ux", "name": "ui/ux", - "published_at": "2026-01-24T21:33:12.075Z", + "published_at": "2026-02-19T13:35:59.450Z", "metrics": { "org_count": 3, "project_count": 12, "avg_projects_per_org": 4, "first_year_used": 2021, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -19,7 +19,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -31,7 +32,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -97,11 +99,16 @@ "year": 2025, "org_count": 2, "project_count": 6 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.075Z" + "generated_at": "2026-02-19T13:35:59.450Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/unicode.json b/new-api-details/tech-stack/unicode.json index eb8e5b13..5b643228 100644 --- a/new-api-details/tech-stack/unicode.json +++ b/new-api-details/tech-stack/unicode.json @@ -1,7 +1,7 @@ { "slug": "unicode", "name": "unicode", - "published_at": "2026-01-24T21:33:12.529Z", + "published_at": "2026-02-19T13:36:00.066Z", "metrics": { "org_count": 2, "project_count": 24, @@ -31,7 +31,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/unicode-inc.webp", "category": "Programming languages", "total_projects": 9, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2024, 2025 @@ -89,11 +89,16 @@ "year": 2025, "org_count": 1, "project_count": 6 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.529Z" + "generated_at": "2026-02-19T13:36:00.066Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/unix.json b/new-api-details/tech-stack/unix.json index a88f7b3d..a84bd1e5 100644 --- a/new-api-details/tech-stack/unix.json +++ b/new-api-details/tech-stack/unix.json @@ -1,13 +1,13 @@ { "slug": "unix", "name": "unix", - "published_at": "2026-01-24T21:33:12.294Z", + "published_at": "2026-02-19T13:35:59.704Z", "metrics": { "org_count": 4, "project_count": 69, "avg_projects_per_org": 17.3, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -36,7 +37,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/haiku.webp", "category": "Operating systems", "total_projects": 26, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, @@ -45,7 +46,8 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -124,11 +126,16 @@ "year": 2025, "org_count": 1, "project_count": 3 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.294Z" + "generated_at": "2026-02-19T13:35:59.704Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/unreal-engine.json b/new-api-details/tech-stack/unreal-engine.json index d5bfbabd..57446676 100644 --- a/new-api-details/tech-stack/unreal-engine.json +++ b/new-api-details/tech-stack/unreal-engine.json @@ -1,7 +1,7 @@ { "slug": "unreal-engine", "name": "unreal engine", - "published_at": "2026-01-24T21:33:12.309Z", + "published_at": "2026-02-19T13:35:59.721Z", "metrics": { "org_count": 1, "project_count": 11, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.309Z" + "generated_at": "2026-02-19T13:35:59.721Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/v4l2.json b/new-api-details/tech-stack/v4l2.json index 0460d272..2ebac295 100644 --- a/new-api-details/tech-stack/v4l2.json +++ b/new-api-details/tech-stack/v4l2.json @@ -1,7 +1,7 @@ { "slug": "v4l2", "name": "v4l2", - "published_at": "2026-01-24T21:33:12.560Z", + "published_at": "2026-02-19T13:35:59.787Z", "metrics": { "org_count": 1, "project_count": 7, @@ -75,11 +75,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.560Z" + "generated_at": "2026-02-19T13:35:59.787Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/va-api.json b/new-api-details/tech-stack/va-api.json index c0eced13..5a97efe4 100644 --- a/new-api-details/tech-stack/va-api.json +++ b/new-api-details/tech-stack/va-api.json @@ -1,7 +1,7 @@ { "slug": "va-api", "name": "va-api", - "published_at": "2026-01-24T21:33:12.313Z", + "published_at": "2026-02-19T13:35:59.725Z", "metrics": { "org_count": 1, "project_count": 12, @@ -78,11 +78,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.313Z" + "generated_at": "2026-02-19T13:35:59.725Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/vaapi.json b/new-api-details/tech-stack/vaapi.json index c446ec57..ab4f4666 100644 --- a/new-api-details/tech-stack/vaapi.json +++ b/new-api-details/tech-stack/vaapi.json @@ -1,7 +1,7 @@ { "slug": "vaapi", "name": "vaapi", - "published_at": "2026-01-24T21:33:12.316Z", + "published_at": "2026-02-19T13:35:59.732Z", "metrics": { "org_count": 1, "project_count": 12, @@ -78,11 +78,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.316Z" + "generated_at": "2026-02-19T13:35:59.732Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/vala.json b/new-api-details/tech-stack/vala.json index edcc0e82..1b4f55ae 100644 --- a/new-api-details/tech-stack/vala.json +++ b/new-api-details/tech-stack/vala.json @@ -1,13 +1,13 @@ { "slug": "vala", "name": "vala", - "published_at": "2026-01-24T21:33:12.263Z", + "published_at": "2026-02-19T13:35:59.672Z", "metrics": { "org_count": 3, "project_count": 131, "avg_projects_per_org": 43.7, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -110,11 +111,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.263Z" + "generated_at": "2026-02-19T13:35:59.672Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/vector-operations.json b/new-api-details/tech-stack/vector-operations.json index 8d5d2d4d..0a2a3812 100644 --- a/new-api-details/tech-stack/vector-operations.json +++ b/new-api-details/tech-stack/vector-operations.json @@ -1,13 +1,13 @@ { "slug": "vector-operations", "name": "Vector Operations", - "published_at": "2026-01-24T21:33:12.448Z", + "published_at": "2026-02-19T13:35:59.904Z", "metrics": { "org_count": 1, "project_count": 7, "avg_projects_per_org": 7, "first_year_used": 2024, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -19,7 +19,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -74,11 +75,16 @@ "year": 2025, "org_count": 1, "project_count": 4 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.448Z" + "generated_at": "2026-02-19T13:35:59.904Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/vectors.json b/new-api-details/tech-stack/vectors.json index 1ca37f34..a9e98e94 100644 --- a/new-api-details/tech-stack/vectors.json +++ b/new-api-details/tech-stack/vectors.json @@ -1,7 +1,7 @@ { "slug": "vectors", "name": "vectors", - "published_at": "2026-01-24T21:33:12.480Z", + "published_at": "2026-02-19T13:35:59.939Z", "metrics": { "org_count": 1, "project_count": 3, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.480Z" + "generated_at": "2026-02-19T13:35:59.939Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/vega-lite.json b/new-api-details/tech-stack/vega-lite.json index bcc278e0..9762a7f2 100644 --- a/new-api-details/tech-stack/vega-lite.json +++ b/new-api-details/tech-stack/vega-lite.json @@ -1,7 +1,7 @@ { "slug": "vega-lite", "name": "vega-lite", - "published_at": "2026-01-24T21:33:12.524Z", + "published_at": "2026-02-19T13:36:00.020Z", "metrics": { "org_count": 1, "project_count": 4, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.524Z" + "generated_at": "2026-02-19T13:36:00.020Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/vega.json b/new-api-details/tech-stack/vega.json index cd73b424..33110a6e 100644 --- a/new-api-details/tech-stack/vega.json +++ b/new-api-details/tech-stack/vega.json @@ -1,7 +1,7 @@ { "slug": "vega", "name": "vega", - "published_at": "2026-01-24T21:33:12.523Z", + "published_at": "2026-02-19T13:36:00.019Z", "metrics": { "org_count": 1, "project_count": 4, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.523Z" + "generated_at": "2026-02-19T13:36:00.019Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/velocity.json b/new-api-details/tech-stack/velocity.json index ac7863ba..02111925 100644 --- a/new-api-details/tech-stack/velocity.json +++ b/new-api-details/tech-stack/velocity.json @@ -1,7 +1,7 @@ { "slug": "velocity", "name": "velocity", - "published_at": "2026-01-24T21:33:12.544Z", + "published_at": "2026-02-19T13:36:00.118Z", "metrics": { "org_count": 1, "project_count": 12, @@ -80,11 +80,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.544Z" + "generated_at": "2026-02-19T13:36:00.118Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/verification.json b/new-api-details/tech-stack/verification.json index 8c11905d..9ee4d7aa 100644 --- a/new-api-details/tech-stack/verification.json +++ b/new-api-details/tech-stack/verification.json @@ -1,7 +1,7 @@ { "slug": "verification", "name": "Verification", - "published_at": "2026-01-24T21:33:12.182Z", + "published_at": "2026-02-19T13:35:59.534Z", "metrics": { "org_count": 1, "project_count": 17, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/checker-framework.webp", "category": "Security", "total_projects": 17, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2017, 2018, @@ -77,11 +77,16 @@ "year": 2025, "org_count": 1, "project_count": 2 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.182Z" + "generated_at": "2026-02-19T13:35:59.534Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/verilog.json b/new-api-details/tech-stack/verilog.json index 4ddbefb1..4d87fd39 100644 --- a/new-api-details/tech-stack/verilog.json +++ b/new-api-details/tech-stack/verilog.json @@ -1,13 +1,13 @@ { "slug": "verilog", "name": "verilog", - "published_at": "2026-01-24T21:33:12.174Z", + "published_at": "2026-02-19T13:35:59.515Z", "metrics": { - "org_count": 5, + "org_count": 6, "project_count": 101, - "avg_projects_per_org": 20.2, + "avg_projects_per_org": 16.8, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -83,6 +84,17 @@ 2020, 2021 ] + }, + { + "slug": "the-openroad-initiative", + "name": "The OpenROAD Initiative", + "logo_url": "https://summerofcode.withgoogle.com/media/org/the-openroad-initiative/wsxrroe08v4rdaga-360.png", + "category": "Infrastructure and cloud", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] } ], "charts": { @@ -136,11 +148,16 @@ "year": 2025, "org_count": 1, "project_count": 6 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.174Z" + "generated_at": "2026-02-19T13:35:59.515Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/vhdl.json b/new-api-details/tech-stack/vhdl.json index 26d720d2..35fa5c43 100644 --- a/new-api-details/tech-stack/vhdl.json +++ b/new-api-details/tech-stack/vhdl.json @@ -1,13 +1,13 @@ { "slug": "vhdl", "name": "vhdl", - "published_at": "2026-01-24T21:33:12.083Z", + "published_at": "2026-02-19T13:35:59.398Z", "metrics": { "org_count": 4, "project_count": 114, "avg_projects_per_org": 28.5, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -127,11 +128,16 @@ "year": 2025, "org_count": 1, "project_count": 6 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.083Z" + "generated_at": "2026-02-19T13:35:59.398Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/video-codecs.json b/new-api-details/tech-stack/video-codecs.json index b49f5167..b936886c 100644 --- a/new-api-details/tech-stack/video-codecs.json +++ b/new-api-details/tech-stack/video-codecs.json @@ -1,13 +1,13 @@ { "slug": "video-codecs", "name": "video codecs", - "published_at": "2026-01-24T21:33:12.482Z", + "published_at": "2026-02-19T13:35:59.941Z", "metrics": { "org_count": 2, "project_count": 94, "avg_projects_per_org": 47, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -93,11 +94,16 @@ "year": 2025, "org_count": 1, "project_count": 15 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.482Z" + "generated_at": "2026-02-19T13:35:59.941Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/video.json b/new-api-details/tech-stack/video.json index 03410f31..b5962cce 100644 --- a/new-api-details/tech-stack/video.json +++ b/new-api-details/tech-stack/video.json @@ -1,13 +1,13 @@ { "slug": "video", "name": "video", - "published_at": "2026-01-24T21:33:12.141Z", + "published_at": "2026-02-19T13:35:59.505Z", "metrics": { "org_count": 3, "project_count": 184, "avg_projects_per_org": 61.3, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -47,7 +48,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -118,11 +120,16 @@ "year": 2025, "org_count": 2, "project_count": 25 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.141Z" + "generated_at": "2026-02-19T13:35:59.505Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/vim.json b/new-api-details/tech-stack/vim.json index 6171e5c4..2e71ea9a 100644 --- a/new-api-details/tech-stack/vim.json +++ b/new-api-details/tech-stack/vim.json @@ -1,13 +1,13 @@ { "slug": "vim", "name": "vim", - "published_at": "2026-01-24T21:33:12.394Z", + "published_at": "2026-02-19T13:35:59.836Z", "metrics": { "org_count": 1, "project_count": 8, "avg_projects_per_org": 8, "first_year_used": 2018, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -21,7 +21,8 @@ 2018, 2019, 2020, - 2025 + 2025, + 2026 ] } ], @@ -76,11 +77,16 @@ "year": 2025, "org_count": 1, "project_count": 3 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.394Z" + "generated_at": "2026-02-19T13:35:59.836Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/virtualization.json b/new-api-details/tech-stack/virtualization.json index d8070f5d..6cf3b686 100644 --- a/new-api-details/tech-stack/virtualization.json +++ b/new-api-details/tech-stack/virtualization.json @@ -1,13 +1,13 @@ { "slug": "virtualization", "name": "virtualization", - "published_at": "2026-01-24T21:33:12.279Z", + "published_at": "2026-02-19T13:35:59.657Z", "metrics": { "org_count": 6, "project_count": 135, "avg_projects_per_org": 22.5, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2021, 2022, 2023, - 2025 + 2025, + 2026 ] }, { @@ -46,7 +47,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -55,7 +57,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/haiku.webp", "category": "Operating systems", "total_projects": 26, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, @@ -64,7 +66,8 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -89,16 +92,17 @@ "slug": "the-libreswan-project", "name": "The Libreswan Project", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-libreswan-project.webp", - "category": "Infrastructure and cloud", + "category": "Security", "total_projects": 10, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, 2019, 2020, 2021, - 2022 + 2022, + 2026 ] }, { @@ -164,11 +168,16 @@ "year": 2025, "org_count": 2, "project_count": 8 + }, + { + "year": 2026, + "org_count": 4, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.279Z" + "generated_at": "2026-02-19T13:35:59.657Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/virtuoso.json b/new-api-details/tech-stack/virtuoso.json index ff018ce7..59c0cedb 100644 --- a/new-api-details/tech-stack/virtuoso.json +++ b/new-api-details/tech-stack/virtuoso.json @@ -1,20 +1,20 @@ { "slug": "virtuoso", "name": "virtuoso", - "published_at": "2026-01-24T21:33:12.410Z", + "published_at": "2026-02-19T13:35:59.852Z", "metrics": { "org_count": 1, "project_count": 70, "avg_projects_per_org": 70, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { "slug": "open-technologies-alliance-gfoss", "name": "Open Technologies Alliance - GFOSS", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-technologies-alliance-gfoss.webp", - "category": "Development tools", + "category": "Science and medicine", "total_projects": 70, "is_currently_active": true, "active_years": [ @@ -25,7 +25,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -80,11 +81,16 @@ "year": 2025, "org_count": 1, "project_count": 9 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.410Z" + "generated_at": "2026-02-19T13:35:59.852Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/vision.json b/new-api-details/tech-stack/vision.json index 70073891..f2ace69d 100644 --- a/new-api-details/tech-stack/vision.json +++ b/new-api-details/tech-stack/vision.json @@ -1,7 +1,7 @@ { "slug": "vision", "name": "vision", - "published_at": "2026-01-24T21:33:12.413Z", + "published_at": "2026-02-19T13:35:59.855Z", "metrics": { "org_count": 2, "project_count": 96, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/opencv.webp", "category": "Media", "total_projects": 93, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -93,11 +93,16 @@ "year": 2025, "org_count": 1, "project_count": 9 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.413Z" + "generated_at": "2026-02-19T13:35:59.855Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/visual-design.json b/new-api-details/tech-stack/visual-design.json index 208e401c..3b1e777a 100644 --- a/new-api-details/tech-stack/visual-design.json +++ b/new-api-details/tech-stack/visual-design.json @@ -1,13 +1,13 @@ { "slug": "visual-design", "name": "visual design", - "published_at": "2026-01-24T21:33:12.377Z", + "published_at": "2026-02-19T13:35:59.810Z", "metrics": { "org_count": 1, "project_count": 2, "avg_projects_per_org": 2, "first_year_used": 2025, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -18,7 +18,8 @@ "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] } ], @@ -73,11 +74,16 @@ "year": 2025, "org_count": 1, "project_count": 2 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.377Z" + "generated_at": "2026-02-19T13:35:59.810Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/visual-studio.json b/new-api-details/tech-stack/visual-studio.json index af8ef610..638e344b 100644 --- a/new-api-details/tech-stack/visual-studio.json +++ b/new-api-details/tech-stack/visual-studio.json @@ -1,13 +1,13 @@ { "slug": "visual-studio", "name": "visual studio", - "published_at": "2026-01-24T21:33:12.143Z", + "published_at": "2026-02-19T13:35:59.506Z", "metrics": { "org_count": 1, "project_count": 80, "avg_projects_per_org": 80, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -82,11 +83,16 @@ "year": 2025, "org_count": 1, "project_count": 10 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.143Z" + "generated_at": "2026-02-19T13:35:59.506Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/visualization.json b/new-api-details/tech-stack/visualization.json index 455022d3..420b278d 100644 --- a/new-api-details/tech-stack/visualization.json +++ b/new-api-details/tech-stack/visualization.json @@ -1,13 +1,13 @@ { "slug": "visualization", "name": "visualization", - "published_at": "2026-01-24T21:33:12.374Z", + "published_at": "2026-02-19T13:35:59.655Z", "metrics": { - "org_count": 2, + "org_count": 3, "project_count": 48, - "avg_projects_per_org": 24, + "avg_projects_per_org": 16, "first_year_used": 2021, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -20,7 +20,8 @@ "active_years": [ 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -33,6 +34,17 @@ "active_years": [ 2021 ] + }, + { + "slug": "gambit-the-package-for-computation-in-game-theory", + "name": "Gambit: The package for computation in game theory", + "logo_url": "https://summerofcode.withgoogle.com/media/org/gambit-the-package-for-computation-in-game-theory/09u5sma4pizmwbqt-360.png", + "category": "Science and medicine", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] } ], "charts": { @@ -86,11 +98,16 @@ "year": 2025, "org_count": 1, "project_count": 17 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.374Z" + "generated_at": "2026-02-19T13:35:59.655Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/vlsi.json b/new-api-details/tech-stack/vlsi.json index c3502cfb..2c5a30f3 100644 --- a/new-api-details/tech-stack/vlsi.json +++ b/new-api-details/tech-stack/vlsi.json @@ -1,13 +1,13 @@ { "slug": "vlsi", "name": "VLSI", - "published_at": "2026-01-24T21:33:12.527Z", + "published_at": "2026-02-19T13:36:00.058Z", "metrics": { "org_count": 1, "project_count": 47, "avg_projects_per_org": 47, "first_year_used": 2023, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -20,7 +20,8 @@ "active_years": [ 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -75,11 +76,16 @@ "year": 2025, "org_count": 1, "project_count": 17 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.527Z" + "generated_at": "2026-02-19T13:36:00.058Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/voctomix.json b/new-api-details/tech-stack/voctomix.json index 895feefc..64c01f94 100644 --- a/new-api-details/tech-stack/voctomix.json +++ b/new-api-details/tech-stack/voctomix.json @@ -1,7 +1,7 @@ { "slug": "voctomix", "name": "voctomix", - "published_at": "2026-01-24T21:33:12.241Z", + "published_at": "2026-02-19T13:35:59.638Z", "metrics": { "org_count": 1, "project_count": 4, @@ -75,11 +75,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.241Z" + "generated_at": "2026-02-19T13:35:59.638Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/vpp.json b/new-api-details/tech-stack/vpp.json index e96f0a62..29807667 100644 --- a/new-api-details/tech-stack/vpp.json +++ b/new-api-details/tech-stack/vpp.json @@ -1,7 +1,7 @@ { "slug": "vpp", "name": "vpp", - "published_at": "2026-01-24T21:33:12.311Z", + "published_at": "2026-02-19T13:35:59.723Z", "metrics": { "org_count": 1, "project_count": 12, @@ -78,11 +78,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.311Z" + "generated_at": "2026-02-19T13:35:59.723Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/vst.json b/new-api-details/tech-stack/vst.json index 1bb5ae58..c732d317 100644 --- a/new-api-details/tech-stack/vst.json +++ b/new-api-details/tech-stack/vst.json @@ -1,7 +1,7 @@ { "slug": "vst", "name": "VST", - "published_at": "2026-01-24T21:33:12.110Z", + "published_at": "2026-02-19T13:35:59.461Z", "metrics": { "org_count": 1, "project_count": 3, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.110Z" + "generated_at": "2026-02-19T13:35:59.461Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/vtk.json b/new-api-details/tech-stack/vtk.json index a92a2047..74b5e717 100644 --- a/new-api-details/tech-stack/vtk.json +++ b/new-api-details/tech-stack/vtk.json @@ -1,13 +1,13 @@ { "slug": "vtk", "name": "Vtk", - "published_at": "2026-01-24T21:33:12.322Z", + "published_at": "2026-02-19T13:35:59.737Z", "metrics": { "org_count": 1, "project_count": 13, "avg_projects_per_org": 13, "first_year_used": 2023, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -20,7 +20,8 @@ "active_years": [ 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -75,11 +76,16 @@ "year": 2025, "org_count": 1, "project_count": 6 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.322Z" + "generated_at": "2026-02-19T13:35:59.737Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/vue.json b/new-api-details/tech-stack/vue.json index 8c713bd2..a3ee832d 100644 --- a/new-api-details/tech-stack/vue.json +++ b/new-api-details/tech-stack/vue.json @@ -1,13 +1,13 @@ { "slug": "vue", "name": "vue", - "published_at": "2026-01-24T21:33:12.154Z", + "published_at": "2026-02-19T13:35:59.526Z", "metrics": { "org_count": 12, "project_count": 412, "avg_projects_per_org": 34.3, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -47,7 +48,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -66,7 +68,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -83,7 +86,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -92,7 +96,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/chaoss.webp", "category": "Data", "total_projects": 29, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2018, 2019, @@ -116,7 +120,8 @@ 2021, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -131,7 +136,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -140,7 +146,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gitlab.webp", "category": "Infrastructure and cloud", "total_projects": 15, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2021, 2022, @@ -154,7 +160,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/internet-health-report.webp", "category": "Science and medicine", "total_projects": 15, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2023, @@ -188,7 +194,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -257,11 +264,16 @@ "year": 2025, "org_count": 10, "project_count": 66 + }, + { + "year": 2026, + "org_count": 7, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.154Z" + "generated_at": "2026-02-19T13:35:59.526Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/vulkan.json b/new-api-details/tech-stack/vulkan.json index 3626911b..1a0d879b 100644 --- a/new-api-details/tech-stack/vulkan.json +++ b/new-api-details/tech-stack/vulkan.json @@ -1,13 +1,13 @@ { "slug": "vulkan", "name": "vulkan", - "published_at": "2026-01-24T21:33:12.093Z", + "published_at": "2026-02-19T13:35:59.416Z", "metrics": { "org_count": 9, "project_count": 134, "avg_projects_per_org": 14.9, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -84,7 +85,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -187,11 +189,16 @@ "year": 2025, "org_count": 2, "project_count": 13 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.093Z" + "generated_at": "2026-02-19T13:35:59.416Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/waf.json b/new-api-details/tech-stack/waf.json index 99c611dc..4a2734bf 100644 --- a/new-api-details/tech-stack/waf.json +++ b/new-api-details/tech-stack/waf.json @@ -1,13 +1,13 @@ { "slug": "waf", "name": "waf", - "published_at": "2026-01-24T21:33:12.386Z", + "published_at": "2026-02-19T13:35:59.830Z", "metrics": { "org_count": 2, "project_count": 49, "avg_projects_per_org": 24.5, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -93,11 +94,16 @@ "year": 2025, "org_count": 1, "project_count": 8 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.386Z" + "generated_at": "2026-02-19T13:35:59.830Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/wasm.json b/new-api-details/tech-stack/wasm.json index 334318af..aa973936 100644 --- a/new-api-details/tech-stack/wasm.json +++ b/new-api-details/tech-stack/wasm.json @@ -1,13 +1,13 @@ { "slug": "wasm", "name": "wasm", - "published_at": "2026-01-24T21:33:12.527Z", + "published_at": "2026-02-19T13:36:00.056Z", "metrics": { "org_count": 1, "project_count": 2, "avg_projects_per_org": 2, "first_year_used": 2025, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -18,7 +18,8 @@ "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] } ], @@ -73,11 +74,16 @@ "year": 2025, "org_count": 1, "project_count": 2 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.527Z" + "generated_at": "2026-02-19T13:36:00.056Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/wayland.json b/new-api-details/tech-stack/wayland.json index a3c63b67..2cbcd514 100644 --- a/new-api-details/tech-stack/wayland.json +++ b/new-api-details/tech-stack/wayland.json @@ -1,7 +1,7 @@ { "slug": "wayland", "name": "wayland", - "published_at": "2026-01-24T21:33:12.535Z", + "published_at": "2026-02-19T13:36:00.073Z", "metrics": { "org_count": 4, "project_count": 29, @@ -33,7 +33,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/waycrate.webp", "category": "End user applications", "total_projects": 7, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2024, 2025 @@ -113,11 +113,16 @@ "year": 2025, "org_count": 1, "project_count": 4 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.535Z" + "generated_at": "2026-02-19T13:36:00.073Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/wdl.json b/new-api-details/tech-stack/wdl.json index 238edfa4..d99ae130 100644 --- a/new-api-details/tech-stack/wdl.json +++ b/new-api-details/tech-stack/wdl.json @@ -1,24 +1,25 @@ { "slug": "wdl", "name": "WDL", - "published_at": "2026-01-24T21:33:12.485Z", + "published_at": "2026-02-19T13:35:59.947Z", "metrics": { "org_count": 1, "project_count": 2, "avg_projects_per_org": 2, "first_year_used": 2025, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { "slug": "st-jude-childrens-research-hospital", "name": "St. Jude Children's Research Hospital", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/st-jude-childrens-research-hospital.webp", - "category": "Programming languages", + "category": "Science and medicine", "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] } ], @@ -73,11 +74,16 @@ "year": 2025, "org_count": 1, "project_count": 2 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.485Z" + "generated_at": "2026-02-19T13:35:59.947Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/web-application-firewall.json b/new-api-details/tech-stack/web-application-firewall.json index 26bc5a35..4631a1c4 100644 --- a/new-api-details/tech-stack/web-application-firewall.json +++ b/new-api-details/tech-stack/web-application-firewall.json @@ -1,7 +1,7 @@ { "slug": "web-application-firewall", "name": "web application firewall", - "published_at": "2026-01-24T21:33:12.386Z", + "published_at": "2026-02-19T13:35:59.831Z", "metrics": { "org_count": 1, "project_count": 3, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.386Z" + "generated_at": "2026-02-19T13:35:59.831Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/web-apps.json b/new-api-details/tech-stack/web-apps.json index 48f1fb7d..ed70786f 100644 --- a/new-api-details/tech-stack/web-apps.json +++ b/new-api-details/tech-stack/web-apps.json @@ -1,13 +1,13 @@ { "slug": "web-apps", "name": "web apps", - "published_at": "2026-01-24T21:33:12.548Z", + "published_at": "2026-02-19T13:35:59.503Z", "metrics": { "org_count": 1, "project_count": 38, "avg_projects_per_org": 38, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -24,7 +24,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -79,11 +80,16 @@ "year": 2025, "org_count": 1, "project_count": 4 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.548Z" + "generated_at": "2026-02-19T13:35:59.503Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/web-bluetooth.json b/new-api-details/tech-stack/web-bluetooth.json index e50fce5b..dacb9d0f 100644 --- a/new-api-details/tech-stack/web-bluetooth.json +++ b/new-api-details/tech-stack/web-bluetooth.json @@ -1,7 +1,7 @@ { "slug": "web-bluetooth", "name": "web bluetooth", - "published_at": "2026-01-24T21:33:12.436Z", + "published_at": "2026-02-19T13:35:59.890Z", "metrics": { "org_count": 1, "project_count": 8, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.436Z" + "generated_at": "2026-02-19T13:35:59.890Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/web-development.json b/new-api-details/tech-stack/web-development.json index d53c89ff..075b1fa7 100644 --- a/new-api-details/tech-stack/web-development.json +++ b/new-api-details/tech-stack/web-development.json @@ -1,13 +1,13 @@ { "slug": "web-development", "name": "web development", - "published_at": "2026-01-24T21:33:12.219Z", + "published_at": "2026-02-19T13:35:59.605Z", "metrics": { "org_count": 8, "project_count": 364, "avg_projects_per_org": 45.5, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -60,7 +60,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -79,7 +80,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -88,7 +90,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/fedora-project.webp", "category": "Operating systems", "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -110,7 +112,8 @@ 2019, 2020, 2024, - 2025 + 2025, + 2026 ] }, { @@ -187,11 +190,16 @@ "year": 2025, "org_count": 4, "project_count": 16 + }, + { + "year": 2026, + "org_count": 3, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.219Z" + "generated_at": "2026-02-19T13:35:59.605Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/web-services.json b/new-api-details/tech-stack/web-services.json index 96ad623c..b9c5d647 100644 --- a/new-api-details/tech-stack/web-services.json +++ b/new-api-details/tech-stack/web-services.json @@ -1,13 +1,13 @@ { "slug": "web-services", "name": "web services", - "published_at": "2026-01-24T21:33:12.047Z", + "published_at": "2026-02-19T13:35:59.374Z", "metrics": { "org_count": 3, "project_count": 83, "avg_projects_per_org": 27.7, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -24,7 +24,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -44,7 +45,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -111,11 +113,16 @@ "year": 2025, "org_count": 2, "project_count": 6 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.047Z" + "generated_at": "2026-02-19T13:35:59.374Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/web.json b/new-api-details/tech-stack/web.json index 88d5fb5d..1b397fe2 100644 --- a/new-api-details/tech-stack/web.json +++ b/new-api-details/tech-stack/web.json @@ -1,13 +1,13 @@ { "slug": "web", "name": "web", - "published_at": "2026-01-24T21:33:12.048Z", + "published_at": "2026-02-19T13:35:59.377Z", "metrics": { "org_count": 11, "project_count": 379, "avg_projects_per_org": 34.5, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -47,7 +48,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -66,7 +68,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -83,7 +86,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -103,7 +107,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -112,14 +117,15 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/submitty.webp", "category": "End user applications", "total_projects": 19, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2018, 2019, 2020, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -128,7 +134,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-tor-project.webp", "category": "Web", "total_projects": 19, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -155,16 +161,17 @@ "slug": "the-libreswan-project", "name": "The Libreswan Project", "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-libreswan-project.webp", - "category": "Infrastructure and cloud", + "category": "Security", "total_projects": 10, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, 2019, 2020, 2021, - 2022 + 2022, + 2026 ] }, { @@ -246,11 +253,16 @@ "year": 2025, "org_count": 6, "project_count": 31 + }, + { + "year": 2026, + "org_count": 7, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.048Z" + "generated_at": "2026-02-19T13:35:59.377Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/webassembly.json b/new-api-details/tech-stack/webassembly.json index b5309016..c4b6f765 100644 --- a/new-api-details/tech-stack/webassembly.json +++ b/new-api-details/tech-stack/webassembly.json @@ -1,13 +1,13 @@ { "slug": "webassembly", "name": "webassembly", - "published_at": "2026-01-24T21:33:12.288Z", + "published_at": "2026-02-19T13:35:59.626Z", "metrics": { "org_count": 5, "project_count": 50, "avg_projects_per_org": 10, "first_year_used": 2018, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -37,7 +37,8 @@ 2019, 2020, 2024, - 2025 + 2025, + 2026 ] }, { @@ -49,29 +50,30 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "inria-foundation", - "name": "Inria Foundation", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/inria-foundation.webp", - "category": "Science and medicine", + "slug": "eunomia-bpf", + "name": "eunomia-bpf", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/eunomia-bpf.webp", + "category": "Operating systems", "total_projects": 2, "is_currently_active": false, "active_years": [ - 2018 + 2024 ] }, { - "slug": "eunomia-bpf", - "name": "eunomia-bpf", - "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/eunomia-bpf.webp", - "category": "Operating systems", + "slug": "inria-foundation", + "name": "Inria Foundation", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/inria-foundation.webp", + "category": "Science and medicine", "total_projects": 2, "is_currently_active": false, "active_years": [ - 2024 + 2018 ] } ], @@ -126,11 +128,16 @@ "year": 2025, "org_count": 2, "project_count": 6 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.288Z" + "generated_at": "2026-02-19T13:35:59.626Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/webasssembly.json b/new-api-details/tech-stack/webasssembly.json index 346d4805..97d93428 100644 --- a/new-api-details/tech-stack/webasssembly.json +++ b/new-api-details/tech-stack/webasssembly.json @@ -1,13 +1,13 @@ { "slug": "webasssembly", "name": "webasssembly", - "published_at": "2026-01-24T21:33:12.577Z", + "published_at": "2026-02-19T13:36:00.081Z", "metrics": { "org_count": 1, "project_count": 10, "avg_projects_per_org": 10, "first_year_used": 2018, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -22,7 +22,8 @@ 2019, 2020, 2024, - 2025 + 2025, + 2026 ] } ], @@ -77,11 +78,16 @@ "year": 2025, "org_count": 1, "project_count": 1 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.577Z" + "generated_at": "2026-02-19T13:36:00.081Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/webcomponents.json b/new-api-details/tech-stack/webcomponents.json index dff5281c..43335043 100644 --- a/new-api-details/tech-stack/webcomponents.json +++ b/new-api-details/tech-stack/webcomponents.json @@ -1,13 +1,13 @@ { "slug": "webcomponents", "name": "webcomponents", - "published_at": "2026-01-24T21:33:12.360Z", + "published_at": "2026-02-19T13:35:59.791Z", "metrics": { "org_count": 1, "project_count": 31, "avg_projects_per_org": 31, "first_year_used": 2017, - "latest_year_used": 2023 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/librehealth.webp", "category": "Science and medicine", "total_projects": 31, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, @@ -24,7 +24,8 @@ 2020, 2021, 2022, - 2023 + 2023, + 2026 ] } ], @@ -79,11 +80,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.360Z" + "generated_at": "2026-02-19T13:35:59.791Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/webdriver.json b/new-api-details/tech-stack/webdriver.json index 4e42536c..d32a1dde 100644 --- a/new-api-details/tech-stack/webdriver.json +++ b/new-api-details/tech-stack/webdriver.json @@ -1,7 +1,7 @@ { "slug": "webdriver", "name": "WebDriver", - "published_at": "2026-01-24T21:33:12.397Z", + "published_at": "2026-02-19T13:35:59.840Z", "metrics": { "org_count": 1, "project_count": 2, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.397Z" + "generated_at": "2026-02-19T13:35:59.840Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/webgl.json b/new-api-details/tech-stack/webgl.json index 7d53681a..0e61701d 100644 --- a/new-api-details/tech-stack/webgl.json +++ b/new-api-details/tech-stack/webgl.json @@ -1,13 +1,13 @@ { "slug": "webgl", "name": "webgl", - "published_at": "2026-01-24T21:33:12.195Z", + "published_at": "2026-02-19T13:35:59.565Z", "metrics": { "org_count": 3, "project_count": 156, "avg_projects_per_org": 52, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -25,7 +25,8 @@ 2021, 2022, 2023, - 2025 + 2025, + 2026 ] }, { @@ -113,11 +114,16 @@ "year": 2025, "org_count": 1, "project_count": 3 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.195Z" + "generated_at": "2026-02-19T13:35:59.565Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/webgpu.json b/new-api-details/tech-stack/webgpu.json index 087872d5..a412c88e 100644 --- a/new-api-details/tech-stack/webgpu.json +++ b/new-api-details/tech-stack/webgpu.json @@ -1,13 +1,13 @@ { "slug": "webgpu", "name": "webgpu", - "published_at": "2026-01-24T21:33:12.095Z", + "published_at": "2026-02-19T13:35:59.417Z", "metrics": { "org_count": 2, "project_count": 16, "avg_projects_per_org": 8, "first_year_used": 2019, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -32,7 +32,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -87,11 +88,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.095Z" + "generated_at": "2026-02-19T13:35:59.417Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/webkit.json b/new-api-details/tech-stack/webkit.json index 27a58f0f..2c8d8cd0 100644 --- a/new-api-details/tech-stack/webkit.json +++ b/new-api-details/tech-stack/webkit.json @@ -1,13 +1,13 @@ { "slug": "webkit", "name": "webkit", - "published_at": "2026-01-24T21:33:12.293Z", + "published_at": "2026-02-19T13:35:59.703Z", "metrics": { "org_count": 1, "project_count": 26, "avg_projects_per_org": 26, "first_year_used": 2017, - "latest_year_used": 2024 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/haiku.webp", "category": "Operating systems", "total_projects": 26, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, @@ -25,7 +25,8 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] } ], @@ -80,11 +81,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.293Z" + "generated_at": "2026-02-19T13:35:59.703Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/webpack.json b/new-api-details/tech-stack/webpack.json index d462ca49..c64fab73 100644 --- a/new-api-details/tech-stack/webpack.json +++ b/new-api-details/tech-stack/webpack.json @@ -1,13 +1,13 @@ { "slug": "webpack", "name": "webpack", - "published_at": "2026-01-24T21:33:12.421Z", + "published_at": "2026-02-19T13:35:59.869Z", "metrics": { "org_count": 2, "project_count": 87, "avg_projects_per_org": 43.5, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -42,7 +43,8 @@ 2019, 2020, 2024, - 2025 + 2025, + 2026 ] } ], @@ -97,11 +99,16 @@ "year": 2025, "org_count": 2, "project_count": 7 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.421Z" + "generated_at": "2026-02-19T13:35:59.869Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/webrtc.json b/new-api-details/tech-stack/webrtc.json index 620c8de2..93e00719 100644 --- a/new-api-details/tech-stack/webrtc.json +++ b/new-api-details/tech-stack/webrtc.json @@ -1,13 +1,13 @@ { "slug": "webrtc", "name": "webrtc", - "published_at": "2026-01-24T21:33:12.333Z", + "published_at": "2026-02-19T13:35:59.751Z", "metrics": { "org_count": 5, "project_count": 178, "avg_projects_per_org": 35.6, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -57,7 +58,8 @@ 2018, 2022, 2024, - 2025 + 2025, + 2026 ] }, { @@ -141,11 +143,16 @@ "year": 2025, "org_count": 2, "project_count": 24 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.333Z" + "generated_at": "2026-02-19T13:35:59.751Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/webs.json b/new-api-details/tech-stack/webs.json index 9869225f..f77443d6 100644 --- a/new-api-details/tech-stack/webs.json +++ b/new-api-details/tech-stack/webs.json @@ -1,7 +1,7 @@ { "slug": "webs", "name": "webs", - "published_at": "2026-01-24T21:33:12.385Z", + "published_at": "2026-02-19T13:35:59.828Z", "metrics": { "org_count": 1, "project_count": 8, @@ -75,11 +75,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.385Z" + "generated_at": "2026-02-19T13:35:59.828Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/wiki.json b/new-api-details/tech-stack/wiki.json index 41cbed54..6c0c0fa5 100644 --- a/new-api-details/tech-stack/wiki.json +++ b/new-api-details/tech-stack/wiki.json @@ -1,7 +1,7 @@ { "slug": "wiki", "name": "wiki", - "published_at": "2026-01-24T21:33:12.401Z", + "published_at": "2026-02-19T13:35:59.873Z", "metrics": { "org_count": 1, "project_count": 0, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.401Z" + "generated_at": "2026-02-19T13:35:59.873Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/win32-api.json b/new-api-details/tech-stack/win32-api.json index 128cdb61..8b88060b 100644 --- a/new-api-details/tech-stack/win32-api.json +++ b/new-api-details/tech-stack/win32-api.json @@ -1,7 +1,7 @@ { "slug": "win32-api", "name": "win32 api", - "published_at": "2026-01-24T21:33:12.393Z", + "published_at": "2026-02-19T13:35:59.842Z", "metrics": { "org_count": 1, "project_count": 2, @@ -74,11 +74,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.393Z" + "generated_at": "2026-02-19T13:35:59.842Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/win32.json b/new-api-details/tech-stack/win32.json index c5e2c51f..869399b6 100644 --- a/new-api-details/tech-stack/win32.json +++ b/new-api-details/tech-stack/win32.json @@ -1,7 +1,7 @@ { "slug": "win32", "name": "win32", - "published_at": "2026-01-24T21:33:12.454Z", + "published_at": "2026-02-19T13:35:59.914Z", "metrics": { "org_count": 3, "project_count": 21, @@ -105,11 +105,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.454Z" + "generated_at": "2026-02-19T13:35:59.914Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/windows.json b/new-api-details/tech-stack/windows.json index 94e9263d..6f7a351d 100644 --- a/new-api-details/tech-stack/windows.json +++ b/new-api-details/tech-stack/windows.json @@ -1,13 +1,13 @@ { "slug": "windows", "name": "windows", - "published_at": "2026-01-24T21:33:12.116Z", + "published_at": "2026-02-19T13:35:59.465Z", "metrics": { "org_count": 4, "project_count": 37, "avg_projects_per_org": 9.3, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -36,7 +36,8 @@ "active_years": [ 2016, 2019, - 2025 + 2025, + 2026 ] }, { @@ -116,11 +117,16 @@ "year": 2025, "org_count": 1, "project_count": 2 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.116Z" + "generated_at": "2026-02-19T13:35:59.465Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/wordpress.json b/new-api-details/tech-stack/wordpress.json index 4df98c29..c895ca0e 100644 --- a/new-api-details/tech-stack/wordpress.json +++ b/new-api-details/tech-stack/wordpress.json @@ -1,7 +1,7 @@ { "slug": "wordpress", "name": "wordpress", - "published_at": "2026-01-24T21:33:12.200Z", + "published_at": "2026-02-19T13:35:59.575Z", "metrics": { "org_count": 1, "project_count": 14, @@ -76,11 +76,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.200Z" + "generated_at": "2026-02-19T13:35:59.575Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/workflows.json b/new-api-details/tech-stack/workflows.json index b5036f5a..f69d1464 100644 --- a/new-api-details/tech-stack/workflows.json +++ b/new-api-details/tech-stack/workflows.json @@ -1,7 +1,7 @@ { "slug": "workflows", "name": "workflows", - "published_at": "2026-01-24T21:33:12.216Z", + "published_at": "2026-02-19T13:35:59.600Z", "metrics": { "org_count": 1, "project_count": 27, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/department-of-biomedical-informatics-emory-university.webp", "category": "Security", "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2021, 2022, @@ -77,11 +77,16 @@ "year": 2025, "org_count": 1, "project_count": 3 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.216Z" + "generated_at": "2026-02-19T13:35:59.600Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/wxwidgets.json b/new-api-details/tech-stack/wxwidgets.json index dbffc815..ebf4a4df 100644 --- a/new-api-details/tech-stack/wxwidgets.json +++ b/new-api-details/tech-stack/wxwidgets.json @@ -1,13 +1,13 @@ { "slug": "wxwidgets", "name": "wxwidgets", - "published_at": "2026-01-24T21:33:12.110Z", + "published_at": "2026-02-19T13:35:59.458Z", "metrics": { - "org_count": 2, + "org_count": 3, "project_count": 11, - "avg_projects_per_org": 5.5, + "avg_projects_per_org": 3.7, "first_year_used": 2016, - "latest_year_used": 2022 + "latest_year_used": 2026 }, "organizations": [ { @@ -34,6 +34,17 @@ 2021, 2022 ] + }, + { + "slug": "gambit-the-package-for-computation-in-game-theory", + "name": "Gambit: The package for computation in game theory", + "logo_url": "https://summerofcode.withgoogle.com/media/org/gambit-the-package-for-computation-in-game-theory/09u5sma4pizmwbqt-360.png", + "category": "Science and medicine", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] } ], "charts": { @@ -87,11 +98,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.110Z" + "generated_at": "2026-02-19T13:35:59.458Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/x11.json b/new-api-details/tech-stack/x11.json index 60891a3a..4e8d68d0 100644 --- a/new-api-details/tech-stack/x11.json +++ b/new-api-details/tech-stack/x11.json @@ -1,7 +1,7 @@ { "slug": "x11", "name": "x11", - "published_at": "2026-01-24T21:33:12.524Z", + "published_at": "2026-02-19T13:36:00.021Z", "metrics": { "org_count": 2, "project_count": 23, @@ -94,11 +94,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.524Z" + "generated_at": "2026-02-19T13:36:00.021Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/x86-assembly.json b/new-api-details/tech-stack/x86-assembly.json index 9324d39e..c37a584e 100644 --- a/new-api-details/tech-stack/x86-assembly.json +++ b/new-api-details/tech-stack/x86-assembly.json @@ -1,13 +1,13 @@ { "slug": "x86-assembly", "name": "x86 assembly", - "published_at": "2026-01-24T21:33:12.344Z", + "published_at": "2026-02-19T13:35:59.770Z", "metrics": { "org_count": 1, "project_count": 6, "avg_projects_per_org": 6, "first_year_used": 2016, - "latest_year_used": 2024 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,10 +16,11 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kolibrios-project-team.webp", "category": "Operating systems", "total_projects": 6, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, - 2024 + 2024, + 2026 ] } ], @@ -74,11 +75,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.344Z" + "generated_at": "2026-02-19T13:35:59.770Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/x86.json b/new-api-details/tech-stack/x86.json index a28b8c3f..2e48979f 100644 --- a/new-api-details/tech-stack/x86.json +++ b/new-api-details/tech-stack/x86.json @@ -1,13 +1,13 @@ { "slug": "x86", "name": "x86", - "published_at": "2026-01-24T21:33:12.249Z", + "published_at": "2026-02-19T13:35:59.574Z", "metrics": { "org_count": 6, "project_count": 76, "avg_projects_per_org": 12.7, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -21,7 +21,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -30,7 +31,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/haiku.webp", "category": "Operating systems", "total_projects": 26, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, @@ -39,7 +40,8 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -142,11 +144,16 @@ "year": 2025, "org_count": 1, "project_count": 16 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.249Z" + "generated_at": "2026-02-19T13:35:59.574Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/xarray.json b/new-api-details/tech-stack/xarray.json index cc34d662..d28f7cca 100644 --- a/new-api-details/tech-stack/xarray.json +++ b/new-api-details/tech-stack/xarray.json @@ -1,13 +1,13 @@ { "slug": "xarray", "name": "xarray", - "published_at": "2026-01-24T21:33:12.222Z", + "published_at": "2026-02-19T13:35:59.608Z", "metrics": { - "org_count": 1, + "org_count": 2, "project_count": 4, - "avg_projects_per_org": 4, + "avg_projects_per_org": 2, "first_year_used": 2018, - "latest_year_used": 2019 + "latest_year_used": 2026 }, "organizations": [ { @@ -21,6 +21,17 @@ 2018, 2019 ] + }, + { + "slug": "mllam", + "name": "MLLAM", + "logo_url": "https://summerofcode.withgoogle.com/media/org/mllam/ltm3mtlosvdcrw0c.png", + "category": "Science and medicine", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] } ], "charts": { @@ -74,11 +85,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.222Z" + "generated_at": "2026-02-19T13:35:59.608Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/xcode.json b/new-api-details/tech-stack/xcode.json index e3297010..83a065df 100644 --- a/new-api-details/tech-stack/xcode.json +++ b/new-api-details/tech-stack/xcode.json @@ -1,13 +1,13 @@ { "slug": "xcode", "name": "xcode", - "published_at": "2026-01-24T21:33:12.063Z", + "published_at": "2026-02-19T13:35:59.423Z", "metrics": { "org_count": 1, "project_count": 117, "avg_projects_per_org": 117, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 21 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.063Z" + "generated_at": "2026-02-19T13:35:59.423Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/xen.json b/new-api-details/tech-stack/xen.json index df608e26..5c676cda 100644 --- a/new-api-details/tech-stack/xen.json +++ b/new-api-details/tech-stack/xen.json @@ -1,13 +1,13 @@ { "slug": "xen", "name": "xen", - "published_at": "2026-01-24T21:33:12.278Z", + "published_at": "2026-02-19T13:35:59.656Z", "metrics": { "org_count": 4, "project_count": 40, "avg_projects_per_org": 10, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -39,7 +39,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -48,11 +49,12 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/qubes-os.webp", "category": "Operating systems", "total_projects": 4, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2020, - 2021 + 2021, + 2026 ] }, { @@ -118,11 +120,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.278Z" + "generated_at": "2026-02-19T13:35:59.656Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/xia.json b/new-api-details/tech-stack/xia.json index 41de0cf8..36c94063 100644 --- a/new-api-details/tech-stack/xia.json +++ b/new-api-details/tech-stack/xia.json @@ -1,7 +1,7 @@ { "slug": "xia", "name": "xia", - "published_at": "2026-01-24T21:33:12.134Z", + "published_at": "2026-02-19T13:35:59.488Z", "metrics": { "org_count": 1, "project_count": 8, @@ -75,11 +75,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.134Z" + "generated_at": "2026-02-19T13:35:59.488Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/xilinx.json b/new-api-details/tech-stack/xilinx.json index 7ab580f1..1d3eafef 100644 --- a/new-api-details/tech-stack/xilinx.json +++ b/new-api-details/tech-stack/xilinx.json @@ -1,7 +1,7 @@ { "slug": "xilinx", "name": "xilinx", - "published_at": "2026-01-24T21:33:12.495Z", + "published_at": "2026-02-19T13:35:59.957Z", "metrics": { "org_count": 1, "project_count": 5, @@ -75,11 +75,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.495Z" + "generated_at": "2026-02-19T13:35:59.957Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/xml.json b/new-api-details/tech-stack/xml.json index a8bd6a30..e7f2b002 100644 --- a/new-api-details/tech-stack/xml.json +++ b/new-api-details/tech-stack/xml.json @@ -1,13 +1,13 @@ { "slug": "xml", "name": "xml", - "published_at": "2026-01-24T21:33:12.099Z", + "published_at": "2026-02-19T13:35:59.433Z", "metrics": { "org_count": 8, "project_count": 536, "avg_projects_per_org": 67, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -27,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -47,7 +48,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -67,7 +69,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -196,11 +199,16 @@ "year": 2025, "org_count": 3, "project_count": 43 + }, + { + "year": 2026, + "org_count": 3, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.099Z" + "generated_at": "2026-02-19T13:35:59.433Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/xmpp.json b/new-api-details/tech-stack/xmpp.json index 2f2c316e..b3f6cfd4 100644 --- a/new-api-details/tech-stack/xmpp.json +++ b/new-api-details/tech-stack/xmpp.json @@ -1,13 +1,13 @@ { "slug": "xmpp", "name": "xmpp", - "published_at": "2026-01-24T21:33:12.123Z", + "published_at": "2026-02-19T13:35:59.473Z", "metrics": { "org_count": 5, "project_count": 59, "avg_projects_per_org": 11.8, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -22,7 +22,8 @@ 2018, 2022, 2024, - 2025 + 2025, + 2026 ] }, { @@ -130,11 +131,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.123Z" + "generated_at": "2026-02-19T13:35:59.473Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/xpath.json b/new-api-details/tech-stack/xpath.json index 23fbd7d0..ffa148ee 100644 --- a/new-api-details/tech-stack/xpath.json +++ b/new-api-details/tech-stack/xpath.json @@ -1,13 +1,13 @@ { "slug": "xpath", "name": "xpath", - "published_at": "2026-01-24T21:33:12.425Z", + "published_at": "2026-02-19T13:35:59.537Z", "metrics": { "org_count": 2, "project_count": 24, "avg_projects_per_org": 12, "first_year_used": 2017, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -24,7 +24,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -91,11 +92,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.425Z" + "generated_at": "2026-02-19T13:35:59.537Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/xr.json b/new-api-details/tech-stack/xr.json index fbf09eb5..8c422e59 100644 --- a/new-api-details/tech-stack/xr.json +++ b/new-api-details/tech-stack/xr.json @@ -1,7 +1,7 @@ { "slug": "xr", "name": "XR", - "published_at": "2026-01-24T21:33:12.389Z", + "published_at": "2026-02-19T13:35:59.833Z", "metrics": { "org_count": 1, "project_count": 2, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.389Z" + "generated_at": "2026-02-19T13:35:59.833Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/xtext.json b/new-api-details/tech-stack/xtext.json index c40ff98d..0fe3d17b 100644 --- a/new-api-details/tech-stack/xtext.json +++ b/new-api-details/tech-stack/xtext.json @@ -1,13 +1,13 @@ { "slug": "xtext", "name": "xtext", - "published_at": "2026-01-24T21:33:12.226Z", + "published_at": "2026-02-19T13:35:59.614Z", "metrics": { "org_count": 1, "project_count": 68, "avg_projects_per_org": 68, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 7 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.226Z" + "generated_at": "2026-02-19T13:35:59.614Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/yaml.json b/new-api-details/tech-stack/yaml.json index a62713ef..4a40ac0d 100644 --- a/new-api-details/tech-stack/yaml.json +++ b/new-api-details/tech-stack/yaml.json @@ -1,13 +1,13 @@ { "slug": "yaml", "name": "YAML", - "published_at": "2026-01-24T21:33:12.350Z", + "published_at": "2026-02-19T13:35:59.781Z", "metrics": { "org_count": 1, "project_count": 21, "avg_projects_per_org": 21, "first_year_used": 2020, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -20,7 +20,8 @@ "active_years": [ 2020, 2024, - 2025 + 2025, + 2026 ] } ], @@ -75,11 +76,16 @@ "year": 2025, "org_count": 1, "project_count": 11 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.350Z" + "generated_at": "2026-02-19T13:35:59.782Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/yocto.json b/new-api-details/tech-stack/yocto.json index 7b9564b1..7b5e71fc 100644 --- a/new-api-details/tech-stack/yocto.json +++ b/new-api-details/tech-stack/yocto.json @@ -1,7 +1,7 @@ { "slug": "yocto", "name": "yocto", - "published_at": "2026-01-24T21:33:12.261Z", + "published_at": "2026-02-19T13:35:59.664Z", "metrics": { "org_count": 1, "project_count": 3, @@ -75,11 +75,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.261Z" + "generated_at": "2026-02-19T13:35:59.664Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/z3.json b/new-api-details/tech-stack/z3.json index 63e96fc1..753e8b36 100644 --- a/new-api-details/tech-stack/z3.json +++ b/new-api-details/tech-stack/z3.json @@ -1,13 +1,13 @@ { "slug": "z3", "name": "Z3", - "published_at": "2026-01-24T21:33:12.516Z", + "published_at": "2026-02-19T13:35:59.987Z", "metrics": { "org_count": 1, "project_count": 9, "avg_projects_per_org": 9, "first_year_used": 2024, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -19,7 +19,8 @@ "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -74,11 +75,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.516Z" + "generated_at": "2026-02-19T13:35:59.987Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/zap.json b/new-api-details/tech-stack/zap.json index 0be7c005..d191add3 100644 --- a/new-api-details/tech-stack/zap.json +++ b/new-api-details/tech-stack/zap.json @@ -1,13 +1,13 @@ { "slug": "zap", "name": "ZAP", - "published_at": "2026-01-24T21:33:12.402Z", + "published_at": "2026-02-19T13:35:59.874Z", "metrics": { "org_count": 1, "project_count": 102, "avg_projects_per_org": 102, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -26,7 +26,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -81,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 15 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.402Z" + "generated_at": "2026-02-19T13:35:59.874Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/zarr.json b/new-api-details/tech-stack/zarr.json index 007a9801..72d63ac0 100644 --- a/new-api-details/tech-stack/zarr.json +++ b/new-api-details/tech-stack/zarr.json @@ -1,13 +1,13 @@ { "slug": "zarr", "name": "Zarr", - "published_at": "2026-01-24T21:33:12.304Z", + "published_at": "2026-02-19T13:35:59.740Z", "metrics": { - "org_count": 1, + "org_count": 2, "project_count": 22, - "avg_projects_per_org": 22, + "avg_projects_per_org": 11, "first_year_used": 2021, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -21,7 +21,19 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "mllam", + "name": "MLLAM", + "logo_url": "https://summerofcode.withgoogle.com/media/org/mllam/ltm3mtlosvdcrw0c.png", + "category": "Science and medicine", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 ] } ], @@ -76,11 +88,16 @@ "year": 2025, "org_count": 1, "project_count": 9 + }, + { + "year": 2026, + "org_count": 2, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.304Z" + "generated_at": "2026-02-19T13:35:59.740Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/zephyr-rtos.json b/new-api-details/tech-stack/zephyr-rtos.json index 12982747..becb254c 100644 --- a/new-api-details/tech-stack/zephyr-rtos.json +++ b/new-api-details/tech-stack/zephyr-rtos.json @@ -1,7 +1,7 @@ { "slug": "zephyr-rtos", "name": "Zephyr RTOS", - "published_at": "2026-01-24T21:33:12.123Z", + "published_at": "2026-02-19T13:35:59.473Z", "metrics": { "org_count": 1, "project_count": 44, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/beagleboardorg.webp", "category": "Science and medicine", "total_projects": 44, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -82,11 +82,16 @@ "year": 2025, "org_count": 1, "project_count": 5 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.123Z" + "generated_at": "2026-02-19T13:35:59.473Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/zeroc-ice.json b/new-api-details/tech-stack/zeroc-ice.json index c4e39e94..6f2f03c3 100644 --- a/new-api-details/tech-stack/zeroc-ice.json +++ b/new-api-details/tech-stack/zeroc-ice.json @@ -1,7 +1,7 @@ { "slug": "zeroc-ice", "name": "zeroc ice", - "published_at": "2026-01-24T21:33:12.461Z", + "published_at": "2026-02-19T13:35:59.920Z", "metrics": { "org_count": 1, "project_count": 57, @@ -79,11 +79,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.461Z" + "generated_at": "2026-02-19T13:35:59.920Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/zeromq.json b/new-api-details/tech-stack/zeromq.json index 5d03042f..5a7057e8 100644 --- a/new-api-details/tech-stack/zeromq.json +++ b/new-api-details/tech-stack/zeromq.json @@ -1,7 +1,7 @@ { "slug": "zeromq", "name": "zeromq", - "published_at": "2026-01-24T21:33:12.172Z", + "published_at": "2026-02-19T13:35:59.512Z", "metrics": { "org_count": 1, "project_count": 3, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.172Z" + "generated_at": "2026-02-19T13:35:59.512Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/zfs.json b/new-api-details/tech-stack/zfs.json index e60bd516..2c7b0c81 100644 --- a/new-api-details/tech-stack/zfs.json +++ b/new-api-details/tech-stack/zfs.json @@ -1,7 +1,7 @@ { "slug": "zfs", "name": "zfs", - "published_at": "2026-01-24T21:33:12.557Z", + "published_at": "2026-02-19T13:35:59.716Z", "metrics": { "org_count": 1, "project_count": 0, @@ -73,11 +73,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.557Z" + "generated_at": "2026-02-19T13:35:59.716Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/zig.json b/new-api-details/tech-stack/zig.json index 75c6e682..f2a226cc 100644 --- a/new-api-details/tech-stack/zig.json +++ b/new-api-details/tech-stack/zig.json @@ -1,7 +1,7 @@ { "slug": "zig", "name": "Zig", - "published_at": "2026-01-24T21:33:12.535Z", + "published_at": "2026-02-19T13:36:00.074Z", "metrics": { "org_count": 1, "project_count": 7, @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/waycrate.webp", "category": "End user applications", "total_projects": 7, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2024, 2025 @@ -74,11 +74,16 @@ "year": 2025, "org_count": 1, "project_count": 4 + }, + { + "year": 2026, + "org_count": 0, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.535Z" + "generated_at": "2026-02-19T13:36:00.074Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/zmq.json b/new-api-details/tech-stack/zmq.json index e0c64940..47c1417a 100644 --- a/new-api-details/tech-stack/zmq.json +++ b/new-api-details/tech-stack/zmq.json @@ -1,13 +1,13 @@ { "slug": "zmq", "name": "zmq", - "published_at": "2026-01-24T21:33:12.358Z", + "published_at": "2026-02-19T13:35:59.790Z", "metrics": { "org_count": 1, "project_count": 7, "avg_projects_per_org": 7, "first_year_used": 2021, - "latest_year_used": 2024 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,11 +16,12 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/librecube-initiative.webp", "category": "Science and medicine", "total_projects": 7, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2021, 2022, - 2024 + 2024, + 2026 ] } ], @@ -75,11 +76,16 @@ "year": 2025, "org_count": 0, "project_count": 0 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.358Z" + "generated_at": "2026-02-19T13:35:59.790Z" } } \ No newline at end of file diff --git a/new-api-details/tech-stack/zope.json b/new-api-details/tech-stack/zope.json index de0c6c76..bf735c17 100644 --- a/new-api-details/tech-stack/zope.json +++ b/new-api-details/tech-stack/zope.json @@ -1,13 +1,13 @@ { "slug": "zope", "name": "zope", - "published_at": "2026-01-24T21:33:12.438Z", + "published_at": "2026-02-19T13:35:59.679Z", "metrics": { - "org_count": 1, + "org_count": 2, "project_count": 26, - "avg_projects_per_org": 26, + "avg_projects_per_org": 13, "first_year_used": 2016, - "latest_year_used": 2025 + "latest_year_used": 2026 }, "organizations": [ { @@ -16,7 +16,7 @@ "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/plone-foundation.webp", "category": "Web", "total_projects": 26, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -26,6 +26,17 @@ 2024, 2025 ] + }, + { + "slug": "gnu-mailman", + "name": "GNU Mailman", + "logo_url": "https://summerofcode.withgoogle.com/media/org/gnu-mailman/cg5sxkouo8rjtjw2-360.png", + "category": "Social and communication", + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] } ], "charts": { @@ -79,11 +90,16 @@ "year": 2025, "org_count": 1, "project_count": 3 + }, + { + "year": 2026, + "org_count": 1, + "project_count": 0 } ] }, "meta": { "version": 1, - "generated_at": "2026-01-24T21:33:12.438Z" + "generated_at": "2026-02-19T13:35:59.679Z" } } \ No newline at end of file diff --git a/new-api-details/topics/2d-3d-graphics.json b/new-api-details/topics/2d-3d-graphics.json index c4fa3fa2..53a86a75 100644 --- a/new-api-details/topics/2d-3d-graphics.json +++ b/new-api-details/topics/2d-3d-graphics.json @@ -1,10 +1,11 @@ { "slug": "2d-3d-graphics", "name": "2d/3d graphics", - "published_at": "2026-01-25T16:06:28.426Z", + "published_at": "2026-02-19T13:36:00.357Z", "organizationCount": 7, "projectCount": 135, "years": [ + 2026, 2025, 2024, 2023, @@ -17,36 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "academy-software-foundation", - "name": "Academy Software Foundation", - "first_year": 2020, - "last_year": 2022, - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2020, - 2022 - ] - }, - { - "slug": "android-graphics-tools-team", - "name": "Android Graphics Tools Team", - "first_year": 2019, - "last_year": 2021, - "total_projects": 8, - "is_currently_active": false, - "active_years": [ - 2019, - 2020, - 2021 - ] - }, { "slug": "brl-cad", "name": "BRL-CAD", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 73, "is_currently_active": true, "active_years": [ @@ -59,19 +35,25 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "point-cloud-library", - "name": "Point Cloud Library", - "first_year": 2020, - "last_year": 2021, - "total_projects": 5, + "slug": "xorg-foundation", + "name": "X.Org Foundation", + "first_year": 2016, + "last_year": 2023, + "total_projects": 19, "is_currently_active": false, "active_years": [ + 2016, + 2017, + 2018, + 2019, 2020, - 2021 + 2022, + 2023 ] }, { @@ -95,7 +77,7 @@ "slug": "synfig", "name": "Synfig", "first_year": 2019, - "last_year": 2025, + "last_year": 2026, "total_projects": 12, "is_currently_active": true, "active_years": [ @@ -105,24 +87,45 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "xorg-foundation", - "name": "X.Org Foundation", - "first_year": 2016, - "last_year": 2023, - "total_projects": 19, + "slug": "android-graphics-tools-team", + "name": "Android Graphics Tools Team", + "first_year": 2019, + "last_year": 2021, + "total_projects": 8, "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, 2019, 2020, - 2022, - 2023 + 2021 + ] + }, + { + "slug": "point-cloud-library", + "name": "Point Cloud Library", + "first_year": 2020, + "last_year": 2021, + "total_projects": 5, + "is_currently_active": false, + "active_years": [ + 2020, + 2021 + ] + }, + { + "slug": "academy-software-foundation", + "name": "Academy Software Foundation", + "first_year": 2020, + "last_year": 2022, + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2020, + 2022 ] } ], @@ -166,10 +169,14 @@ "2025": { "organizationCount": 2, "projectCount": 8 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.426Z" + "generated_at": "2026-02-19T13:36:00.357Z" } } \ No newline at end of file diff --git a/new-api-details/topics/2d-acceleration.json b/new-api-details/topics/2d-acceleration.json index f90c5ff1..27729aeb 100644 --- a/new-api-details/topics/2d-acceleration.json +++ b/new-api-details/topics/2d-acceleration.json @@ -1,7 +1,7 @@ { "slug": "2d-acceleration", "name": "2d acceleration", - "published_at": "2026-01-25T16:06:29.789Z", + "published_at": "2026-02-19T13:36:03.159Z", "organizationCount": 1, "projectCount": 19, "years": [ @@ -64,6 +64,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.789Z" + "generated_at": "2026-02-19T13:36:03.159Z" } } \ No newline at end of file diff --git a/new-api-details/topics/2d-animation.json b/new-api-details/topics/2d-animation.json index 28b988e7..ea9d6776 100644 --- a/new-api-details/topics/2d-animation.json +++ b/new-api-details/topics/2d-animation.json @@ -1,10 +1,11 @@ { "slug": "2d-animation", "name": "2d animation", - "published_at": "2026-01-25T16:06:29.657Z", + "published_at": "2026-02-19T13:36:02.876Z", "organizationCount": 1, "projectCount": 12, "years": [ + 2026, 2025, 2024, 2023, @@ -18,7 +19,7 @@ "slug": "synfig", "name": "Synfig", "first_year": 2019, - "last_year": 2025, + "last_year": 2026, "total_projects": 12, "is_currently_active": true, "active_years": [ @@ -28,7 +29,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -60,10 +62,14 @@ "2025": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.657Z" + "generated_at": "2026-02-19T13:36:02.876Z" } } \ No newline at end of file diff --git a/new-api-details/topics/360-stereo-video.json b/new-api-details/topics/360-stereo-video.json index a8a4aac8..f0533f79 100644 --- a/new-api-details/topics/360-stereo-video.json +++ b/new-api-details/topics/360-stereo-video.json @@ -1,7 +1,7 @@ { "slug": "360-stereo-video", "name": "360 stereo video", - "published_at": "2026-01-25T16:06:29.167Z", + "published_at": "2026-02-19T13:36:01.844Z", "organizationCount": 1, "projectCount": 12, "years": [ @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.167Z" + "generated_at": "2026-02-19T13:36:01.845Z" } } \ No newline at end of file diff --git a/new-api-details/topics/3d-acceleration.json b/new-api-details/topics/3d-acceleration.json index 7760c909..1fa6f55e 100644 --- a/new-api-details/topics/3d-acceleration.json +++ b/new-api-details/topics/3d-acceleration.json @@ -1,7 +1,7 @@ { "slug": "3d-acceleration", "name": "3d acceleration", - "published_at": "2026-01-25T16:06:29.787Z", + "published_at": "2026-02-19T13:36:03.157Z", "organizationCount": 1, "projectCount": 19, "years": [ @@ -64,6 +64,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.787Z" + "generated_at": "2026-02-19T13:36:03.157Z" } } \ No newline at end of file diff --git a/new-api-details/topics/3d-animation.json b/new-api-details/topics/3d-animation.json index b1d9bbab..5d5c91f5 100644 --- a/new-api-details/topics/3d-animation.json +++ b/new-api-details/topics/3d-animation.json @@ -1,10 +1,11 @@ { "slug": "3d-animation", "name": "3d animation", - "published_at": "2026-01-25T16:06:28.612Z", + "published_at": "2026-02-19T13:36:00.795Z", "organizationCount": 1, "projectCount": 64, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "blender-foundation", "name": "Blender Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 64, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 8 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.612Z" + "generated_at": "2026-02-19T13:36:00.795Z" } } \ No newline at end of file diff --git a/new-api-details/topics/3d-cad-geometry.json b/new-api-details/topics/3d-cad-geometry.json index 58d583e5..6a46f7f8 100644 --- a/new-api-details/topics/3d-cad-geometry.json +++ b/new-api-details/topics/3d-cad-geometry.json @@ -1,10 +1,11 @@ { "slug": "3d-cad-geometry", "name": "3d cad geometry", - "published_at": "2026-01-25T16:06:28.552Z", + "published_at": "2026-02-19T13:36:00.886Z", "organizationCount": 1, "projectCount": 73, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "brl-cad", "name": "BRL-CAD", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 73, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.552Z" + "generated_at": "2026-02-19T13:36:00.886Z" } } \ No newline at end of file diff --git a/new-api-details/topics/3d-computer-vision.json b/new-api-details/topics/3d-computer-vision.json index 240c0d14..87f09327 100644 --- a/new-api-details/topics/3d-computer-vision.json +++ b/new-api-details/topics/3d-computer-vision.json @@ -1,7 +1,7 @@ { "slug": "3d-computer-vision", "name": "3d computer vision", - "published_at": "2026-01-25T16:06:29.544Z", + "published_at": "2026-02-19T13:36:02.721Z", "organizationCount": 1, "projectCount": 5, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.544Z" + "generated_at": "2026-02-19T13:36:02.721Z" } } \ No newline at end of file diff --git a/new-api-details/topics/3d-data-processing.json b/new-api-details/topics/3d-data-processing.json index a4befe5e..101b0305 100644 --- a/new-api-details/topics/3d-data-processing.json +++ b/new-api-details/topics/3d-data-processing.json @@ -1,7 +1,7 @@ { "slug": "3d-data-processing", "name": "3D data processing", - "published_at": "2026-01-25T16:06:29.464Z", + "published_at": "2026-02-19T13:36:02.542Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.464Z" + "generated_at": "2026-02-19T13:36:02.542Z" } } \ No newline at end of file diff --git a/new-api-details/topics/3d-geometry.json b/new-api-details/topics/3d-geometry.json index a0bd57e3..e1d064ff 100644 --- a/new-api-details/topics/3d-geometry.json +++ b/new-api-details/topics/3d-geometry.json @@ -1,10 +1,11 @@ { "slug": "3d-geometry", "name": "3D Geometry", - "published_at": "2026-01-25T16:06:29.249Z", + "published_at": "2026-02-19T13:36:02.127Z", "organizationCount": 1, "projectCount": 2, "years": [ + 2026, 2025 ], "organizations": [ @@ -12,11 +13,12 @@ "slug": "kornia", "name": "Kornia", "first_year": 2025, - "last_year": 2025, + "last_year": 2026, "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] } ], @@ -24,10 +26,14 @@ "2025": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.249Z" + "generated_at": "2026-02-19T13:36:02.127Z" } } \ No newline at end of file diff --git a/new-api-details/topics/3d-machine-learning.json b/new-api-details/topics/3d-machine-learning.json index 5077b5ad..168e2bf4 100644 --- a/new-api-details/topics/3d-machine-learning.json +++ b/new-api-details/topics/3d-machine-learning.json @@ -1,7 +1,7 @@ { "slug": "3d-machine-learning", "name": "3D machine learning", - "published_at": "2026-01-25T16:06:29.463Z", + "published_at": "2026-02-19T13:36:02.541Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.463Z" + "generated_at": "2026-02-19T13:36:02.541Z" } } \ No newline at end of file diff --git a/new-api-details/topics/3d-printing.json b/new-api-details/topics/3d-printing.json index 5dc21d7e..3ae64b81 100644 --- a/new-api-details/topics/3d-printing.json +++ b/new-api-details/topics/3d-printing.json @@ -1,10 +1,11 @@ { "slug": "3d-printing", "name": "3d printing", - "published_at": "2026-01-25T16:06:29.190Z", + "published_at": "2026-02-19T13:36:01.975Z", "organizationCount": 1, "projectCount": 13, "years": [ + 2026, 2025, 2024, 2023 @@ -14,13 +15,14 @@ "slug": "invesalius", "name": "Invesalius", "first_year": 2023, - "last_year": 2025, + "last_year": 2026, "total_projects": 13, "is_currently_active": true, "active_years": [ 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -36,10 +38,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.190Z" + "generated_at": "2026-02-19T13:36:01.975Z" } } \ No newline at end of file diff --git a/new-api-details/topics/3d-reconstruction.json b/new-api-details/topics/3d-reconstruction.json index 83bee3d8..bd2471f8 100644 --- a/new-api-details/topics/3d-reconstruction.json +++ b/new-api-details/topics/3d-reconstruction.json @@ -1,10 +1,11 @@ { "slug": "3d-reconstruction", "name": "3D Reconstruction", - "published_at": "2026-01-25T16:06:29.189Z", + "published_at": "2026-02-19T13:36:01.972Z", "organizationCount": 1, "projectCount": 13, "years": [ + 2026, 2025, 2024, 2023 @@ -14,13 +15,14 @@ "slug": "invesalius", "name": "Invesalius", "first_year": 2023, - "last_year": 2025, + "last_year": 2026, "total_projects": 13, "is_currently_active": true, "active_years": [ 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -36,10 +38,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.189Z" + "generated_at": "2026-02-19T13:36:01.972Z" } } \ No newline at end of file diff --git a/new-api-details/topics/3d-tools.json b/new-api-details/topics/3d-tools.json index 50d9134b..86e190ae 100644 --- a/new-api-details/topics/3d-tools.json +++ b/new-api-details/topics/3d-tools.json @@ -1,10 +1,11 @@ { "slug": "3d-tools", "name": "3d tools", - "published_at": "2026-01-25T16:06:28.611Z", + "published_at": "2026-02-19T13:36:00.791Z", "organizationCount": 1, "projectCount": 64, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "blender-foundation", "name": "Blender Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 64, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 8 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.611Z" + "generated_at": "2026-02-19T13:36:00.791Z" } } \ No newline at end of file diff --git a/new-api-details/topics/3d-visualization.json b/new-api-details/topics/3d-visualization.json index a24abcea..86e6f85c 100644 --- a/new-api-details/topics/3d-visualization.json +++ b/new-api-details/topics/3d-visualization.json @@ -1,7 +1,7 @@ { "slug": "3d-visualization", "name": "3D visualization", - "published_at": "2026-01-25T16:06:29.465Z", + "published_at": "2026-02-19T13:36:02.545Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.465Z" + "generated_at": "2026-02-19T13:36:02.545Z" } } \ No newline at end of file diff --git a/new-api-details/topics/3d.json b/new-api-details/topics/3d.json index edc15114..5aa94f95 100644 --- a/new-api-details/topics/3d.json +++ b/new-api-details/topics/3d.json @@ -1,10 +1,11 @@ { "slug": "3d", "name": "3d", - "published_at": "2026-01-25T16:06:28.340Z", + "published_at": "2026-02-19T13:36:00.240Z", "organizationCount": 9, "projectCount": 279, "years": [ + 2026, 2025, 2024, 2023, @@ -18,36 +19,11 @@ ], "organizations": [ { - "slug": "3dtk", - "name": "3DTK", - "first_year": 2018, - "last_year": 2018, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2018 - ] - }, - { - "slug": "appleseed", - "name": "appleseed", - "first_year": 2017, - "last_year": 2020, - "total_projects": 11, - "is_currently_active": false, - "active_years": [ - 2017, - 2018, - 2019, - 2020 - ] - }, - { - "slug": "blender-foundation", - "name": "Blender Foundation", + "slug": "videolan", + "name": "VideoLAN", "first_year": 2016, - "last_year": 2025, - "total_projects": 64, + "last_year": 2026, + "total_projects": 92, "is_currently_active": true, "active_years": [ 2016, @@ -59,14 +35,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "brl-cad", "name": "BRL-CAD", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 73, "is_currently_active": true, "active_years": [ @@ -79,55 +56,74 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "freecad", - "name": "FreeCAD", - "first_year": 2023, - "last_year": 2025, - "total_projects": 8, + "slug": "blender-foundation", + "name": "Blender Foundation", + "first_year": 2016, + "last_year": 2026, + "total_projects": 64, "is_currently_active": true, "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "the-wine-project", - "name": "The Wine Project", + "slug": "xorg-foundation", + "name": "X.Org Foundation", "first_year": 2016, - "last_year": 2020, - "total_projects": 4, + "last_year": 2023, + "total_projects": 19, "is_currently_active": false, "active_years": [ 2016, 2017, 2018, 2019, - 2020 + 2020, + 2022, + 2023 ] }, { - "slug": "videolan", - "name": "VideoLAN", - "first_year": 2016, - "last_year": 2025, - "total_projects": 92, - "is_currently_active": true, + "slug": "appleseed", + "name": "appleseed", + "first_year": 2017, + "last_year": 2020, + "total_projects": 11, + "is_currently_active": false, "active_years": [ - 2016, 2017, 2018, 2019, - 2020, - 2021, - 2022, + 2020 + ] + }, + { + "slug": "freecad", + "name": "FreeCAD", + "first_year": 2023, + "last_year": 2026, + "total_projects": 8, + "is_currently_active": true, + "active_years": [ 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -144,20 +140,29 @@ ] }, { - "slug": "xorg-foundation", - "name": "X.Org Foundation", + "slug": "the-wine-project", + "name": "The Wine Project", "first_year": 2016, - "last_year": 2023, - "total_projects": 19, + "last_year": 2020, + "total_projects": 4, "is_currently_active": false, "active_years": [ 2016, 2017, 2018, 2019, - 2020, - 2022, - 2023 + 2020 + ] + }, + { + "slug": "3dtk", + "name": "3DTK", + "first_year": 2018, + "last_year": 2018, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2018 ] } ], @@ -201,10 +206,14 @@ "2025": { "organizationCount": 4, "projectCount": 32 + }, + "2026": { + "organizationCount": 4, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.340Z" + "generated_at": "2026-02-19T13:36:00.240Z" } } \ No newline at end of file diff --git a/new-api-details/topics/3dui.json b/new-api-details/topics/3dui.json index 9a736f2c..f1aa1413 100644 --- a/new-api-details/topics/3dui.json +++ b/new-api-details/topics/3dui.json @@ -1,7 +1,7 @@ { "slug": "3dui", "name": "3dui", - "published_at": "2026-01-25T16:06:29.889Z", + "published_at": "2026-02-19T13:36:03.169Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.889Z" + "generated_at": "2026-02-19T13:36:03.169Z" } } \ No newline at end of file diff --git a/new-api-details/topics/academia.json b/new-api-details/topics/academia.json index f7cd7d72..3c8a49f2 100644 --- a/new-api-details/topics/academia.json +++ b/new-api-details/topics/academia.json @@ -1,10 +1,11 @@ { "slug": "academia", "name": "academia", - "published_at": "2026-01-25T16:06:29.209Z", + "published_at": "2026-02-19T13:36:02.002Z", "organizationCount": 1, "projectCount": 11, "years": [ + 2026, 2025, 2024, 2022, @@ -16,7 +17,7 @@ "slug": "jabref-ev", "name": "JabRef e.V.", "first_year": 2019, - "last_year": 2025, + "last_year": 2026, "total_projects": 11, "is_currently_active": true, "active_years": [ @@ -24,7 +25,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] } ], @@ -48,10 +50,14 @@ "2025": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.209Z" + "generated_at": "2026-02-19T13:36:02.002Z" } } \ No newline at end of file diff --git a/new-api-details/topics/academic-projects.json b/new-api-details/topics/academic-projects.json index e6eaa58a..fec9f6b2 100644 --- a/new-api-details/topics/academic-projects.json +++ b/new-api-details/topics/academic-projects.json @@ -1,7 +1,7 @@ { "slug": "academic-projects", "name": "academic projects", - "published_at": "2026-01-25T16:06:29.070Z", + "published_at": "2026-02-19T13:36:01.572Z", "organizationCount": 2, "projectCount": 16, "years": [ @@ -9,17 +9,6 @@ 2016 ], "organizations": [ - { - "slug": "gambit-software-tools-for-game-theory", - "name": "Gambit - Software Tools for Game Theory", - "first_year": 2016, - "last_year": 2016, - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2016 - ] - }, { "slug": "portland-state-university", "name": "Portland State University", @@ -31,6 +20,17 @@ 2016, 2017 ] + }, + { + "slug": "gambit-software-tools-for-game-theory", + "name": "Gambit - Software Tools for Game Theory", + "first_year": 2016, + "last_year": 2016, + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2016 + ] } ], "yearlyStats": { @@ -45,6 +45,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.070Z" + "generated_at": "2026-02-19T13:36:01.572Z" } } \ No newline at end of file diff --git a/new-api-details/topics/academic-research.json b/new-api-details/topics/academic-research.json index f4cfd4a3..4521169a 100644 --- a/new-api-details/topics/academic-research.json +++ b/new-api-details/topics/academic-research.json @@ -1,7 +1,7 @@ { "slug": "academic-research", "name": "academic research", - "published_at": "2026-01-25T16:06:29.675Z", + "published_at": "2026-02-19T13:36:02.904Z", "organizationCount": 1, "projectCount": 5, "years": [ @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.675Z" + "generated_at": "2026-02-19T13:36:02.904Z" } } \ No newline at end of file diff --git a/new-api-details/topics/accelerated-media.json b/new-api-details/topics/accelerated-media.json index 74a9385f..27c4b6cc 100644 --- a/new-api-details/topics/accelerated-media.json +++ b/new-api-details/topics/accelerated-media.json @@ -1,7 +1,7 @@ { "slug": "accelerated-media", "name": "accelerated media", - "published_at": "2026-01-25T16:06:29.154Z", + "published_at": "2026-02-19T13:36:01.822Z", "organizationCount": 1, "projectCount": 12, "years": [ @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.154Z" + "generated_at": "2026-02-19T13:36:01.822Z" } } \ No newline at end of file diff --git a/new-api-details/topics/accesibility.json b/new-api-details/topics/accesibility.json index 4b4d1543..757f1bb1 100644 --- a/new-api-details/topics/accesibility.json +++ b/new-api-details/topics/accesibility.json @@ -1,10 +1,11 @@ { "slug": "accesibility", "name": "accesibility", - "published_at": "2026-01-25T16:06:28.637Z", + "published_at": "2026-02-19T13:36:00.940Z", "organizationCount": 1, "projectCount": 80, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "ccextractor-development", "name": "CCExtractor Development", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 80, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 10 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.637Z" + "generated_at": "2026-02-19T13:36:00.940Z" } } \ No newline at end of file diff --git a/new-api-details/topics/accessibility.json b/new-api-details/topics/accessibility.json index c15e7940..51ff0a3d 100644 --- a/new-api-details/topics/accessibility.json +++ b/new-api-details/topics/accessibility.json @@ -1,10 +1,11 @@ { "slug": "accessibility", "name": "accessibility", - "published_at": "2026-01-25T16:06:28.639Z", + "published_at": "2026-02-19T13:36:00.942Z", "organizationCount": 6, "projectCount": 126, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "ccextractor-development", "name": "CCExtractor Development", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 80, "is_currently_active": true, "active_years": [ @@ -34,6 +35,20 @@ 2022, 2023, 2024, + 2025, + 2026 + ] + }, + { + "slug": "society-for-arts-and-technology-sat", + "name": "Society for Arts and Technology (SAT)", + "first_year": 2022, + "last_year": 2025, + "total_projects": 12, + "is_currently_active": false, + "active_years": [ + 2022, + 2023, 2025 ] }, @@ -50,43 +65,19 @@ 2020 ] }, - { - "slug": "nv-access", - "name": "NV Access", - "first_year": 2019, - "last_year": 2020, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2019, - 2020 - ] - }, - { - "slug": "society-for-arts-and-technology-sat", - "name": "Society for Arts and Technology (SAT)", - "first_year": 2022, - "last_year": 2025, - "total_projects": 12, - "is_currently_active": true, - "active_years": [ - 2022, - 2023, - 2025 - ] - }, { "slug": "wagtail", "name": "Wagtail", "first_year": 2022, - "last_year": 2025, + "last_year": 2026, "total_projects": 11, "is_currently_active": true, "active_years": [ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -95,11 +86,23 @@ "first_year": 2024, "last_year": 2025, "total_projects": 10, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2024, 2025 ] + }, + { + "slug": "nv-access", + "name": "NV Access", + "first_year": 2019, + "last_year": 2020, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2019, + 2020 + ] } ], "yearlyStats": { @@ -142,10 +145,14 @@ "2025": { "organizationCount": 4, "projectCount": 24 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.639Z" + "generated_at": "2026-02-19T13:36:00.942Z" } } \ No newline at end of file diff --git a/new-api-details/topics/acoustics.json b/new-api-details/topics/acoustics.json index 3ddfbe24..22e0d37a 100644 --- a/new-api-details/topics/acoustics.json +++ b/new-api-details/topics/acoustics.json @@ -1,7 +1,7 @@ { "slug": "acoustics", "name": "acoustics", - "published_at": "2026-01-25T16:06:29.517Z", + "published_at": "2026-02-19T13:36:02.658Z", "organizationCount": 1, "projectCount": 10, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.517Z" + "generated_at": "2026-02-19T13:36:02.658Z" } } \ No newline at end of file diff --git a/new-api-details/topics/acpi.json b/new-api-details/topics/acpi.json index 93129435..3e107f5c 100644 --- a/new-api-details/topics/acpi.json +++ b/new-api-details/topics/acpi.json @@ -1,7 +1,7 @@ { "slug": "acpi", "name": "acpi", - "published_at": "2026-01-25T16:06:29.740Z", + "published_at": "2026-02-19T13:36:03.071Z", "organizationCount": 1, "projectCount": 8, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.740Z" + "generated_at": "2026-02-19T13:36:03.071Z" } } \ No newline at end of file diff --git a/new-api-details/topics/actor-model.json b/new-api-details/topics/actor-model.json index dab5ab34..c29bed63 100644 --- a/new-api-details/topics/actor-model.json +++ b/new-api-details/topics/actor-model.json @@ -1,7 +1,7 @@ { "slug": "actor-model", "name": "actor model", - "published_at": "2026-01-25T16:06:28.702Z", + "published_at": "2026-02-19T13:36:00.953Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.702Z" + "generated_at": "2026-02-19T13:36:00.953Z" } } \ No newline at end of file diff --git a/new-api-details/topics/adjoint-design-optimization.json b/new-api-details/topics/adjoint-design-optimization.json index 537c42ea..3503dafd 100644 --- a/new-api-details/topics/adjoint-design-optimization.json +++ b/new-api-details/topics/adjoint-design-optimization.json @@ -1,10 +1,11 @@ { "slug": "adjoint-design-optimization", "name": "Adjoint Design Optimization", - "published_at": "2026-01-25T16:06:29.646Z", + "published_at": "2026-02-19T13:36:02.856Z", "organizationCount": 1, "projectCount": 7, "years": [ + 2026, 2025, 2024 ], @@ -13,12 +14,13 @@ "slug": "stichting-su2", "name": "Stichting SU2", "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "total_projects": 7, "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -30,10 +32,14 @@ "2025": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.646Z" + "generated_at": "2026-02-19T13:36:02.856Z" } } \ No newline at end of file diff --git a/new-api-details/topics/administrator.json b/new-api-details/topics/administrator.json index 1be641f7..072759dc 100644 --- a/new-api-details/topics/administrator.json +++ b/new-api-details/topics/administrator.json @@ -1,7 +1,7 @@ { "slug": "administrator", "name": "administrator", - "published_at": "2026-01-25T16:06:29.867Z", + "published_at": "2026-02-19T13:36:02.707Z", "organizationCount": 1, "projectCount": 9, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.867Z" + "generated_at": "2026-02-19T13:36:02.707Z" } } \ No newline at end of file diff --git a/new-api-details/topics/aerodynamics.json b/new-api-details/topics/aerodynamics.json index 9faaec27..076a9cd1 100644 --- a/new-api-details/topics/aerodynamics.json +++ b/new-api-details/topics/aerodynamics.json @@ -1,10 +1,11 @@ { "slug": "aerodynamics", "name": "aerodynamics", - "published_at": "2026-01-25T16:06:29.296Z", + "published_at": "2026-02-19T13:36:02.246Z", "organizationCount": 2, "projectCount": 20, "years": [ + 2026, 2025, 2024, 2022, @@ -21,7 +22,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 13, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -37,12 +38,13 @@ "slug": "stichting-su2", "name": "Stichting SU2", "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "total_projects": 7, "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 2, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.296Z" + "generated_at": "2026-02-19T13:36:02.247Z" } } \ No newline at end of file diff --git a/new-api-details/topics/aeroelasticity.json b/new-api-details/topics/aeroelasticity.json index bc64a6b5..ab7c265a 100644 --- a/new-api-details/topics/aeroelasticity.json +++ b/new-api-details/topics/aeroelasticity.json @@ -1,7 +1,7 @@ { "slug": "aeroelasticity", "name": "aeroelasticity", - "published_at": "2026-01-25T16:06:29.298Z", + "published_at": "2026-02-19T13:36:02.250Z", "organizationCount": 1, "projectCount": 13, "years": [ @@ -21,7 +21,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 13, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -70,6 +70,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.298Z" + "generated_at": "2026-02-19T13:36:02.251Z" } } \ No newline at end of file diff --git a/new-api-details/topics/aerogear.json b/new-api-details/topics/aerogear.json index e53328f2..4476cb5a 100644 --- a/new-api-details/topics/aerogear.json +++ b/new-api-details/topics/aerogear.json @@ -1,10 +1,11 @@ { "slug": "aerogear", "name": "aerogear", - "published_at": "2026-01-25T16:06:29.204Z", + "published_at": "2026-02-19T13:36:02.027Z", "organizationCount": 1, "projectCount": 52, "years": [ + 2026, 2022, 2021, 2020, @@ -18,9 +19,9 @@ "slug": "jboss-community", "name": "JBoss Community", "first_year": 2016, - "last_year": 2022, + "last_year": 2026, "total_projects": 52, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -28,7 +29,8 @@ 2019, 2020, 2021, - 2022 + 2022, + 2026 ] } ], @@ -60,10 +62,14 @@ "2022": { "organizationCount": 1, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.204Z" + "generated_at": "2026-02-19T13:36:02.027Z" } } \ No newline at end of file diff --git a/new-api-details/topics/aeronautics.json b/new-api-details/topics/aeronautics.json index f032ba74..355ac925 100644 --- a/new-api-details/topics/aeronautics.json +++ b/new-api-details/topics/aeronautics.json @@ -1,7 +1,7 @@ { "slug": "aeronautics", "name": "aeronautics", - "published_at": "2026-01-25T16:06:29.293Z", + "published_at": "2026-02-19T13:36:02.243Z", "organizationCount": 1, "projectCount": 13, "years": [ @@ -21,7 +21,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 13, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -70,6 +70,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.293Z" + "generated_at": "2026-02-19T13:36:02.243Z" } } \ No newline at end of file diff --git a/new-api-details/topics/aerospace.json b/new-api-details/topics/aerospace.json index c67a1582..e2087b0a 100644 --- a/new-api-details/topics/aerospace.json +++ b/new-api-details/topics/aerospace.json @@ -1,7 +1,7 @@ { "slug": "aerospace", "name": "aerospace", - "published_at": "2026-01-25T16:06:29.290Z", + "published_at": "2026-02-19T13:36:02.239Z", "organizationCount": 1, "projectCount": 13, "years": [ @@ -21,7 +21,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 13, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -70,6 +70,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.290Z" + "generated_at": "2026-02-19T13:36:02.239Z" } } \ No newline at end of file diff --git a/new-api-details/topics/agent-based-models.json b/new-api-details/topics/agent-based-models.json index 946c966a..d78e5690 100644 --- a/new-api-details/topics/agent-based-models.json +++ b/new-api-details/topics/agent-based-models.json @@ -1,10 +1,11 @@ { "slug": "agent-based-models", "name": "Agent Based Models", - "published_at": "2026-01-25T16:06:29.563Z", + "published_at": "2026-02-19T13:36:02.751Z", "organizationCount": 1, "projectCount": 7, "years": [ + 2026, 2025, 2024 ], @@ -13,12 +14,13 @@ "slug": "project-mesa", "name": "Project Mesa", "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "total_projects": 7, "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -30,10 +32,14 @@ "2025": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.563Z" + "generated_at": "2026-02-19T13:36:02.751Z" } } \ No newline at end of file diff --git a/new-api-details/topics/agent-sandbox.json b/new-api-details/topics/agent-sandbox.json new file mode 100644 index 00000000..3a2beaec --- /dev/null +++ b/new-api-details/topics/agent-sandbox.json @@ -0,0 +1,33 @@ +{ + "slug": "agent-sandbox", + "name": "agent sandbox", + "published_at": "2026-02-19T13:36:01.266Z", + "organizationCount": 1, + "projectCount": 0, + "years": [ + 2026 + ], + "organizations": [ + { + "slug": "erofs-filesystem", + "name": "EROFS filesystem", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + } + ], + "yearlyStats": { + "2026": { + "organizationCount": 1, + "projectCount": 0 + } + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:36:01.266Z" + } +} \ No newline at end of file diff --git a/new-api-details/topics/agent.json b/new-api-details/topics/agent.json index a37946b0..8591d8f8 100644 --- a/new-api-details/topics/agent.json +++ b/new-api-details/topics/agent.json @@ -1,7 +1,7 @@ { "slug": "agent", "name": "agent", - "published_at": "2026-01-25T16:06:28.838Z", + "published_at": "2026-02-19T13:36:01.176Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.838Z" + "generated_at": "2026-02-19T13:36:01.176Z" } } \ No newline at end of file diff --git a/new-api-details/topics/agentic-ai.json b/new-api-details/topics/agentic-ai.json new file mode 100644 index 00000000..6895699f --- /dev/null +++ b/new-api-details/topics/agentic-ai.json @@ -0,0 +1,57 @@ +{ + "slug": "agentic-ai", + "name": "Agentic AI", + "published_at": "2026-02-19T13:36:02.639Z", + "organizationCount": 1, + "projectCount": 32, + "years": [ + 2026, + 2025, + 2024, + 2023, + 2022 + ], + "organizations": [ + { + "slug": "openvino-toolkit", + "name": "OpenVINO Toolkit", + "first_year": 2022, + "last_year": 2026, + "total_projects": 32, + "is_currently_active": true, + "active_years": [ + 2022, + 2023, + 2024, + 2025, + 2026 + ] + } + ], + "yearlyStats": { + "2022": { + "organizationCount": 1, + "projectCount": 3 + }, + "2023": { + "organizationCount": 1, + "projectCount": 5 + }, + "2024": { + "organizationCount": 1, + "projectCount": 8 + }, + "2025": { + "organizationCount": 1, + "projectCount": 16 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 + } + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:36:02.639Z" + } +} \ No newline at end of file diff --git a/new-api-details/topics/agents.json b/new-api-details/topics/agents.json new file mode 100644 index 00000000..d39f2001 --- /dev/null +++ b/new-api-details/topics/agents.json @@ -0,0 +1,45 @@ +{ + "slug": "agents", + "name": "Agents", + "published_at": "2026-02-19T13:36:00.563Z", + "organizationCount": 1, + "projectCount": 3, + "years": [ + 2026, + 2025, + 2024 + ], + "organizations": [ + { + "slug": "api-dash", + "name": "API Dash", + "first_year": 2024, + "last_year": 2026, + "total_projects": 3, + "is_currently_active": true, + "active_years": [ + 2024, + 2025, + 2026 + ] + } + ], + "yearlyStats": { + "2024": { + "organizationCount": 1, + "projectCount": 1 + }, + "2025": { + "organizationCount": 1, + "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 + } + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:36:00.563Z" + } +} \ No newline at end of file diff --git a/new-api-details/topics/agi.json b/new-api-details/topics/agi.json index 775a626b..1ecf62f8 100644 --- a/new-api-details/topics/agi.json +++ b/new-api-details/topics/agi.json @@ -1,7 +1,7 @@ { "slug": "agi", "name": "AGI", - "published_at": "2026-01-25T16:06:29.807Z", + "published_at": "2026-02-19T13:36:03.173Z", "organizationCount": 1, "projectCount": 10, "years": [ @@ -15,7 +15,7 @@ "first_year": 2024, "last_year": 2025, "total_projects": 10, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2024, 2025 @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.807Z" + "generated_at": "2026-02-19T13:36:03.173Z" } } \ No newline at end of file diff --git a/new-api-details/topics/ai-agent.json b/new-api-details/topics/ai-agent.json new file mode 100644 index 00000000..bbf053e7 --- /dev/null +++ b/new-api-details/topics/ai-agent.json @@ -0,0 +1,33 @@ +{ + "slug": "ai-agent", + "name": "AI Agent", + "published_at": "2026-02-19T13:36:02.334Z", + "organizationCount": 1, + "projectCount": 0, + "years": [ + 2026 + ], + "organizations": [ + { + "slug": "mofa-org", + "name": "MoFA Org", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + } + ], + "yearlyStats": { + "2026": { + "organizationCount": 1, + "projectCount": 0 + } + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:36:02.334Z" + } +} \ No newline at end of file diff --git a/new-api-details/topics/ai-for-math.json b/new-api-details/topics/ai-for-math.json new file mode 100644 index 00000000..014bc37a --- /dev/null +++ b/new-api-details/topics/ai-for-math.json @@ -0,0 +1,33 @@ +{ + "slug": "ai-for-math", + "name": "AI for math", + "published_at": "2026-02-19T13:36:02.337Z", + "organizationCount": 1, + "projectCount": 0, + "years": [ + 2026 + ], + "organizations": [ + { + "slug": "moganlab", + "name": "MoganLab", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + } + ], + "yearlyStats": { + "2026": { + "organizationCount": 1, + "projectCount": 0 + } + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:36:02.337Z" + } +} \ No newline at end of file diff --git a/new-api-details/topics/ai-in-health.json b/new-api-details/topics/ai-in-health.json index 69f1b669..4d47c826 100644 --- a/new-api-details/topics/ai-in-health.json +++ b/new-api-details/topics/ai-in-health.json @@ -1,10 +1,11 @@ { "slug": "ai-in-health", "name": "AI in Health", - "published_at": "2026-01-25T16:06:29.441Z", + "published_at": "2026-02-19T13:36:02.503Z", "organizationCount": 1, "projectCount": 9, "years": [ + 2026, 2025, 2024 ], @@ -13,12 +14,13 @@ "slug": "open-healthcare-network", "name": "Open HealthCare Network", "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "total_projects": 9, "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -30,10 +32,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.441Z" + "generated_at": "2026-02-19T13:36:02.503Z" } } \ No newline at end of file diff --git a/new-api-details/topics/ai-ml-networking.json b/new-api-details/topics/ai-ml-networking.json index e4c136a3..343c9a53 100644 --- a/new-api-details/topics/ai-ml-networking.json +++ b/new-api-details/topics/ai-ml-networking.json @@ -1,10 +1,11 @@ { "slug": "ai-ml-networking", "name": "AI/ML Networking", - "published_at": "2026-01-25T16:06:29.717Z", + "published_at": "2026-02-19T13:36:02.973Z", "organizationCount": 1, "projectCount": 9, "years": [ + 2026, 2025, 2024 ], @@ -13,12 +14,13 @@ "slug": "the-p4-language-consortium", "name": "The P4 Language Consortium", "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "total_projects": 9, "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -30,10 +32,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.717Z" + "generated_at": "2026-02-19T13:36:02.973Z" } } \ No newline at end of file diff --git a/new-api-details/topics/ai-ml.json b/new-api-details/topics/ai-ml.json index 89b1d892..c74519c5 100644 --- a/new-api-details/topics/ai-ml.json +++ b/new-api-details/topics/ai-ml.json @@ -1,10 +1,11 @@ { "slug": "ai-ml", "name": "AI/ML", - "published_at": "2026-01-25T16:06:28.786Z", + "published_at": "2026-02-19T13:36:00.903Z", "organizationCount": 8, "projectCount": 147, "years": [ + 2026, 2025, 2024, 2023, @@ -18,17 +19,17 @@ ], "organizations": [ { - "slug": "camicroscope", - "name": "caMicroscope", - "first_year": 2020, - "last_year": 2024, - "total_projects": 13, - "is_currently_active": false, + "slug": "uc-ospo", + "name": "UC OSPO", + "first_year": 2023, + "last_year": 2026, + "total_projects": 47, + "is_currently_active": true, "active_years": [ - 2020, - 2021, 2023, - 2024 + 2024, + 2025, + 2026 ] }, { @@ -37,7 +38,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 28, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -50,17 +51,46 @@ 2025 ] }, + { + "slug": "kubeflow", + "name": "Kubeflow", + "first_year": 2020, + "last_year": 2026, + "total_projects": 21, + "is_currently_active": true, + "active_years": [ + 2020, + 2024, + 2025, + 2026 + ] + }, { "slug": "joplin", "name": "Joplin", "first_year": 2020, - "last_year": 2024, + "last_year": 2026, "total_projects": 17, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2020, 2021, 2022, + 2024, + 2026 + ] + }, + { + "slug": "camicroscope", + "name": "caMicroscope", + "first_year": 2020, + "last_year": 2024, + "total_projects": 13, + "is_currently_active": false, + "active_years": [ + 2020, + 2021, + 2023, 2024 ] }, @@ -70,26 +100,13 @@ "first_year": 2023, "last_year": 2025, "total_projects": 11, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2023, 2024, 2025 ] }, - { - "slug": "kubeflow", - "name": "Kubeflow", - "first_year": 2020, - "last_year": 2025, - "total_projects": 21, - "is_currently_active": true, - "active_years": [ - 2020, - 2024, - 2025 - ] - }, { "slug": "sktime", "name": "sktime", @@ -106,24 +123,12 @@ "slug": "typelevel", "name": "Typelevel", "first_year": 2025, - "last_year": 2025, + "last_year": 2026, "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 - ] - }, - { - "slug": "uc-ospo", - "name": "UC OSPO", - "first_year": 2023, - "last_year": 2025, - "total_projects": 47, - "is_currently_active": true, - "active_years": [ - 2023, - 2024, - 2025 + 2025, + 2026 ] } ], @@ -167,10 +172,14 @@ "2025": { "organizationCount": 5, "projectCount": 39 + }, + "2026": { + "organizationCount": 4, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.786Z" + "generated_at": "2026-02-19T13:36:00.903Z" } } \ No newline at end of file diff --git a/new-api-details/topics/ai-testing-agent.json b/new-api-details/topics/ai-testing-agent.json index 1f779be8..00aa291a 100644 --- a/new-api-details/topics/ai-testing-agent.json +++ b/new-api-details/topics/ai-testing-agent.json @@ -1,7 +1,7 @@ { "slug": "ai-testing-agent", "name": "AI Testing Agent", - "published_at": "2026-01-25T16:06:29.238Z", + "published_at": "2026-02-19T13:36:02.102Z", "organizationCount": 1, "projectCount": 11, "years": [ @@ -16,7 +16,7 @@ "first_year": 2023, "last_year": 2025, "total_projects": 11, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2023, 2024, @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.238Z" + "generated_at": "2026-02-19T13:36:02.102Z" } } \ No newline at end of file diff --git a/new-api-details/topics/ai.json b/new-api-details/topics/ai.json index b6511f2f..6591de87 100644 --- a/new-api-details/topics/ai.json +++ b/new-api-details/topics/ai.json @@ -1,10 +1,11 @@ { "slug": "ai", "name": "ai", - "published_at": "2026-01-25T16:06:28.434Z", - "organizationCount": 33, - "projectCount": 1272, + "published_at": "2026-02-19T13:36:00.373Z", + "organizationCount": 36, + "projectCount": 1279, "years": [ + 2026, 2025, 2024, 2023, @@ -18,49 +19,56 @@ ], "organizations": [ { - "slug": "accord-project", - "name": "Accord Project", - "first_year": 2020, - "last_year": 2025, - "total_projects": 13, + "slug": "numfocus", + "name": "NumFOCUS", + "first_year": 2016, + "last_year": 2026, + "total_projects": 277, "is_currently_active": true, "active_years": [ + 2016, + 2017, + 2018, + 2019, 2020, 2021, + 2022, + 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "ardupilot", - "name": "ArduPilot", - "first_year": 2017, - "last_year": 2025, - "total_projects": 38, + "slug": "the-mifos-initiative", + "name": "The Mifos Initiative", + "first_year": 2016, + "last_year": 2026, + "total_projects": 102, "is_currently_active": true, "active_years": [ + 2016, 2017, 2018, 2019, 2020, - 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "beagleboardorg", - "name": "BeagleBoard.org", + "slug": "opencv", + "name": "OpenCV", "first_year": 2016, "last_year": 2025, - "total_projects": 44, - "is_currently_active": true, + "total_projects": 93, + "is_currently_active": false, "active_years": [ 2016, 2017, - 2018, 2019, 2020, 2021, @@ -71,13 +79,21 @@ ] }, { - "slug": "c2si", - "name": "C2SI", - "first_year": 2024, + "slug": "red-hen-lab", + "name": "Red Hen Lab", + "first_year": 2016, "last_year": 2024, - "total_projects": 12, + "total_projects": 88, "is_currently_active": false, "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, 2024 ] }, @@ -85,7 +101,7 @@ "slug": "ccextractor-development", "name": "CCExtractor Development", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 80, "is_currently_active": true, "active_years": [ @@ -98,38 +114,15 @@ 2022, 2023, 2024, - 2025 - ] - }, - { - "slug": "classical-language-toolkit", - "name": "Classical Language Toolkit", - "first_year": 2016, - "last_year": 2018, - "total_projects": 7, - "is_currently_active": false, - "active_years": [ - 2016, - 2017, - 2018 - ] - }, - { - "slug": "cvat", - "name": "CVAT", - "first_year": 2024, - "last_year": 2024, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2024 + 2025, + 2026 ] }, { "slug": "debian", "name": "Debian", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 78, "is_currently_active": true, "active_years": [ @@ -140,15 +133,16 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "fedora-project", - "name": "Fedora Project", + "slug": "oppia-foundation", + "name": "Oppia Foundation", "first_year": 2016, - "last_year": 2025, - "total_projects": 27, + "last_year": 2026, + "total_projects": 77, "is_currently_active": true, "active_years": [ 2016, @@ -156,90 +150,12 @@ 2018, 2019, 2020, - 2025 - ] - }, - { - "slug": "free-uk-genealogy", - "name": "Free UK Genealogy", - "first_year": 2018, - "last_year": 2018, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2018 - ] - }, - { - "slug": "gitlab", - "name": "GitLab", - "first_year": 2021, - "last_year": 2025, - "total_projects": 15, - "is_currently_active": true, - "active_years": [ 2021, 2022, 2023, - 2025 - ] - }, - { - "slug": "google-deepmind", - "name": "Google DeepMind", - "first_year": 2025, - "last_year": 2025, - "total_projects": 45, - "is_currently_active": true, - "active_years": [ - 2025 - ] - }, - { - "slug": "google-fhir-sdk", - "name": "Google FHIR SDK", - "first_year": 2021, - "last_year": 2021, - "total_projects": 5, - "is_currently_active": false, - "active_years": [ - 2021 - ] - }, - { - "slug": "humanai", - "name": "HumanAI", - "first_year": 2024, - "last_year": 2025, - "total_projects": 26, - "is_currently_active": true, - "active_years": [ 2024, - 2025 - ] - }, - { - "slug": "librecube-initiative", - "name": "LibreCube Initiative", - "first_year": 2021, - "last_year": 2024, - "total_projects": 7, - "is_currently_active": false, - "active_years": [ - 2021, - 2022, - 2024 - ] - }, - { - "slug": "mautic", - "name": "Mautic", - "first_year": 2024, - "last_year": 2024, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2024 + 2025, + 2026 ] }, { @@ -262,39 +178,23 @@ ] }, { - "slug": "mobile-robot-programming-toolkit-mrpt", - "name": "Mobile Robot Programming Toolkit (MRPT)", - "first_year": 2016, - "last_year": 2018, - "total_projects": 8, - "is_currently_active": false, - "active_years": [ - 2016, - 2017, - 2018 - ] - }, - { - "slug": "neovim", - "name": "Neovim", - "first_year": 2018, + "slug": "google-deepmind", + "name": "Google DeepMind", + "first_year": 2025, "last_year": 2025, - "total_projects": 8, - "is_currently_active": true, + "total_projects": 45, + "is_currently_active": false, "active_years": [ - 2018, - 2019, - 2020, 2025 ] }, { - "slug": "numfocus", - "name": "NumFOCUS", + "slug": "beagleboardorg", + "name": "BeagleBoard.org", "first_year": 2016, "last_year": 2025, - "total_projects": 277, - "is_currently_active": true, + "total_projects": 44, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -309,41 +209,49 @@ ] }, { - "slug": "open-detection", - "name": "Open Detection", + "slug": "the-terasology-foundation", + "name": "The Terasology Foundation", "first_year": 2016, - "last_year": 2017, - "total_projects": 4, + "last_year": 2021, + "total_projects": 43, "is_currently_active": false, "active_years": [ 2016, - 2017 + 2017, + 2018, + 2019, + 2020, + 2021 ] }, { - "slug": "open-transit-software-foundation", - "name": "Open Transit Software Foundation", - "first_year": 2024, - "last_year": 2025, - "total_projects": 10, + "slug": "ardupilot", + "name": "ArduPilot", + "first_year": 2017, + "last_year": 2026, + "total_projects": 38, "is_currently_active": true, "active_years": [ + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "opencv", - "name": "OpenCV", - "first_year": 2016, + "slug": "the-palisadoes-foundation", + "name": "The Palisadoes Foundation", + "first_year": 2021, "last_year": 2025, - "total_projects": 93, - "is_currently_active": true, + "total_projects": 36, + "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2019, - 2020, 2021, 2022, 2023, @@ -355,36 +263,100 @@ "slug": "openvino-toolkit", "name": "OpenVINO Toolkit", "first_year": 2022, - "last_year": 2025, + "last_year": 2026, "total_projects": 32, "is_currently_active": true, "active_years": [ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "oppia-foundation", - "name": "Oppia Foundation", + "slug": "fedora-project", + "name": "Fedora Project", "first_year": 2016, "last_year": 2025, - "total_projects": 77, - "is_currently_active": true, + "total_projects": 27, + "is_currently_active": false, "active_years": [ 2016, 2017, 2018, 2019, 2020, + 2025 + ] + }, + { + "slug": "humanai", + "name": "HumanAI", + "first_year": 2024, + "last_year": 2026, + "total_projects": 26, + "is_currently_active": true, + "active_years": [ + 2024, + 2025, + 2026 + ] + }, + { + "slug": "gitlab", + "name": "GitLab", + "first_year": 2021, + "last_year": 2025, + "total_projects": 15, + "is_currently_active": false, + "active_years": [ 2021, 2022, 2023, - 2024, 2025 ] }, + { + "slug": "accord-project", + "name": "Accord Project", + "first_year": 2020, + "last_year": 2026, + "total_projects": 13, + "is_currently_active": true, + "active_years": [ + 2020, + 2021, + 2024, + 2025, + 2026 + ] + }, + { + "slug": "c2si", + "name": "C2SI", + "first_year": 2024, + "last_year": 2026, + "total_projects": 12, + "is_currently_active": true, + "active_years": [ + 2024, + 2026 + ] + }, + { + "slug": "open-transit-software-foundation", + "name": "Open Transit Software Foundation", + "first_year": 2024, + "last_year": 2026, + "total_projects": 10, + "is_currently_active": true, + "active_years": [ + 2024, + 2025, + 2026 + ] + }, { "slug": "orcasound", "name": "Orcasound", @@ -412,33 +384,31 @@ ] }, { - "slug": "red-hen-lab", - "name": "Red Hen Lab", + "slug": "mobile-robot-programming-toolkit-mrpt", + "name": "Mobile Robot Programming Toolkit (MRPT)", "first_year": 2016, - "last_year": 2024, - "total_projects": 88, + "last_year": 2018, + "total_projects": 8, "is_currently_active": false, "active_years": [ 2016, 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024 + 2018 ] }, { - "slug": "responsible-ai-and-human-centred-technology", - "name": "Responsible AI and Human Centred Technology", - "first_year": 2022, - "last_year": 2022, - "total_projects": 4, - "is_currently_active": false, + "slug": "neovim", + "name": "Neovim", + "first_year": 2018, + "last_year": 2026, + "total_projects": 8, + "is_currently_active": true, "active_years": [ - 2022 + 2018, + 2019, + 2020, + 2025, + 2026 ] }, { @@ -454,54 +424,134 @@ ] }, { - "slug": "the-mifos-initiative", - "name": "The Mifos Initiative", + "slug": "classical-language-toolkit", + "name": "Classical Language Toolkit", "first_year": 2016, - "last_year": 2025, - "total_projects": 102, - "is_currently_active": true, + "last_year": 2018, + "total_projects": 7, + "is_currently_active": false, "active_years": [ 2016, 2017, - 2018, - 2019, - 2020, - 2022, - 2023, - 2024, - 2025 + 2018 ] }, { - "slug": "the-palisadoes-foundation", - "name": "The Palisadoes Foundation", + "slug": "librecube-initiative", + "name": "LibreCube Initiative", "first_year": 2021, - "last_year": 2025, - "total_projects": 36, + "last_year": 2026, + "total_projects": 7, "is_currently_active": true, "active_years": [ 2021, 2022, - 2023, 2024, - 2025 + 2026 ] }, { - "slug": "the-terasology-foundation", - "name": "The Terasology Foundation", - "first_year": 2016, + "slug": "google-fhir-sdk", + "name": "Google FHIR SDK", + "first_year": 2021, "last_year": 2021, - "total_projects": 43, + "total_projects": 5, "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, 2021 ] + }, + { + "slug": "open-detection", + "name": "Open Detection", + "first_year": 2016, + "last_year": 2017, + "total_projects": 4, + "is_currently_active": false, + "active_years": [ + 2016, + 2017 + ] + }, + { + "slug": "open-science-labs", + "name": "Open Science Labs", + "first_year": 2025, + "last_year": 2026, + "total_projects": 4, + "is_currently_active": true, + "active_years": [ + 2025, + 2026 + ] + }, + { + "slug": "responsible-ai-and-human-centred-technology", + "name": "Responsible AI and Human Centred Technology", + "first_year": 2022, + "last_year": 2022, + "total_projects": 4, + "is_currently_active": false, + "active_years": [ + 2022 + ] + }, + { + "slug": "api-dash", + "name": "API Dash", + "first_year": 2024, + "last_year": 2026, + "total_projects": 3, + "is_currently_active": true, + "active_years": [ + 2024, + 2025, + 2026 + ] + }, + { + "slug": "cvat", + "name": "CVAT", + "first_year": 2024, + "last_year": 2024, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2024 + ] + }, + { + "slug": "free-uk-genealogy", + "name": "Free UK Genealogy", + "first_year": 2018, + "last_year": 2018, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2018 + ] + }, + { + "slug": "mautic", + "name": "Mautic", + "first_year": 2024, + "last_year": 2024, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2024 + ] + }, + { + "slug": "mllam", + "name": "MLLAM", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] } ], "yearlyStats": { @@ -538,16 +588,20 @@ "projectCount": 88 }, "2024": { - "organizationCount": 21, - "projectCount": 161 + "organizationCount": 22, + "projectCount": 162 }, "2025": { - "organizationCount": 17, - "projectCount": 192 + "organizationCount": 19, + "projectCount": 198 + }, + "2026": { + "organizationCount": 16, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.434Z" + "generated_at": "2026-02-19T13:36:00.373Z" } } \ No newline at end of file diff --git a/new-api-details/topics/aiml.json b/new-api-details/topics/aiml.json index 37713ca6..3ee02b26 100644 --- a/new-api-details/topics/aiml.json +++ b/new-api-details/topics/aiml.json @@ -1,10 +1,11 @@ { "slug": "aiml", "name": "AIML", - "published_at": "2026-01-25T16:06:29.856Z", + "published_at": "2026-02-19T13:36:02.607Z", "organizationCount": 1, "projectCount": 52, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "opensuse-project", "name": "openSUSE Project", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 52, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.856Z" + "generated_at": "2026-02-19T13:36:02.607Z" } } \ No newline at end of file diff --git a/new-api-details/topics/alerting.json b/new-api-details/topics/alerting.json index f867b4a1..f99431e5 100644 --- a/new-api-details/topics/alerting.json +++ b/new-api-details/topics/alerting.json @@ -1,7 +1,7 @@ { "slug": "alerting", "name": "alerting", - "published_at": "2026-01-25T16:06:29.367Z", + "published_at": "2026-02-19T13:36:02.339Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.367Z" + "generated_at": "2026-02-19T13:36:02.339Z" } } \ No newline at end of file diff --git a/new-api-details/topics/alerts.json b/new-api-details/topics/alerts.json index e6ab2f6e..65a2c452 100644 --- a/new-api-details/topics/alerts.json +++ b/new-api-details/topics/alerts.json @@ -1,7 +1,7 @@ { "slug": "alerts", "name": "alerts", - "published_at": "2026-01-25T16:06:29.532Z", + "published_at": "2026-02-19T13:36:02.691Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.532Z" + "generated_at": "2026-02-19T13:36:02.691Z" } } \ No newline at end of file diff --git a/new-api-details/topics/algorithm-prototyping-visualization.json b/new-api-details/topics/algorithm-prototyping-visualization.json index 4548ec92..f56def07 100644 --- a/new-api-details/topics/algorithm-prototyping-visualization.json +++ b/new-api-details/topics/algorithm-prototyping-visualization.json @@ -1,7 +1,7 @@ { "slug": "algorithm-prototyping-visualization", "name": "algorithm prototyping/visualization", - "published_at": "2026-01-25T16:06:29.107Z", + "published_at": "2026-02-19T13:36:01.740Z", "organizationCount": 2, "projectCount": 11, "years": [ @@ -45,6 +45,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.107Z" + "generated_at": "2026-02-19T13:36:01.740Z" } } \ No newline at end of file diff --git a/new-api-details/topics/algorithmics.json b/new-api-details/topics/algorithmics.json index f8f91bc2..48a00148 100644 --- a/new-api-details/topics/algorithmics.json +++ b/new-api-details/topics/algorithmics.json @@ -1,10 +1,11 @@ { "slug": "algorithmics", "name": "algorithmics", - "published_at": "2026-01-25T16:06:28.648Z", + "published_at": "2026-02-19T13:36:00.973Z", "organizationCount": 1, "projectCount": 214, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "cern-hsf", "name": "CERN-HSF", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 214, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 26 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.648Z" + "generated_at": "2026-02-19T13:36:00.973Z" } } \ No newline at end of file diff --git a/new-api-details/topics/algorithms.json b/new-api-details/topics/algorithms.json index 139595db..0533ba07 100644 --- a/new-api-details/topics/algorithms.json +++ b/new-api-details/topics/algorithms.json @@ -1,10 +1,11 @@ { "slug": "algorithms", "name": "algorithms", - "published_at": "2026-01-25T16:06:28.621Z", - "organizationCount": 11, + "published_at": "2026-02-19T13:36:00.852Z", + "organizationCount": 12, "projectCount": 340, "years": [ + 2026, 2025, 2024, 2023, @@ -17,50 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "boost-c-libraries", - "name": "Boost C++ Libraries", - "first_year": 2017, - "last_year": 2021, - "total_projects": 41, - "is_currently_active": false, - "active_years": [ - 2017, - 2018, - 2019, - 2020, - 2021 - ] - }, - { - "slug": "d-language-foundation", - "name": "D Language Foundation", - "first_year": 2016, - "last_year": 2025, - "total_projects": 11, - "is_currently_active": true, - "active_years": [ - 2016, - 2019, - 2025 - ] - }, - { - "slug": "jgrapht", - "name": "JGraphT", - "first_year": 2018, - "last_year": 2018, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2018 - ] - }, { "slug": "machine-learning-for-science-ml4sci", "name": "Machine Learning for Science (ML4SCI)", "first_year": 2021, - "last_year": 2025, + "last_year": 2026, "total_projects": 119, "is_currently_active": true, "active_years": [ @@ -68,7 +30,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -90,35 +53,11 @@ 2024 ] }, - { - "slug": "mobile-robot-programming-toolkit-mrpt", - "name": "Mobile Robot Programming Toolkit (MRPT)", - "first_year": 2016, - "last_year": 2018, - "total_projects": 8, - "is_currently_active": false, - "active_years": [ - 2016, - 2017, - 2018 - ] - }, - { - "slug": "openms", - "name": "OpenMS", - "first_year": 2025, - "last_year": 2025, - "total_projects": 2, - "is_currently_active": true, - "active_years": [ - 2025 - ] - }, { "slug": "sagemath", "name": "SageMath", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 55, "is_currently_active": true, "active_years": [ @@ -131,14 +70,30 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "boost-c-libraries", + "name": "Boost C++ Libraries", + "first_year": 2017, + "last_year": 2021, + "total_projects": 41, + "is_currently_active": false, + "active_years": [ + 2017, + 2018, + 2019, + 2020, + 2021 ] }, { "slug": "stear-group", "name": "Ste||ar group", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 38, "is_currently_active": true, "active_years": [ @@ -150,7 +105,35 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "d-language-foundation", + "name": "D Language Foundation", + "first_year": 2016, + "last_year": 2026, + "total_projects": 11, + "is_currently_active": true, + "active_years": [ + 2016, + 2019, + 2025, + 2026 + ] + }, + { + "slug": "mobile-robot-programming-toolkit-mrpt", + "name": "Mobile Robot Programming Toolkit (MRPT)", + "first_year": 2016, + "last_year": 2018, + "total_projects": 8, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2018 ] }, { @@ -165,6 +148,29 @@ 2022 ] }, + { + "slug": "jgrapht", + "name": "JGraphT", + "first_year": 2018, + "last_year": 2018, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2018 + ] + }, + { + "slug": "openms", + "name": "OpenMS", + "first_year": 2025, + "last_year": 2026, + "total_projects": 2, + "is_currently_active": true, + "active_years": [ + 2025, + 2026 + ] + }, { "slug": "tla", "name": "TLA+", @@ -175,6 +181,17 @@ "active_years": [ 2018 ] + }, + { + "slug": "gambit-the-package-for-computation-in-game-theory", + "name": "Gambit: The package for computation in game theory", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] } ], "yearlyStats": { @@ -217,10 +234,14 @@ "2025": { "organizationCount": 5, "projectCount": 48 + }, + "2026": { + "organizationCount": 6, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.621Z" + "generated_at": "2026-02-19T13:36:00.852Z" } } \ No newline at end of file diff --git a/new-api-details/topics/analysis.json b/new-api-details/topics/analysis.json index bb2adef7..2aca605f 100644 --- a/new-api-details/topics/analysis.json +++ b/new-api-details/topics/analysis.json @@ -1,7 +1,7 @@ { "slug": "analysis", "name": "analysis", - "published_at": "2026-01-25T16:06:29.532Z", + "published_at": "2026-02-19T13:36:02.692Z", "organizationCount": 1, "projectCount": 19, "years": [ @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.532Z" + "generated_at": "2026-02-19T13:36:02.692Z" } } \ No newline at end of file diff --git a/new-api-details/topics/analytics.json b/new-api-details/topics/analytics.json index ff0f4761..1f45c411 100644 --- a/new-api-details/topics/analytics.json +++ b/new-api-details/topics/analytics.json @@ -1,10 +1,11 @@ { "slug": "analytics", "name": "analytics", - "published_at": "2026-01-25T16:06:28.659Z", - "organizationCount": 3, + "published_at": "2026-02-19T13:36:00.991Z", + "organizationCount": 4, "projectCount": 42, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "first_year": 2018, "last_year": 2025, "total_projects": 29, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2018, 2019, @@ -31,6 +32,19 @@ 2025 ] }, + { + "slug": "mayors-office-of-new-urban-mechanics", + "name": "Mayor's Office of New Urban Mechanics", + "first_year": 2021, + "last_year": 2023, + "total_projects": 9, + "is_currently_active": false, + "active_years": [ + 2021, + 2022, + 2023 + ] + }, { "slug": "city-of-boston", "name": "City of Boston", @@ -43,16 +57,14 @@ ] }, { - "slug": "mayors-office-of-new-urban-mechanics", - "name": "Mayor's Office of New Urban Mechanics", - "first_year": 2021, - "last_year": 2023, - "total_projects": 9, - "is_currently_active": false, + "slug": "malariagen", + "name": "MalariaGEN", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, "active_years": [ - 2021, - 2022, - 2023 + 2026 ] } ], @@ -88,10 +100,14 @@ "2025": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.659Z" + "generated_at": "2026-02-19T13:36:00.991Z" } } \ No newline at end of file diff --git a/new-api-details/topics/analyzing.json b/new-api-details/topics/analyzing.json index 6aa830e1..5fe82d8f 100644 --- a/new-api-details/topics/analyzing.json +++ b/new-api-details/topics/analyzing.json @@ -1,7 +1,7 @@ { "slug": "analyzing", "name": "analyzing", - "published_at": "2026-01-25T16:06:29.526Z", + "published_at": "2026-02-19T13:36:02.686Z", "organizationCount": 1, "projectCount": 0, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.526Z" + "generated_at": "2026-02-19T13:36:02.686Z" } } \ No newline at end of file diff --git a/new-api-details/topics/android-sdk.json b/new-api-details/topics/android-sdk.json index 7bca5ce2..2149f11c 100644 --- a/new-api-details/topics/android-sdk.json +++ b/new-api-details/topics/android-sdk.json @@ -1,10 +1,11 @@ { "slug": "android-sdk", "name": "android-sdk", - "published_at": "2026-01-25T16:06:28.826Z", + "published_at": "2026-02-19T13:36:01.166Z", "organizationCount": 1, "projectCount": 78, "years": [ + 2026, 2025, 2024, 2022, @@ -19,7 +20,7 @@ "slug": "debian", "name": "Debian", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 78, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.826Z" + "generated_at": "2026-02-19T13:36:01.166Z" } } \ No newline at end of file diff --git a/new-api-details/topics/android.json b/new-api-details/topics/android.json index d2f2b51a..48066ff2 100644 --- a/new-api-details/topics/android.json +++ b/new-api-details/topics/android.json @@ -1,10 +1,11 @@ { "slug": "android", "name": "android", - "published_at": "2026-01-25T16:06:28.462Z", - "organizationCount": 5, + "published_at": "2026-02-19T13:36:00.455Z", + "organizationCount": 6, "projectCount": 278, "years": [ + 2026, 2025, 2024, 2023, @@ -17,25 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "ankidroid", - "name": "AnkiDroid", - "first_year": 2021, - "last_year": 2025, - "total_projects": 10, - "is_currently_active": true, - "active_years": [ - 2021, - 2022, - 2024, - 2025 - ] - }, { "slug": "fossasia", "name": "FOSSASIA", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 140, "is_currently_active": true, "active_years": [ @@ -44,31 +31,15 @@ 2018, 2019, 2024, - 2025 - ] - }, - { - "slug": "kiwix", - "name": "Kiwix", - "first_year": 2018, - "last_year": 2025, - "total_projects": 18, - "is_currently_active": true, - "active_years": [ - 2018, - 2019, - 2020, - 2021, - 2023, - 2024, - 2025 + 2025, + 2026 ] }, { "slug": "libreoffice", "name": "LibreOffice", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 65, "is_currently_active": true, "active_years": [ @@ -81,14 +52,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "mit-app-inventor", "name": "MIT App Inventor", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 45, "is_currently_active": true, "active_years": [ @@ -100,7 +72,52 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "kiwix", + "name": "Kiwix", + "first_year": 2018, + "last_year": 2026, + "total_projects": 18, + "is_currently_active": true, + "active_years": [ + 2018, + 2019, + 2020, + 2021, + 2023, + 2024, + 2025, + 2026 + ] + }, + { + "slug": "ankidroid", + "name": "AnkiDroid", + "first_year": 2021, + "last_year": 2026, + "total_projects": 10, + "is_currently_active": true, + "active_years": [ + 2021, + 2022, + 2024, + 2025, + 2026 + ] + }, + { + "slug": "erofs-filesystem", + "name": "EROFS filesystem", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 ] } ], @@ -144,10 +161,14 @@ "2025": { "organizationCount": 5, "projectCount": 37 + }, + "2026": { + "organizationCount": 6, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.462Z" + "generated_at": "2026-02-19T13:36:00.455Z" } } \ No newline at end of file diff --git a/new-api-details/topics/angularjs.json b/new-api-details/topics/angularjs.json index dc616222..f8246479 100644 --- a/new-api-details/topics/angularjs.json +++ b/new-api-details/topics/angularjs.json @@ -1,7 +1,7 @@ { "slug": "angularjs", "name": "angularjs", - "published_at": "2026-01-25T16:06:28.784Z", + "published_at": "2026-02-19T13:36:01.049Z", "organizationCount": 1, "projectCount": 28, "years": [ @@ -22,7 +22,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 28, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -76,6 +76,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.784Z" + "generated_at": "2026-02-19T13:36:01.049Z" } } \ No newline at end of file diff --git a/new-api-details/topics/animation.json b/new-api-details/topics/animation.json index 7003ab8f..58938220 100644 --- a/new-api-details/topics/animation.json +++ b/new-api-details/topics/animation.json @@ -1,10 +1,11 @@ { "slug": "animation", "name": "animation", - "published_at": "2026-01-25T16:06:28.430Z", + "published_at": "2026-02-19T13:36:00.369Z", "organizationCount": 4, "projectCount": 90, "years": [ + 2026, 2025, 2024, 2023, @@ -17,37 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "academy-software-foundation", - "name": "Academy Software Foundation", - "first_year": 2020, - "last_year": 2022, - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2020, - 2022 - ] - }, - { - "slug": "appleseed", - "name": "appleseed", - "first_year": 2017, - "last_year": 2020, - "total_projects": 11, - "is_currently_active": false, - "active_years": [ - 2017, - 2018, - 2019, - 2020 - ] - }, { "slug": "blender-foundation", "name": "Blender Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 64, "is_currently_active": true, "active_years": [ @@ -60,14 +35,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "synfig", "name": "Synfig", "first_year": 2019, - "last_year": 2025, + "last_year": 2026, "total_projects": 12, "is_currently_active": true, "active_years": [ @@ -77,7 +53,34 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "appleseed", + "name": "appleseed", + "first_year": 2017, + "last_year": 2020, + "total_projects": 11, + "is_currently_active": false, + "active_years": [ + 2017, + 2018, + 2019, + 2020 + ] + }, + { + "slug": "academy-software-foundation", + "name": "Academy Software Foundation", + "first_year": 2020, + "last_year": 2022, + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2020, + 2022 ] } ], @@ -121,10 +124,14 @@ "2025": { "organizationCount": 2, "projectCount": 10 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.430Z" + "generated_at": "2026-02-19T13:36:00.369Z" } } \ No newline at end of file diff --git a/new-api-details/topics/anonymity.json b/new-api-details/topics/anonymity.json index 090e946b..36a498e4 100644 --- a/new-api-details/topics/anonymity.json +++ b/new-api-details/topics/anonymity.json @@ -1,7 +1,7 @@ { "slug": "anonymity", "name": "anonymity", - "published_at": "2026-01-25T16:06:29.724Z", + "published_at": "2026-02-19T13:36:02.986Z", "organizationCount": 1, "projectCount": 19, "years": [ @@ -18,7 +18,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 19, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -52,6 +52,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.724Z" + "generated_at": "2026-02-19T13:36:02.986Z" } } \ No newline at end of file diff --git a/new-api-details/topics/anti-censorship.json b/new-api-details/topics/anti-censorship.json index 1099a9e6..6a449437 100644 --- a/new-api-details/topics/anti-censorship.json +++ b/new-api-details/topics/anti-censorship.json @@ -1,7 +1,7 @@ { "slug": "anti-censorship", "name": "anti-censorship", - "published_at": "2026-01-25T16:06:29.725Z", + "published_at": "2026-02-19T13:36:02.987Z", "organizationCount": 1, "projectCount": 19, "years": [ @@ -18,7 +18,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 19, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -52,6 +52,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.725Z" + "generated_at": "2026-02-19T13:36:02.987Z" } } \ No newline at end of file diff --git a/new-api-details/topics/api-description.json b/new-api-details/topics/api-description.json index 536a5c04..89f369f7 100644 --- a/new-api-details/topics/api-description.json +++ b/new-api-details/topics/api-description.json @@ -1,7 +1,7 @@ { "slug": "api-description", "name": "api description", - "published_at": "2026-01-25T16:06:28.399Z", + "published_at": "2026-02-19T13:36:00.542Z", "organizationCount": 1, "projectCount": 1, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.399Z" + "generated_at": "2026-02-19T13:36:00.542Z" } } \ No newline at end of file diff --git a/new-api-details/topics/api-management.json b/new-api-details/topics/api-management.json index 5dc9fd48..9f15238f 100644 --- a/new-api-details/topics/api-management.json +++ b/new-api-details/topics/api-management.json @@ -1,7 +1,7 @@ { "slug": "api-management", "name": "api management", - "published_at": "2026-01-25T16:06:29.556Z", + "published_at": "2026-02-19T13:36:02.740Z", "organizationCount": 2, "projectCount": 39, "years": [ @@ -13,6 +13,18 @@ 2016 ], "organizations": [ + { + "slug": "wso2", + "name": "WSO2", + "first_year": 2016, + "last_year": 2017, + "total_projects": 20, + "is_currently_active": false, + "active_years": [ + 2016, + 2017 + ] + }, { "slug": "postman", "name": "Postman", @@ -26,18 +38,6 @@ 2023, 2024 ] - }, - { - "slug": "wso2", - "name": "WSO2", - "first_year": 2016, - "last_year": 2017, - "total_projects": 20, - "is_currently_active": false, - "active_years": [ - 2016, - 2017 - ] } ], "yearlyStats": { @@ -68,6 +68,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.556Z" + "generated_at": "2026-02-19T13:36:02.740Z" } } \ No newline at end of file diff --git a/new-api-details/topics/api-testing.json b/new-api-details/topics/api-testing.json index d634e93f..5cc1ae08 100644 --- a/new-api-details/topics/api-testing.json +++ b/new-api-details/topics/api-testing.json @@ -1,7 +1,7 @@ { "slug": "api-testing", "name": "API Testing", - "published_at": "2026-01-25T16:06:29.234Z", + "published_at": "2026-02-19T13:36:02.089Z", "organizationCount": 1, "projectCount": 11, "years": [ @@ -16,7 +16,7 @@ "first_year": 2023, "last_year": 2025, "total_projects": 11, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2023, 2024, @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.234Z" + "generated_at": "2026-02-19T13:36:02.089Z" } } \ No newline at end of file diff --git a/new-api-details/topics/api.json b/new-api-details/topics/api.json index da4ce54f..0a5c2c87 100644 --- a/new-api-details/topics/api.json +++ b/new-api-details/topics/api.json @@ -1,10 +1,11 @@ { "slug": "api", "name": "api", - "published_at": "2026-01-25T16:06:28.401Z", + "published_at": "2026-02-19T13:36:00.556Z", "organizationCount": 8, "projectCount": 130, "years": [ + 2026, 2025, 2024, 2023, @@ -18,49 +19,64 @@ ], "organizations": [ { - "slug": "api-dash", - "name": "API Dash", - "first_year": 2024, - "last_year": 2025, - "total_projects": 3, + "slug": "mit-app-inventor", + "name": "MIT App Inventor", + "first_year": 2016, + "last_year": 2026, + "total_projects": 45, "is_currently_active": true, "active_years": [ + 2016, + 2017, + 2019, + 2020, + 2021, + 2022, + 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "asyncapi", - "name": "AsyncAPI", - "first_year": 2024, + "slug": "the-palisadoes-foundation", + "name": "The Palisadoes Foundation", + "first_year": 2021, "last_year": 2025, - "total_projects": 15, - "is_currently_active": true, + "total_projects": 36, + "is_currently_active": false, "active_years": [ + 2021, + 2022, + 2023, 2024, 2025 ] }, { - "slug": "environmental-data-and-governance-initiative", - "name": "Environmental Data And Governance Initiative", - "first_year": 2017, - "last_year": 2017, - "total_projects": 2, + "slug": "postman", + "name": "Postman", + "first_year": 2020, + "last_year": 2024, + "total_projects": 19, "is_currently_active": false, "active_years": [ - 2017 + 2020, + 2021, + 2023, + 2024 ] }, { - "slug": "graphql-foundation", - "name": "GraphQL Foundation", - "first_year": 2020, - "last_year": 2020, - "total_projects": 2, + "slug": "asyncapi", + "name": "AsyncAPI", + "first_year": 2024, + "last_year": 2025, + "total_projects": 15, "is_currently_active": false, "active_years": [ - 2020 + 2024, + 2025 ] }, { @@ -78,51 +94,38 @@ ] }, { - "slug": "mit-app-inventor", - "name": "MIT App Inventor", - "first_year": 2016, - "last_year": 2025, - "total_projects": 45, + "slug": "api-dash", + "name": "API Dash", + "first_year": 2024, + "last_year": 2026, + "total_projects": 3, "is_currently_active": true, "active_years": [ - 2016, - 2017, - 2019, - 2020, - 2021, - 2022, - 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "postman", - "name": "Postman", - "first_year": 2020, - "last_year": 2024, - "total_projects": 19, + "slug": "environmental-data-and-governance-initiative", + "name": "Environmental Data And Governance Initiative", + "first_year": 2017, + "last_year": 2017, + "total_projects": 2, "is_currently_active": false, "active_years": [ - 2020, - 2021, - 2023, - 2024 + 2017 ] }, { - "slug": "the-palisadoes-foundation", - "name": "The Palisadoes Foundation", - "first_year": 2021, - "last_year": 2025, - "total_projects": 36, - "is_currently_active": true, + "slug": "graphql-foundation", + "name": "GraphQL Foundation", + "first_year": 2020, + "last_year": 2020, + "total_projects": 2, + "is_currently_active": false, "active_years": [ - 2021, - 2022, - 2023, - 2024, - 2025 + 2020 ] } ], @@ -166,10 +169,14 @@ "2025": { "organizationCount": 4, "projectCount": 21 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.401Z" + "generated_at": "2026-02-19T13:36:00.556Z" } } \ No newline at end of file diff --git a/new-api-details/topics/apis.json b/new-api-details/topics/apis.json index 6e1cb063..292d4d22 100644 --- a/new-api-details/topics/apis.json +++ b/new-api-details/topics/apis.json @@ -1,10 +1,11 @@ { "slug": "apis", "name": "apis", - "published_at": "2026-01-25T16:06:28.397Z", + "published_at": "2026-02-19T13:36:00.538Z", "organizationCount": 6, "projectCount": 90, "years": [ + 2026, 2025, 2024, 2023, @@ -17,24 +18,13 @@ 2016 ], "organizations": [ - { - "slug": "api-client-tools-at-google", - "name": "API Client Tools at Google", - "first_year": 2019, - "last_year": 2019, - "total_projects": 1, - "is_currently_active": false, - "active_years": [ - 2019 - ] - }, { "slug": "global-alliance-for-genomics-and-health", "name": "Global Alliance for Genomics and Health", "first_year": 2016, - "last_year": 2024, + "last_year": 2026, "total_projects": 45, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -44,19 +34,35 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { - "slug": "grpc", - "name": "gRPC", - "first_year": 2016, - "last_year": 2018, - "total_projects": 3, + "slug": "postman", + "name": "Postman", + "first_year": 2020, + "last_year": 2024, + "total_projects": 19, "is_currently_active": false, "active_years": [ - 2016, - 2018 + 2020, + 2021, + 2023, + 2024 + ] + }, + { + "slug": "json-schema", + "name": "JSON Schema", + "first_year": 2024, + "last_year": 2026, + "total_projects": 14, + "is_currently_active": true, + "active_years": [ + 2024, + 2025, + 2026 ] }, { @@ -74,29 +80,26 @@ ] }, { - "slug": "json-schema", - "name": "JSON Schema", - "first_year": 2024, - "last_year": 2025, - "total_projects": 14, - "is_currently_active": true, + "slug": "grpc", + "name": "gRPC", + "first_year": 2016, + "last_year": 2018, + "total_projects": 3, + "is_currently_active": false, "active_years": [ - 2024, - 2025 + 2016, + 2018 ] }, { - "slug": "postman", - "name": "Postman", - "first_year": 2020, - "last_year": 2024, - "total_projects": 19, + "slug": "api-client-tools-at-google", + "name": "API Client Tools at Google", + "first_year": 2019, + "last_year": 2019, + "total_projects": 1, "is_currently_active": false, "active_years": [ - 2020, - 2021, - 2023, - 2024 + 2019 ] } ], @@ -140,10 +143,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.397Z" + "generated_at": "2026-02-19T13:36:00.538Z" } } \ No newline at end of file diff --git a/new-api-details/topics/app-development.json b/new-api-details/topics/app-development.json index 2d46eb83..3524e36d 100644 --- a/new-api-details/topics/app-development.json +++ b/new-api-details/topics/app-development.json @@ -1,10 +1,11 @@ { "slug": "app-development", "name": "app development", - "published_at": "2026-01-25T16:06:28.581Z", - "organizationCount": 3, - "projectCount": 90, + "published_at": "2026-02-19T13:36:00.680Z", + "organizationCount": 4, + "projectCount": 94, "years": [ + 2026, 2025, 2024, 2023, @@ -17,6 +18,27 @@ 2016 ], "organizations": [ + { + "slug": "international-catrobat-association", + "name": "International Catrobat Association", + "first_year": 2016, + "last_year": 2026, + "total_projects": 84, + "is_currently_active": true, + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ] + }, { "slug": "beeware-project", "name": "BeeWare Project", @@ -30,23 +52,16 @@ ] }, { - "slug": "international-catrobat-association", - "name": "International Catrobat Association", - "first_year": 2016, - "last_year": 2025, - "total_projects": 84, + "slug": "neutralinojs", + "name": "Neutralinojs", + "first_year": 2022, + "last_year": 2026, + "total_projects": 4, "is_currently_active": true, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, 2022, - 2023, 2024, - 2025 + 2026 ] }, { @@ -87,24 +102,28 @@ "projectCount": 13 }, "2022": { - "organizationCount": 1, - "projectCount": 11 + "organizationCount": 2, + "projectCount": 12 }, "2023": { "organizationCount": 1, "projectCount": 7 }, "2024": { - "organizationCount": 1, - "projectCount": 8 + "organizationCount": 2, + "projectCount": 11 }, "2025": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.581Z" + "generated_at": "2026-02-19T13:36:00.680Z" } } \ No newline at end of file diff --git a/new-api-details/topics/application-development.json b/new-api-details/topics/application-development.json index 1a39877a..a1916a6d 100644 --- a/new-api-details/topics/application-development.json +++ b/new-api-details/topics/application-development.json @@ -1,10 +1,11 @@ { "slug": "application-development", "name": "Application Development", - "published_at": "2026-01-25T16:06:29.406Z", + "published_at": "2026-02-19T13:36:02.408Z", "organizationCount": 1, "projectCount": 4, "years": [ + 2026, 2024, 2022 ], @@ -13,12 +14,13 @@ "slug": "neutralinojs", "name": "Neutralinojs", "first_year": 2022, - "last_year": 2024, + "last_year": 2026, "total_projects": 4, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2022, - 2024 + 2024, + 2026 ] } ], @@ -30,10 +32,14 @@ "2024": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.406Z" + "generated_at": "2026-02-19T13:36:02.408Z" } } \ No newline at end of file diff --git a/new-api-details/topics/application-security.json b/new-api-details/topics/application-security.json index bd8eef4a..095aa55f 100644 --- a/new-api-details/topics/application-security.json +++ b/new-api-details/topics/application-security.json @@ -1,10 +1,11 @@ { "slug": "application-security", "name": "application security", - "published_at": "2026-01-25T16:06:28.418Z", + "published_at": "2026-02-19T13:36:00.325Z", "organizationCount": 3, "projectCount": 159, "years": [ + 2026, 2025, 2024, 2023, @@ -17,11 +18,31 @@ 2016 ], "organizations": [ + { + "slug": "owasp-foundation", + "name": "OWASP Foundation", + "first_year": 2016, + "last_year": 2026, + "total_projects": 102, + "is_currently_active": true, + "active_years": [ + 2016, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ] + }, { "slug": "aboutcode", "name": "AboutCode", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 32, "is_currently_active": true, "active_years": [ @@ -32,7 +53,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -52,25 +74,6 @@ 2022, 2023 ] - }, - { - "slug": "owasp-foundation", - "name": "OWASP Foundation", - "first_year": 2016, - "last_year": 2025, - "total_projects": 102, - "is_currently_active": true, - "active_years": [ - 2016, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 - ] } ], "yearlyStats": { @@ -113,10 +116,14 @@ "2025": { "organizationCount": 2, "projectCount": 20 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.418Z" + "generated_at": "2026-02-19T13:36:00.325Z" } } \ No newline at end of file diff --git a/new-api-details/topics/application.json b/new-api-details/topics/application.json index cac73e86..bd6d6c99 100644 --- a/new-api-details/topics/application.json +++ b/new-api-details/topics/application.json @@ -1,10 +1,11 @@ { "slug": "application", "name": "application", - "published_at": "2026-01-25T16:06:29.023Z", + "published_at": "2026-02-19T13:36:01.650Z", "organizationCount": 3, "projectCount": 191, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "gnome-foundation", "name": "GNOME Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 115, "is_currently_active": true, "active_years": [ @@ -34,16 +35,17 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "ruby", "name": "Ruby", "first_year": 2016, - "last_year": 2023, + "last_year": 2026, "total_projects": 38, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2018, @@ -51,14 +53,15 @@ 2020, 2021, 2022, - 2023 + 2023, + 2026 ] }, { "slug": "stear-group", "name": "Ste||ar group", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 38, "is_currently_active": true, "active_years": [ @@ -70,7 +73,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -114,10 +118,14 @@ "2025": { "organizationCount": 2, "projectCount": 11 + }, + "2026": { + "organizationCount": 3, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.023Z" + "generated_at": "2026-02-19T13:36:01.650Z" } } \ No newline at end of file diff --git a/new-api-details/topics/applications.json b/new-api-details/topics/applications.json index 47d3c1d9..1a9843d7 100644 --- a/new-api-details/topics/applications.json +++ b/new-api-details/topics/applications.json @@ -1,10 +1,11 @@ { "slug": "applications", "name": "applications", - "published_at": "2026-01-25T16:06:28.823Z", + "published_at": "2026-02-19T13:36:01.160Z", "organizationCount": 4, "projectCount": 375, "years": [ + 2026, 2025, 2024, 2023, @@ -18,28 +19,31 @@ ], "organizations": [ { - "slug": "debian", - "name": "Debian", + "slug": "kde-community", + "name": "KDE Community", "first_year": 2016, - "last_year": 2025, - "total_projects": 78, + "last_year": 2026, + "total_projects": 167, "is_currently_active": true, "active_years": [ 2016, + 2017, 2018, 2019, 2020, 2021, 2022, + 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "gnome-foundation", "name": "GNOME Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 115, "is_currently_active": true, "active_years": [ @@ -52,27 +56,27 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "kde-community", - "name": "KDE Community", + "slug": "debian", + "name": "Debian", "first_year": 2016, - "last_year": 2025, - "total_projects": 167, + "last_year": 2026, + "total_projects": 78, "is_currently_active": true, "active_years": [ 2016, - 2017, 2018, 2019, 2020, 2021, 2022, - 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -133,10 +137,14 @@ "2025": { "organizationCount": 3, "projectCount": 29 + }, + "2026": { + "organizationCount": 3, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.823Z" + "generated_at": "2026-02-19T13:36:01.160Z" } } \ No newline at end of file diff --git a/new-api-details/topics/apps.json b/new-api-details/topics/apps.json index 3c433bd9..65118018 100644 --- a/new-api-details/topics/apps.json +++ b/new-api-details/topics/apps.json @@ -1,10 +1,11 @@ { "slug": "apps", "name": "apps", - "published_at": "2026-01-25T16:06:28.874Z", + "published_at": "2026-02-19T13:36:01.220Z", "organizationCount": 4, "projectCount": 209, "years": [ + 2026, 2025, 2024, 2023, @@ -18,11 +19,11 @@ ], "organizations": [ { - "slug": "drupal-association", - "name": "Drupal Association", + "slug": "gnome-foundation", + "name": "GNOME Foundation", "first_year": 2016, - "last_year": 2025, - "total_projects": 39, + "last_year": 2026, + "total_projects": 115, "is_currently_active": true, "active_years": [ 2016, @@ -30,61 +31,65 @@ 2018, 2019, 2020, + 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "gnome-foundation", - "name": "GNOME Foundation", + "slug": "mit-app-inventor", + "name": "MIT App Inventor", "first_year": 2016, - "last_year": 2025, - "total_projects": 115, + "last_year": 2026, + "total_projects": 45, "is_currently_active": true, "active_years": [ 2016, 2017, - 2018, 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "mit-app-inventor", - "name": "MIT App Inventor", + "slug": "drupal-association", + "name": "Drupal Association", "first_year": 2016, - "last_year": 2025, - "total_projects": 45, + "last_year": 2026, + "total_projects": 39, "is_currently_active": true, "active_years": [ 2016, 2017, + 2018, 2019, 2020, - 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "open-transit-software-foundation", "name": "Open Transit Software Foundation", "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "total_projects": 10, "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -128,10 +133,14 @@ "2025": { "organizationCount": 4, "projectCount": 22 + }, + "2026": { + "organizationCount": 4, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.874Z" + "generated_at": "2026-02-19T13:36:01.220Z" } } \ No newline at end of file diff --git a/new-api-details/topics/appsec.json b/new-api-details/topics/appsec.json index 198ba89b..ddff408e 100644 --- a/new-api-details/topics/appsec.json +++ b/new-api-details/topics/appsec.json @@ -1,10 +1,11 @@ { "slug": "appsec", "name": "appsec", - "published_at": "2026-01-25T16:06:29.419Z", + "published_at": "2026-02-19T13:36:02.667Z", "organizationCount": 1, "projectCount": 102, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "owasp-foundation", "name": "OWASP Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 102, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 15 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.419Z" + "generated_at": "2026-02-19T13:36:02.667Z" } } \ No newline at end of file diff --git a/new-api-details/topics/ar.json b/new-api-details/topics/ar.json index 4f0bc1bd..aaf00f7c 100644 --- a/new-api-details/topics/ar.json +++ b/new-api-details/topics/ar.json @@ -1,7 +1,7 @@ { "slug": "ar", "name": "AR", - "published_at": "2026-01-25T16:06:29.368Z", + "published_at": "2026-02-19T13:36:02.348Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.368Z" + "generated_at": "2026-02-19T13:36:02.348Z" } } \ No newline at end of file diff --git a/new-api-details/topics/architecture.json b/new-api-details/topics/architecture.json index 43afc577..1794ae37 100644 --- a/new-api-details/topics/architecture.json +++ b/new-api-details/topics/architecture.json @@ -1,10 +1,11 @@ { "slug": "architecture", "name": "architecture", - "published_at": "2026-01-25T16:06:28.707Z", + "published_at": "2026-02-19T13:36:00.958Z", "organizationCount": 2, "projectCount": 28, "years": [ + 2026, 2025, 2024, 2023, @@ -32,13 +33,14 @@ "slug": "freecad", "name": "FreeCAD", "first_year": 2023, - "last_year": 2025, + "last_year": 2026, "total_projects": 8, "is_currently_active": true, "active_years": [ 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -70,10 +72,14 @@ "2025": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.707Z" + "generated_at": "2026-02-19T13:36:00.958Z" } } \ No newline at end of file diff --git a/new-api-details/topics/architectures.json b/new-api-details/topics/architectures.json index a3f728d0..221371e5 100644 --- a/new-api-details/topics/architectures.json +++ b/new-api-details/topics/architectures.json @@ -1,7 +1,7 @@ { "slug": "architectures", "name": "Architectures", - "published_at": "2026-01-25T16:06:28.536Z", + "published_at": "2026-02-19T13:36:00.635Z", "organizationCount": 1, "projectCount": 15, "years": [ @@ -15,7 +15,7 @@ "first_year": 2024, "last_year": 2025, "total_projects": 15, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2024, 2025 @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.536Z" + "generated_at": "2026-02-19T13:36:00.635Z" } } \ No newline at end of file diff --git a/new-api-details/topics/archive.json b/new-api-details/topics/archive.json index 16370ca4..88acca39 100644 --- a/new-api-details/topics/archive.json +++ b/new-api-details/topics/archive.json @@ -1,10 +1,11 @@ { "slug": "archive", "name": "archive", - "published_at": "2026-01-25T16:06:29.180Z", + "published_at": "2026-02-19T13:36:01.895Z", "organizationCount": 1, "projectCount": 26, "years": [ + 2026, 2025, 2024, 2023, @@ -19,7 +20,7 @@ "slug": "internet-archive", "name": "Internet Archive", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 26, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2021, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.180Z" + "generated_at": "2026-02-19T13:36:01.895Z" } } \ No newline at end of file diff --git a/new-api-details/topics/archives.json b/new-api-details/topics/archives.json new file mode 100644 index 00000000..e9e2f640 --- /dev/null +++ b/new-api-details/topics/archives.json @@ -0,0 +1,33 @@ +{ + "slug": "archives", + "name": "archives", + "published_at": "2026-02-19T13:36:01.670Z", + "organizationCount": 1, + "projectCount": 0, + "years": [ + 2026 + ], + "organizations": [ + { + "slug": "gnu-mailman", + "name": "GNU Mailman", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + } + ], + "yearlyStats": { + "2026": { + "organizationCount": 1, + "projectCount": 0 + } + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:36:01.670Z" + } +} \ No newline at end of file diff --git a/new-api-details/topics/archiving.json b/new-api-details/topics/archiving.json index 14c57640..b0d5c128 100644 --- a/new-api-details/topics/archiving.json +++ b/new-api-details/topics/archiving.json @@ -1,10 +1,11 @@ { "slug": "archiving", "name": "archiving", - "published_at": "2026-01-25T16:06:29.183Z", + "published_at": "2026-02-19T13:36:01.931Z", "organizationCount": 1, "projectCount": 26, "years": [ + 2026, 2025, 2024, 2023, @@ -19,7 +20,7 @@ "slug": "internet-archive", "name": "Internet Archive", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 26, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2021, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.183Z" + "generated_at": "2026-02-19T13:36:01.931Z" } } \ No newline at end of file diff --git a/new-api-details/topics/arrangement.json b/new-api-details/topics/arrangement.json index e80de59e..49f12562 100644 --- a/new-api-details/topics/arrangement.json +++ b/new-api-details/topics/arrangement.json @@ -1,10 +1,11 @@ { "slug": "arrangement", "name": "arrangement", - "published_at": "2026-01-25T16:06:28.651Z", + "published_at": "2026-02-19T13:36:00.982Z", "organizationCount": 1, "projectCount": 58, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "cgal-project", "name": "CGAL Project", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 58, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.651Z" + "generated_at": "2026-02-19T13:36:00.982Z" } } \ No newline at end of file diff --git a/new-api-details/topics/art.json b/new-api-details/topics/art.json index 1d12d3a5..ba225a9d 100644 --- a/new-api-details/topics/art.json +++ b/new-api-details/topics/art.json @@ -1,10 +1,11 @@ { "slug": "art", "name": "art", - "published_at": "2026-01-25T16:06:29.232Z", + "published_at": "2026-02-19T13:36:02.087Z", "organizationCount": 2, "projectCount": 183, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "kde-community", "name": "KDE Community", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 167, "is_currently_active": true, "active_years": [ @@ -34,14 +35,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "mixxx", "name": "Mixxx", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 16, "is_currently_active": true, "active_years": [ @@ -51,7 +53,8 @@ 2020, 2022, 2024, - 2025 + 2025, + 2026 ] } ], @@ -95,10 +98,14 @@ "2025": { "organizationCount": 2, "projectCount": 18 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.232Z" + "generated_at": "2026-02-19T13:36:02.087Z" } } \ No newline at end of file diff --git a/new-api-details/topics/artificial-inteligence.json b/new-api-details/topics/artificial-inteligence.json index ae35bd2e..9fbf09d7 100644 --- a/new-api-details/topics/artificial-inteligence.json +++ b/new-api-details/topics/artificial-inteligence.json @@ -1,10 +1,11 @@ { "slug": "artificial-inteligence", "name": "Artificial Inteligence", - "published_at": "2026-01-25T16:06:29.458Z", + "published_at": "2026-02-19T13:36:02.536Z", "organizationCount": 1, "projectCount": 70, "years": [ + 2026, 2025, 2024, 2023, @@ -19,7 +20,7 @@ "slug": "open-technologies-alliance-gfoss", "name": "Open Technologies Alliance - GFOSS", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 70, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.458Z" + "generated_at": "2026-02-19T13:36:02.536Z" } } \ No newline at end of file diff --git a/new-api-details/topics/artificial-intelligence.json b/new-api-details/topics/artificial-intelligence.json index 352f8b52..5102fb91 100644 --- a/new-api-details/topics/artificial-intelligence.json +++ b/new-api-details/topics/artificial-intelligence.json @@ -1,10 +1,11 @@ { "slug": "artificial-intelligence", "name": "artificial intelligence", - "published_at": "2026-01-25T16:06:28.670Z", - "organizationCount": 21, - "projectCount": 767, + "published_at": "2026-02-19T13:36:00.408Z", + "organizationCount": 24, + "projectCount": 944, "years": [ + 2026, 2025, 2024, 2023, @@ -18,68 +19,89 @@ ], "organizations": [ { - "slug": "aimacode", - "name": "aimacode", + "slug": "fossasia", + "name": "FOSSASIA", "first_year": 2016, - "last_year": 2019, - "total_projects": 16, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 140, + "is_currently_active": true, "active_years": [ 2016, 2017, 2018, - 2019 + 2019, + 2024, + 2025, + 2026 ] }, { - "slug": "center-for-translational-data-science", - "name": "Center for Translational Data Science", - "first_year": 2022, - "last_year": 2025, - "total_projects": 6, + "slug": "the-julia-language", + "name": "The Julia Language", + "first_year": 2016, + "last_year": 2026, + "total_projects": 140, "is_currently_active": true, "active_years": [ + 2016, + 2017, + 2019, + 2020, + 2021, 2022, - 2025 + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "checkstyle", - "name": "checkstyle", + "slug": "aossie", + "name": "AOSSIE", "first_year": 2017, - "last_year": 2025, - "total_projects": 21, + "last_year": 2026, + "total_projects": 117, "is_currently_active": true, "active_years": [ 2017, + 2018, + 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "clips-university-of-antwerp", - "name": "CLiPS, University of Antwerp", - "first_year": 2017, - "last_year": 2019, - "total_projects": 10, - "is_currently_active": false, + "slug": "the-mifos-initiative", + "name": "The Mifos Initiative", + "first_year": 2016, + "last_year": 2026, + "total_projects": 102, + "is_currently_active": true, "active_years": [ + 2016, 2017, 2018, - 2019 + 2019, + 2020, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "cloudcv", - "name": "CloudCV", + "slug": "red-hen-lab", + "name": "Red Hen Lab", "first_year": 2016, - "last_year": 2025, - "total_projects": 28, - "is_currently_active": true, + "last_year": 2024, + "total_projects": 88, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -87,99 +109,125 @@ 2019, 2020, 2021, + 2022, 2023, - 2024, - 2025 + 2024 ] }, { - "slug": "deepchem", - "name": "DeepChem", - "first_year": 2024, - "last_year": 2025, - "total_projects": 14, + "slug": "liquid-galaxy-project", + "name": "Liquid Galaxy project", + "first_year": 2016, + "last_year": 2026, + "total_projects": 75, "is_currently_active": true, "active_years": [ + 2016, + 2017, + 2019, + 2020, + 2021, + 2022, + 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "fossasia", - "name": "FOSSASIA", + "slug": "jboss-community", + "name": "JBoss Community", "first_year": 2016, - "last_year": 2025, - "total_projects": 140, + "last_year": 2026, + "total_projects": 52, "is_currently_active": true, "active_years": [ 2016, 2017, 2018, 2019, - 2024, - 2025 + 2020, + 2021, + 2022, + 2026 ] }, { - "slug": "humanai", - "name": "HumanAI", - "first_year": 2024, - "last_year": 2025, - "total_projects": 26, + "slug": "jderobot", + "name": "JdeRobot", + "first_year": 2017, + "last_year": 2026, + "total_projects": 48, "is_currently_active": true, "active_years": [ + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "institute-for-artificial-intelligence", - "name": "Institute for Artificial Intelligence", - "first_year": 2017, - "last_year": 2018, - "total_projects": 11, + "slug": "cloudcv", + "name": "CloudCV", + "first_year": 2016, + "last_year": 2025, + "total_projects": 28, "is_currently_active": false, "active_years": [ + 2016, 2017, - 2018 + 2018, + 2019, + 2020, + 2021, + 2023, + 2024, + 2025 ] }, { - "slug": "ivy-lets-unifyai", - "name": "Ivy (lets-unify.ai)", - "first_year": 2023, - "last_year": 2023, - "total_projects": 3, - "is_currently_active": false, + "slug": "humanai", + "name": "HumanAI", + "first_year": 2024, + "last_year": 2026, + "total_projects": 26, + "is_currently_active": true, "active_years": [ - 2023 + 2024, + 2025, + 2026 ] }, { - "slug": "jderobot", - "name": "JdeRobot", + "slug": "checkstyle", + "name": "checkstyle", "first_year": 2017, - "last_year": 2025, - "total_projects": 48, + "last_year": 2026, + "total_projects": 21, "is_currently_active": true, "active_years": [ 2017, - 2018, - 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "jsk-robotics-laboratory-the-university-of-tokyo", - "name": "JSK Robotics Laboratory / The University of Tokyo", + "slug": "aimacode", + "name": "aimacode", "first_year": 2016, "last_year": 2019, - "total_projects": 4, + "total_projects": 16, "is_currently_active": false, "active_years": [ 2016, @@ -189,56 +237,68 @@ ] }, { - "slug": "kornia", - "name": "Kornia", - "first_year": 2025, - "last_year": 2025, - "total_projects": 2, + "slug": "deepchem", + "name": "DeepChem", + "first_year": 2024, + "last_year": 2026, + "total_projects": 14, "is_currently_active": true, "active_years": [ - 2025 + 2024, + 2025, + 2026 ] }, { - "slug": "languagetoolorg", - "name": "languagetool.org", - "first_year": 2018, + "slug": "ruby-science-foundation", + "name": "Ruby Science Foundation", + "first_year": 2016, + "last_year": 2019, + "total_projects": 13, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2018, + 2019 + ] + }, + { + "slug": "institute-for-artificial-intelligence", + "name": "Institute for Artificial Intelligence", + "first_year": 2017, "last_year": 2018, - "total_projects": 2, + "total_projects": 11, "is_currently_active": false, "active_years": [ + 2017, 2018 ] }, { - "slug": "liquid-galaxy-project", - "name": "Liquid Galaxy project", - "first_year": 2016, - "last_year": 2025, - "total_projects": 75, - "is_currently_active": true, + "slug": "clips-university-of-antwerp", + "name": "CLiPS, University of Antwerp", + "first_year": 2017, + "last_year": 2019, + "total_projects": 10, + "is_currently_active": false, "active_years": [ - 2016, 2017, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2018, + 2019 ] }, { "slug": "open-science-initiative-for-perfusion-imaging", "name": "Open Science Initiative for Perfusion Imaging", "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "total_projects": 9, "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -254,30 +314,36 @@ ] }, { - "slug": "red-hen-lab", - "name": "Red Hen Lab", - "first_year": 2016, - "last_year": 2024, - "total_projects": 88, + "slug": "uramaki-lab", + "name": "Uramaki LAB", + "first_year": 2024, + "last_year": 2026, + "total_projects": 8, + "is_currently_active": true, + "active_years": [ + 2024, + 2025, + 2026 + ] + }, + { + "slug": "center-for-translational-data-science", + "name": "Center for Translational Data Science", + "first_year": 2022, + "last_year": 2025, + "total_projects": 6, "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, 2022, - 2023, - 2024 + 2025 ] }, { - "slug": "ruby-science-foundation", - "name": "Ruby Science Foundation", + "slug": "jsk-robotics-laboratory-the-university-of-tokyo", + "name": "JSK Robotics Laboratory / The University of Tokyo", "first_year": 2016, "last_year": 2019, - "total_projects": 13, + "total_projects": 4, "is_currently_active": false, "active_years": [ 2016, @@ -287,88 +353,88 @@ ] }, { - "slug": "the-julia-language", - "name": "The Julia Language", - "first_year": 2016, - "last_year": 2025, - "total_projects": 140, - "is_currently_active": true, + "slug": "ivy-lets-unifyai", + "name": "Ivy (lets-unify.ai)", + "first_year": 2023, + "last_year": 2023, + "total_projects": 3, + "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2023 ] }, { - "slug": "the-mifos-initiative", - "name": "The Mifos Initiative", - "first_year": 2016, - "last_year": 2025, - "total_projects": 102, + "slug": "kornia", + "name": "Kornia", + "first_year": 2025, + "last_year": 2026, + "total_projects": 2, "is_currently_active": true, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2022, - 2023, - 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "languagetoolorg", + "name": "languagetool.org", + "first_year": 2018, + "last_year": 2018, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2018 ] } ], "yearlyStats": { "2016": { - "organizationCount": 9, - "projectCount": 52 + "organizationCount": 10, + "projectCount": 61 }, "2017": { - "organizationCount": 13, - "projectCount": 118 + "organizationCount": 15, + "projectCount": 134 }, "2018": { - "organizationCount": 11, - "projectCount": 87 + "organizationCount": 13, + "projectCount": 103 }, "2019": { - "organizationCount": 11, - "projectCount": 83 + "organizationCount": 13, + "projectCount": 109 }, "2020": { - "organizationCount": 8, - "projectCount": 63 + "organizationCount": 10, + "projectCount": 82 }, "2021": { - "organizationCount": 7, - "projectCount": 59 + "organizationCount": 9, + "projectCount": 80 }, "2022": { - "organizationCount": 7, - "projectCount": 58 + "organizationCount": 9, + "projectCount": 75 }, "2023": { - "organizationCount": 8, - "projectCount": 51 + "organizationCount": 9, + "projectCount": 57 }, "2024": { - "organizationCount": 11, - "projectCount": 91 + "organizationCount": 13, + "projectCount": 112 }, "2025": { - "organizationCount": 12, - "projectCount": 105 + "organizationCount": 14, + "projectCount": 131 + }, + "2026": { + "organizationCount": 13, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.670Z" + "generated_at": "2026-02-19T13:36:00.408Z" } } \ No newline at end of file diff --git a/new-api-details/topics/artist-tools.json b/new-api-details/topics/artist-tools.json index 2f77451f..74c52832 100644 --- a/new-api-details/topics/artist-tools.json +++ b/new-api-details/topics/artist-tools.json @@ -1,10 +1,11 @@ { "slug": "artist-tools", "name": "artist tools", - "published_at": "2026-01-25T16:06:28.610Z", + "published_at": "2026-02-19T13:36:00.788Z", "organizationCount": 1, "projectCount": 64, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "blender-foundation", "name": "Blender Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 64, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 8 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.610Z" + "generated_at": "2026-02-19T13:36:00.788Z" } } \ No newline at end of file diff --git a/new-api-details/topics/arts.json b/new-api-details/topics/arts.json index a94bd79c..25dabe62 100644 --- a/new-api-details/topics/arts.json +++ b/new-api-details/topics/arts.json @@ -1,10 +1,11 @@ { "slug": "arts", "name": "Arts", - "published_at": "2026-01-25T16:06:29.126Z", + "published_at": "2026-02-19T13:36:01.780Z", "organizationCount": 1, "projectCount": 26, "years": [ + 2026, 2025, 2024 ], @@ -13,12 +14,13 @@ "slug": "humanai", "name": "HumanAI", "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "total_projects": 26, "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -30,10 +32,14 @@ "2025": { "organizationCount": 1, "projectCount": 15 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.126Z" + "generated_at": "2026-02-19T13:36:01.780Z" } } \ No newline at end of file diff --git a/new-api-details/topics/asic-design.json b/new-api-details/topics/asic-design.json index 4fc51ea6..dfbf4f6c 100644 --- a/new-api-details/topics/asic-design.json +++ b/new-api-details/topics/asic-design.json @@ -1,10 +1,11 @@ { "slug": "asic-design", "name": "ASIC design", - "published_at": "2026-01-25T16:06:28.666Z", - "organizationCount": 1, + "published_at": "2026-02-19T13:36:01.011Z", + "organizationCount": 2, "projectCount": 12, "years": [ + 2026, 2024, 2023, 2022 @@ -22,6 +23,17 @@ 2023, 2024 ] + }, + { + "slug": "the-openroad-initiative", + "name": "The OpenROAD Initiative", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] } ], "yearlyStats": { @@ -36,10 +48,14 @@ "2024": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.666Z" + "generated_at": "2026-02-19T13:36:01.012Z" } } \ No newline at end of file diff --git a/new-api-details/topics/assembly.json b/new-api-details/topics/assembly.json index 1366ed77..b16c4dbf 100644 --- a/new-api-details/topics/assembly.json +++ b/new-api-details/topics/assembly.json @@ -1,7 +1,7 @@ { "slug": "assembly", "name": "assembly", - "published_at": "2026-01-25T16:06:29.583Z", + "published_at": "2026-02-19T13:36:02.776Z", "organizationCount": 1, "projectCount": 15, "years": [ @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.583Z" + "generated_at": "2026-02-19T13:36:02.776Z" } } \ No newline at end of file diff --git a/new-api-details/topics/assyriology.json b/new-api-details/topics/assyriology.json new file mode 100644 index 00000000..92f071d3 --- /dev/null +++ b/new-api-details/topics/assyriology.json @@ -0,0 +1,63 @@ +{ + "slug": "assyriology", + "name": "assyriology", + "published_at": "2026-02-19T13:36:01.138Z", + "organizationCount": 1, + "projectCount": 30, + "years": [ + 2026, + 2022, + 2021, + 2020, + 2019, + 2018 + ], + "organizations": [ + { + "slug": "cuneiform-digital-library-initiative-cdli", + "name": "Cuneiform Digital Library Initiative (CDLI)", + "first_year": 2018, + "last_year": 2026, + "total_projects": 30, + "is_currently_active": true, + "active_years": [ + 2018, + 2019, + 2020, + 2021, + 2022, + 2026 + ] + } + ], + "yearlyStats": { + "2018": { + "organizationCount": 1, + "projectCount": 2 + }, + "2019": { + "organizationCount": 1, + "projectCount": 5 + }, + "2020": { + "organizationCount": 1, + "projectCount": 9 + }, + "2021": { + "organizationCount": 1, + "projectCount": 7 + }, + "2022": { + "organizationCount": 1, + "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 + } + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:36:01.138Z" + } +} \ No newline at end of file diff --git a/new-api-details/topics/ast.json b/new-api-details/topics/ast.json index 017d61fb..efc3e192 100644 --- a/new-api-details/topics/ast.json +++ b/new-api-details/topics/ast.json @@ -1,7 +1,7 @@ { "slug": "ast", "name": "ast", - "published_at": "2026-01-25T16:06:28.557Z", + "published_at": "2026-02-19T13:36:00.642Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.557Z" + "generated_at": "2026-02-19T13:36:00.642Z" } } \ No newline at end of file diff --git a/new-api-details/topics/astronomy.json b/new-api-details/topics/astronomy.json index 33c0af23..1aaa0da8 100644 --- a/new-api-details/topics/astronomy.json +++ b/new-api-details/topics/astronomy.json @@ -1,10 +1,11 @@ { "slug": "astronomy", "name": "astronomy", - "published_at": "2026-01-25T16:06:29.048Z", + "published_at": "2026-02-19T13:36:01.684Z", "organizationCount": 7, "projectCount": 272, "years": [ + 2026, 2025, 2024, 2023, @@ -17,28 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "gnu-project", - "name": "GNU Project", - "first_year": 2016, - "last_year": 2024, - "total_projects": 59, - "is_currently_active": false, - "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2023, - 2024 - ] - }, { "slug": "machine-learning-for-science-ml4sci", "name": "Machine Learning for Science (ML4SCI)", "first_year": 2021, - "last_year": 2025, + "last_year": 2026, "total_projects": 119, "is_currently_active": true, "active_years": [ @@ -46,25 +30,15 @@ 2022, 2023, 2024, - 2025 - ] - }, - { - "slug": "mcgill-space-institute", - "name": "McGill Space Institute", - "first_year": 2016, - "last_year": 2016, - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2016 + 2025, + 2026 ] }, { "slug": "openastronomy", "name": "OpenAstronomy", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 77, "is_currently_active": true, "active_years": [ @@ -77,18 +51,26 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "project-panoptes", - "name": "Project PANOPTES", - "first_year": 2019, - "last_year": 2019, - "total_projects": 2, - "is_currently_active": false, + "slug": "gnu-project", + "name": "GNU Project", + "first_year": 2016, + "last_year": 2026, + "total_projects": 59, + "is_currently_active": true, "active_years": [ - 2019 + 2016, + 2017, + 2018, + 2019, + 2020, + 2023, + 2024, + 2026 ] }, { @@ -104,6 +86,17 @@ 2021 ] }, + { + "slug": "mcgill-space-institute", + "name": "McGill Space Institute", + "first_year": 2016, + "last_year": 2016, + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2016 + ] + }, { "slug": "timelab-technologies-ltd", "name": "Timelab Technologies Ltd.", @@ -114,6 +107,17 @@ "active_years": [ 2016 ] + }, + { + "slug": "project-panoptes", + "name": "Project PANOPTES", + "first_year": 2019, + "last_year": 2019, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2019 + ] } ], "yearlyStats": { @@ -156,10 +160,14 @@ "2025": { "organizationCount": 2, "projectCount": 36 + }, + "2026": { + "organizationCount": 3, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.048Z" + "generated_at": "2026-02-19T13:36:01.684Z" } } \ No newline at end of file diff --git a/new-api-details/topics/astrophysics.json b/new-api-details/topics/astrophysics.json index 0403b06d..1ff52878 100644 --- a/new-api-details/topics/astrophysics.json +++ b/new-api-details/topics/astrophysics.json @@ -1,10 +1,11 @@ { "slug": "astrophysics", "name": "astrophysics", - "published_at": "2026-01-25T16:06:28.982Z", + "published_at": "2026-02-19T13:36:01.412Z", "organizationCount": 4, "projectCount": 105, "years": [ + 2026, 2025, 2024, 2023, @@ -17,22 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "forschungszentrum-jülich", - "name": "Forschungszentrum Jülich", - "first_year": 2022, - "last_year": 2022, - "total_projects": 4, - "is_currently_active": false, - "active_years": [ - 2022 - ] - }, { "slug": "openastronomy", "name": "OpenAstronomy", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 77, "is_currently_active": true, "active_years": [ @@ -45,21 +35,23 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "tardis-rt-collaboration", "name": "TARDIS RT Collaboration", "first_year": 2022, - "last_year": 2025, + "last_year": 2026, "total_projects": 15, "is_currently_active": true, "active_years": [ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -74,6 +66,17 @@ 2020, 2021 ] + }, + { + "slug": "forschungszentrum-jülich", + "name": "Forschungszentrum Jülich", + "first_year": 2022, + "last_year": 2022, + "total_projects": 4, + "is_currently_active": false, + "active_years": [ + 2022 + ] } ], "yearlyStats": { @@ -116,10 +119,14 @@ "2025": { "organizationCount": 2, "projectCount": 7 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.982Z" + "generated_at": "2026-02-19T13:36:01.412Z" } } \ No newline at end of file diff --git a/new-api-details/topics/async.json b/new-api-details/topics/async.json index 2e12c5e2..504cc944 100644 --- a/new-api-details/topics/async.json +++ b/new-api-details/topics/async.json @@ -1,7 +1,7 @@ { "slug": "async", "name": "async", - "published_at": "2026-01-25T16:06:29.404Z", + "published_at": "2026-02-19T13:36:02.406Z", "organizationCount": 1, "projectCount": 1, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.404Z" + "generated_at": "2026-02-19T13:36:02.406Z" } } \ No newline at end of file diff --git a/new-api-details/topics/asynchronous-many-task-systems.json b/new-api-details/topics/asynchronous-many-task-systems.json index b332fc41..f3015075 100644 --- a/new-api-details/topics/asynchronous-many-task-systems.json +++ b/new-api-details/topics/asynchronous-many-task-systems.json @@ -1,10 +1,11 @@ { "slug": "asynchronous-many-task-systems", "name": "asynchronous many task systems", - "published_at": "2026-01-25T16:06:29.641Z", + "published_at": "2026-02-19T13:36:02.853Z", "organizationCount": 1, "projectCount": 38, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "stear-group", "name": "Ste||ar group", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 38, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.641Z" + "generated_at": "2026-02-19T13:36:02.853Z" } } \ No newline at end of file diff --git a/new-api-details/topics/asynchronous-manytask-systems.json b/new-api-details/topics/asynchronous-manytask-systems.json index 593413ff..9e7a562f 100644 --- a/new-api-details/topics/asynchronous-manytask-systems.json +++ b/new-api-details/topics/asynchronous-manytask-systems.json @@ -1,10 +1,11 @@ { "slug": "asynchronous-manytask-systems", "name": "asynchronous manytask systems", - "published_at": "2026-01-25T16:06:29.642Z", + "published_at": "2026-02-19T13:36:02.853Z", "organizationCount": 1, "projectCount": 38, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "stear-group", "name": "Ste||ar group", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 38, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.642Z" + "generated_at": "2026-02-19T13:36:02.853Z" } } \ No newline at end of file diff --git a/new-api-details/topics/asynchronous.json b/new-api-details/topics/asynchronous.json index 9008cb70..0037affe 100644 --- a/new-api-details/topics/asynchronous.json +++ b/new-api-details/topics/asynchronous.json @@ -1,7 +1,7 @@ { "slug": "asynchronous", "name": "asynchronous", - "published_at": "2026-01-25T16:06:28.857Z", + "published_at": "2026-02-19T13:36:01.202Z", "organizationCount": 1, "projectCount": 6, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.857Z" + "generated_at": "2026-02-19T13:36:01.202Z" } } \ No newline at end of file diff --git a/new-api-details/topics/atomic-physics.json b/new-api-details/topics/atomic-physics.json index a9b11155..a7bfc273 100644 --- a/new-api-details/topics/atomic-physics.json +++ b/new-api-details/topics/atomic-physics.json @@ -1,10 +1,11 @@ { "slug": "atomic-physics", "name": "atomic physics", - "published_at": "2026-01-25T16:06:29.467Z", + "published_at": "2026-02-19T13:36:02.552Z", "organizationCount": 1, "projectCount": 77, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "openastronomy", "name": "OpenAstronomy", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 77, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.467Z" + "generated_at": "2026-02-19T13:36:02.552Z" } } \ No newline at end of file diff --git a/new-api-details/topics/audio-analysis.json b/new-api-details/topics/audio-analysis.json index 492ef9fa..37ded4da 100644 --- a/new-api-details/topics/audio-analysis.json +++ b/new-api-details/topics/audio-analysis.json @@ -1,7 +1,7 @@ { "slug": "audio-analysis", "name": "audio analysis", - "published_at": "2026-01-25T16:06:28.539Z", + "published_at": "2026-02-19T13:36:00.637Z", "organizationCount": 2, "projectCount": 13, "years": [ @@ -11,26 +11,26 @@ ], "organizations": [ { - "slug": "audacity", - "name": "Audacity", - "first_year": 2021, + "slug": "orcasound", + "name": "Orcasound", + "first_year": 2020, "last_year": 2022, - "total_projects": 3, + "total_projects": 10, "is_currently_active": false, "active_years": [ + 2020, 2021, 2022 ] }, { - "slug": "orcasound", - "name": "Orcasound", - "first_year": 2020, + "slug": "audacity", + "name": "Audacity", + "first_year": 2021, "last_year": 2022, - "total_projects": 10, + "total_projects": 3, "is_currently_active": false, "active_years": [ - 2020, 2021, 2022 ] @@ -52,6 +52,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.539Z" + "generated_at": "2026-02-19T13:36:00.637Z" } } \ No newline at end of file diff --git a/new-api-details/topics/audio-editor.json b/new-api-details/topics/audio-editor.json index 31a94c17..ab3556f1 100644 --- a/new-api-details/topics/audio-editor.json +++ b/new-api-details/topics/audio-editor.json @@ -1,7 +1,7 @@ { "slug": "audio-editor", "name": "audio editor", - "published_at": "2026-01-25T16:06:28.538Z", + "published_at": "2026-02-19T13:36:00.636Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.538Z" + "generated_at": "2026-02-19T13:36:00.636Z" } } \ No newline at end of file diff --git a/new-api-details/topics/audio-firmware.json b/new-api-details/topics/audio-firmware.json index f7abd2d0..70604d49 100644 --- a/new-api-details/topics/audio-firmware.json +++ b/new-api-details/topics/audio-firmware.json @@ -1,7 +1,7 @@ { "slug": "audio-firmware", "name": "audio firmware", - "published_at": "2026-01-25T16:06:29.165Z", + "published_at": "2026-02-19T13:36:01.839Z", "organizationCount": 1, "projectCount": 12, "years": [ @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.165Z" + "generated_at": "2026-02-19T13:36:01.839Z" } } \ No newline at end of file diff --git a/new-api-details/topics/audio-processing.json b/new-api-details/topics/audio-processing.json index e0adda9c..4c7199a2 100644 --- a/new-api-details/topics/audio-processing.json +++ b/new-api-details/topics/audio-processing.json @@ -1,7 +1,7 @@ { "slug": "audio-processing", "name": "audio processing", - "published_at": "2026-01-25T16:06:28.540Z", + "published_at": "2026-02-19T13:36:00.638Z", "organizationCount": 2, "projectCount": 91, "years": [ @@ -16,18 +16,6 @@ 2016 ], "organizations": [ - { - "slug": "audacity", - "name": "Audacity", - "first_year": 2021, - "last_year": 2022, - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2021, - 2022 - ] - }, { "slug": "red-hen-lab", "name": "Red Hen Lab", @@ -46,6 +34,18 @@ 2023, 2024 ] + }, + { + "slug": "audacity", + "name": "Audacity", + "first_year": 2021, + "last_year": 2022, + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2021, + 2022 + ] } ], "yearlyStats": { @@ -88,6 +88,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.540Z" + "generated_at": "2026-02-19T13:36:00.638Z" } } \ No newline at end of file diff --git a/new-api-details/topics/audio.json b/new-api-details/topics/audio.json index 8a128d58..5395c389 100644 --- a/new-api-details/topics/audio.json +++ b/new-api-details/topics/audio.json @@ -1,10 +1,11 @@ { "slug": "audio", "name": "audio", - "published_at": "2026-01-25T16:06:28.537Z", + "published_at": "2026-02-19T13:36:00.635Z", "organizationCount": 12, "projectCount": 282, "years": [ + 2026, 2025, 2024, 2023, @@ -18,23 +19,11 @@ ], "organizations": [ { - "slug": "audacity", - "name": "Audacity", - "first_year": 2021, - "last_year": 2022, - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2021, - 2022 - ] - }, - { - "slug": "beagleboardorg", - "name": "BeagleBoard.org", + "slug": "videolan", + "name": "VideoLAN", "first_year": 2016, - "last_year": 2025, - "total_projects": 44, + "last_year": 2026, + "total_projects": 92, "is_currently_active": true, "active_years": [ 2016, @@ -46,14 +35,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "ffmpeg", "name": "FFmpeg", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 49, "is_currently_active": true, "active_years": [ @@ -66,17 +56,24 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "grame", - "name": "GRAME", - "first_year": 2022, + "slug": "beagleboardorg", + "name": "BeagleBoard.org", + "first_year": 2016, "last_year": 2025, - "total_projects": 10, - "is_currently_active": true, + "total_projects": 44, + "is_currently_active": false, "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, 2022, 2023, 2024, @@ -84,26 +81,29 @@ ] }, { - "slug": "kodi", - "name": "Kodi", - "first_year": 2017, - "last_year": 2022, - "total_projects": 12, + "slug": "musescore", + "name": "MuseScore", + "first_year": 2016, + "last_year": 2024, + "total_projects": 24, "is_currently_active": false, "active_years": [ + 2016, 2017, 2018, 2019, 2020, 2021, - 2022 + 2022, + 2023, + 2024 ] }, { "slug": "mixxx", "name": "Mixxx", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 16, "is_currently_active": true, "active_years": [ @@ -113,19 +113,18 @@ 2020, 2022, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "musescore", - "name": "MuseScore", - "first_year": 2016, + "slug": "purr-data", + "name": "Purr Data", + "first_year": 2018, "last_year": 2024, - "total_projects": 24, + "total_projects": 15, "is_currently_active": false, "active_years": [ - 2016, - 2017, 2018, 2019, 2020, @@ -136,53 +135,47 @@ ] }, { - "slug": "orcasound", - "name": "Orcasound", - "first_year": 2020, + "slug": "kodi", + "name": "Kodi", + "first_year": 2017, "last_year": 2022, - "total_projects": 10, + "total_projects": 12, "is_currently_active": false, "active_years": [ + 2017, + 2018, + 2019, 2020, 2021, 2022 ] }, { - "slug": "purr-data", - "name": "Purr Data", - "first_year": 2018, - "last_year": 2024, - "total_projects": 15, - "is_currently_active": false, + "slug": "grame", + "name": "GRAME", + "first_year": 2022, + "last_year": 2026, + "total_projects": 10, + "is_currently_active": true, "active_years": [ - 2018, - 2019, - 2020, - 2021, 2022, 2023, - 2024 + 2024, + 2025, + 2026 ] }, { - "slug": "videolan", - "name": "VideoLAN", - "first_year": 2016, - "last_year": 2025, - "total_projects": 92, - "is_currently_active": true, + "slug": "orcasound", + "name": "Orcasound", + "first_year": 2020, + "last_year": 2022, + "total_projects": 10, + "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2019, 2020, 2021, - 2022, - 2023, - 2024, - 2025 + 2022 ] }, { @@ -198,6 +191,18 @@ 2021 ] }, + { + "slug": "audacity", + "name": "Audacity", + "first_year": 2021, + "last_year": 2022, + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2021, + 2022 + ] + }, { "slug": "zynaddsubfx", "name": "ZynAddSubFX", @@ -250,10 +255,14 @@ "2025": { "organizationCount": 5, "projectCount": 29 + }, + "2026": { + "organizationCount": 4, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.537Z" + "generated_at": "2026-02-19T13:36:00.635Z" } } \ No newline at end of file diff --git a/new-api-details/topics/authentication.json b/new-api-details/topics/authentication.json index e054f4dc..05fd0160 100644 --- a/new-api-details/topics/authentication.json +++ b/new-api-details/topics/authentication.json @@ -1,7 +1,7 @@ { "slug": "authentication", "name": "Authentication", - "published_at": "2026-01-25T16:06:28.698Z", + "published_at": "2026-02-19T13:36:00.922Z", "organizationCount": 1, "projectCount": 22, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.698Z" + "generated_at": "2026-02-19T13:36:00.922Z" } } \ No newline at end of file diff --git a/new-api-details/topics/authoritative-dns-software.json b/new-api-details/topics/authoritative-dns-software.json index bae9ee8b..fc67b445 100644 --- a/new-api-details/topics/authoritative-dns-software.json +++ b/new-api-details/topics/authoritative-dns-software.json @@ -1,7 +1,7 @@ { "slug": "authoritative-dns-software", "name": "Authoritative DNS software", - "published_at": "2026-01-25T16:06:29.558Z", + "published_at": "2026-02-19T13:36:02.745Z", "organizationCount": 1, "projectCount": 1, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.558Z" + "generated_at": "2026-02-19T13:36:02.745Z" } } \ No newline at end of file diff --git a/new-api-details/topics/authorization.json b/new-api-details/topics/authorization.json index 6d1ce0a4..17f2a01d 100644 --- a/new-api-details/topics/authorization.json +++ b/new-api-details/topics/authorization.json @@ -1,7 +1,7 @@ { "slug": "authorization", "name": "authorization", - "published_at": "2026-01-25T16:06:28.696Z", + "published_at": "2026-02-19T13:36:00.920Z", "organizationCount": 1, "projectCount": 22, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.696Z" + "generated_at": "2026-02-19T13:36:00.920Z" } } \ No newline at end of file diff --git a/new-api-details/topics/automated-program-repair.json b/new-api-details/topics/automated-program-repair.json index 6b910be0..2dd8926c 100644 --- a/new-api-details/topics/automated-program-repair.json +++ b/new-api-details/topics/automated-program-repair.json @@ -1,7 +1,7 @@ { "slug": "automated-program-repair", "name": "automated program repair", - "published_at": "2026-01-25T16:06:28.630Z", + "published_at": "2026-02-19T13:36:00.925Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.630Z" + "generated_at": "2026-02-19T13:36:00.925Z" } } \ No newline at end of file diff --git a/new-api-details/topics/automated-testing.json b/new-api-details/topics/automated-testing.json index f6669982..32771893 100644 --- a/new-api-details/topics/automated-testing.json +++ b/new-api-details/topics/automated-testing.json @@ -1,7 +1,7 @@ { "slug": "automated-testing", "name": "Automated Testing", - "published_at": "2026-01-25T16:06:29.605Z", + "published_at": "2026-02-19T13:36:02.848Z", "organizationCount": 1, "projectCount": 6, "years": [ @@ -15,7 +15,7 @@ "first_year": 2023, "last_year": 2025, "total_projects": 6, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2023, 2025 @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.605Z" + "generated_at": "2026-02-19T13:36:02.848Z" } } \ No newline at end of file diff --git a/new-api-details/topics/automation.json b/new-api-details/topics/automation.json index a7cd6ecb..864d1114 100644 --- a/new-api-details/topics/automation.json +++ b/new-api-details/topics/automation.json @@ -1,10 +1,11 @@ { "slug": "automation", "name": "automation", - "published_at": "2026-01-25T16:06:28.396Z", + "published_at": "2026-02-19T13:36:00.535Z", "organizationCount": 13, "projectCount": 143, "years": [ + 2026, 2025, 2024, 2023, @@ -17,34 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "api-client-tools-at-google", - "name": "API Client Tools at Google", - "first_year": 2019, - "last_year": 2019, - "total_projects": 1, - "is_currently_active": false, - "active_years": [ - 2019 - ] - }, - { - "slug": "api-dash", - "name": "API Dash", - "first_year": 2024, - "last_year": 2025, - "total_projects": 3, - "is_currently_active": true, - "active_years": [ - 2024, - 2025 - ] - }, { "slug": "fossology", "name": "FOSSology", "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "total_projects": 42, "is_currently_active": true, "active_years": [ @@ -55,29 +33,27 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "ganeti", - "name": "Ganeti", + "slug": "jenkins", + "name": "Jenkins", "first_year": 2016, - "last_year": 2016, - "total_projects": 1, - "is_currently_active": false, - "active_years": [ - 2016 - ] - }, - { - "slug": "gcp-scanner", - "name": "GCP Scanner", - "first_year": 2023, - "last_year": 2023, - "total_projects": 3, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 33, + "is_currently_active": true, "active_years": [ - 2023 + 2016, + 2018, + 2019, + 2020, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { @@ -99,56 +75,55 @@ ] }, { - "slug": "jenkins", - "name": "Jenkins", - "first_year": 2016, - "last_year": 2025, - "total_projects": 33, - "is_currently_active": true, + "slug": "postman", + "name": "Postman", + "first_year": 2020, + "last_year": 2024, + "total_projects": 19, + "is_currently_active": false, "active_years": [ - 2016, - 2018, - 2019, 2020, - 2022, + 2021, 2023, - 2024, - 2025 - ] - }, - { - "slug": "kro-kube-resource-orchestrator", - "name": "kro | Kube Resource Orchestrator", - "first_year": 2025, - "last_year": 2025, - "total_projects": 2, - "is_currently_active": true, - "active_years": [ - 2025 + 2024 ] }, { "slug": "librecube-initiative", "name": "LibreCube Initiative", "first_year": 2021, - "last_year": 2024, + "last_year": 2026, "total_projects": 7, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2021, 2022, - 2024 + 2024, + 2026 ] }, { - "slug": "openms", - "name": "OpenMS", - "first_year": 2025, - "last_year": 2025, - "total_projects": 2, + "slug": "api-dash", + "name": "API Dash", + "first_year": 2024, + "last_year": 2026, + "total_projects": 3, "is_currently_active": true, "active_years": [ - 2025 + 2024, + 2025, + 2026 + ] + }, + { + "slug": "gcp-scanner", + "name": "GCP Scanner", + "first_year": 2023, + "last_year": 2023, + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2023 ] }, { @@ -164,17 +139,26 @@ ] }, { - "slug": "postman", - "name": "Postman", - "first_year": 2020, - "last_year": 2024, - "total_projects": 19, + "slug": "kro-kube-resource-orchestrator", + "name": "kro | Kube Resource Orchestrator", + "first_year": 2025, + "last_year": 2025, + "total_projects": 2, "is_currently_active": false, "active_years": [ - 2020, - 2021, - 2023, - 2024 + 2025 + ] + }, + { + "slug": "openms", + "name": "OpenMS", + "first_year": 2025, + "last_year": 2026, + "total_projects": 2, + "is_currently_active": true, + "active_years": [ + 2025, + 2026 ] }, { @@ -187,6 +171,28 @@ "active_years": [ 2018 ] + }, + { + "slug": "api-client-tools-at-google", + "name": "API Client Tools at Google", + "first_year": 2019, + "last_year": 2019, + "total_projects": 1, + "is_currently_active": false, + "active_years": [ + 2019 + ] + }, + { + "slug": "ganeti", + "name": "Ganeti", + "first_year": 2016, + "last_year": 2016, + "total_projects": 1, + "is_currently_active": false, + "active_years": [ + 2016 + ] } ], "yearlyStats": { @@ -229,10 +235,14 @@ "2025": { "organizationCount": 5, "projectCount": 21 + }, + "2026": { + "organizationCount": 5, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.396Z" + "generated_at": "2026-02-19T13:36:00.535Z" } } \ No newline at end of file diff --git a/new-api-details/topics/automobile.json b/new-api-details/topics/automobile.json index d10c5d76..74d90c68 100644 --- a/new-api-details/topics/automobile.json +++ b/new-api-details/topics/automobile.json @@ -1,7 +1,7 @@ { "slug": "automobile", "name": "automobile", - "published_at": "2026-01-25T16:06:29.015Z", + "published_at": "2026-02-19T13:36:01.587Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.015Z" + "generated_at": "2026-02-19T13:36:01.587Z" } } \ No newline at end of file diff --git a/new-api-details/topics/automotive.json b/new-api-details/topics/automotive.json index 0b3f4540..8572cb94 100644 --- a/new-api-details/topics/automotive.json +++ b/new-api-details/topics/automotive.json @@ -1,10 +1,11 @@ { "slug": "automotive", "name": "automotive", - "published_at": "2026-01-25T16:06:28.893Z", + "published_at": "2026-02-19T13:36:01.239Z", "organizationCount": 4, "projectCount": 221, "years": [ + 2026, 2025, 2024, 2023, @@ -18,11 +19,11 @@ ], "organizations": [ { - "slug": "eclipse-foundation", - "name": "Eclipse Foundation", + "slug": "the-linux-foundation", + "name": "The Linux Foundation", "first_year": 2016, - "last_year": 2025, - "total_projects": 68, + "last_year": 2026, + "total_projects": 137, "is_currently_active": true, "active_years": [ 2016, @@ -30,23 +31,32 @@ 2018, 2019, 2020, + 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "genivi-alliance", - "name": "GENIVI Alliance", - "first_year": 2017, - "last_year": 2019, - "total_projects": 3, - "is_currently_active": false, + "slug": "eclipse-foundation", + "name": "Eclipse Foundation", + "first_year": 2016, + "last_year": 2026, + "total_projects": 68, + "is_currently_active": true, "active_years": [ + 2016, 2017, 2018, - 2019 + 2019, + 2020, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { @@ -55,7 +65,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 13, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -68,23 +78,16 @@ ] }, { - "slug": "the-linux-foundation", - "name": "The Linux Foundation", - "first_year": 2016, - "last_year": 2025, - "total_projects": 137, - "is_currently_active": true, + "slug": "genivi-alliance", + "name": "GENIVI Alliance", + "first_year": 2017, + "last_year": 2019, + "total_projects": 3, + "is_currently_active": false, "active_years": [ - 2016, 2017, 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2019 ] } ], @@ -128,10 +131,14 @@ "2025": { "organizationCount": 3, "projectCount": 30 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.893Z" + "generated_at": "2026-02-19T13:36:01.239Z" } } \ No newline at end of file diff --git a/new-api-details/topics/autonomous-drive.json b/new-api-details/topics/autonomous-drive.json index 5287f9f2..f12a2e31 100644 --- a/new-api-details/topics/autonomous-drive.json +++ b/new-api-details/topics/autonomous-drive.json @@ -1,10 +1,11 @@ { "slug": "autonomous-drive", "name": "Autonomous Drive", - "published_at": "2026-01-25T16:06:29.831Z", + "published_at": "2026-02-19T13:36:01.208Z", "organizationCount": 1, "projectCount": 2, "years": [ + 2026, 2025 ], "organizations": [ @@ -12,11 +13,12 @@ "slug": "dora-rs", "name": "dora-rs", "first_year": 2025, - "last_year": 2025, + "last_year": 2026, "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] } ], @@ -24,10 +26,14 @@ "2025": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.831Z" + "generated_at": "2026-02-19T13:36:01.208Z" } } \ No newline at end of file diff --git a/new-api-details/topics/autonomous-vehicle.json b/new-api-details/topics/autonomous-vehicle.json index 9935a08e..34f8ebc4 100644 --- a/new-api-details/topics/autonomous-vehicle.json +++ b/new-api-details/topics/autonomous-vehicle.json @@ -1,10 +1,11 @@ { "slug": "autonomous-vehicle", "name": "autonomous vehicle", - "published_at": "2026-01-25T16:06:28.531Z", + "published_at": "2026-02-19T13:36:00.623Z", "organizationCount": 1, "projectCount": 38, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "ardupilot", "name": "ArduPilot", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 38, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.531Z" + "generated_at": "2026-02-19T13:36:00.623Z" } } \ No newline at end of file diff --git a/new-api-details/topics/autopilot.json b/new-api-details/topics/autopilot.json index 93b66996..8d2d296e 100644 --- a/new-api-details/topics/autopilot.json +++ b/new-api-details/topics/autopilot.json @@ -1,10 +1,11 @@ { "slug": "autopilot", "name": "autopilot", - "published_at": "2026-01-25T16:06:28.526Z", + "published_at": "2026-02-19T13:36:00.610Z", "organizationCount": 1, "projectCount": 38, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "ardupilot", "name": "ArduPilot", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 38, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.526Z" + "generated_at": "2026-02-19T13:36:00.610Z" } } \ No newline at end of file diff --git a/new-api-details/topics/autopkgtest.json b/new-api-details/topics/autopkgtest.json index 9494e1df..68628f93 100644 --- a/new-api-details/topics/autopkgtest.json +++ b/new-api-details/topics/autopkgtest.json @@ -1,10 +1,11 @@ { "slug": "autopkgtest", "name": "autopkgtest", - "published_at": "2026-01-25T16:06:28.830Z", + "published_at": "2026-02-19T13:36:01.170Z", "organizationCount": 1, "projectCount": 78, "years": [ + 2026, 2025, 2024, 2022, @@ -19,7 +20,7 @@ "slug": "debian", "name": "Debian", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 78, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.830Z" + "generated_at": "2026-02-19T13:36:01.170Z" } } \ No newline at end of file diff --git a/new-api-details/topics/backend.json b/new-api-details/topics/backend.json index 40f74ba6..4df37e2b 100644 --- a/new-api-details/topics/backend.json +++ b/new-api-details/topics/backend.json @@ -1,10 +1,11 @@ { "slug": "backend", "name": "backend", - "published_at": "2026-01-25T16:06:28.391Z", + "published_at": "2026-02-19T13:36:00.473Z", "organizationCount": 3, "projectCount": 278, "years": [ + 2026, 2025, 2024, 2023, @@ -18,13 +19,14 @@ ], "organizations": [ { - "slug": "aossie", - "name": "AOSSIE", - "first_year": 2017, - "last_year": 2025, - "total_projects": 117, + "slug": "llvm-compiler-infrastructure", + "name": "LLVM Compiler Infrastructure", + "first_year": 2016, + "last_year": 2026, + "total_projects": 122, "is_currently_active": true, "active_years": [ + 2016, 2017, 2018, 2019, @@ -33,34 +35,36 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "drupal-association", - "name": "Drupal Association", - "first_year": 2016, - "last_year": 2025, - "total_projects": 39, + "slug": "aossie", + "name": "AOSSIE", + "first_year": 2017, + "last_year": 2026, + "total_projects": 117, "is_currently_active": true, "active_years": [ - 2016, 2017, 2018, 2019, 2020, + 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "llvm-compiler-infrastructure", - "name": "LLVM Compiler Infrastructure", + "slug": "drupal-association", + "name": "Drupal Association", "first_year": 2016, - "last_year": 2025, - "total_projects": 122, + "last_year": 2026, + "total_projects": 39, "is_currently_active": true, "active_years": [ 2016, @@ -68,11 +72,11 @@ 2018, 2019, 2020, - 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -116,10 +120,14 @@ "2025": { "organizationCount": 3, "projectCount": 43 + }, + "2026": { + "organizationCount": 3, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.391Z" + "generated_at": "2026-02-19T13:36:00.473Z" } } \ No newline at end of file diff --git a/new-api-details/topics/backup.json b/new-api-details/topics/backup.json index 9455a9dd..274c14ae 100644 --- a/new-api-details/topics/backup.json +++ b/new-api-details/topics/backup.json @@ -1,10 +1,11 @@ { "slug": "backup", "name": "Backup", - "published_at": "2026-01-25T16:06:29.571Z", + "published_at": "2026-02-19T13:36:02.766Z", "organizationCount": 1, "projectCount": 277, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "python-software-foundation", "name": "Python Software Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 277, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 17 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.571Z" + "generated_at": "2026-02-19T13:36:02.766Z" } } \ No newline at end of file diff --git a/new-api-details/topics/backups.json b/new-api-details/topics/backups.json index e03ef13d..3e8de148 100644 --- a/new-api-details/topics/backups.json +++ b/new-api-details/topics/backups.json @@ -1,7 +1,7 @@ { "slug": "backups", "name": "backups", - "published_at": "2026-01-25T16:06:28.455Z", + "published_at": "2026-02-19T13:36:00.435Z", "organizationCount": 1, "projectCount": 18, "years": [ @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.455Z" + "generated_at": "2026-02-19T13:36:00.435Z" } } \ No newline at end of file diff --git a/new-api-details/topics/beacons.json b/new-api-details/topics/beacons.json index acc6f9d3..90f31caa 100644 --- a/new-api-details/topics/beacons.json +++ b/new-api-details/topics/beacons.json @@ -1,7 +1,7 @@ { "slug": "beacons", "name": "beacons", - "published_at": "2026-01-25T16:06:29.539Z", + "published_at": "2026-02-19T13:36:02.708Z", "organizationCount": 1, "projectCount": 8, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.539Z" + "generated_at": "2026-02-19T13:36:02.708Z" } } \ No newline at end of file diff --git a/new-api-details/topics/beatdetection.json b/new-api-details/topics/beatdetection.json index 51a3f4e1..bab03807 100644 --- a/new-api-details/topics/beatdetection.json +++ b/new-api-details/topics/beatdetection.json @@ -1,10 +1,11 @@ { "slug": "beatdetection", "name": "beatdetection", - "published_at": "2026-01-25T16:06:29.359Z", + "published_at": "2026-02-19T13:36:02.317Z", "organizationCount": 1, "projectCount": 16, "years": [ + 2026, 2025, 2024, 2022, @@ -18,7 +19,7 @@ "slug": "mixxx", "name": "Mixxx", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 16, "is_currently_active": true, "active_years": [ @@ -28,7 +29,8 @@ 2020, 2022, 2024, - 2025 + 2025, + 2026 ] } ], @@ -60,10 +62,14 @@ "2025": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.359Z" + "generated_at": "2026-02-19T13:36:02.317Z" } } \ No newline at end of file diff --git a/new-api-details/topics/benchmark.json b/new-api-details/topics/benchmark.json index b68649d0..f4e148ad 100644 --- a/new-api-details/topics/benchmark.json +++ b/new-api-details/topics/benchmark.json @@ -1,10 +1,11 @@ { "slug": "benchmark", "name": "Benchmark", - "published_at": "2026-01-25T16:06:29.555Z", + "published_at": "2026-02-19T13:36:02.739Z", "organizationCount": 1, "projectCount": 51, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "postgresql", "name": "PostgreSQL", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 51, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.555Z" + "generated_at": "2026-02-19T13:36:02.739Z" } } \ No newline at end of file diff --git a/new-api-details/topics/benchmarking.json b/new-api-details/topics/benchmarking.json index cacc4b1a..10abffd6 100644 --- a/new-api-details/topics/benchmarking.json +++ b/new-api-details/topics/benchmarking.json @@ -1,7 +1,7 @@ { "slug": "benchmarking", "name": "benchmarking", - "published_at": "2026-01-25T16:06:29.633Z", + "published_at": "2026-02-19T13:36:02.833Z", "organizationCount": 1, "projectCount": 14, "years": [ @@ -18,7 +18,7 @@ "first_year": 2018, "last_year": 2025, "total_projects": 14, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2018, 2019, @@ -52,6 +52,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.633Z" + "generated_at": "2026-02-19T13:36:02.833Z" } } \ No newline at end of file diff --git a/new-api-details/topics/bibliography.json b/new-api-details/topics/bibliography.json index 9fc78c97..f685a866 100644 --- a/new-api-details/topics/bibliography.json +++ b/new-api-details/topics/bibliography.json @@ -1,10 +1,11 @@ { "slug": "bibliography", "name": "bibliography", - "published_at": "2026-01-25T16:06:29.215Z", + "published_at": "2026-02-19T13:36:02.008Z", "organizationCount": 1, "projectCount": 11, "years": [ + 2026, 2025, 2024, 2022, @@ -16,7 +17,7 @@ "slug": "jabref-ev", "name": "JabRef e.V.", "first_year": 2019, - "last_year": 2025, + "last_year": 2026, "total_projects": 11, "is_currently_active": true, "active_years": [ @@ -24,7 +25,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] } ], @@ -48,10 +50,14 @@ "2025": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.215Z" + "generated_at": "2026-02-19T13:36:02.008Z" } } \ No newline at end of file diff --git a/new-api-details/topics/bibtex.json b/new-api-details/topics/bibtex.json index cc1478e7..fcaa3060 100644 --- a/new-api-details/topics/bibtex.json +++ b/new-api-details/topics/bibtex.json @@ -1,10 +1,11 @@ { "slug": "bibtex", "name": "bibtex", - "published_at": "2026-01-25T16:06:29.211Z", + "published_at": "2026-02-19T13:36:02.004Z", "organizationCount": 1, "projectCount": 11, "years": [ + 2026, 2025, 2024, 2022, @@ -16,7 +17,7 @@ "slug": "jabref-ev", "name": "JabRef e.V.", "first_year": 2019, - "last_year": 2025, + "last_year": 2026, "total_projects": 11, "is_currently_active": true, "active_years": [ @@ -24,7 +25,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] } ], @@ -48,10 +50,14 @@ "2025": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.211Z" + "generated_at": "2026-02-19T13:36:02.004Z" } } \ No newline at end of file diff --git a/new-api-details/topics/big-code.json b/new-api-details/topics/big-code.json index 8ba6d9e8..2e61228c 100644 --- a/new-api-details/topics/big-code.json +++ b/new-api-details/topics/big-code.json @@ -1,7 +1,7 @@ { "slug": "big-code", "name": "big code", - "published_at": "2026-01-25T16:06:29.627Z", + "published_at": "2026-02-19T13:36:02.838Z", "organizationCount": 1, "projectCount": 6, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.628Z" + "generated_at": "2026-02-19T13:36:02.838Z" } } \ No newline at end of file diff --git a/new-api-details/topics/big-data-science.json b/new-api-details/topics/big-data-science.json index 9e9d05ff..bac288cb 100644 --- a/new-api-details/topics/big-data-science.json +++ b/new-api-details/topics/big-data-science.json @@ -1,10 +1,11 @@ { "slug": "big-data-science", "name": "big data science", - "published_at": "2026-01-25T16:06:28.648Z", + "published_at": "2026-02-19T13:36:00.974Z", "organizationCount": 1, "projectCount": 214, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "cern-hsf", "name": "CERN-HSF", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 214, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 26 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.648Z" + "generated_at": "2026-02-19T13:36:00.974Z" } } \ No newline at end of file diff --git a/new-api-details/topics/big-data-visualization.json b/new-api-details/topics/big-data-visualization.json index 939230eb..86d1c95f 100644 --- a/new-api-details/topics/big-data-visualization.json +++ b/new-api-details/topics/big-data-visualization.json @@ -1,7 +1,7 @@ { "slug": "big-data-visualization", "name": "big data visualization", - "published_at": "2026-01-25T16:06:28.600Z", + "published_at": "2026-02-19T13:36:00.755Z", "organizationCount": 2, "projectCount": 97, "years": [ @@ -16,18 +16,6 @@ 2016 ], "organizations": [ - { - "slug": "biomedical-informatics-emory-university", - "name": "Biomedical Informatics, Emory University", - "first_year": 2016, - "last_year": 2019, - "total_projects": 9, - "is_currently_active": false, - "active_years": [ - 2016, - 2019 - ] - }, { "slug": "red-hen-lab", "name": "Red Hen Lab", @@ -46,6 +34,18 @@ 2023, 2024 ] + }, + { + "slug": "biomedical-informatics-emory-university", + "name": "Biomedical Informatics, Emory University", + "first_year": 2016, + "last_year": 2019, + "total_projects": 9, + "is_currently_active": false, + "active_years": [ + 2016, + 2019 + ] } ], "yearlyStats": { @@ -88,6 +88,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.600Z" + "generated_at": "2026-02-19T13:36:00.755Z" } } \ No newline at end of file diff --git a/new-api-details/topics/big-data.json b/new-api-details/topics/big-data.json index ed4f48c0..3d115edd 100644 --- a/new-api-details/topics/big-data.json +++ b/new-api-details/topics/big-data.json @@ -1,10 +1,11 @@ { "slug": "big-data", "name": "big data", - "published_at": "2026-01-25T16:06:28.467Z", - "organizationCount": 19, + "published_at": "2026-02-19T13:36:00.483Z", + "organizationCount": 21, "projectCount": 1479, "years": [ + 2026, 2025, 2024, 2023, @@ -18,52 +19,51 @@ ], "organizations": [ { - "slug": "apache-datafusion", - "name": "Apache DataFusion", - "first_year": 2025, - "last_year": 2025, - "total_projects": 2, - "is_currently_active": true, - "active_years": [ - 2025 - ] - }, - { - "slug": "cbioportal-for-cancer-genomics", - "name": "cBioPortal for Cancer Genomics", + "slug": "numfocus", + "name": "NumFOCUS", "first_year": 2016, - "last_year": 2025, - "total_projects": 38, + "last_year": 2026, + "total_projects": 277, "is_currently_active": true, "active_years": [ 2016, 2017, + 2018, 2019, + 2020, + 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "center-for-research-in-open-source-software-cross", - "name": "Center for Research in Open Source Software (CROSS)", - "first_year": 2018, - "last_year": 2022, - "total_projects": 20, + "slug": "the-apache-software-foundation", + "name": "The Apache Software Foundation", + "first_year": 2016, + "last_year": 2025, + "total_projects": 248, "is_currently_active": false, "active_years": [ + 2016, + 2017, 2018, 2019, + 2020, 2021, - 2022 + 2022, + 2023, + 2024, + 2025 ] }, { "slug": "cern-hsf", "name": "CERN-HSF", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 214, "is_currently_active": true, "active_years": [ @@ -75,15 +75,16 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "dbpedia", - "name": "DBpedia", + "slug": "incf", + "name": "INCF", "first_year": 2016, - "last_year": 2025, - "total_projects": 61, + "last_year": 2026, + "total_projects": 211, "is_currently_active": true, "active_years": [ 2016, @@ -95,28 +96,36 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "genome-assembly-and-annotation", - "name": "Genome Assembly and Annotation", - "first_year": 2021, - "last_year": 2023, - "total_projects": 14, - "is_currently_active": false, + "slug": "the-mifos-initiative", + "name": "The Mifos Initiative", + "first_year": 2016, + "last_year": 2026, + "total_projects": 102, + "is_currently_active": true, "active_years": [ - 2021, + 2016, + 2017, + 2018, + 2019, + 2020, 2022, - 2023 + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "global-alliance-for-genomics-and-health", - "name": "Global Alliance for Genomics and Health", + "slug": "red-hen-lab", + "name": "Red Hen Lab", "first_year": 2016, "last_year": 2024, - "total_projects": 45, + "total_projects": 88, "is_currently_active": false, "active_years": [ 2016, @@ -131,11 +140,11 @@ ] }, { - "slug": "incf", - "name": "INCF", + "slug": "dbpedia", + "name": "DBpedia", "first_year": 2016, - "last_year": 2025, - "total_projects": 211, + "last_year": 2026, + "total_projects": 61, "is_currently_active": true, "active_years": [ 2016, @@ -147,14 +156,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "metabrainz-foundation-inc", "name": "MetaBrainz Foundation Inc", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 60, "is_currently_active": true, "active_years": [ @@ -167,18 +177,18 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "numfocus", - "name": "NumFOCUS", - "first_year": 2016, - "last_year": 2025, - "total_projects": 277, + "slug": "postgresql", + "name": "PostgreSQL", + "first_year": 2017, + "last_year": 2026, + "total_projects": 51, "is_currently_active": true, "active_years": [ - 2016, 2017, 2018, 2019, @@ -187,30 +197,19 @@ 2022, 2023, 2024, - 2025 - ] - }, - { - "slug": "polypheny", - "name": "Polypheny", - "first_year": 2021, - "last_year": 2024, - "total_projects": 9, - "is_currently_active": false, - "active_years": [ - 2021, - 2022, - 2024 + 2025, + 2026 ] }, { - "slug": "postgresql", - "name": "PostgreSQL", - "first_year": 2017, - "last_year": 2025, - "total_projects": 51, + "slug": "global-alliance-for-genomics-and-health", + "name": "Global Alliance for Genomics and Health", + "first_year": 2016, + "last_year": 2026, + "total_projects": 45, "is_currently_active": true, "active_years": [ + 2016, 2017, 2018, 2019, @@ -219,41 +218,83 @@ 2022, 2023, 2024, - 2025 + 2026 ] }, { - "slug": "red-hen-lab", - "name": "Red Hen Lab", + "slug": "cbioportal-for-cancer-genomics", + "name": "cBioPortal for Cancer Genomics", "first_year": 2016, - "last_year": 2024, - "total_projects": 88, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 38, + "is_currently_active": true, "active_years": [ 2016, 2017, - 2018, 2019, - 2020, - 2021, 2022, 2023, - 2024 + 2024, + 2025, + 2026 ] }, { - "slug": "software-heritage", - "name": "Software Heritage", - "first_year": 2019, + "slug": "center-for-research-in-open-source-software-cross", + "name": "Center for Research in Open Source Software (CROSS)", + "first_year": 2018, "last_year": 2022, - "total_projects": 6, + "total_projects": 20, "is_currently_active": false, "active_years": [ + 2018, 2019, 2021, 2022 ] }, + { + "slug": "tardis-rt-collaboration", + "name": "TARDIS RT Collaboration", + "first_year": 2022, + "last_year": 2026, + "total_projects": 15, + "is_currently_active": true, + "active_years": [ + 2022, + 2023, + 2024, + 2025, + 2026 + ] + }, + { + "slug": "genome-assembly-and-annotation", + "name": "Genome Assembly and Annotation", + "first_year": 2021, + "last_year": 2026, + "total_projects": 14, + "is_currently_active": true, + "active_years": [ + 2021, + 2022, + 2023, + 2026 + ] + }, + { + "slug": "polypheny", + "name": "Polypheny", + "first_year": 2021, + "last_year": 2024, + "total_projects": 9, + "is_currently_active": false, + "active_years": [ + 2021, + 2022, + 2024 + ] + }, { "slug": "stony-brook-university-biomedical-informatics", "name": "Stony Brook University Biomedical Informatics", @@ -267,20 +308,6 @@ 2018 ] }, - { - "slug": "tardis-rt-collaboration", - "name": "TARDIS RT Collaboration", - "first_year": 2022, - "last_year": 2025, - "total_projects": 15, - "is_currently_active": true, - "active_years": [ - 2022, - 2023, - 2024, - 2025 - ] - }, { "slug": "tardis-sn", "name": "TARDIS SN", @@ -295,43 +322,50 @@ ] }, { - "slug": "the-apache-software-foundation", - "name": "The Apache Software Foundation", - "first_year": 2016, - "last_year": 2025, - "total_projects": 248, - "is_currently_active": true, + "slug": "software-heritage", + "name": "Software Heritage", + "first_year": 2019, + "last_year": 2022, + "total_projects": 6, + "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, 2019, - 2020, 2021, - 2022, - 2023, - 2024, - 2025 + 2022 ] }, { - "slug": "the-mifos-initiative", - "name": "The Mifos Initiative", - "first_year": 2016, + "slug": "apache-datafusion", + "name": "Apache DataFusion", + "first_year": 2025, "last_year": 2025, - "total_projects": 102, - "is_currently_active": true, + "total_projects": 2, + "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2022, - 2023, - 2024, 2025 ] + }, + { + "slug": "apache-software-foundation", + "name": "Apache Software Foundation", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + }, + { + "slug": "malariagen", + "name": "MalariaGEN", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] } ], "yearlyStats": { @@ -374,10 +408,14 @@ "2025": { "organizationCount": 11, "projectCount": 151 + }, + "2026": { + "organizationCount": 13, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.467Z" + "generated_at": "2026-02-19T13:36:00.483Z" } } \ No newline at end of file diff --git a/new-api-details/topics/big-project.json b/new-api-details/topics/big-project.json index 1b900f5c..4266b208 100644 --- a/new-api-details/topics/big-project.json +++ b/new-api-details/topics/big-project.json @@ -1,10 +1,11 @@ { "slug": "big-project", "name": "big project", - "published_at": "2026-01-25T16:06:29.282Z", + "published_at": "2026-02-19T13:36:02.189Z", "organizationCount": 1, "projectCount": 65, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "libreoffice", "name": "LibreOffice", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 65, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.282Z" + "generated_at": "2026-02-19T13:36:02.189Z" } } \ No newline at end of file diff --git a/new-api-details/topics/bigdata.json b/new-api-details/topics/bigdata.json index 055274d1..9e2a8fa0 100644 --- a/new-api-details/topics/bigdata.json +++ b/new-api-details/topics/bigdata.json @@ -1,7 +1,7 @@ { "slug": "bigdata", "name": "bigdata", - "published_at": "2026-01-25T16:06:29.019Z", + "published_at": "2026-02-19T13:36:01.590Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.019Z" + "generated_at": "2026-02-19T13:36:01.590Z" } } \ No newline at end of file diff --git a/new-api-details/topics/bim.json b/new-api-details/topics/bim.json index 1b32d7cd..ef642392 100644 --- a/new-api-details/topics/bim.json +++ b/new-api-details/topics/bim.json @@ -1,10 +1,11 @@ { "slug": "bim", "name": "BIM", - "published_at": "2026-01-25T16:06:29.004Z", + "published_at": "2026-02-19T13:36:01.544Z", "organizationCount": 1, "projectCount": 8, "years": [ + 2026, 2025, 2024, 2023 @@ -14,13 +15,14 @@ "slug": "freecad", "name": "FreeCAD", "first_year": 2023, - "last_year": 2025, + "last_year": 2026, "total_projects": 8, "is_currently_active": true, "active_years": [ 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -36,10 +38,14 @@ "2025": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.004Z" + "generated_at": "2026-02-19T13:36:01.544Z" } } \ No newline at end of file diff --git a/new-api-details/topics/binary-tools.json b/new-api-details/topics/binary-tools.json index 64594f9c..d0ea50df 100644 --- a/new-api-details/topics/binary-tools.json +++ b/new-api-details/topics/binary-tools.json @@ -1,10 +1,11 @@ { "slug": "binary-tools", "name": "binary tools", - "published_at": "2026-01-25T16:06:29.053Z", + "published_at": "2026-02-19T13:36:01.688Z", "organizationCount": 1, "projectCount": 59, "years": [ + 2026, 2024, 2023, 2020, @@ -18,9 +19,9 @@ "slug": "gnu-project", "name": "GNU Project", "first_year": 2016, - "last_year": 2024, + "last_year": 2026, "total_projects": 59, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -28,7 +29,8 @@ 2019, 2020, 2023, - 2024 + 2024, + 2026 ] } ], @@ -60,10 +62,14 @@ "2024": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.053Z" + "generated_at": "2026-02-19T13:36:01.688Z" } } \ No newline at end of file diff --git a/new-api-details/topics/bio-neuro-image-processing.json b/new-api-details/topics/bio-neuro-image-processing.json index 92403150..eea0271c 100644 --- a/new-api-details/topics/bio-neuro-image-processing.json +++ b/new-api-details/topics/bio-neuro-image-processing.json @@ -1,10 +1,11 @@ { "slug": "bio-neuro-image-processing", "name": "bio/neuro image processing", - "published_at": "2026-01-25T16:06:29.132Z", + "published_at": "2026-02-19T13:36:01.787Z", "organizationCount": 1, "projectCount": 211, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "incf", "name": "INCF", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 211, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 27 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.132Z" + "generated_at": "2026-02-19T13:36:01.787Z" } } \ No newline at end of file diff --git a/new-api-details/topics/biochemistry.json b/new-api-details/topics/biochemistry.json index 1d3a3054..6fdf5d3a 100644 --- a/new-api-details/topics/biochemistry.json +++ b/new-api-details/topics/biochemistry.json @@ -1,10 +1,11 @@ { "slug": "biochemistry", "name": "biochemistry", - "published_at": "2026-01-25T16:06:29.306Z", + "published_at": "2026-02-19T13:36:02.266Z", "organizationCount": 2, "projectCount": 19, "years": [ + 2026, 2025, 2024, 2023, @@ -17,7 +18,7 @@ "slug": "mdanalysis", "name": "MDAnalysis", "first_year": 2020, - "last_year": 2025, + "last_year": 2026, "total_projects": 16, "is_currently_active": true, "active_years": [ @@ -26,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.306Z" + "generated_at": "2026-02-19T13:36:02.266Z" } } \ No newline at end of file diff --git a/new-api-details/topics/bioinformatics.json b/new-api-details/topics/bioinformatics.json index 470ff201..a88524ef 100644 --- a/new-api-details/topics/bioinformatics.json +++ b/new-api-details/topics/bioinformatics.json @@ -1,10 +1,11 @@ { "slug": "bioinformatics", "name": "bioinformatics", - "published_at": "2026-01-25T16:06:28.595Z", + "published_at": "2026-02-19T13:36:00.738Z", "organizationCount": 18, "projectCount": 419, "years": [ + 2026, 2025, 2024, 2023, @@ -18,35 +19,82 @@ ], "organizations": [ { - "slug": "biojs", - "name": "BioJS", + "slug": "national-resource-for-network-biology-nrnb", + "name": "National Resource for Network Biology (NRNB)", "first_year": 2016, - "last_year": 2016, - "total_projects": 3, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 119, + "is_currently_active": true, "active_years": [ - 2016 + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "canadian-centre-for-computational-genomics", - "name": "Canadian Centre for Computational Genomics", + "slug": "uc-ospo", + "name": "UC OSPO", + "first_year": 2023, + "last_year": 2026, + "total_projects": 47, + "is_currently_active": true, + "active_years": [ + 2023, + 2024, + 2025, + 2026 + ] + }, + { + "slug": "global-alliance-for-genomics-and-health", + "name": "Global Alliance for Genomics and Health", "first_year": 2016, - "last_year": 2020, - "total_projects": 15, + "last_year": 2026, + "total_projects": 45, + "is_currently_active": true, + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2026 + ] + }, + { + "slug": "open-bioinformatics-foundation-obf", + "name": "Open Bioinformatics Foundation (OBF)", + "first_year": 2016, + "last_year": 2022, + "total_projects": 45, "is_currently_active": false, "active_years": [ 2016, + 2017, 2018, 2019, - 2020 + 2020, + 2021, + 2022 ] }, { "slug": "cbioportal-for-cancer-genomics", "name": "cBioPortal for Cancer Genomics", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 38, "is_currently_active": true, "active_years": [ @@ -56,19 +104,25 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "center-for-translational-data-science", - "name": "Center for Translational Data Science", - "first_year": 2022, - "last_year": 2025, - "total_projects": 6, + "slug": "open-genome-informatics", + "name": "Open Genome Informatics", + "first_year": 2016, + "last_year": 2026, + "total_projects": 28, "is_currently_active": true, "active_years": [ + 2016, + 2017, + 2020, + 2021, 2022, - 2025 + 2023, + 2026 ] }, { @@ -86,36 +140,31 @@ ] }, { - "slug": "genes-genomes-and-variation", - "name": "Genes, Genomes and Variation", + "slug": "canadian-centre-for-computational-genomics", + "name": "Canadian Centre for Computational Genomics", "first_year": 2016, - "last_year": 2019, - "total_projects": 12, + "last_year": 2020, + "total_projects": 15, "is_currently_active": false, "active_years": [ 2016, - 2017, 2018, - 2019 + 2019, + 2020 ] }, { - "slug": "global-alliance-for-genomics-and-health", - "name": "Global Alliance for Genomics and Health", + "slug": "genes-genomes-and-variation", + "name": "Genes, Genomes and Variation", "first_year": 2016, - "last_year": 2024, - "total_projects": 45, + "last_year": 2019, + "total_projects": 12, "is_currently_active": false, "active_years": [ 2016, 2017, 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024 + 2019 ] }, { @@ -131,67 +180,42 @@ ] }, { - "slug": "national-resource-for-network-biology-nrnb", - "name": "National Resource for Network Biology (NRNB)", - "first_year": 2016, - "last_year": 2025, - "total_projects": 119, - "is_currently_active": true, - "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 - ] - }, - { - "slug": "open-bioinformatics-foundation-obf", - "name": "Open Bioinformatics Foundation (OBF)", + "slug": "shogun", + "name": "Shogun", "first_year": 2016, - "last_year": 2022, - "total_projects": 45, + "last_year": 2020, + "total_projects": 10, "is_currently_active": false, "active_years": [ 2016, 2017, - 2018, 2019, - 2020, - 2021, - 2022 + 2020 ] }, { - "slug": "open-chromosome-collective", - "name": "Open Chromosome Collective", - "first_year": 2024, - "last_year": 2024, - "total_projects": 3, + "slug": "wellcome-sanger-tree-of-life", + "name": "Wellcome Sanger Tree of Life", + "first_year": 2022, + "last_year": 2025, + "total_projects": 8, "is_currently_active": false, "active_years": [ - 2024 + 2022, + 2024, + 2025 ] }, { - "slug": "open-genome-informatics", - "name": "Open Genome Informatics", - "first_year": 2016, - "last_year": 2023, - "total_projects": 28, + "slug": "center-for-translational-data-science", + "name": "Center for Translational Data Science", + "first_year": 2022, + "last_year": 2025, + "total_projects": 6, "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2020, - 2021, 2022, - 2023 + 2025 ] }, { @@ -206,41 +230,25 @@ ] }, { - "slug": "shogun", - "name": "Shogun", + "slug": "biojs", + "name": "BioJS", "first_year": 2016, - "last_year": 2020, - "total_projects": 10, + "last_year": 2016, + "total_projects": 3, "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2019, - 2020 + 2016 ] }, { - "slug": "stemformatics", - "name": "Stemformatics", - "first_year": 2018, - "last_year": 2018, - "total_projects": 2, + "slug": "open-chromosome-collective", + "name": "Open Chromosome Collective", + "first_year": 2024, + "last_year": 2024, + "total_projects": 3, "is_currently_active": false, "active_years": [ - 2018 - ] - }, - { - "slug": "uc-ospo", - "name": "UC OSPO", - "first_year": 2023, - "last_year": 2025, - "total_projects": 47, - "is_currently_active": true, - "active_years": [ - 2023, - 2024, - 2025 + 2024 ] }, { @@ -257,16 +265,14 @@ ] }, { - "slug": "wellcome-sanger-tree-of-life", - "name": "Wellcome Sanger Tree of Life", - "first_year": 2022, - "last_year": 2025, - "total_projects": 8, - "is_currently_active": true, + "slug": "stemformatics", + "name": "Stemformatics", + "first_year": 2018, + "last_year": 2018, + "total_projects": 2, + "is_currently_active": false, "active_years": [ - 2022, - 2024, - 2025 + 2018 ] } ], @@ -310,10 +316,14 @@ "2025": { "organizationCount": 5, "projectCount": 37 + }, + "2026": { + "organizationCount": 5, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.595Z" + "generated_at": "2026-02-19T13:36:00.738Z" } } \ No newline at end of file diff --git a/new-api-details/topics/bioinformtics.json b/new-api-details/topics/bioinformtics.json index 8923904c..09350612 100644 --- a/new-api-details/topics/bioinformtics.json +++ b/new-api-details/topics/bioinformtics.json @@ -1,7 +1,7 @@ { "slug": "bioinformtics", "name": "bioinformtics", - "published_at": "2026-01-25T16:06:29.649Z", + "published_at": "2026-02-19T13:36:02.859Z", "organizationCount": 1, "projectCount": 9, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.649Z" + "generated_at": "2026-02-19T13:36:02.859Z" } } \ No newline at end of file diff --git a/new-api-details/topics/biological-networks.json b/new-api-details/topics/biological-networks.json index 78eba260..344d9081 100644 --- a/new-api-details/topics/biological-networks.json +++ b/new-api-details/topics/biological-networks.json @@ -1,7 +1,7 @@ { "slug": "biological-networks", "name": "biological networks", - "published_at": "2026-01-25T16:06:28.790Z", + "published_at": "2026-02-19T13:36:01.070Z", "organizationCount": 1, "projectCount": 18, "years": [ @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.790Z" + "generated_at": "2026-02-19T13:36:01.070Z" } } \ No newline at end of file diff --git a/new-api-details/topics/biology.json b/new-api-details/topics/biology.json index d82d7fea..8bc9488e 100644 --- a/new-api-details/topics/biology.json +++ b/new-api-details/topics/biology.json @@ -1,10 +1,11 @@ { "slug": "biology", "name": "biology", - "published_at": "2026-01-25T16:06:28.835Z", + "published_at": "2026-02-19T13:36:00.929Z", "organizationCount": 7, "projectCount": 518, "years": [ + 2026, 2025, 2024, 2023, @@ -18,67 +19,31 @@ ], "organizations": [ { - "slug": "cbioportal-for-cancer-genomics", - "name": "cBioPortal for Cancer Genomics", + "slug": "python-software-foundation", + "name": "Python Software Foundation", "first_year": 2016, - "last_year": 2025, - "total_projects": 38, + "last_year": 2026, + "total_projects": 277, "is_currently_active": true, "active_years": [ 2016, 2017, + 2018, 2019, - 2022, - 2023, - 2024, - 2025 - ] - }, - { - "slug": "deepchem", - "name": "DeepChem", - "first_year": 2024, - "last_year": 2025, - "total_projects": 14, - "is_currently_active": true, - "active_years": [ - 2024, - 2025 - ] - }, - { - "slug": "geomscale", - "name": "GeomScale", - "first_year": 2020, - "last_year": 2025, - "total_projects": 30, - "is_currently_active": true, - "active_years": [ 2020, 2021, 2022, 2023, 2024, - 2025 - ] - }, - { - "slug": "intermine", - "name": "InterMine", - "first_year": 2018, - "last_year": 2019, - "total_projects": 12, - "is_currently_active": false, - "active_years": [ - 2018, - 2019 + 2025, + 2026 ] }, { "slug": "national-resource-for-network-biology-nrnb", "name": "National Resource for Network Biology (NRNB)", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 119, "is_currently_active": true, "active_years": [ @@ -91,43 +56,85 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "open-genome-informatics", - "name": "Open Genome Informatics", + "slug": "cbioportal-for-cancer-genomics", + "name": "cBioPortal for Cancer Genomics", "first_year": 2016, - "last_year": 2023, - "total_projects": 28, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 38, + "is_currently_active": true, "active_years": [ 2016, 2017, + 2019, + 2022, + 2023, + 2024, + 2025, + 2026 + ] + }, + { + "slug": "geomscale", + "name": "GeomScale", + "first_year": 2020, + "last_year": 2026, + "total_projects": 30, + "is_currently_active": true, + "active_years": [ 2020, 2021, 2022, - 2023 + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "python-software-foundation", - "name": "Python Software Foundation", + "slug": "open-genome-informatics", + "name": "Open Genome Informatics", "first_year": 2016, - "last_year": 2025, - "total_projects": 277, + "last_year": 2026, + "total_projects": 28, "is_currently_active": true, "active_years": [ 2016, 2017, - 2018, - 2019, 2020, 2021, 2022, 2023, + 2026 + ] + }, + { + "slug": "deepchem", + "name": "DeepChem", + "first_year": 2024, + "last_year": 2026, + "total_projects": 14, + "is_currently_active": true, + "active_years": [ 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "intermine", + "name": "InterMine", + "first_year": 2018, + "last_year": 2019, + "total_projects": 12, + "is_currently_active": false, + "active_years": [ + 2018, + 2019 ] } ], @@ -171,10 +178,14 @@ "2025": { "organizationCount": 5, "projectCount": 41 + }, + "2026": { + "organizationCount": 6, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.835Z" + "generated_at": "2026-02-19T13:36:00.929Z" } } \ No newline at end of file diff --git a/new-api-details/topics/biomedical-data-science.json b/new-api-details/topics/biomedical-data-science.json index a09d05e3..d4ecfa9d 100644 --- a/new-api-details/topics/biomedical-data-science.json +++ b/new-api-details/topics/biomedical-data-science.json @@ -1,7 +1,7 @@ { "slug": "biomedical-data-science", "name": "biomedical data science", - "published_at": "2026-01-25T16:06:29.650Z", + "published_at": "2026-02-19T13:36:02.860Z", "organizationCount": 1, "projectCount": 9, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.650Z" + "generated_at": "2026-02-19T13:36:02.860Z" } } \ No newline at end of file diff --git a/new-api-details/topics/biomedical-informatics.json b/new-api-details/topics/biomedical-informatics.json index 0cbeded1..67e04e1c 100644 --- a/new-api-details/topics/biomedical-informatics.json +++ b/new-api-details/topics/biomedical-informatics.json @@ -1,7 +1,7 @@ { "slug": "biomedical-informatics", "name": "biomedical informatics", - "published_at": "2026-01-25T16:06:29.648Z", + "published_at": "2026-02-19T13:36:02.858Z", "organizationCount": 1, "projectCount": 9, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.648Z" + "generated_at": "2026-02-19T13:36:02.858Z" } } \ No newline at end of file diff --git a/new-api-details/topics/biophysics.json b/new-api-details/topics/biophysics.json index 724a275f..9a0cc232 100644 --- a/new-api-details/topics/biophysics.json +++ b/new-api-details/topics/biophysics.json @@ -1,10 +1,11 @@ { "slug": "biophysics", "name": "biophysics", - "published_at": "2026-01-25T16:06:29.301Z", + "published_at": "2026-02-19T13:36:02.256Z", "organizationCount": 1, "projectCount": 16, "years": [ + 2026, 2025, 2024, 2023, @@ -17,7 +18,7 @@ "slug": "mdanalysis", "name": "MDAnalysis", "first_year": 2020, - "last_year": 2025, + "last_year": 2026, "total_projects": 16, "is_currently_active": true, "active_years": [ @@ -26,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -54,10 +56,14 @@ "2025": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.302Z" + "generated_at": "2026-02-19T13:36:02.256Z" } } \ No newline at end of file diff --git a/new-api-details/topics/bios.json b/new-api-details/topics/bios.json index 7af3a254..f9bc354f 100644 --- a/new-api-details/topics/bios.json +++ b/new-api-details/topics/bios.json @@ -1,7 +1,7 @@ { "slug": "bios", "name": "BIOS", - "published_at": "2026-01-25T16:06:29.741Z", + "published_at": "2026-02-19T13:36:01.087Z", "organizationCount": 2, "projectCount": 19, "years": [ @@ -69,6 +69,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.741Z" + "generated_at": "2026-02-19T13:36:01.087Z" } } \ No newline at end of file diff --git a/new-api-details/topics/bittorrent.json b/new-api-details/topics/bittorrent.json index 40cf4466..810717fe 100644 --- a/new-api-details/topics/bittorrent.json +++ b/new-api-details/topics/bittorrent.json @@ -1,10 +1,11 @@ { "slug": "bittorrent", "name": "bittorrent", - "published_at": "2026-01-25T16:06:28.641Z", + "published_at": "2026-02-19T13:36:00.945Z", "organizationCount": 1, "projectCount": 80, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "ccextractor-development", "name": "CCExtractor Development", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 80, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 10 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.641Z" + "generated_at": "2026-02-19T13:36:00.945Z" } } \ No newline at end of file diff --git a/new-api-details/topics/blindness.json b/new-api-details/topics/blindness.json index d2c6f9af..156f75ad 100644 --- a/new-api-details/topics/blindness.json +++ b/new-api-details/topics/blindness.json @@ -1,7 +1,7 @@ { "slug": "blindness", "name": "blindness", - "published_at": "2026-01-25T16:06:29.390Z", + "published_at": "2026-02-19T13:36:02.434Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.390Z" + "generated_at": "2026-02-19T13:36:02.434Z" } } \ No newline at end of file diff --git a/new-api-details/topics/blockchain.json b/new-api-details/topics/blockchain.json index e65245db..12c3c315 100644 --- a/new-api-details/topics/blockchain.json +++ b/new-api-details/topics/blockchain.json @@ -1,10 +1,11 @@ { "slug": "blockchain", "name": "blockchain", - "published_at": "2026-01-25T16:06:28.436Z", - "organizationCount": 2, - "projectCount": 58, + "published_at": "2026-02-19T13:36:00.378Z", + "organizationCount": 3, + "projectCount": 175, "years": [ + 2026, 2025, 2024, 2023, @@ -12,29 +13,36 @@ 2021, 2020, 2019, + 2018, 2017, 2016 ], "organizations": [ { - "slug": "accord-project", - "name": "Accord Project", - "first_year": 2020, - "last_year": 2025, - "total_projects": 13, + "slug": "aossie", + "name": "AOSSIE", + "first_year": 2017, + "last_year": 2026, + "total_projects": 117, "is_currently_active": true, "active_years": [ + 2017, + 2018, + 2019, 2020, 2021, + 2022, + 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "mit-app-inventor", "name": "MIT App Inventor", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 45, "is_currently_active": true, "active_years": [ @@ -46,7 +54,23 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "accord-project", + "name": "Accord Project", + "first_year": 2020, + "last_year": 2026, + "total_projects": 13, + "is_currently_active": true, + "active_years": [ + 2020, + 2021, + 2024, + 2025, + 2026 ] } ], @@ -56,40 +80,48 @@ "projectCount": 5 }, "2017": { + "organizationCount": 2, + "projectCount": 17 + }, + "2018": { "organizationCount": 1, - "projectCount": 4 + "projectCount": 13 }, "2019": { - "organizationCount": 1, - "projectCount": 4 + "organizationCount": 2, + "projectCount": 22 }, "2020": { - "organizationCount": 2, - "projectCount": 8 + "organizationCount": 3, + "projectCount": 17 }, "2021": { - "organizationCount": 2, - "projectCount": 8 + "organizationCount": 3, + "projectCount": 19 }, "2022": { - "organizationCount": 1, - "projectCount": 5 + "organizationCount": 2, + "projectCount": 13 }, "2023": { - "organizationCount": 1, - "projectCount": 6 + "organizationCount": 2, + "projectCount": 12 }, "2024": { - "organizationCount": 2, - "projectCount": 8 + "organizationCount": 3, + "projectCount": 26 }, "2025": { - "organizationCount": 2, - "projectCount": 10 + "organizationCount": 3, + "projectCount": 31 + }, + "2026": { + "organizationCount": 3, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.436Z" + "generated_at": "2026-02-19T13:36:00.378Z" } } \ No newline at end of file diff --git a/new-api-details/topics/bookmarking.json b/new-api-details/topics/bookmarking.json index 4f12dd39..743e9f06 100644 --- a/new-api-details/topics/bookmarking.json +++ b/new-api-details/topics/bookmarking.json @@ -1,7 +1,7 @@ { "slug": "bookmarking", "name": "bookmarking", - "published_at": "2026-01-25T16:06:29.785Z", + "published_at": "2026-02-19T13:36:03.144Z", "organizationCount": 1, "projectCount": 4, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.785Z" + "generated_at": "2026-02-19T13:36:03.144Z" } } \ No newline at end of file diff --git a/new-api-details/topics/books.json b/new-api-details/topics/books.json index e18defaf..9d755883 100644 --- a/new-api-details/topics/books.json +++ b/new-api-details/topics/books.json @@ -1,10 +1,11 @@ { "slug": "books", "name": "books", - "published_at": "2026-01-25T16:06:29.182Z", + "published_at": "2026-02-19T13:36:01.904Z", "organizationCount": 2, "projectCount": 86, "years": [ + 2026, 2025, 2024, 2023, @@ -18,41 +19,43 @@ ], "organizations": [ { - "slug": "internet-archive", - "name": "Internet Archive", - "first_year": 2017, - "last_year": 2025, - "total_projects": 26, + "slug": "metabrainz-foundation-inc", + "name": "MetaBrainz Foundation Inc", + "first_year": 2016, + "last_year": 2026, + "total_projects": 60, "is_currently_active": true, "active_years": [ + 2016, 2017, 2018, 2019, 2020, 2021, + 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "metabrainz-foundation-inc", - "name": "MetaBrainz Foundation Inc", - "first_year": 2016, - "last_year": 2025, - "total_projects": 60, + "slug": "internet-archive", + "name": "Internet Archive", + "first_year": 2017, + "last_year": 2026, + "total_projects": 26, "is_currently_active": true, "active_years": [ - 2016, 2017, 2018, 2019, 2020, 2021, - 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -96,10 +99,14 @@ "2025": { "organizationCount": 2, "projectCount": 11 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.182Z" + "generated_at": "2026-02-19T13:36:01.904Z" } } \ No newline at end of file diff --git a/new-api-details/topics/boot-loader.json b/new-api-details/topics/boot-loader.json index 07f51c2c..0932d52d 100644 --- a/new-api-details/topics/boot-loader.json +++ b/new-api-details/topics/boot-loader.json @@ -1,7 +1,7 @@ { "slug": "boot-loader", "name": "boot loader", - "published_at": "2026-01-25T16:06:29.828Z", + "published_at": "2026-02-19T13:36:01.086Z", "organizationCount": 1, "projectCount": 11, "years": [ @@ -52,6 +52,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.828Z" + "generated_at": "2026-02-19T13:36:01.086Z" } } \ No newline at end of file diff --git a/new-api-details/topics/bootloader.json b/new-api-details/topics/bootloader.json index d0a0e02d..830a0e4e 100644 --- a/new-api-details/topics/bootloader.json +++ b/new-api-details/topics/bootloader.json @@ -1,7 +1,7 @@ { "slug": "bootloader", "name": "bootloader", - "published_at": "2026-01-25T16:06:29.737Z", + "published_at": "2026-02-19T13:36:03.068Z", "organizationCount": 1, "projectCount": 8, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.737Z" + "generated_at": "2026-02-19T13:36:03.068Z" } } \ No newline at end of file diff --git a/new-api-details/topics/bot.json b/new-api-details/topics/bot.json index 792f932c..4b2bf554 100644 --- a/new-api-details/topics/bot.json +++ b/new-api-details/topics/bot.json @@ -1,10 +1,11 @@ { "slug": "bot", "name": "bot", - "published_at": "2026-01-25T16:06:29.560Z", + "published_at": "2026-02-19T13:36:02.748Z", "organizationCount": 2, "projectCount": 105, "years": [ + 2026, 2025, 2024, 2023, @@ -16,22 +17,11 @@ 2017 ], "organizations": [ - { - "slug": "probot", - "name": "Probot", - "first_year": 2018, - "last_year": 2018, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2018 - ] - }, { "slug": "rocketchat", "name": "rocket.chat", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 103, "is_currently_active": true, "active_years": [ @@ -43,7 +33,19 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "probot", + "name": "Probot", + "first_year": 2018, + "last_year": 2018, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2018 ] } ], @@ -83,10 +85,14 @@ "2025": { "organizationCount": 1, "projectCount": 19 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.560Z" + "generated_at": "2026-02-19T13:36:02.748Z" } } \ No newline at end of file diff --git a/new-api-details/topics/bots.json b/new-api-details/topics/bots.json index d8946761..91835293 100644 --- a/new-api-details/topics/bots.json +++ b/new-api-details/topics/bots.json @@ -1,10 +1,11 @@ { "slug": "bots", "name": "bots", - "published_at": "2026-01-25T16:06:29.815Z", + "published_at": "2026-02-19T13:36:03.179Z", "organizationCount": 1, "projectCount": 135, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "zulip", "name": "Zulip", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 135, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 14 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.815Z" + "generated_at": "2026-02-19T13:36:03.179Z" } } \ No newline at end of file diff --git a/new-api-details/topics/braille.json b/new-api-details/topics/braille.json index 51a1c3dd..895c30d9 100644 --- a/new-api-details/topics/braille.json +++ b/new-api-details/topics/braille.json @@ -1,7 +1,7 @@ { "slug": "braille", "name": "braille", - "published_at": "2026-01-25T16:06:29.392Z", + "published_at": "2026-02-19T13:36:02.456Z", "organizationCount": 2, "projectCount": 12, "years": [ @@ -11,6 +11,18 @@ 2019 ], "organizations": [ + { + "slug": "zendalona", + "name": "Zendalona", + "first_year": 2024, + "last_year": 2025, + "total_projects": 10, + "is_currently_active": false, + "active_years": [ + 2024, + 2025 + ] + }, { "slug": "nv-access", "name": "NV Access", @@ -22,18 +34,6 @@ 2019, 2020 ] - }, - { - "slug": "zendalona", - "name": "Zendalona", - "first_year": 2024, - "last_year": 2025, - "total_projects": 10, - "is_currently_active": true, - "active_years": [ - 2024, - 2025 - ] } ], "yearlyStats": { @@ -56,6 +56,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.392Z" + "generated_at": "2026-02-19T13:36:02.456Z" } } \ No newline at end of file diff --git a/new-api-details/topics/brain-imaging.json b/new-api-details/topics/brain-imaging.json index 021fd00a..223b7aff 100644 --- a/new-api-details/topics/brain-imaging.json +++ b/new-api-details/topics/brain-imaging.json @@ -1,10 +1,11 @@ { "slug": "brain-imaging", "name": "brain imaging", - "published_at": "2026-01-25T16:06:29.135Z", + "published_at": "2026-02-19T13:36:01.790Z", "organizationCount": 1, "projectCount": 211, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "incf", "name": "INCF", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 211, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 27 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.135Z" + "generated_at": "2026-02-19T13:36:01.790Z" } } \ No newline at end of file diff --git a/new-api-details/topics/brain-modeling.json b/new-api-details/topics/brain-modeling.json index f2ada1a6..4be38d6c 100644 --- a/new-api-details/topics/brain-modeling.json +++ b/new-api-details/topics/brain-modeling.json @@ -1,10 +1,11 @@ { "slug": "brain-modeling", "name": "brain modeling", - "published_at": "2026-01-25T16:06:29.133Z", + "published_at": "2026-02-19T13:36:01.788Z", "organizationCount": 1, "projectCount": 211, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "incf", "name": "INCF", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 211, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 27 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.133Z" + "generated_at": "2026-02-19T13:36:01.788Z" } } \ No newline at end of file diff --git a/new-api-details/topics/brain-modelling.json b/new-api-details/topics/brain-modelling.json index dc90946a..f12af9e7 100644 --- a/new-api-details/topics/brain-modelling.json +++ b/new-api-details/topics/brain-modelling.json @@ -1,10 +1,11 @@ { "slug": "brain-modelling", "name": "brain modelling", - "published_at": "2026-01-25T16:06:29.135Z", + "published_at": "2026-02-19T13:36:01.791Z", "organizationCount": 1, "projectCount": 211, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "incf", "name": "INCF", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 211, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 27 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.135Z" + "generated_at": "2026-02-19T13:36:01.792Z" } } \ No newline at end of file diff --git a/new-api-details/topics/brain-simulation.json b/new-api-details/topics/brain-simulation.json index cd8e6924..0f7aff0e 100644 --- a/new-api-details/topics/brain-simulation.json +++ b/new-api-details/topics/brain-simulation.json @@ -1,10 +1,11 @@ { "slug": "brain-simulation", "name": "brain simulation", - "published_at": "2026-01-25T16:06:29.134Z", + "published_at": "2026-02-19T13:36:01.789Z", "organizationCount": 1, "projectCount": 211, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "incf", "name": "INCF", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 211, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 27 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.134Z" + "generated_at": "2026-02-19T13:36:01.789Z" } } \ No newline at end of file diff --git a/new-api-details/topics/browser.json b/new-api-details/topics/browser.json index 19c01063..e43326fe 100644 --- a/new-api-details/topics/browser.json +++ b/new-api-details/topics/browser.json @@ -1,10 +1,11 @@ { "slug": "browser", "name": "browser", - "published_at": "2026-01-25T16:06:28.755Z", + "published_at": "2026-02-19T13:36:01.016Z", "organizationCount": 3, "projectCount": 164, "years": [ + 2026, 2025, 2024, 2023, @@ -17,13 +18,28 @@ 2016 ], "organizations": [ + { + "slug": "mozilla", + "name": "Mozilla", + "first_year": 2016, + "last_year": 2020, + "total_projects": 75, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020 + ] + }, { "slug": "chromium", "name": "Chromium", "first_year": 2021, "last_year": 2025, "total_projects": 71, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2021, 2022, @@ -36,7 +52,7 @@ "slug": "kiwix", "name": "Kiwix", "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "total_projects": 18, "is_currently_active": true, "active_years": [ @@ -46,22 +62,8 @@ 2021, 2023, 2024, - 2025 - ] - }, - { - "slug": "mozilla", - "name": "Mozilla", - "first_year": 2016, - "last_year": 2020, - "total_projects": 75, - "is_currently_active": false, - "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020 + 2025, + 2026 ] } ], @@ -105,10 +107,14 @@ "2025": { "organizationCount": 2, "projectCount": 19 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.755Z" + "generated_at": "2026-02-19T13:36:01.016Z" } } \ No newline at end of file diff --git a/new-api-details/topics/bsd.json b/new-api-details/topics/bsd.json index af8a6d9e..e0f2d8d9 100644 --- a/new-api-details/topics/bsd.json +++ b/new-api-details/topics/bsd.json @@ -1,10 +1,11 @@ { "slug": "bsd", "name": "bsd", - "published_at": "2026-01-25T16:06:29.716Z", + "published_at": "2026-02-19T13:36:02.954Z", "organizationCount": 1, "projectCount": 38, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "the-netbsd-foundation", "name": "The NetBSD Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 38, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.716Z" + "generated_at": "2026-02-19T13:36:02.954Z" } } \ No newline at end of file diff --git a/new-api-details/topics/bug-finding.json b/new-api-details/topics/bug-finding.json index 6de756fe..3a80081e 100644 --- a/new-api-details/topics/bug-finding.json +++ b/new-api-details/topics/bug-finding.json @@ -1,10 +1,11 @@ { "slug": "bug-finding", "name": "bug finding", - "published_at": "2026-01-25T16:06:28.370Z", + "published_at": "2026-02-19T13:36:00.400Z", "organizationCount": 3, "projectCount": 35, "years": [ + 2026, 2025, 2024, 2023, @@ -16,11 +17,26 @@ 2017 ], "organizations": [ + { + "slug": "checker-framework", + "name": "Checker Framework", + "first_year": 2017, + "last_year": 2025, + "total_projects": 17, + "is_currently_active": false, + "active_years": [ + 2017, + 2018, + 2019, + 2020, + 2025 + ] + }, { "slug": "aflplusplus", "name": "AFLplusplus", "first_year": 2020, - "last_year": 2025, + "last_year": 2026, "total_projects": 10, "is_currently_active": true, "active_years": [ @@ -29,7 +45,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -44,21 +61,6 @@ 2020, 2021 ] - }, - { - "slug": "checker-framework", - "name": "Checker Framework", - "first_year": 2017, - "last_year": 2025, - "total_projects": 17, - "is_currently_active": true, - "active_years": [ - 2017, - 2018, - 2019, - 2020, - 2025 - ] } ], "yearlyStats": { @@ -97,10 +99,14 @@ "2025": { "organizationCount": 2, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.370Z" + "generated_at": "2026-02-19T13:36:00.400Z" } } \ No newline at end of file diff --git a/new-api-details/topics/build-systems.json b/new-api-details/topics/build-systems.json index 4a76b5e9..e6a83a18 100644 --- a/new-api-details/topics/build-systems.json +++ b/new-api-details/topics/build-systems.json @@ -1,10 +1,11 @@ { "slug": "build-systems", "name": "build systems", - "published_at": "2026-01-25T16:06:28.560Z", + "published_at": "2026-02-19T13:36:00.649Z", "organizationCount": 3, "projectCount": 23, "years": [ + 2026, 2025, 2024, 2023, @@ -14,6 +15,22 @@ 2017 ], "organizations": [ + { + "slug": "fortran-lang", + "name": "Fortran-lang", + "first_year": 2021, + "last_year": 2026, + "total_projects": 21, + "is_currently_active": true, + "active_years": [ + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ] + }, { "slug": "bazel", "name": "Bazel", @@ -36,21 +53,6 @@ "active_years": [ 2017 ] - }, - { - "slug": "fortran-lang", - "name": "Fortran-lang", - "first_year": 2021, - "last_year": 2025, - "total_projects": 21, - "is_currently_active": true, - "active_years": [ - 2021, - 2022, - 2023, - 2024, - 2025 - ] } ], "yearlyStats": { @@ -81,10 +83,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.560Z" + "generated_at": "2026-02-19T13:36:00.649Z" } } \ No newline at end of file diff --git a/new-api-details/topics/build-tools.json b/new-api-details/topics/build-tools.json index 0f0c33fd..d601f272 100644 --- a/new-api-details/topics/build-tools.json +++ b/new-api-details/topics/build-tools.json @@ -1,10 +1,11 @@ { "slug": "build-tools", "name": "build tools", - "published_at": "2026-01-25T16:06:28.561Z", + "published_at": "2026-02-19T13:36:00.650Z", "organizationCount": 6, "projectCount": 144, "years": [ + 2026, 2025, 2024, 2023, @@ -17,34 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "bazel", - "name": "Bazel", - "first_year": 2017, - "last_year": 2019, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2017, - 2019 - ] - }, - { - "slug": "buildroot", - "name": "Buildroot", - "first_year": 2019, - "last_year": 2019, - "total_projects": 1, - "is_currently_active": false, - "active_years": [ - 2019 - ] - }, { "slug": "haskellorg", "name": "Haskell.org", "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "total_projects": 70, "is_currently_active": true, "active_years": [ @@ -54,28 +32,15 @@ 2021, 2022, 2024, - 2025 - ] - }, - { - "slug": "macports", - "name": "MacPorts", - "first_year": 2017, - "last_year": 2020, - "total_projects": 7, - "is_currently_active": false, - "active_years": [ - 2017, - 2018, - 2019, - 2020 + 2025, + 2026 ] }, { "slug": "opensuse-project", "name": "openSUSE Project", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 52, "is_currently_active": true, "active_years": [ @@ -87,7 +52,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -105,6 +71,43 @@ 2021, 2022 ] + }, + { + "slug": "macports", + "name": "MacPorts", + "first_year": 2017, + "last_year": 2020, + "total_projects": 7, + "is_currently_active": false, + "active_years": [ + 2017, + 2018, + 2019, + 2020 + ] + }, + { + "slug": "bazel", + "name": "Bazel", + "first_year": 2017, + "last_year": 2019, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2017, + 2019 + ] + }, + { + "slug": "buildroot", + "name": "Buildroot", + "first_year": 2019, + "last_year": 2019, + "total_projects": 1, + "is_currently_active": false, + "active_years": [ + 2019 + ] } ], "yearlyStats": { @@ -147,10 +150,14 @@ "2025": { "organizationCount": 2, "projectCount": 11 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.561Z" + "generated_at": "2026-02-19T13:36:00.650Z" } } \ No newline at end of file diff --git a/new-api-details/topics/buildfarms.json b/new-api-details/topics/buildfarms.json new file mode 100644 index 00000000..c8035fa3 --- /dev/null +++ b/new-api-details/topics/buildfarms.json @@ -0,0 +1,87 @@ +{ + "slug": "buildfarms", + "name": "buildfarms", + "published_at": "2026-02-19T13:36:02.510Z", + "organizationCount": 1, + "projectCount": 46, + "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2019, + 2018, + 2016 + ], + "organizations": [ + { + "slug": "open-robotics", + "name": "Open Robotics", + "first_year": 2016, + "last_year": 2026, + "total_projects": 46, + "is_currently_active": true, + "active_years": [ + 2016, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ] + } + ], + "yearlyStats": { + "2016": { + "organizationCount": 1, + "projectCount": 7 + }, + "2018": { + "organizationCount": 1, + "projectCount": 4 + }, + "2019": { + "organizationCount": 1, + "projectCount": 7 + }, + "2020": { + "organizationCount": 1, + "projectCount": 7 + }, + "2021": { + "organizationCount": 1, + "projectCount": 2 + }, + "2022": { + "organizationCount": 1, + "projectCount": 2 + }, + "2023": { + "organizationCount": 1, + "projectCount": 3 + }, + "2024": { + "organizationCount": 1, + "projectCount": 5 + }, + "2025": { + "organizationCount": 1, + "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 + } + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:36:02.510Z" + } +} \ No newline at end of file diff --git a/new-api-details/topics/bus.json b/new-api-details/topics/bus.json index deace1be..7c650bd2 100644 --- a/new-api-details/topics/bus.json +++ b/new-api-details/topics/bus.json @@ -1,10 +1,11 @@ { "slug": "bus", "name": "bus", - "published_at": "2026-01-25T16:06:29.462Z", + "published_at": "2026-02-19T13:36:02.540Z", "organizationCount": 1, "projectCount": 10, "years": [ + 2026, 2025, 2024 ], @@ -13,12 +14,13 @@ "slug": "open-transit-software-foundation", "name": "Open Transit Software Foundation", "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "total_projects": 10, "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -30,10 +32,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.462Z" + "generated_at": "2026-02-19T13:36:02.540Z" } } \ No newline at end of file diff --git a/new-api-details/topics/c-c.json b/new-api-details/topics/c-c.json index ffba1628..d19af938 100644 --- a/new-api-details/topics/c-c.json +++ b/new-api-details/topics/c-c.json @@ -1,10 +1,11 @@ { "slug": "c-c", "name": "c- c+", - "published_at": "2026-01-25T16:06:29.455Z", + "published_at": "2026-02-19T13:36:02.523Z", "organizationCount": 1, "projectCount": 70, "years": [ + 2026, 2025, 2024, 2023, @@ -19,7 +20,7 @@ "slug": "open-technologies-alliance-gfoss", "name": "Open Technologies Alliance - GFOSS", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 70, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.455Z" + "generated_at": "2026-02-19T13:36:02.523Z" } } \ No newline at end of file diff --git a/new-api-details/topics/c-development.json b/new-api-details/topics/c-development.json index e24a6b0d..093881fd 100644 --- a/new-api-details/topics/c-development.json +++ b/new-api-details/topics/c-development.json @@ -1,7 +1,7 @@ { "slug": "c-development", "name": "c++ development", - "published_at": "2026-01-25T16:06:28.614Z", + "published_at": "2026-02-19T13:36:00.824Z", "organizationCount": 1, "projectCount": 41, "years": [ @@ -52,6 +52,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.614Z" + "generated_at": "2026-02-19T13:36:00.824Z" } } \ No newline at end of file diff --git a/new-api-details/topics/c-libraries-c-standard.json b/new-api-details/topics/c-libraries-c-standard.json index ffac638f..7bea9f1b 100644 --- a/new-api-details/topics/c-libraries-c-standard.json +++ b/new-api-details/topics/c-libraries-c-standard.json @@ -1,7 +1,7 @@ { "slug": "c-libraries-c-standard", "name": "c++ libraries c++ standard", - "published_at": "2026-01-25T16:06:28.617Z", + "published_at": "2026-02-19T13:36:00.835Z", "organizationCount": 1, "projectCount": 41, "years": [ @@ -52,6 +52,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.617Z" + "generated_at": "2026-02-19T13:36:00.835Z" } } \ No newline at end of file diff --git a/new-api-details/topics/c-standard.json b/new-api-details/topics/c-standard.json index 271e1ca1..37698ca9 100644 --- a/new-api-details/topics/c-standard.json +++ b/new-api-details/topics/c-standard.json @@ -1,7 +1,7 @@ { "slug": "c-standard", "name": "c++ standard", - "published_at": "2026-01-25T16:06:28.620Z", + "published_at": "2026-02-19T13:36:00.849Z", "organizationCount": 1, "projectCount": 41, "years": [ @@ -52,6 +52,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.620Z" + "generated_at": "2026-02-19T13:36:00.849Z" } } \ No newline at end of file diff --git a/new-api-details/topics/c-standardizaion.json b/new-api-details/topics/c-standardizaion.json index 685ae036..148799a1 100644 --- a/new-api-details/topics/c-standardizaion.json +++ b/new-api-details/topics/c-standardizaion.json @@ -1,10 +1,11 @@ { "slug": "c-standardizaion", "name": "c++ standardizaion", - "published_at": "2026-01-25T16:06:29.639Z", + "published_at": "2026-02-19T13:36:02.852Z", "organizationCount": 1, "projectCount": 38, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "stear-group", "name": "Ste||ar group", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 38, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.639Z" + "generated_at": "2026-02-19T13:36:02.852Z" } } \ No newline at end of file diff --git a/new-api-details/topics/c-standardization.json b/new-api-details/topics/c-standardization.json index a77766d2..498f63d2 100644 --- a/new-api-details/topics/c-standardization.json +++ b/new-api-details/topics/c-standardization.json @@ -1,7 +1,7 @@ { "slug": "c-standardization", "name": "c++ standardization", - "published_at": "2026-01-25T16:06:28.616Z", + "published_at": "2026-02-19T13:36:00.833Z", "organizationCount": 1, "projectCount": 41, "years": [ @@ -52,6 +52,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.616Z" + "generated_at": "2026-02-19T13:36:00.833Z" } } \ No newline at end of file diff --git a/new-api-details/topics/c-tools.json b/new-api-details/topics/c-tools.json index 2c9f7b70..cd98c9dc 100644 --- a/new-api-details/topics/c-tools.json +++ b/new-api-details/topics/c-tools.json @@ -1,10 +1,11 @@ { "slug": "c-tools", "name": "c++ tools", - "published_at": "2026-01-25T16:06:28.615Z", + "published_at": "2026-02-19T13:36:00.828Z", "organizationCount": 2, "projectCount": 111, "years": [ + 2026, 2025, 2024, 2023, @@ -16,26 +17,11 @@ 2017 ], "organizations": [ - { - "slug": "boost-c-libraries", - "name": "Boost C++ Libraries", - "first_year": 2017, - "last_year": 2021, - "total_projects": 41, - "is_currently_active": false, - "active_years": [ - 2017, - 2018, - 2019, - 2020, - 2021 - ] - }, { "slug": "open-technologies-alliance-gfoss", "name": "Open Technologies Alliance - GFOSS", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 70, "is_currently_active": true, "active_years": [ @@ -46,7 +32,23 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "boost-c-libraries", + "name": "Boost C++ Libraries", + "first_year": 2017, + "last_year": 2021, + "total_projects": 41, + "is_currently_active": false, + "active_years": [ + 2017, + 2018, + 2019, + 2020, + 2021 ] } ], @@ -86,10 +88,14 @@ "2025": { "organizationCount": 1, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.615Z" + "generated_at": "2026-02-19T13:36:00.828Z" } } \ No newline at end of file diff --git a/new-api-details/topics/c.json b/new-api-details/topics/c.json index 0ebfb4bb..31fb817f 100644 --- a/new-api-details/topics/c.json +++ b/new-api-details/topics/c.json @@ -1,10 +1,11 @@ { "slug": "c", "name": "c++", - "published_at": "2026-01-25T16:06:28.617Z", + "published_at": "2026-02-19T13:36:00.838Z", "organizationCount": 5, "projectCount": 129, "years": [ + 2026, 2025, 2024, 2023, @@ -17,37 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "boost-c-libraries", - "name": "Boost C++ Libraries", - "first_year": 2017, - "last_year": 2021, - "total_projects": 41, - "is_currently_active": false, - "active_years": [ - 2017, - 2018, - 2019, - 2020, - 2021 - ] - }, - { - "slug": "carbon-language", - "name": "Carbon Language", - "first_year": 2023, - "last_year": 2023, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2023 - ] - }, { "slug": "open-technologies-alliance-gfoss", "name": "Open Technologies Alliance - GFOSS", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 70, "is_currently_active": true, "active_years": [ @@ -58,18 +33,23 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "opencensus", - "name": "OpenCensus", - "first_year": 2018, - "last_year": 2018, - "total_projects": 1, + "slug": "boost-c-libraries", + "name": "Boost C++ Libraries", + "first_year": 2017, + "last_year": 2021, + "total_projects": 41, "is_currently_active": false, "active_years": [ - 2018 + 2017, + 2018, + 2019, + 2020, + 2021 ] }, { @@ -88,6 +68,28 @@ 2021, 2022 ] + }, + { + "slug": "carbon-language", + "name": "Carbon Language", + "first_year": 2023, + "last_year": 2023, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2023 + ] + }, + { + "slug": "opencensus", + "name": "OpenCensus", + "first_year": 2018, + "last_year": 2018, + "total_projects": 1, + "is_currently_active": false, + "active_years": [ + 2018 + ] } ], "yearlyStats": { @@ -130,10 +132,14 @@ "2025": { "organizationCount": 1, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.617Z" + "generated_at": "2026-02-19T13:36:00.838Z" } } \ No newline at end of file diff --git a/new-api-details/topics/cad-cam-cae.json b/new-api-details/topics/cad-cam-cae.json index 5173f136..4e356724 100644 --- a/new-api-details/topics/cad-cam-cae.json +++ b/new-api-details/topics/cad-cam-cae.json @@ -1,10 +1,11 @@ { "slug": "cad-cam-cae", "name": "cad/cam/cae", - "published_at": "2026-01-25T16:06:28.550Z", + "published_at": "2026-02-19T13:36:00.880Z", "organizationCount": 1, "projectCount": 73, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "brl-cad", "name": "BRL-CAD", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 73, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.550Z" + "generated_at": "2026-02-19T13:36:00.880Z" } } \ No newline at end of file diff --git a/new-api-details/topics/cad.json b/new-api-details/topics/cad.json index d33454b6..14b41e71 100644 --- a/new-api-details/topics/cad.json +++ b/new-api-details/topics/cad.json @@ -1,10 +1,11 @@ { "slug": "cad", "name": "cad", - "published_at": "2026-01-25T16:06:28.546Z", + "published_at": "2026-02-19T13:36:00.866Z", "organizationCount": 2, "projectCount": 81, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "brl-cad", "name": "BRL-CAD", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 73, "is_currently_active": true, "active_years": [ @@ -34,20 +35,22 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "freecad", "name": "FreeCAD", "first_year": 2023, - "last_year": 2025, + "last_year": 2026, "total_projects": 8, "is_currently_active": true, "active_years": [ 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -91,10 +94,14 @@ "2025": { "organizationCount": 2, "projectCount": 9 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.546Z" + "generated_at": "2026-02-19T13:36:00.866Z" } } \ No newline at end of file diff --git a/new-api-details/topics/callibration.json b/new-api-details/topics/callibration.json index 5f37449f..ba69fe25 100644 --- a/new-api-details/topics/callibration.json +++ b/new-api-details/topics/callibration.json @@ -1,7 +1,7 @@ { "slug": "callibration", "name": "callibration", - "published_at": "2026-01-25T16:06:28.709Z", + "published_at": "2026-02-19T13:36:00.962Z", "organizationCount": 1, "projectCount": 20, "years": [ @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.709Z" + "generated_at": "2026-02-19T13:36:00.962Z" } } \ No newline at end of file diff --git a/new-api-details/topics/cam.json b/new-api-details/topics/cam.json index 8d9aa7bf..26f72c5b 100644 --- a/new-api-details/topics/cam.json +++ b/new-api-details/topics/cam.json @@ -1,10 +1,11 @@ { "slug": "cam", "name": "CAM", - "published_at": "2026-01-25T16:06:29.003Z", + "published_at": "2026-02-19T13:36:01.542Z", "organizationCount": 1, "projectCount": 8, "years": [ + 2026, 2025, 2024, 2023 @@ -14,13 +15,14 @@ "slug": "freecad", "name": "FreeCAD", "first_year": 2023, - "last_year": 2025, + "last_year": 2026, "total_projects": 8, "is_currently_active": true, "active_years": [ 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -36,10 +38,14 @@ "2025": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.003Z" + "generated_at": "2026-02-19T13:36:01.542Z" } } \ No newline at end of file diff --git a/new-api-details/topics/camera.json b/new-api-details/topics/camera.json index 3c0586c4..8102ad6b 100644 --- a/new-api-details/topics/camera.json +++ b/new-api-details/topics/camera.json @@ -1,7 +1,7 @@ { "slug": "camera", "name": "camera", - "published_at": "2026-01-25T16:06:28.512Z", + "published_at": "2026-02-19T13:36:00.506Z", "organizationCount": 3, "projectCount": 37, "years": [ @@ -92,6 +92,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.512Z" + "generated_at": "2026-02-19T13:36:00.506Z" } } \ No newline at end of file diff --git a/new-api-details/topics/cancer-informatics.json b/new-api-details/topics/cancer-informatics.json index ee07f911..38de08fb 100644 --- a/new-api-details/topics/cancer-informatics.json +++ b/new-api-details/topics/cancer-informatics.json @@ -1,7 +1,7 @@ { "slug": "cancer-informatics", "name": "cancer informatics", - "published_at": "2026-01-25T16:06:29.651Z", + "published_at": "2026-02-19T13:36:02.861Z", "organizationCount": 1, "projectCount": 9, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.651Z" + "generated_at": "2026-02-19T13:36:02.861Z" } } \ No newline at end of file diff --git a/new-api-details/topics/cancer-research.json b/new-api-details/topics/cancer-research.json index 72438800..e034ed19 100644 --- a/new-api-details/topics/cancer-research.json +++ b/new-api-details/topics/cancer-research.json @@ -1,10 +1,11 @@ { "slug": "cancer-research", "name": "cancer research", - "published_at": "2026-01-25T16:06:29.750Z", + "published_at": "2026-02-19T13:36:00.931Z", "organizationCount": 2, "projectCount": 41, "years": [ + 2026, 2025, 2024, 2023, @@ -19,7 +20,7 @@ "slug": "cbioportal-for-cancer-genomics", "name": "cBioPortal for Cancer Genomics", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 38, "is_currently_active": true, "active_years": [ @@ -29,7 +30,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.750Z" + "generated_at": "2026-02-19T13:36:00.931Z" } } \ No newline at end of file diff --git a/new-api-details/topics/cancer.json b/new-api-details/topics/cancer.json index 95a3dc83..afb03bca 100644 --- a/new-api-details/topics/cancer.json +++ b/new-api-details/topics/cancer.json @@ -1,10 +1,11 @@ { "slug": "cancer", "name": "cancer", - "published_at": "2026-01-25T16:06:29.748Z", + "published_at": "2026-02-19T13:36:00.927Z", "organizationCount": 2, "projectCount": 41, "years": [ + 2026, 2025, 2024, 2023, @@ -19,7 +20,7 @@ "slug": "cbioportal-for-cancer-genomics", "name": "cBioPortal for Cancer Genomics", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 38, "is_currently_active": true, "active_years": [ @@ -29,7 +30,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.748Z" + "generated_at": "2026-02-19T13:36:00.927Z" } } \ No newline at end of file diff --git a/new-api-details/topics/cars.json b/new-api-details/topics/cars.json index e54910e9..af3ac805 100644 --- a/new-api-details/topics/cars.json +++ b/new-api-details/topics/cars.json @@ -1,7 +1,7 @@ { "slug": "cars", "name": "cars", - "published_at": "2026-01-25T16:06:29.014Z", + "published_at": "2026-02-19T13:36:01.585Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.014Z" + "generated_at": "2026-02-19T13:36:01.585Z" } } \ No newline at end of file diff --git a/new-api-details/topics/cartography.json b/new-api-details/topics/cartography.json index 6ca0f609..9823c196 100644 --- a/new-api-details/topics/cartography.json +++ b/new-api-details/topics/cartography.json @@ -1,10 +1,11 @@ { "slug": "cartography", "name": "cartography", - "published_at": "2026-01-25T16:06:29.417Z", + "published_at": "2026-02-19T13:36:02.662Z", "organizationCount": 1, "projectCount": 101, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "osgeo-open-source-geospatial-foundation", "name": "OSGeo (Open Source Geospatial Foundation)", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 101, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.417Z" + "generated_at": "2026-02-19T13:36:02.662Z" } } \ No newline at end of file diff --git a/new-api-details/topics/cats.json b/new-api-details/topics/cats.json index 003a7712..d8ecba63 100644 --- a/new-api-details/topics/cats.json +++ b/new-api-details/topics/cats.json @@ -1,10 +1,11 @@ { "slug": "cats", "name": "cats", - "published_at": "2026-01-25T16:06:29.747Z", + "published_at": "2026-02-19T13:36:03.088Z", "organizationCount": 1, "projectCount": 2, "years": [ + 2026, 2025 ], "organizations": [ @@ -12,11 +13,12 @@ "slug": "typelevel", "name": "Typelevel", "first_year": 2025, - "last_year": 2025, + "last_year": 2026, "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] } ], @@ -24,10 +26,14 @@ "2025": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.747Z" + "generated_at": "2026-02-19T13:36:03.088Z" } } \ No newline at end of file diff --git a/new-api-details/topics/causal-inference.json b/new-api-details/topics/causal-inference.json new file mode 100644 index 00000000..2c32426d --- /dev/null +++ b/new-api-details/topics/causal-inference.json @@ -0,0 +1,33 @@ +{ + "slug": "causal-inference", + "name": "Causal Inference", + "published_at": "2026-02-19T13:36:01.617Z", + "organizationCount": 1, + "projectCount": 0, + "years": [ + 2026 + ], + "organizations": [ + { + "slug": "german-center-for-open-source-ai", + "name": "German Center for Open Source AI", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + } + ], + "yearlyStats": { + "2026": { + "organizationCount": 1, + "projectCount": 0 + } + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:36:01.617Z" + } +} \ No newline at end of file diff --git a/new-api-details/topics/censorship.json b/new-api-details/topics/censorship.json index f2bce968..ab4f09fc 100644 --- a/new-api-details/topics/censorship.json +++ b/new-api-details/topics/censorship.json @@ -1,7 +1,7 @@ { "slug": "censorship", "name": "censorship", - "published_at": "2026-01-25T16:06:28.587Z", + "published_at": "2026-02-19T13:36:00.695Z", "organizationCount": 1, "projectCount": 20, "years": [ @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.587Z" + "generated_at": "2026-02-19T13:36:00.695Z" } } \ No newline at end of file diff --git a/new-api-details/topics/ceph.json b/new-api-details/topics/ceph.json index 5b1f83e6..959db8cd 100644 --- a/new-api-details/topics/ceph.json +++ b/new-api-details/topics/ceph.json @@ -1,7 +1,7 @@ { "slug": "ceph", "name": "ceph", - "published_at": "2026-01-25T16:06:28.706Z", + "published_at": "2026-02-19T13:36:00.958Z", "organizationCount": 1, "projectCount": 20, "years": [ @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.706Z" + "generated_at": "2026-02-19T13:36:00.958Z" } } \ No newline at end of file diff --git a/new-api-details/topics/cfc.json b/new-api-details/topics/cfc.json index a4e6f382..d1c4ff01 100644 --- a/new-api-details/topics/cfc.json +++ b/new-api-details/topics/cfc.json @@ -1,10 +1,11 @@ { "slug": "cfc", "name": "cfc", - "published_at": "2026-01-25T16:06:29.205Z", + "published_at": "2026-02-19T13:36:02.030Z", "organizationCount": 1, "projectCount": 52, "years": [ + 2026, 2022, 2021, 2020, @@ -18,9 +19,9 @@ "slug": "jboss-community", "name": "JBoss Community", "first_year": 2016, - "last_year": 2022, + "last_year": 2026, "total_projects": 52, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -28,7 +29,8 @@ 2019, 2020, 2021, - 2022 + 2022, + 2026 ] } ], @@ -60,10 +62,14 @@ "2022": { "organizationCount": 1, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.205Z" + "generated_at": "2026-02-19T13:36:02.033Z" } } \ No newline at end of file diff --git a/new-api-details/topics/charity.json b/new-api-details/topics/charity.json index 4eca0ca5..89c04ea9 100644 --- a/new-api-details/topics/charity.json +++ b/new-api-details/topics/charity.json @@ -1,7 +1,7 @@ { "slug": "charity", "name": "charity", - "published_at": "2026-01-25T16:06:28.851Z", + "published_at": "2026-02-19T13:36:01.193Z", "organizationCount": 1, "projectCount": 31, "years": [ @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.851Z" + "generated_at": "2026-02-19T13:36:01.193Z" } } \ No newline at end of file diff --git a/new-api-details/topics/chat-platform.json b/new-api-details/topics/chat-platform.json index 3085b991..3f3f3056 100644 --- a/new-api-details/topics/chat-platform.json +++ b/new-api-details/topics/chat-platform.json @@ -1,10 +1,11 @@ { "slug": "chat-platform", "name": "Chat platform", - "published_at": "2026-01-25T16:06:29.873Z", + "published_at": "2026-02-19T13:36:02.800Z", "organizationCount": 1, "projectCount": 103, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "rocketchat", "name": "rocket.chat", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 103, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 19 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.873Z" + "generated_at": "2026-02-19T13:36:02.800Z" } } \ No newline at end of file diff --git a/new-api-details/topics/chat.json b/new-api-details/topics/chat.json index 95cc6922..0dc8fd41 100644 --- a/new-api-details/topics/chat.json +++ b/new-api-details/topics/chat.json @@ -1,10 +1,11 @@ { "slug": "chat", "name": "chat", - "published_at": "2026-01-25T16:06:29.330Z", + "published_at": "2026-02-19T13:36:01.066Z", "organizationCount": 6, "projectCount": 316, "years": [ + 2026, 2025, 2024, 2023, @@ -18,64 +19,75 @@ ], "organizations": [ { - "slug": "coala", - "name": "coala", - "first_year": 2017, - "last_year": 2021, - "total_projects": 37, - "is_currently_active": false, + "slug": "zulip", + "name": "Zulip", + "first_year": 2016, + "last_year": 2026, + "total_projects": 135, + "is_currently_active": true, "active_years": [ + 2016, 2017, 2018, 2019, - 2021 + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "matrixorg", - "name": "Matrix.org", - "first_year": 2016, - "last_year": 2022, - "total_projects": 29, - "is_currently_active": false, + "slug": "rocketchat", + "name": "rocket.chat", + "first_year": 2017, + "last_year": 2026, + "total_projects": 103, + "is_currently_active": true, "active_years": [ - 2016, 2017, 2018, 2019, 2020, 2021, - 2022 + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "pidgin-instant-messenger", - "name": "Pidgin Instant Messenger", - "first_year": 2021, + "slug": "coala", + "name": "coala", + "first_year": 2017, "last_year": 2021, - "total_projects": 1, + "total_projects": 37, "is_currently_active": false, "active_years": [ + 2017, + 2018, + 2019, 2021 ] }, { - "slug": "rocketchat", - "name": "rocket.chat", - "first_year": 2017, - "last_year": 2025, - "total_projects": 103, - "is_currently_active": true, + "slug": "matrixorg", + "name": "Matrix.org", + "first_year": 2016, + "last_year": 2022, + "total_projects": 29, + "is_currently_active": false, "active_years": [ + 2016, 2017, 2018, 2019, 2020, 2021, - 2022, - 2023, - 2024, - 2025 + 2022 ] }, { @@ -95,23 +107,14 @@ ] }, { - "slug": "zulip", - "name": "Zulip", - "first_year": 2016, - "last_year": 2025, - "total_projects": 135, - "is_currently_active": true, + "slug": "pidgin-instant-messenger", + "name": "Pidgin Instant Messenger", + "first_year": 2021, + "last_year": 2021, + "total_projects": 1, + "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2021 ] } ], @@ -155,10 +158,14 @@ "2025": { "organizationCount": 2, "projectCount": 33 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.330Z" + "generated_at": "2026-02-19T13:36:01.066Z" } } \ No newline at end of file diff --git a/new-api-details/topics/chatbot.json b/new-api-details/topics/chatbot.json index 573dd65d..6bb58fc4 100644 --- a/new-api-details/topics/chatbot.json +++ b/new-api-details/topics/chatbot.json @@ -1,10 +1,11 @@ { "slug": "chatbot", "name": "chatbot", - "published_at": "2026-01-25T16:06:29.869Z", + "published_at": "2026-02-19T13:36:02.792Z", "organizationCount": 1, "projectCount": 103, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "rocketchat", "name": "rocket.chat", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 103, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 19 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.869Z" + "generated_at": "2026-02-19T13:36:02.793Z" } } \ No newline at end of file diff --git a/new-api-details/topics/chatops.json b/new-api-details/topics/chatops.json index 8319e07a..ba37c98d 100644 --- a/new-api-details/topics/chatops.json +++ b/new-api-details/topics/chatops.json @@ -1,10 +1,11 @@ { "slug": "chatops", "name": "chatops", - "published_at": "2026-01-25T16:06:29.825Z", + "published_at": "2026-02-19T13:36:01.061Z", "organizationCount": 2, "projectCount": 140, "years": [ + 2026, 2025, 2024, 2023, @@ -16,25 +17,11 @@ 2017 ], "organizations": [ - { - "slug": "coala", - "name": "coala", - "first_year": 2017, - "last_year": 2021, - "total_projects": 37, - "is_currently_active": false, - "active_years": [ - 2017, - 2018, - 2019, - 2021 - ] - }, { "slug": "rocketchat", "name": "rocket.chat", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 103, "is_currently_active": true, "active_years": [ @@ -46,7 +33,22 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "coala", + "name": "coala", + "first_year": 2017, + "last_year": 2021, + "total_projects": 37, + "is_currently_active": false, + "active_years": [ + 2017, + 2018, + 2019, + 2021 ] } ], @@ -86,10 +88,14 @@ "2025": { "organizationCount": 1, "projectCount": 19 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.825Z" + "generated_at": "2026-02-19T13:36:01.061Z" } } \ No newline at end of file diff --git a/new-api-details/topics/checkpoint-restore.json b/new-api-details/topics/checkpoint-restore.json index 7cabdbb4..3b44db05 100644 --- a/new-api-details/topics/checkpoint-restore.json +++ b/new-api-details/topics/checkpoint-restore.json @@ -1,10 +1,11 @@ { "slug": "checkpoint-restore", "name": "checkpoint-restore", - "published_at": "2026-01-25T16:06:28.685Z", + "published_at": "2026-02-19T13:36:01.094Z", "organizationCount": 1, "projectCount": 18, "years": [ + 2026, 2025, 2024, 2023, @@ -18,7 +19,7 @@ "slug": "criu", "name": "CRIU", "first_year": 2019, - "last_year": 2025, + "last_year": 2026, "total_projects": 18, "is_currently_active": true, "active_years": [ @@ -28,7 +29,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -60,10 +62,14 @@ "2025": { "organizationCount": 2, "projectCount": 6 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.685Z" + "generated_at": "2026-02-19T13:36:01.094Z" } } \ No newline at end of file diff --git a/new-api-details/topics/cheminformatics.json b/new-api-details/topics/cheminformatics.json index 73cf7506..37f54c1f 100644 --- a/new-api-details/topics/cheminformatics.json +++ b/new-api-details/topics/cheminformatics.json @@ -1,10 +1,11 @@ { "slug": "cheminformatics", "name": "cheminformatics", - "published_at": "2026-01-25T16:06:29.301Z", + "published_at": "2026-02-19T13:36:02.255Z", "organizationCount": 3, "projectCount": 69, "years": [ + 2026, 2025, 2024, 2023, @@ -17,11 +18,30 @@ 2016 ], "organizations": [ + { + "slug": "open-chemistry", + "name": "Open Chemistry", + "first_year": 2016, + "last_year": 2024, + "total_projects": 51, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024 + ] + }, { "slug": "mdanalysis", "name": "MDAnalysis", "first_year": 2020, - "last_year": 2025, + "last_year": 2026, "total_projects": 16, "is_currently_active": true, "active_years": [ @@ -30,7 +50,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -43,25 +64,6 @@ "active_years": [ 2023 ] - }, - { - "slug": "open-chemistry", - "name": "Open Chemistry", - "first_year": 2016, - "last_year": 2024, - "total_projects": 51, - "is_currently_active": false, - "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024 - ] } ], "yearlyStats": { @@ -104,10 +106,14 @@ "2025": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.301Z" + "generated_at": "2026-02-19T13:36:02.255Z" } } \ No newline at end of file diff --git a/new-api-details/topics/chemistry.json b/new-api-details/topics/chemistry.json index 935c5619..a89937fc 100644 --- a/new-api-details/topics/chemistry.json +++ b/new-api-details/topics/chemistry.json @@ -1,10 +1,11 @@ { "slug": "chemistry", "name": "chemistry", - "published_at": "2026-01-25T16:06:28.834Z", + "published_at": "2026-02-19T13:36:01.172Z", "organizationCount": 2, "projectCount": 65, "years": [ + 2026, 2025, 2024, 2023, @@ -17,18 +18,6 @@ 2016 ], "organizations": [ - { - "slug": "deepchem", - "name": "DeepChem", - "first_year": 2024, - "last_year": 2025, - "total_projects": 14, - "is_currently_active": true, - "active_years": [ - 2024, - 2025 - ] - }, { "slug": "open-chemistry", "name": "Open Chemistry", @@ -47,6 +36,19 @@ 2023, 2024 ] + }, + { + "slug": "deepchem", + "name": "DeepChem", + "first_year": 2024, + "last_year": 2026, + "total_projects": 14, + "is_currently_active": true, + "active_years": [ + 2024, + 2025, + 2026 + ] } ], "yearlyStats": { @@ -89,10 +91,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.834Z" + "generated_at": "2026-02-19T13:36:01.172Z" } } \ No newline at end of file diff --git a/new-api-details/topics/chiplets.json b/new-api-details/topics/chiplets.json index 9a35f583..0a442a2b 100644 --- a/new-api-details/topics/chiplets.json +++ b/new-api-details/topics/chiplets.json @@ -1,7 +1,7 @@ { "slug": "chiplets", "name": "chiplets", - "published_at": "2026-01-25T16:06:28.668Z", + "published_at": "2026-02-19T13:36:01.015Z", "organizationCount": 1, "projectCount": 12, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.668Z" + "generated_at": "2026-02-19T13:36:01.015Z" } } \ No newline at end of file diff --git a/new-api-details/topics/ci-cd.json b/new-api-details/topics/ci-cd.json index b43189b3..90bc29f2 100644 --- a/new-api-details/topics/ci-cd.json +++ b/new-api-details/topics/ci-cd.json @@ -1,10 +1,11 @@ { "slug": "ci-cd", "name": "CI/CD", - "published_at": "2026-01-25T16:06:28.829Z", - "organizationCount": 2, + "published_at": "2026-02-19T13:36:01.169Z", + "organizationCount": 3, "projectCount": 80, "years": [ + 2026, 2025, 2024, 2022, @@ -19,7 +20,7 @@ "slug": "debian", "name": "Debian", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 78, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] }, { @@ -43,6 +45,17 @@ "active_years": [ 2022 ] + }, + { + "slug": "konflux", + "name": "Konflux", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] } ], "yearlyStats": { @@ -77,10 +90,14 @@ "2025": { "organizationCount": 1, "projectCount": 9 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.829Z" + "generated_at": "2026-02-19T13:36:01.169Z" } } \ No newline at end of file diff --git a/new-api-details/topics/ci.json b/new-api-details/topics/ci.json index c7f86254..9d4ccdde 100644 --- a/new-api-details/topics/ci.json +++ b/new-api-details/topics/ci.json @@ -1,10 +1,11 @@ { "slug": "ci", "name": "ci", - "published_at": "2026-01-25T16:06:28.380Z", + "published_at": "2026-02-19T13:36:00.406Z", "organizationCount": 1, "projectCount": 10, "years": [ + 2026, 2025, 2024, 2023, @@ -17,7 +18,7 @@ "slug": "aflplusplus", "name": "AFLplusplus", "first_year": 2020, - "last_year": 2025, + "last_year": 2026, "total_projects": 10, "is_currently_active": true, "active_years": [ @@ -26,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -54,10 +56,14 @@ "2025": { "organizationCount": 1, "projectCount": 1 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.380Z" + "generated_at": "2026-02-19T13:36:00.406Z" } } \ No newline at end of file diff --git a/new-api-details/topics/cinematography.json b/new-api-details/topics/cinematography.json index 0941a72c..f3d06e66 100644 --- a/new-api-details/topics/cinematography.json +++ b/new-api-details/topics/cinematography.json @@ -1,7 +1,7 @@ { "slug": "cinematography", "name": "cinematography", - "published_at": "2026-01-25T16:06:28.515Z", + "published_at": "2026-02-19T13:36:00.513Z", "organizationCount": 1, "projectCount": 18, "years": [ @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.516Z" + "generated_at": "2026-02-19T13:36:00.513Z" } } \ No newline at end of file diff --git a/new-api-details/topics/circumvention.json b/new-api-details/topics/circumvention.json index c9d8cb13..82b4b34a 100644 --- a/new-api-details/topics/circumvention.json +++ b/new-api-details/topics/circumvention.json @@ -1,7 +1,7 @@ { "slug": "circumvention", "name": "Circumvention", - "published_at": "2026-01-25T16:06:29.255Z", + "published_at": "2026-02-19T13:36:02.156Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.255Z" + "generated_at": "2026-02-19T13:36:02.156Z" } } \ No newline at end of file diff --git a/new-api-details/topics/citizen-science.json b/new-api-details/topics/citizen-science.json index 32c518ee..68ac71ea 100644 --- a/new-api-details/topics/citizen-science.json +++ b/new-api-details/topics/citizen-science.json @@ -1,10 +1,11 @@ { "slug": "citizen-science", "name": "citizen science", - "published_at": "2026-01-25T16:06:28.365Z", + "published_at": "2026-02-19T13:36:00.287Z", "organizationCount": 3, "projectCount": 136, "years": [ + 2026, 2025, 2024, 2023, @@ -17,11 +18,32 @@ 2016 ], "organizations": [ + { + "slug": "osgeo-open-source-geospatial-foundation", + "name": "OSGeo (Open Source Geospatial Foundation)", + "first_year": 2016, + "last_year": 2026, + "total_projects": 101, + "is_currently_active": true, + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ] + }, { "slug": "52north-spatial-information-research-gmbh", "name": "52°North Spatial Information Research GmbH", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 25, "is_currently_active": true, "active_years": [ @@ -34,7 +56,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -49,26 +72,6 @@ 2021, 2022 ] - }, - { - "slug": "osgeo-open-source-geospatial-foundation", - "name": "OSGeo (Open Source Geospatial Foundation)", - "first_year": 2016, - "last_year": 2025, - "total_projects": 101, - "is_currently_active": true, - "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 - ] } ], "yearlyStats": { @@ -111,10 +114,14 @@ "2025": { "organizationCount": 2, "projectCount": 11 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.365Z" + "generated_at": "2026-02-19T13:36:00.287Z" } } \ No newline at end of file diff --git a/new-api-details/topics/civic-tech.json b/new-api-details/topics/civic-tech.json index dde806e5..4b501bf0 100644 --- a/new-api-details/topics/civic-tech.json +++ b/new-api-details/topics/civic-tech.json @@ -1,7 +1,7 @@ { "slug": "civic-tech", "name": "civic tech", - "published_at": "2026-01-25T16:06:28.767Z", + "published_at": "2026-02-19T13:36:01.022Z", "organizationCount": 6, "projectCount": 18, "years": [ @@ -14,17 +14,6 @@ 2017 ], "organizations": [ - { - "slug": "city-of-boston", - "name": "City of Boston", - "first_year": 2024, - "last_year": 2024, - "total_projects": 4, - "is_currently_active": false, - "active_years": [ - 2024 - ] - }, { "slug": "mayors-office-of-new-urban-mechanics", "name": "Mayor's Office of New Urban Mechanics", @@ -39,14 +28,14 @@ ] }, { - "slug": "media-cloud", - "name": "Media Cloud", - "first_year": 2021, - "last_year": 2021, - "total_projects": 0, + "slug": "city-of-boston", + "name": "City of Boston", + "first_year": 2024, + "last_year": 2024, + "total_projects": 4, "is_currently_active": false, "active_years": [ - 2021 + 2024 ] }, { @@ -83,6 +72,17 @@ "active_years": [ 2018 ] + }, + { + "slug": "media-cloud", + "name": "Media Cloud", + "first_year": 2021, + "last_year": 2021, + "total_projects": 0, + "is_currently_active": false, + "active_years": [ + 2021 + ] } ], "yearlyStats": { @@ -117,6 +117,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.767Z" + "generated_at": "2026-02-19T13:36:01.022Z" } } \ No newline at end of file diff --git a/new-api-details/topics/civic-technology.json b/new-api-details/topics/civic-technology.json index 77c4a846..4a19486a 100644 --- a/new-api-details/topics/civic-technology.json +++ b/new-api-details/topics/civic-technology.json @@ -1,7 +1,7 @@ { "slug": "civic-technology", "name": "civic technology", - "published_at": "2026-01-25T16:06:28.771Z", + "published_at": "2026-02-19T13:36:01.024Z", "organizationCount": 1, "projectCount": 22, "years": [ @@ -52,6 +52,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.771Z" + "generated_at": "2026-02-19T13:36:01.024Z" } } \ No newline at end of file diff --git a/new-api-details/topics/civic.json b/new-api-details/topics/civic.json index 5ad398f6..0aad272d 100644 --- a/new-api-details/topics/civic.json +++ b/new-api-details/topics/civic.json @@ -1,7 +1,7 @@ { "slug": "civic", "name": "civic", - "published_at": "2026-01-25T16:06:29.450Z", + "published_at": "2026-02-19T13:36:02.517Z", "organizationCount": 1, "projectCount": 1, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.450Z" + "generated_at": "2026-02-19T13:36:02.517Z" } } \ No newline at end of file diff --git a/new-api-details/topics/civil-society.json b/new-api-details/topics/civil-society.json index 2d7f93c8..741f15f4 100644 --- a/new-api-details/topics/civil-society.json +++ b/new-api-details/topics/civil-society.json @@ -1,7 +1,7 @@ { "slug": "civil-society", "name": "civil society", - "published_at": "2026-01-25T16:06:28.775Z", + "published_at": "2026-02-19T13:36:01.028Z", "organizationCount": 2, "projectCount": 24, "years": [ @@ -74,6 +74,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.775Z" + "generated_at": "2026-02-19T13:36:01.028Z" } } \ No newline at end of file diff --git a/new-api-details/topics/cli.json b/new-api-details/topics/cli.json index 87621f89..8f93cecc 100644 --- a/new-api-details/topics/cli.json +++ b/new-api-details/topics/cli.json @@ -1,10 +1,11 @@ { "slug": "cli", "name": "cli", - "published_at": "2026-01-25T16:06:29.535Z", + "published_at": "2026-02-19T13:36:02.699Z", "organizationCount": 2, "projectCount": 34, "years": [ + 2026, 2025, 2023, 2021, @@ -16,7 +17,7 @@ "slug": "pharo-consortium", "name": "Pharo Consortium", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 32, "is_currently_active": true, "active_years": [ @@ -24,7 +25,8 @@ 2019, 2021, 2023, - 2025 + 2025, + 2026 ] }, { @@ -59,10 +61,14 @@ "2025": { "organizationCount": 1, "projectCount": 8 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.535Z" + "generated_at": "2026-02-19T13:36:02.699Z" } } \ No newline at end of file diff --git a/new-api-details/topics/climate-monitoring.json b/new-api-details/topics/climate-monitoring.json index 36486f7a..7d3e9b18 100644 --- a/new-api-details/topics/climate-monitoring.json +++ b/new-api-details/topics/climate-monitoring.json @@ -1,7 +1,7 @@ { "slug": "climate-monitoring", "name": "climate monitoring", - "published_at": "2026-01-25T16:06:29.846Z", + "published_at": "2026-02-19T13:36:02.340Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.846Z" + "generated_at": "2026-02-19T13:36:02.340Z" } } \ No newline at end of file diff --git a/new-api-details/topics/climate-science.json b/new-api-details/topics/climate-science.json index 0d1abedc..4039aa6e 100644 --- a/new-api-details/topics/climate-science.json +++ b/new-api-details/topics/climate-science.json @@ -1,10 +1,11 @@ { "slug": "climate-science", "name": "climate science", - "published_at": "2026-01-25T16:06:29.523Z", + "published_at": "2026-02-19T13:36:02.685Z", "organizationCount": 1, "projectCount": 30, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "pecan-project", "name": "PEcAn Project", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 30, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.523Z" + "generated_at": "2026-02-19T13:36:02.685Z" } } \ No newline at end of file diff --git a/new-api-details/topics/climate.json b/new-api-details/topics/climate.json index 5b0ce837..34891a99 100644 --- a/new-api-details/topics/climate.json +++ b/new-api-details/topics/climate.json @@ -1,7 +1,7 @@ { "slug": "climate", "name": "Climate", - "published_at": "2026-01-25T16:06:29.431Z", + "published_at": "2026-02-19T13:36:02.486Z", "organizationCount": 1, "projectCount": 10, "years": [ @@ -15,7 +15,7 @@ "first_year": 2024, "last_year": 2025, "total_projects": 10, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2024, 2025 @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.431Z" + "generated_at": "2026-02-19T13:36:02.486Z" } } \ No newline at end of file diff --git a/new-api-details/topics/clinical.json b/new-api-details/topics/clinical.json index 33e2e995..c5b37a2f 100644 --- a/new-api-details/topics/clinical.json +++ b/new-api-details/topics/clinical.json @@ -1,10 +1,11 @@ { "slug": "clinical", "name": "clinical", - "published_at": "2026-01-25T16:06:29.478Z", + "published_at": "2026-02-19T13:36:02.575Z", "organizationCount": 1, "projectCount": 94, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "openmrs", "name": "OpenMRS", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 94, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 8 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.478Z" + "generated_at": "2026-02-19T13:36:02.575Z" } } \ No newline at end of file diff --git a/new-api-details/topics/clinics.json b/new-api-details/topics/clinics.json index 924f936d..f64e4fe2 100644 --- a/new-api-details/topics/clinics.json +++ b/new-api-details/topics/clinics.json @@ -1,10 +1,11 @@ { "slug": "clinics", "name": "clinics", - "published_at": "2026-01-25T16:06:29.475Z", + "published_at": "2026-02-19T13:36:02.573Z", "organizationCount": 1, "projectCount": 94, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "openmrs", "name": "OpenMRS", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 94, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 8 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.475Z" + "generated_at": "2026-02-19T13:36:02.573Z" } } \ No newline at end of file diff --git a/new-api-details/topics/clojure.json b/new-api-details/topics/clojure.json index 44df5ffa..62842034 100644 --- a/new-api-details/topics/clojure.json +++ b/new-api-details/topics/clojure.json @@ -1,10 +1,11 @@ { "slug": "clojure", "name": "clojure", - "published_at": "2026-01-25T16:06:28.826Z", + "published_at": "2026-02-19T13:36:01.167Z", "organizationCount": 1, "projectCount": 78, "years": [ + 2026, 2025, 2024, 2022, @@ -19,7 +20,7 @@ "slug": "debian", "name": "Debian", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 78, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.826Z" + "generated_at": "2026-02-19T13:36:01.167Z" } } \ No newline at end of file diff --git a/new-api-details/topics/cloud-computing.json b/new-api-details/topics/cloud-computing.json index 90beab3a..abcded7e 100644 --- a/new-api-details/topics/cloud-computing.json +++ b/new-api-details/topics/cloud-computing.json @@ -1,10 +1,11 @@ { "slug": "cloud-computing", "name": "cloud computing", - "published_at": "2026-01-25T16:06:28.425Z", + "published_at": "2026-02-19T13:36:00.356Z", "organizationCount": 6, "projectCount": 263, "years": [ + 2026, 2025, 2024, 2023, @@ -17,42 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "academy-software-foundation", - "name": "Academy Software Foundation", - "first_year": 2020, - "last_year": 2022, - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2020, - 2022 - ] - }, - { - "slug": "cloudcv", - "name": "CloudCV", - "first_year": 2016, - "last_year": 2025, - "total_projects": 28, - "is_currently_active": true, - "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2023, - 2024, - 2025 - ] - }, { "slug": "cncf", "name": "CNCF", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 113, "is_currently_active": true, "active_years": [ @@ -64,7 +34,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -88,7 +59,7 @@ "first_year": 2021, "last_year": 2025, "total_projects": 36, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2021, 2022, @@ -97,6 +68,37 @@ 2025 ] }, + { + "slug": "cloudcv", + "name": "CloudCV", + "first_year": 2016, + "last_year": 2025, + "total_projects": 28, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2023, + 2024, + 2025 + ] + }, + { + "slug": "academy-software-foundation", + "name": "Academy Software Foundation", + "first_year": 2020, + "last_year": 2022, + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2020, + 2022 + ] + }, { "slug": "xen-project", "name": "Xen Project", @@ -149,10 +151,14 @@ "2025": { "organizationCount": 3, "projectCount": 21 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.425Z" + "generated_at": "2026-02-19T13:36:00.356Z" } } \ No newline at end of file diff --git a/new-api-details/topics/cloud-databases.json b/new-api-details/topics/cloud-databases.json index 009c69f6..6480adaa 100644 --- a/new-api-details/topics/cloud-databases.json +++ b/new-api-details/topics/cloud-databases.json @@ -1,7 +1,7 @@ { "slug": "cloud-databases", "name": "cloud databases", - "published_at": "2026-01-25T16:06:28.705Z", + "published_at": "2026-02-19T13:36:00.957Z", "organizationCount": 3, "projectCount": 25, "years": [ @@ -69,6 +69,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.705Z" + "generated_at": "2026-02-19T13:36:00.957Z" } } \ No newline at end of file diff --git a/new-api-details/topics/cloud-infrastructure.json b/new-api-details/topics/cloud-infrastructure.json index 5722c0c8..ec9d447b 100644 --- a/new-api-details/topics/cloud-infrastructure.json +++ b/new-api-details/topics/cloud-infrastructure.json @@ -1,10 +1,11 @@ { "slug": "cloud-infrastructure", "name": "cloud infrastructure", - "published_at": "2026-01-25T16:06:29.284Z", + "published_at": "2026-02-19T13:36:02.192Z", "organizationCount": 2, "projectCount": 81, "years": [ + 2026, 2025, 2024, 2023, @@ -17,23 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "linkerd", - "name": "Linkerd", - "first_year": 2019, - "last_year": 2020, - "total_projects": 4, - "is_currently_active": false, - "active_years": [ - 2019, - 2020 - ] - }, { "slug": "openastronomy", "name": "OpenAstronomy", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 77, "is_currently_active": true, "active_years": [ @@ -46,7 +35,20 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "linkerd", + "name": "Linkerd", + "first_year": 2019, + "last_year": 2020, + "total_projects": 4, + "is_currently_active": false, + "active_years": [ + 2019, + 2020 ] } ], @@ -90,10 +92,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.284Z" + "generated_at": "2026-02-19T13:36:02.192Z" } } \ No newline at end of file diff --git a/new-api-details/topics/cloud-native-infrastructure.json b/new-api-details/topics/cloud-native-infrastructure.json index ad26fecf..7596d68d 100644 --- a/new-api-details/topics/cloud-native-infrastructure.json +++ b/new-api-details/topics/cloud-native-infrastructure.json @@ -1,10 +1,11 @@ { "slug": "cloud-native-infrastructure", "name": "cloud native infrastructure", - "published_at": "2026-01-25T16:06:29.339Z", + "published_at": "2026-02-19T13:36:02.276Z", "organizationCount": 1, "projectCount": 2, "years": [ + 2026, 2025 ], "organizations": [ @@ -12,11 +13,12 @@ "slug": "meshery", "name": "Meshery", "first_year": 2025, - "last_year": 2025, + "last_year": 2026, "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] } ], @@ -24,10 +26,14 @@ "2025": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.339Z" + "generated_at": "2026-02-19T13:36:02.276Z" } } \ No newline at end of file diff --git a/new-api-details/topics/cloud-native-java.json b/new-api-details/topics/cloud-native-java.json index 024b52b3..0062d848 100644 --- a/new-api-details/topics/cloud-native-java.json +++ b/new-api-details/topics/cloud-native-java.json @@ -1,10 +1,11 @@ { "slug": "cloud-native-java", "name": "cloud native java", - "published_at": "2026-01-25T16:06:28.895Z", + "published_at": "2026-02-19T13:36:01.240Z", "organizationCount": 1, "projectCount": 68, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "eclipse-foundation", "name": "Eclipse Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 68, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.895Z" + "generated_at": "2026-02-19T13:36:01.240Z" } } \ No newline at end of file diff --git a/new-api-details/topics/cloud-native.json b/new-api-details/topics/cloud-native.json index f8b1f1d5..86d4c475 100644 --- a/new-api-details/topics/cloud-native.json +++ b/new-api-details/topics/cloud-native.json @@ -1,10 +1,11 @@ { "slug": "cloud-native", - "name": "cloud native", - "published_at": "2026-01-25T16:06:28.676Z", - "organizationCount": 6, + "name": "cloud-native", + "published_at": "2026-02-19T13:36:01.019Z", + "organizationCount": 7, "projectCount": 124, "years": [ + 2026, 2025, 2024, 2023, @@ -16,22 +17,11 @@ 2017 ], "organizations": [ - { - "slug": "cilium", - "name": "Cilium", - "first_year": 2021, - "last_year": 2021, - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2021 - ] - }, { "slug": "cncf", "name": "CNCF", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 113, "is_currently_active": true, "active_years": [ @@ -43,18 +33,31 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "jina-ai", - "name": "Jina AI", - "first_year": 2023, - "last_year": 2023, - "total_projects": 1, + "slug": "linkerd", + "name": "Linkerd", + "first_year": 2019, + "last_year": 2020, + "total_projects": 4, "is_currently_active": false, "active_years": [ - 2023 + 2019, + 2020 + ] + }, + { + "slug": "cilium", + "name": "Cilium", + "first_year": 2021, + "last_year": 2021, + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2021 ] }, { @@ -63,21 +66,20 @@ "first_year": 2025, "last_year": 2025, "total_projects": 2, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2025 ] }, { - "slug": "linkerd", - "name": "Linkerd", - "first_year": 2019, - "last_year": 2020, - "total_projects": 4, + "slug": "jina-ai", + "name": "Jina AI", + "first_year": 2023, + "last_year": 2023, + "total_projects": 1, "is_currently_active": false, "active_years": [ - 2019, - 2020 + 2023 ] }, { @@ -90,6 +92,17 @@ "active_years": [ 2019 ] + }, + { + "slug": "konflux", + "name": "Konflux", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] } ], "yearlyStats": { @@ -128,10 +141,14 @@ "2025": { "organizationCount": 2, "projectCount": 13 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.676Z" + "generated_at": "2026-02-19T13:36:01.019Z" } } \ No newline at end of file diff --git a/new-api-details/topics/cloud-security.json b/new-api-details/topics/cloud-security.json index c5204254..1f520161 100644 --- a/new-api-details/topics/cloud-security.json +++ b/new-api-details/topics/cloud-security.json @@ -1,10 +1,11 @@ { "slug": "cloud-security", "name": "cloud security", - "published_at": "2026-01-25T16:06:29.421Z", + "published_at": "2026-02-19T13:36:02.669Z", "organizationCount": 1, "projectCount": 102, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "owasp-foundation", "name": "OWASP Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 102, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 15 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.421Z" + "generated_at": "2026-02-19T13:36:02.669Z" } } \ No newline at end of file diff --git a/new-api-details/topics/cloud-storage.json b/new-api-details/topics/cloud-storage.json index 0a7d6d68..eaf3710d 100644 --- a/new-api-details/topics/cloud-storage.json +++ b/new-api-details/topics/cloud-storage.json @@ -1,10 +1,11 @@ { "slug": "cloud-storage", "name": "cloud storage", - "published_at": "2026-01-25T16:06:28.713Z", + "published_at": "2026-02-19T13:36:00.969Z", "organizationCount": 1, "projectCount": 31, "years": [ + 2026, 2025, 2024, 2023, @@ -19,7 +20,7 @@ "slug": "ceph-foundation", "name": "Ceph Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 31, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.713Z" + "generated_at": "2026-02-19T13:36:00.969Z" } } \ No newline at end of file diff --git a/new-api-details/topics/cloud-with-google-computer-engine.json b/new-api-details/topics/cloud-with-google-computer-engine.json index 0a695538..16d38bd7 100644 --- a/new-api-details/topics/cloud-with-google-computer-engine.json +++ b/new-api-details/topics/cloud-with-google-computer-engine.json @@ -1,7 +1,7 @@ { "slug": "cloud-with-google-computer-engine", "name": "cloud with google computer engine", - "published_at": "2026-01-25T16:06:29.603Z", + "published_at": "2026-02-19T13:36:02.817Z", "organizationCount": 1, "projectCount": 149, "years": [ @@ -70,6 +70,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.603Z" + "generated_at": "2026-02-19T13:36:02.817Z" } } \ No newline at end of file diff --git a/new-api-details/topics/cloud.json b/new-api-details/topics/cloud.json index 60ef753f..8cbcba26 100644 --- a/new-api-details/topics/cloud.json +++ b/new-api-details/topics/cloud.json @@ -1,10 +1,11 @@ { "slug": "cloud", "name": "cloud", - "published_at": "2026-01-25T16:06:28.535Z", - "organizationCount": 60, + "published_at": "2026-02-19T13:36:00.486Z", + "organizationCount": 62, "projectCount": 1961, "years": [ + 2026, 2025, 2024, 2023, @@ -18,126 +19,65 @@ ], "organizations": [ { - "slug": "asyncapi", - "name": "AsyncAPI", - "first_year": 2024, - "last_year": 2025, - "total_projects": 15, - "is_currently_active": true, - "active_years": [ - 2024, - 2025 - ] - }, - { - "slug": "beam-community", - "name": "Beam Community", + "slug": "the-apache-software-foundation", + "name": "The Apache Software Foundation", "first_year": 2016, - "last_year": 2018, - "total_projects": 19, + "last_year": 2025, + "total_projects": 248, "is_currently_active": false, "active_years": [ 2016, 2017, - 2018 - ] - }, - { - "slug": "biomedical-informatics-emory-university", - "name": "Biomedical Informatics, Emory University", - "first_year": 2016, - "last_year": 2019, - "total_projects": 9, - "is_currently_active": false, - "active_years": [ - 2016, - 2019 - ] - }, - { - "slug": "c2si", - "name": "C2SI", - "first_year": 2024, - "last_year": 2024, - "total_projects": 12, - "is_currently_active": false, - "active_years": [ - 2024 - ] - }, - { - "slug": "camicroscope", - "name": "caMicroscope", - "first_year": 2020, - "last_year": 2024, - "total_projects": 13, - "is_currently_active": false, - "active_years": [ + 2018, + 2019, 2020, 2021, + 2022, 2023, - 2024 + 2024, + 2025 ] }, { - "slug": "casbin", - "name": "Casbin", - "first_year": 2020, - "last_year": 2022, - "total_projects": 22, + "slug": "score-lab", + "name": "SCoRe Lab", + "first_year": 2016, + "last_year": 2023, + "total_projects": 149, "is_currently_active": false, "active_years": [ + 2016, + 2017, + 2018, + 2019, 2020, 2021, - 2022 - ] - }, - { - "slug": "center-for-translational-data-science", - "name": "Center for Translational Data Science", - "first_year": 2022, - "last_year": 2025, - "total_projects": 6, - "is_currently_active": true, - "active_years": [ 2022, - 2025 + 2023 ] }, { - "slug": "ceph-foundation", - "name": "Ceph Foundation", + "slug": "fossasia", + "name": "FOSSASIA", "first_year": 2016, - "last_year": 2025, - "total_projects": 31, + "last_year": 2026, + "total_projects": 140, "is_currently_active": true, "active_years": [ 2016, 2017, - 2020, - 2021, - 2022, - 2023, + 2018, + 2019, 2024, - 2025 - ] - }, - { - "slug": "cern-sft", - "name": "CERN SFT", - "first_year": 2016, - "last_year": 2016, - "total_projects": 10, - "is_currently_active": false, - "active_years": [ - 2016 + 2025, + 2026 ] }, { "slug": "cncf", "name": "CNCF", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 113, "is_currently_active": true, "active_years": [ @@ -149,54 +89,55 @@ 2022, 2023, 2024, - 2025 - ] - }, - { - "slug": "continuous-delivery-foundation", - "name": "Continuous Delivery Foundation", - "first_year": 2020, - "last_year": 2021, - "total_projects": 9, - "is_currently_active": false, - "active_years": [ - 2020, - 2021 + 2025, + 2026 ] }, { - "slug": "criu", - "name": "CRIU", - "first_year": 2019, - "last_year": 2025, - "total_projects": 18, + "slug": "owasp-foundation", + "name": "OWASP Foundation", + "first_year": 2016, + "last_year": 2026, + "total_projects": 102, "is_currently_active": true, "active_years": [ + 2016, + 2018, 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "datenlord", - "name": "DatenLord", - "first_year": 2024, - "last_year": 2024, - "total_projects": 1, - "is_currently_active": false, + "slug": "the-mifos-initiative", + "name": "The Mifos Initiative", + "first_year": 2016, + "last_year": 2026, + "total_projects": 102, + "is_currently_active": true, "active_years": [ - 2024 + 2016, + 2017, + 2018, + 2019, + 2020, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { "slug": "debian", "name": "Debian", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 78, "is_currently_active": true, "active_years": [ @@ -207,48 +148,55 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "department-of-biomedical-informatics-emory-university", - "name": "Department of Biomedical Informatics, Emory University", - "first_year": 2021, - "last_year": 2025, - "total_projects": 27, + "slug": "the-freebsd-project", + "name": "The FreeBSD Project", + "first_year": 2016, + "last_year": 2026, + "total_projects": 76, "is_currently_active": true, "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "drupal-association", - "name": "Drupal Association", - "first_year": 2016, - "last_year": 2025, - "total_projects": 39, + "slug": "open-technologies-alliance-gfoss", + "name": "Open Technologies Alliance - GFOSS", + "first_year": 2017, + "last_year": 2026, + "total_projects": 70, "is_currently_active": true, "active_years": [ - 2016, 2017, 2018, 2019, - 2020, + 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "eclipse-foundation", "name": "Eclipse Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 68, "is_currently_active": true, "active_years": [ @@ -260,70 +208,56 @@ 2022, 2023, 2024, - 2025 - ] - }, - { - "slug": "eunomia-bpf", - "name": "eunomia-bpf", - "first_year": 2024, - "last_year": 2024, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2024 + 2025, + 2026 ] }, { - "slug": "fossasia", - "name": "FOSSASIA", + "slug": "libreoffice", + "name": "LibreOffice", "first_year": 2016, - "last_year": 2025, - "total_projects": 140, + "last_year": 2026, + "total_projects": 65, "is_currently_active": true, "active_years": [ 2016, 2017, 2018, 2019, - 2024, - 2025 - ] - }, - { - "slug": "genome-assembly-and-annotation", - "name": "Genome Assembly and Annotation", - "first_year": 2021, - "last_year": 2023, - "total_projects": 14, - "is_currently_active": false, - "active_years": [ + 2020, 2021, 2022, - 2023 + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "gitlab", - "name": "GitLab", - "first_year": 2021, - "last_year": 2025, - "total_projects": 15, + "slug": "jboss-community", + "name": "JBoss Community", + "first_year": 2016, + "last_year": 2026, + "total_projects": 52, "is_currently_active": true, "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, 2021, 2022, - 2023, - 2025 + 2026 ] }, { "slug": "global-alliance-for-genomics-and-health", "name": "Global Alliance for Genomics and Health", "first_year": 2016, - "last_year": 2024, + "last_year": 2026, "total_projects": 45, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -333,28 +267,57 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { - "slug": "grpc", - "name": "gRPC", + "slug": "qemu", + "name": "QEMU", "first_year": 2016, - "last_year": 2018, - "total_projects": 3, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 41, + "is_currently_active": true, "active_years": [ 2016, - 2018 - ] + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2025, + 2026 + ] }, { - "slug": "jboss-community", - "name": "JBoss Community", + "slug": "drupal-association", + "name": "Drupal Association", "first_year": 2016, - "last_year": 2022, - "total_projects": 52, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 39, + "is_currently_active": true, + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2022, + 2023, + 2024, + 2025, + 2026 + ] + }, + { + "slug": "mariadb", + "name": "MariaDB", + "first_year": 2016, + "last_year": 2026, + "total_projects": 39, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -362,40 +325,107 @@ 2019, 2020, 2021, - 2022 + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "jenkins-x", - "name": "Jenkins X", - "first_year": 2022, - "last_year": 2022, - "total_projects": 2, + "slug": "ruby", + "name": "Ruby", + "first_year": 2016, + "last_year": 2026, + "total_projects": 38, + "is_currently_active": true, + "active_years": [ + 2016, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2026 + ] + }, + { + "slug": "the-palisadoes-foundation", + "name": "The Palisadoes Foundation", + "first_year": 2021, + "last_year": 2025, + "total_projects": 36, "is_currently_active": false, "active_years": [ - 2022 + 2021, + 2022, + 2023, + 2024, + 2025 ] }, { - "slug": "kapitan", - "name": "Kapitan", - "first_year": 2019, - "last_year": 2020, - "total_projects": 2, + "slug": "ceph-foundation", + "name": "Ceph Foundation", + "first_year": 2016, + "last_year": 2026, + "total_projects": 31, + "is_currently_active": true, + "active_years": [ + 2016, + 2017, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ] + }, + { + "slug": "open-genome-informatics", + "name": "Open Genome Informatics", + "first_year": 2016, + "last_year": 2026, + "total_projects": 28, + "is_currently_active": true, + "active_years": [ + 2016, + 2017, + 2020, + 2021, + 2022, + 2023, + 2026 + ] + }, + { + "slug": "department-of-biomedical-informatics-emory-university", + "name": "Department of Biomedical Informatics, Emory University", + "first_year": 2021, + "last_year": 2025, + "total_projects": 27, "is_currently_active": false, "active_years": [ - 2019, - 2020 + 2021, + 2022, + 2023, + 2024, + 2025 ] }, { - "slug": "keptn", - "name": "Keptn", - "first_year": 2022, + "slug": "casbin", + "name": "Casbin", + "first_year": 2020, "last_year": 2022, - "total_projects": 3, + "total_projects": 22, "is_currently_active": false, "active_years": [ + 2020, + 2021, 2022 ] }, @@ -403,33 +433,52 @@ "slug": "kubeflow", "name": "Kubeflow", "first_year": 2020, - "last_year": 2025, + "last_year": 2026, "total_projects": 21, "is_currently_active": true, "active_years": [ 2020, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "libreoffice", - "name": "LibreOffice", + "slug": "teammates-national-university-of-singapore", + "name": "TEAMMATES @ National University of Singapore", "first_year": 2016, - "last_year": 2025, - "total_projects": 65, - "is_currently_active": true, + "last_year": 2018, + "total_projects": 20, + "is_currently_active": false, "active_years": [ 2016, 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2018 + ] + }, + { + "slug": "wso2", + "name": "WSO2", + "first_year": 2016, + "last_year": 2017, + "total_projects": 20, + "is_currently_active": false, + "active_years": [ + 2016, + 2017 + ] + }, + { + "slug": "beam-community", + "name": "Beam Community", + "first_year": 2016, + "last_year": 2018, + "total_projects": 19, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2018 ] }, { @@ -451,163 +500,212 @@ ] }, { - "slug": "mantis", - "name": "Mantis", - "first_year": 2023, - "last_year": 2023, - "total_projects": 2, - "is_currently_active": false, + "slug": "metacall", + "name": "MetaCall", + "first_year": 2021, + "last_year": 2026, + "total_projects": 19, + "is_currently_active": true, "active_years": [ - 2023 + 2021, + 2022, + 2023, + 2024, + 2026 ] }, { - "slug": "mariadb", - "name": "MariaDB", - "first_year": 2016, - "last_year": 2025, - "total_projects": 39, + "slug": "criu", + "name": "CRIU", + "first_year": 2019, + "last_year": 2026, + "total_projects": 18, "is_currently_active": true, "active_years": [ - 2016, - 2017, - 2018, 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "metacall", - "name": "MetaCall", - "first_year": 2021, - "last_year": 2024, - "total_projects": 19, - "is_currently_active": false, + "slug": "unikraft", + "name": "Unikraft", + "first_year": 2022, + "last_year": 2026, + "total_projects": 16, + "is_currently_active": true, "active_years": [ - 2021, 2022, 2023, - 2024 + 2024, + 2025, + 2026 ] }, { - "slug": "omegaup", - "name": "omegaUp", - "first_year": 2018, + "slug": "asyncapi", + "name": "AsyncAPI", + "first_year": 2024, "last_year": 2025, - "total_projects": 10, - "is_currently_active": true, + "total_projects": 15, + "is_currently_active": false, "active_years": [ - 2018, - 2022, - 2023, 2024, 2025 ] }, { - "slug": "open-data-kit", - "name": "Open Data Kit", - "first_year": 2017, - "last_year": 2019, - "total_projects": 5, + "slug": "gitlab", + "name": "GitLab", + "first_year": 2021, + "last_year": 2025, + "total_projects": 15, "is_currently_active": false, "active_years": [ - 2017, - 2018, - 2019 + 2021, + 2022, + 2023, + 2025 ] }, { - "slug": "open-genome-informatics", - "name": "Open Genome Informatics", - "first_year": 2016, - "last_year": 2023, - "total_projects": 28, - "is_currently_active": false, + "slug": "genome-assembly-and-annotation", + "name": "Genome Assembly and Annotation", + "first_year": 2021, + "last_year": 2026, + "total_projects": 14, + "is_currently_active": true, "active_years": [ - 2016, - 2017, - 2020, 2021, 2022, - 2023 + 2023, + 2026 ] }, { - "slug": "open-technologies-alliance-gfoss", - "name": "Open Technologies Alliance - GFOSS", - "first_year": 2017, + "slug": "software-and-computational-systems-lab-at-lmu-munich", + "name": "Software and Computational Systems Lab at LMU Munich", + "first_year": 2018, "last_year": 2025, - "total_projects": 70, - "is_currently_active": true, + "total_projects": 14, + "is_currently_active": false, "active_years": [ - 2017, 2018, 2019, - 2021, - 2022, 2023, 2024, 2025 ] }, { - "slug": "openemr", - "name": "OpenEMR", + "slug": "camicroscope", + "name": "caMicroscope", "first_year": 2020, - "last_year": 2020, - "total_projects": 3, + "last_year": 2024, + "total_projects": 13, "is_currently_active": false, "active_years": [ - 2020 + 2020, + 2021, + 2023, + 2024 ] }, { - "slug": "ow2", - "name": "OW2", - "first_year": 2018, - "last_year": 2018, - "total_projects": 0, + "slug": "c2si", + "name": "C2SI", + "first_year": 2024, + "last_year": 2026, + "total_projects": 12, + "is_currently_active": true, + "active_years": [ + 2024, + 2026 + ] + }, + { + "slug": "society-for-arts-and-technology-sat", + "name": "Society for Arts and Technology (SAT)", + "first_year": 2022, + "last_year": 2025, + "total_projects": 12, "is_currently_active": false, "active_years": [ - 2018 + 2022, + 2023, + 2025 ] }, { - "slug": "owasp-foundation", - "name": "OWASP Foundation", + "slug": "syslog-ng", + "name": "syslog-ng", "first_year": 2016, - "last_year": 2025, - "total_projects": 102, - "is_currently_active": true, + "last_year": 2022, + "total_projects": 12, + "is_currently_active": false, "active_years": [ 2016, 2018, 2019, 2020, 2021, + 2022 + ] + }, + { + "slug": "cern-sft", + "name": "CERN SFT", + "first_year": 2016, + "last_year": 2016, + "total_projects": 10, + "is_currently_active": false, + "active_years": [ + 2016 + ] + }, + { + "slug": "omegaup", + "name": "omegaUp", + "first_year": 2018, + "last_year": 2026, + "total_projects": 10, + "is_currently_active": true, + "active_years": [ + 2018, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "owncloud", - "name": "ownCloud", + "slug": "biomedical-informatics-emory-university", + "name": "Biomedical Informatics, Emory University", "first_year": 2016, - "last_year": 2017, - "total_projects": 5, + "last_year": 2019, + "total_projects": 9, "is_currently_active": false, "active_years": [ 2016, - 2017 + 2019 + ] + }, + { + "slug": "continuous-delivery-foundation", + "name": "Continuous Delivery Foundation", + "first_year": 2020, + "last_year": 2021, + "total_projects": 9, + "is_currently_active": false, + "active_years": [ + 2020, + 2021 ] }, { @@ -624,222 +722,177 @@ ] }, { - "slug": "prometheus-operator", - "name": "Prometheus-Operator", - "first_year": 2024, + "slug": "center-for-translational-data-science", + "name": "Center for Translational Data Science", + "first_year": 2022, "last_year": 2025, + "total_projects": 6, + "is_currently_active": false, + "active_years": [ + 2022, + 2025 + ] + }, + { + "slug": "open-data-kit", + "name": "Open Data Kit", + "first_year": 2017, + "last_year": 2019, "total_projects": 5, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ - 2024, - 2025 + 2017, + 2018, + 2019 ] }, { - "slug": "qemu", - "name": "QEMU", + "slug": "owncloud", + "name": "ownCloud", "first_year": 2016, - "last_year": 2025, - "total_projects": 41, - "is_currently_active": true, + "last_year": 2017, + "total_projects": 5, + "is_currently_active": false, "active_years": [ 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2025 + 2017 ] }, { - "slug": "ruby", - "name": "Ruby", - "first_year": 2016, - "last_year": 2023, - "total_projects": 38, + "slug": "prometheus-operator", + "name": "Prometheus-Operator", + "first_year": 2024, + "last_year": 2025, + "total_projects": 5, "is_currently_active": false, "active_years": [ - 2016, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023 + 2024, + 2025 ] }, { - "slug": "score-lab", - "name": "SCoRe Lab", + "slug": "grpc", + "name": "gRPC", "first_year": 2016, - "last_year": 2023, - "total_projects": 149, + "last_year": 2018, + "total_projects": 3, "is_currently_active": false, "active_years": [ 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023 + 2018 ] }, { - "slug": "society-for-arts-and-technology-sat", - "name": "Society for Arts and Technology (SAT)", + "slug": "keptn", + "name": "Keptn", "first_year": 2022, - "last_year": 2025, - "total_projects": 12, - "is_currently_active": true, + "last_year": 2022, + "total_projects": 3, + "is_currently_active": false, "active_years": [ - 2022, - 2023, - 2025 + 2022 ] }, { - "slug": "software-and-computational-systems-lab-at-lmu-munich", - "name": "Software and Computational Systems Lab at LMU Munich", - "first_year": 2018, - "last_year": 2025, - "total_projects": 14, - "is_currently_active": true, + "slug": "openemr", + "name": "OpenEMR", + "first_year": 2020, + "last_year": 2020, + "total_projects": 3, + "is_currently_active": false, "active_years": [ - 2018, - 2019, - 2023, - 2024, - 2025 + 2020 ] }, { - "slug": "st-jude-childrens-research-hospital", - "name": "St. Jude Children's Research Hospital", - "first_year": 2025, - "last_year": 2025, + "slug": "eunomia-bpf", + "name": "eunomia-bpf", + "first_year": 2024, + "last_year": 2024, "total_projects": 2, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ - 2025 + 2024 ] }, { - "slug": "stemformatics", - "name": "Stemformatics", - "first_year": 2018, - "last_year": 2018, + "slug": "jenkins-x", + "name": "Jenkins X", + "first_year": 2022, + "last_year": 2022, "total_projects": 2, "is_currently_active": false, "active_years": [ - 2018 + 2022 ] }, { - "slug": "syslog-ng", - "name": "syslog-ng", - "first_year": 2016, - "last_year": 2022, - "total_projects": 12, + "slug": "kapitan", + "name": "Kapitan", + "first_year": 2019, + "last_year": 2020, + "total_projects": 2, "is_currently_active": false, "active_years": [ - 2016, - 2018, 2019, - 2020, - 2021, - 2022 + 2020 ] }, { - "slug": "teammates-national-university-of-singapore", - "name": "TEAMMATES @ National University of Singapore", - "first_year": 2016, - "last_year": 2018, - "total_projects": 20, + "slug": "mantis", + "name": "Mantis", + "first_year": 2023, + "last_year": 2023, + "total_projects": 2, "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018 + 2023 ] }, { - "slug": "the-apache-software-foundation", - "name": "The Apache Software Foundation", - "first_year": 2016, - "last_year": 2025, - "total_projects": 248, + "slug": "st-jude-childrens-research-hospital", + "name": "St. Jude Children's Research Hospital", + "first_year": 2025, + "last_year": 2026, + "total_projects": 2, "is_currently_active": true, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "the-freebsd-project", - "name": "The FreeBSD Project", - "first_year": 2016, - "last_year": 2025, - "total_projects": 76, - "is_currently_active": true, + "slug": "stemformatics", + "name": "Stemformatics", + "first_year": 2018, + "last_year": 2018, + "total_projects": 2, + "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2018 ] }, { - "slug": "the-mifos-initiative", - "name": "The Mifos Initiative", - "first_year": 2016, - "last_year": 2025, - "total_projects": 102, + "slug": "typelevel", + "name": "Typelevel", + "first_year": 2025, + "last_year": 2026, + "total_projects": 2, "is_currently_active": true, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2022, - 2023, - 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "the-palisadoes-foundation", - "name": "The Palisadoes Foundation", - "first_year": 2021, - "last_year": 2025, - "total_projects": 36, - "is_currently_active": true, + "slug": "datenlord", + "name": "DatenLord", + "first_year": 2024, + "last_year": 2024, + "total_projects": 1, + "is_currently_active": false, "active_years": [ - 2021, - 2022, - 2023, - 2024, - 2025 + 2024 ] }, { @@ -854,40 +907,36 @@ ] }, { - "slug": "typelevel", - "name": "Typelevel", - "first_year": 2025, - "last_year": 2025, - "total_projects": 2, + "slug": "apache-software-foundation", + "name": "Apache Software Foundation", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, "is_currently_active": true, "active_years": [ - 2025 + 2026 ] }, { - "slug": "unikraft", - "name": "Unikraft", - "first_year": 2022, - "last_year": 2025, - "total_projects": 16, + "slug": "malariagen", + "name": "MalariaGEN", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, "is_currently_active": true, "active_years": [ - 2022, - 2023, - 2024, - 2025 + 2026 ] }, { - "slug": "wso2", - "name": "WSO2", - "first_year": 2016, - "last_year": 2017, - "total_projects": 20, + "slug": "ow2", + "name": "OW2", + "first_year": 2018, + "last_year": 2018, + "total_projects": 0, "is_currently_active": false, "active_years": [ - 2016, - 2017 + 2018 ] } ], @@ -931,10 +980,14 @@ "2025": { "organizationCount": 28, "projectCount": 216 + }, + "2026": { + "organizationCount": 28, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.535Z" + "generated_at": "2026-02-19T13:36:00.486Z" } } \ No newline at end of file diff --git a/new-api-details/topics/cloudnative.json b/new-api-details/topics/cloudnative.json index 23b23d0a..a5735d5d 100644 --- a/new-api-details/topics/cloudnative.json +++ b/new-api-details/topics/cloudnative.json @@ -1,7 +1,7 @@ { "slug": "cloudnative", "name": "CloudNative", - "published_at": "2026-01-25T16:06:29.239Z", + "published_at": "2026-02-19T13:36:02.104Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.239Z" + "generated_at": "2026-02-19T13:36:02.104Z" } } \ No newline at end of file diff --git a/new-api-details/topics/cluster.json b/new-api-details/topics/cluster.json index 7d3b9f83..9cd8e1db 100644 --- a/new-api-details/topics/cluster.json +++ b/new-api-details/topics/cluster.json @@ -1,10 +1,11 @@ { "slug": "cluster", "name": "cluster", - "published_at": "2026-01-25T16:06:29.287Z", + "published_at": "2026-02-19T13:36:02.199Z", "organizationCount": 1, "projectCount": 75, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "liquid-galaxy-project", "name": "Liquid Galaxy project", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 75, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 11 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.287Z" + "generated_at": "2026-02-19T13:36:02.199Z" } } \ No newline at end of file diff --git a/new-api-details/topics/clustering.json b/new-api-details/topics/clustering.json index bd4f6513..9898f3c1 100644 --- a/new-api-details/topics/clustering.json +++ b/new-api-details/topics/clustering.json @@ -1,7 +1,7 @@ { "slug": "clustering", "name": "clustering", - "published_at": "2026-01-25T16:06:28.577Z", + "published_at": "2026-02-19T13:36:00.671Z", "organizationCount": 1, "projectCount": 19, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.577Z" + "generated_at": "2026-02-19T13:36:00.671Z" } } \ No newline at end of file diff --git a/new-api-details/topics/cms.json b/new-api-details/topics/cms.json index dfbdbf16..47298756 100644 --- a/new-api-details/topics/cms.json +++ b/new-api-details/topics/cms.json @@ -1,10 +1,11 @@ { "slug": "cms", "name": "cms", - "published_at": "2026-01-25T16:06:28.862Z", + "published_at": "2026-02-19T13:36:01.212Z", "organizationCount": 4, "projectCount": 112, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "drupal-association", "name": "Drupal Association", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 39, "is_currently_active": true, "active_years": [ @@ -33,14 +34,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "joomla", "name": "Joomla!", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 36, "is_currently_active": true, "active_years": [ @@ -50,7 +52,8 @@ 2019, 2021, 2022, - 2025 + 2025, + 2026 ] }, { @@ -59,7 +62,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 26, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -74,14 +77,15 @@ "slug": "wagtail", "name": "Wagtail", "first_year": 2022, - "last_year": 2025, + "last_year": 2026, "total_projects": 11, "is_currently_active": true, "active_years": [ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -125,10 +129,14 @@ "2025": { "organizationCount": 4, "projectCount": 18 + }, + "2026": { + "organizationCount": 3, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.862Z" + "generated_at": "2026-02-19T13:36:01.212Z" } } \ No newline at end of file diff --git a/new-api-details/topics/co-speech-gesture.json b/new-api-details/topics/co-speech-gesture.json index 282cf3e5..04ddaeba 100644 --- a/new-api-details/topics/co-speech-gesture.json +++ b/new-api-details/topics/co-speech-gesture.json @@ -1,7 +1,7 @@ { "slug": "co-speech-gesture", "name": "co-speech gesture", - "published_at": "2026-01-25T16:06:29.587Z", + "published_at": "2026-02-19T13:36:02.784Z", "organizationCount": 1, "projectCount": 88, "years": [ @@ -76,6 +76,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.587Z" + "generated_at": "2026-02-19T13:36:02.784Z" } } \ No newline at end of file diff --git a/new-api-details/topics/code-analysis-and-spdx.json b/new-api-details/topics/code-analysis-and-spdx.json index 69afe945..f13eb322 100644 --- a/new-api-details/topics/code-analysis-and-spdx.json +++ b/new-api-details/topics/code-analysis-and-spdx.json @@ -1,10 +1,11 @@ { "slug": "code-analysis-and-spdx", "name": "code analysis and spdx", - "published_at": "2026-01-25T16:06:28.412Z", + "published_at": "2026-02-19T13:36:00.308Z", "organizationCount": 1, "projectCount": 32, "years": [ + 2026, 2025, 2024, 2023, @@ -19,7 +20,7 @@ "slug": "aboutcode", "name": "AboutCode", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 32, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.412Z" + "generated_at": "2026-02-19T13:36:00.308Z" } } \ No newline at end of file diff --git a/new-api-details/topics/code-analysis.json b/new-api-details/topics/code-analysis.json index e97c10e5..09f58116 100644 --- a/new-api-details/topics/code-analysis.json +++ b/new-api-details/topics/code-analysis.json @@ -1,10 +1,11 @@ { "slug": "code-analysis", "name": "code analysis", - "published_at": "2026-01-25T16:06:29.258Z", + "published_at": "2026-02-19T13:36:01.060Z", "organizationCount": 3, "projectCount": 162, "years": [ + 2026, 2025, 2024, 2023, @@ -17,25 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "coala", - "name": "coala", - "first_year": 2017, - "last_year": 2021, - "total_projects": 37, - "is_currently_active": false, - "active_years": [ - 2017, - 2018, - 2019, - 2021 - ] - }, { "slug": "llvm-compiler-infrastructure", "name": "LLVM Compiler Infrastructure", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 122, "is_currently_active": true, "active_years": [ @@ -48,7 +35,22 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "coala", + "name": "coala", + "first_year": 2017, + "last_year": 2021, + "total_projects": 37, + "is_currently_active": false, + "active_years": [ + 2017, + 2018, + 2019, + 2021 ] }, { @@ -104,10 +106,14 @@ "2025": { "organizationCount": 1, "projectCount": 15 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.258Z" + "generated_at": "2026-02-19T13:36:01.060Z" } } \ No newline at end of file diff --git a/new-api-details/topics/code-conversion.json b/new-api-details/topics/code-conversion.json index 4b75d5b3..1c818f20 100644 --- a/new-api-details/topics/code-conversion.json +++ b/new-api-details/topics/code-conversion.json @@ -1,7 +1,7 @@ { "slug": "code-conversion", "name": "code conversion", - "published_at": "2026-01-25T16:06:29.193Z", + "published_at": "2026-02-19T13:36:01.999Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.193Z" + "generated_at": "2026-02-19T13:36:01.999Z" } } \ No newline at end of file diff --git a/new-api-details/topics/code-generation.json b/new-api-details/topics/code-generation.json index 84fa9767..c137747e 100644 --- a/new-api-details/topics/code-generation.json +++ b/new-api-details/topics/code-generation.json @@ -1,10 +1,11 @@ { "slug": "code-generation", "name": "code generation", - "published_at": "2026-01-25T16:06:28.398Z", + "published_at": "2026-02-19T13:36:00.540Z", "organizationCount": 2, "projectCount": 42, "years": [ + 2026, 2025, 2023, 2022, @@ -16,22 +17,11 @@ 2016 ], "organizations": [ - { - "slug": "api-client-tools-at-google", - "name": "API Client Tools at Google", - "first_year": 2019, - "last_year": 2019, - "total_projects": 1, - "is_currently_active": false, - "active_years": [ - 2019 - ] - }, { "slug": "qemu", "name": "QEMU", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 41, "is_currently_active": true, "active_years": [ @@ -43,7 +33,19 @@ 2021, 2022, 2023, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "api-client-tools-at-google", + "name": "API Client Tools at Google", + "first_year": 2019, + "last_year": 2019, + "total_projects": 1, + "is_currently_active": false, + "active_years": [ + 2019 ] } ], @@ -83,10 +85,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.398Z" + "generated_at": "2026-02-19T13:36:00.540Z" } } \ No newline at end of file diff --git a/new-api-details/topics/code-quality.json b/new-api-details/topics/code-quality.json index dfae2e0f..5289b72a 100644 --- a/new-api-details/topics/code-quality.json +++ b/new-api-details/topics/code-quality.json @@ -1,7 +1,7 @@ { "slug": "code-quality", "name": "code quality", - "published_at": "2026-01-25T16:06:29.523Z", + "published_at": "2026-02-19T13:36:02.717Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.523Z" + "generated_at": "2026-02-19T13:36:02.717Z" } } \ No newline at end of file diff --git a/new-api-details/topics/code-review-tool.json b/new-api-details/topics/code-review-tool.json index 20cc8d0e..77be1212 100644 --- a/new-api-details/topics/code-review-tool.json +++ b/new-api-details/topics/code-review-tool.json @@ -1,10 +1,11 @@ { "slug": "code-review-tool", "name": "code review tool", - "published_at": "2026-01-25T16:06:29.823Z", + "published_at": "2026-02-19T13:36:01.007Z", "organizationCount": 1, "projectCount": 21, "years": [ + 2026, 2025, 2024, 2023, @@ -18,7 +19,7 @@ "slug": "checkstyle", "name": "checkstyle", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 21, "is_currently_active": true, "active_years": [ @@ -28,7 +29,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -60,10 +62,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.823Z" + "generated_at": "2026-02-19T13:36:01.007Z" } } \ No newline at end of file diff --git a/new-api-details/topics/code-scan-and-matching.json b/new-api-details/topics/code-scan-and-matching.json index a5d0c9b2..77a051e8 100644 --- a/new-api-details/topics/code-scan-and-matching.json +++ b/new-api-details/topics/code-scan-and-matching.json @@ -1,10 +1,11 @@ { "slug": "code-scan-and-matching", "name": "code scan and matching", - "published_at": "2026-01-25T16:06:28.411Z", + "published_at": "2026-02-19T13:36:00.305Z", "organizationCount": 1, "projectCount": 32, "years": [ + 2026, 2025, 2024, 2023, @@ -19,7 +20,7 @@ "slug": "aboutcode", "name": "AboutCode", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 32, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.411Z" + "generated_at": "2026-02-19T13:36:00.306Z" } } \ No newline at end of file diff --git a/new-api-details/topics/codec.json b/new-api-details/topics/codec.json index e451daa1..7816b9c4 100644 --- a/new-api-details/topics/codec.json +++ b/new-api-details/topics/codec.json @@ -1,7 +1,7 @@ { "slug": "codec", "name": "Codec", - "published_at": "2026-01-25T16:06:29.171Z", + "published_at": "2026-02-19T13:36:01.866Z", "organizationCount": 1, "projectCount": 12, "years": [ @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.171Z" + "generated_at": "2026-02-19T13:36:01.866Z" } } \ No newline at end of file diff --git a/new-api-details/topics/codecs.json b/new-api-details/topics/codecs.json index 58631e9a..0eab9e07 100644 --- a/new-api-details/topics/codecs.json +++ b/new-api-details/topics/codecs.json @@ -1,10 +1,11 @@ { "slug": "codecs", "name": "codecs", - "published_at": "2026-01-25T16:06:29.767Z", + "published_at": "2026-02-19T13:36:03.116Z", "organizationCount": 1, "projectCount": 92, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "videolan", "name": "VideoLAN", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 92, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 15 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.767Z" + "generated_at": "2026-02-19T13:36:03.116Z" } } \ No newline at end of file diff --git a/new-api-details/topics/codeuino.json b/new-api-details/topics/codeuino.json index e0594013..c2665250 100644 --- a/new-api-details/topics/codeuino.json +++ b/new-api-details/topics/codeuino.json @@ -1,10 +1,11 @@ { "slug": "codeuino", "name": "codeuino", - "published_at": "2026-01-25T16:06:29.202Z", + "published_at": "2026-02-19T13:36:02.023Z", "organizationCount": 1, "projectCount": 52, "years": [ + 2026, 2022, 2021, 2020, @@ -18,9 +19,9 @@ "slug": "jboss-community", "name": "JBoss Community", "first_year": 2016, - "last_year": 2022, + "last_year": 2026, "total_projects": 52, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -28,7 +29,8 @@ 2019, 2020, 2021, - 2022 + 2022, + 2026 ] } ], @@ -60,10 +62,14 @@ "2022": { "organizationCount": 1, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.202Z" + "generated_at": "2026-02-19T13:36:02.023Z" } } \ No newline at end of file diff --git a/new-api-details/topics/coding-conventions.json b/new-api-details/topics/coding-conventions.json index c65a9cf7..6ee8aaeb 100644 --- a/new-api-details/topics/coding-conventions.json +++ b/new-api-details/topics/coding-conventions.json @@ -1,10 +1,11 @@ { "slug": "coding-conventions", "name": "coding conventions", - "published_at": "2026-01-25T16:06:29.824Z", + "published_at": "2026-02-19T13:36:01.007Z", "organizationCount": 1, "projectCount": 21, "years": [ + 2026, 2025, 2024, 2023, @@ -18,7 +19,7 @@ "slug": "checkstyle", "name": "checkstyle", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 21, "is_currently_active": true, "active_years": [ @@ -28,7 +29,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -60,10 +62,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.824Z" + "generated_at": "2026-02-19T13:36:01.008Z" } } \ No newline at end of file diff --git a/new-api-details/topics/coding-standards.json b/new-api-details/topics/coding-standards.json index e7fc20a9..6c971d89 100644 --- a/new-api-details/topics/coding-standards.json +++ b/new-api-details/topics/coding-standards.json @@ -1,10 +1,11 @@ { "slug": "coding-standards", "name": "coding standards", - "published_at": "2026-01-25T16:06:28.597Z", + "published_at": "2026-02-19T13:36:00.743Z", "organizationCount": 2, "projectCount": 24, "years": [ + 2026, 2025, 2024, 2023, @@ -15,22 +16,11 @@ 2016 ], "organizations": [ - { - "slug": "biojs", - "name": "BioJS", - "first_year": 2016, - "last_year": 2016, - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2016 - ] - }, { "slug": "checkstyle", "name": "checkstyle", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 21, "is_currently_active": true, "active_years": [ @@ -40,7 +30,19 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "biojs", + "name": "BioJS", + "first_year": 2016, + "last_year": 2016, + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2016 ] } ], @@ -76,10 +78,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.597Z" + "generated_at": "2026-02-19T13:36:00.743Z" } } \ No newline at end of file diff --git a/new-api-details/topics/cognitive-radio.json b/new-api-details/topics/cognitive-radio.json index 4f267d9b..c90f9a1b 100644 --- a/new-api-details/topics/cognitive-radio.json +++ b/new-api-details/topics/cognitive-radio.json @@ -1,10 +1,11 @@ { "slug": "cognitive-radio", "name": "cognitive radio", - "published_at": "2026-01-25T16:06:29.054Z", + "published_at": "2026-02-19T13:36:01.689Z", "organizationCount": 1, "projectCount": 18, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "gnu-radio", "name": "GNU Radio", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 18, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.054Z" + "generated_at": "2026-02-19T13:36:01.689Z" } } \ No newline at end of file diff --git a/new-api-details/topics/cognitive-science.json b/new-api-details/topics/cognitive-science.json index 2d24ef18..785d2f5e 100644 --- a/new-api-details/topics/cognitive-science.json +++ b/new-api-details/topics/cognitive-science.json @@ -1,7 +1,7 @@ { "slug": "cognitive-science", "name": "cognitive science", - "published_at": "2026-01-25T16:06:29.588Z", + "published_at": "2026-02-19T13:36:02.785Z", "organizationCount": 1, "projectCount": 88, "years": [ @@ -76,6 +76,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.588Z" + "generated_at": "2026-02-19T13:36:02.785Z" } } \ No newline at end of file diff --git a/new-api-details/topics/collaboration.json b/new-api-details/topics/collaboration.json index ed7cada4..21b07fdb 100644 --- a/new-api-details/topics/collaboration.json +++ b/new-api-details/topics/collaboration.json @@ -1,10 +1,11 @@ { "slug": "collaboration", "name": "collaboration", - "published_at": "2026-01-25T16:06:29.084Z", + "published_at": "2026-02-19T13:36:01.622Z", "organizationCount": 8, "projectCount": 295, "years": [ + 2026, 2025, 2024, 2023, @@ -18,71 +19,44 @@ ], "organizations": [ { - "slug": "github", - "name": "GitHub", - "first_year": 2016, - "last_year": 2016, - "total_projects": 4, - "is_currently_active": false, - "active_years": [ - 2016 - ] - }, - { - "slug": "matrixorg", - "name": "Matrix.org", - "first_year": 2016, - "last_year": 2022, - "total_projects": 29, - "is_currently_active": false, + "slug": "rocketchat", + "name": "rocket.chat", + "first_year": 2017, + "last_year": 2026, + "total_projects": 103, + "is_currently_active": true, "active_years": [ - 2016, 2017, 2018, 2019, 2020, 2021, - 2022 - ] - }, - { - "slug": "meshery", - "name": "Meshery", - "first_year": 2025, - "last_year": 2025, - "total_projects": 2, - "is_currently_active": true, - "active_years": [ - 2025 - ] - }, - { - "slug": "phpbb-forum-software", - "name": "phpBB Forum Software", - "first_year": 2017, - "last_year": 2018, - "total_projects": 4, - "is_currently_active": false, - "active_years": [ - 2017, - 2018 + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "plone-foundation", - "name": "Plone Foundation", + "slug": "sugar-labs", + "name": "Sugar Labs", "first_year": 2016, - "last_year": 2025, - "total_projects": 26, + "last_year": 2026, + "total_projects": 89, "is_currently_active": true, "active_years": [ 2016, 2017, 2018, + 2019, + 2020, + 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -102,43 +76,73 @@ ] }, { - "slug": "rocketchat", - "name": "rocket.chat", - "first_year": 2017, - "last_year": 2025, - "total_projects": 103, - "is_currently_active": true, + "slug": "matrixorg", + "name": "Matrix.org", + "first_year": 2016, + "last_year": 2022, + "total_projects": 29, + "is_currently_active": false, "active_years": [ + 2016, 2017, 2018, 2019, 2020, 2021, - 2022, - 2023, - 2024, - 2025 + 2022 ] }, { - "slug": "sugar-labs", - "name": "Sugar Labs", + "slug": "plone-foundation", + "name": "Plone Foundation", "first_year": 2016, "last_year": 2025, - "total_projects": 89, - "is_currently_active": true, + "total_projects": 26, + "is_currently_active": false, "active_years": [ 2016, 2017, 2018, - 2019, - 2020, - 2021, 2022, 2023, 2024, 2025 ] + }, + { + "slug": "github", + "name": "GitHub", + "first_year": 2016, + "last_year": 2016, + "total_projects": 4, + "is_currently_active": false, + "active_years": [ + 2016 + ] + }, + { + "slug": "phpbb-forum-software", + "name": "phpBB Forum Software", + "first_year": 2017, + "last_year": 2018, + "total_projects": 4, + "is_currently_active": false, + "active_years": [ + 2017, + 2018 + ] + }, + { + "slug": "meshery", + "name": "Meshery", + "first_year": 2025, + "last_year": 2026, + "total_projects": 2, + "is_currently_active": true, + "active_years": [ + 2025, + 2026 + ] } ], "yearlyStats": { @@ -181,10 +185,14 @@ "2025": { "organizationCount": 4, "projectCount": 35 + }, + "2026": { + "organizationCount": 3, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.084Z" + "generated_at": "2026-02-19T13:36:01.622Z" } } \ No newline at end of file diff --git a/new-api-details/topics/color-management.json b/new-api-details/topics/color-management.json index c9f2b7e2..e514b532 100644 --- a/new-api-details/topics/color-management.json +++ b/new-api-details/topics/color-management.json @@ -1,7 +1,7 @@ { "slug": "color-management", "name": "color management", - "published_at": "2026-01-25T16:06:28.428Z", + "published_at": "2026-02-19T13:36:00.365Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.428Z" + "generated_at": "2026-02-19T13:36:00.365Z" } } \ No newline at end of file diff --git a/new-api-details/topics/combinatorics.json b/new-api-details/topics/combinatorics.json index ecedcbca..800e863c 100644 --- a/new-api-details/topics/combinatorics.json +++ b/new-api-details/topics/combinatorics.json @@ -1,10 +1,11 @@ { "slug": "combinatorics", "name": "combinatorics", - "published_at": "2026-01-25T16:06:29.610Z", + "published_at": "2026-02-19T13:36:02.807Z", "organizationCount": 1, "projectCount": 55, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "sagemath", "name": "SageMath", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 55, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.610Z" + "generated_at": "2026-02-19T13:36:02.807Z" } } \ No newline at end of file diff --git a/new-api-details/topics/command-line.json b/new-api-details/topics/command-line.json index c7b26cbd..cdc86c5f 100644 --- a/new-api-details/topics/command-line.json +++ b/new-api-details/topics/command-line.json @@ -1,10 +1,11 @@ { "slug": "command-line", "name": "command line", - "published_at": "2026-01-25T16:06:29.051Z", + "published_at": "2026-02-19T13:36:01.687Z", "organizationCount": 2, "projectCount": 66, "years": [ + 2026, 2024, 2023, 2020, @@ -18,9 +19,9 @@ "slug": "gnu-project", "name": "GNU Project", "first_year": 2016, - "last_year": 2024, + "last_year": 2026, "total_projects": 59, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -28,7 +29,8 @@ 2019, 2020, 2023, - 2024 + 2024, + 2026 ] }, { @@ -74,10 +76,14 @@ "2024": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.051Z" + "generated_at": "2026-02-19T13:36:01.687Z" } } \ No newline at end of file diff --git a/new-api-details/topics/communication-protocols.json b/new-api-details/topics/communication-protocols.json index 0dbc8b04..df130530 100644 --- a/new-api-details/topics/communication-protocols.json +++ b/new-api-details/topics/communication-protocols.json @@ -1,10 +1,11 @@ { "slug": "communication-protocols", "name": "Communication Protocols", - "published_at": "2026-01-25T16:06:29.274Z", + "published_at": "2026-02-19T13:36:02.177Z", "organizationCount": 1, "projectCount": 7, "years": [ + 2026, 2024, 2022, 2021 @@ -14,13 +15,14 @@ "slug": "librecube-initiative", "name": "LibreCube Initiative", "first_year": 2021, - "last_year": 2024, + "last_year": 2026, "total_projects": 7, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2021, 2022, - 2024 + 2024, + 2026 ] } ], @@ -36,10 +38,14 @@ "2024": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.274Z" + "generated_at": "2026-02-19T13:36:02.177Z" } } \ No newline at end of file diff --git a/new-api-details/topics/communication-system.json b/new-api-details/topics/communication-system.json index 1a364740..e1620412 100644 --- a/new-api-details/topics/communication-system.json +++ b/new-api-details/topics/communication-system.json @@ -1,7 +1,7 @@ { "slug": "communication-system", "name": "communication system", - "published_at": "2026-01-25T16:06:28.576Z", + "published_at": "2026-02-19T13:36:00.671Z", "organizationCount": 1, "projectCount": 19, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.576Z" + "generated_at": "2026-02-19T13:36:00.671Z" } } \ No newline at end of file diff --git a/new-api-details/topics/communication.json b/new-api-details/topics/communication.json index b37dde64..146325ed 100644 --- a/new-api-details/topics/communication.json +++ b/new-api-details/topics/communication.json @@ -1,10 +1,11 @@ { "slug": "communication", "name": "communication", - "published_at": "2026-01-25T16:06:28.855Z", - "organizationCount": 12, - "projectCount": 458, + "published_at": "2026-02-19T13:36:00.474Z", + "organizationCount": 13, + "projectCount": 575, "years": [ + 2026, 2025, 2024, 2023, @@ -18,48 +19,124 @@ ], "organizations": [ { - "slug": "discourse", - "name": "Discourse", + "slug": "kde-community", + "name": "KDE Community", "first_year": 2016, - "last_year": 2017, - "total_projects": 6, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 167, + "is_currently_active": true, "active_years": [ 2016, - 2017 + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "genivi-alliance", - "name": "GENIVI Alliance", + "slug": "aossie", + "name": "AOSSIE", "first_year": 2017, - "last_year": 2019, - "total_projects": 3, + "last_year": 2026, + "total_projects": 117, + "is_currently_active": true, + "active_years": [ + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ] + }, + { + "slug": "rocketchat", + "name": "rocket.chat", + "first_year": 2017, + "last_year": 2026, + "total_projects": 103, + "is_currently_active": true, + "active_years": [ + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ] + }, + { + "slug": "red-hen-lab", + "name": "Red Hen Lab", + "first_year": 2016, + "last_year": 2024, + "total_projects": 88, "is_currently_active": false, "active_years": [ + 2016, 2017, 2018, - 2019 + 2019, + 2020, + 2021, + 2022, + 2023, + 2024 ] }, { - "slug": "gnu-mailman-project", - "name": "GNU Mailman Project", + "slug": "matrixorg", + "name": "Matrix.org", "first_year": 2016, - "last_year": 2021, - "total_projects": 4, + "last_year": 2022, + "total_projects": 29, "is_currently_active": false, "active_years": [ 2016, + 2017, + 2018, 2019, - 2021 + 2020, + 2021, + 2022 + ] + }, + { + "slug": "submitty", + "name": "Submitty", + "first_year": 2018, + "last_year": 2026, + "total_projects": 19, + "is_currently_active": true, + "active_years": [ + 2018, + 2019, + 2020, + 2022, + 2023, + 2024, + 2026 ] }, { "slug": "gnu-radio", "name": "GNU Radio", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 18, "is_currently_active": true, "active_years": [ @@ -72,7 +149,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -81,7 +159,7 @@ "first_year": 2022, "last_year": 2025, "total_projects": 15, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2023, @@ -90,51 +168,28 @@ ] }, { - "slug": "k-9-mail", - "name": "K-9 Mail", - "first_year": 2017, + "slug": "discourse", + "name": "Discourse", + "first_year": 2016, "last_year": 2017, - "total_projects": 2, + "total_projects": 6, "is_currently_active": false, - "active_years": [ - 2017 - ] - }, - { - "slug": "kde-community", - "name": "KDE Community", - "first_year": 2016, - "last_year": 2025, - "total_projects": 167, - "is_currently_active": true, "active_years": [ 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2017 ] }, { - "slug": "matrixorg", - "name": "Matrix.org", + "slug": "gnu-mailman-project", + "name": "GNU Mailman Project", "first_year": 2016, - "last_year": 2022, - "total_projects": 29, + "last_year": 2021, + "total_projects": 4, "is_currently_active": false, "active_years": [ 2016, - 2017, - 2018, 2019, - 2020, - 2021, - 2022 + 2021 ] }, { @@ -150,57 +205,27 @@ ] }, { - "slug": "red-hen-lab", - "name": "Red Hen Lab", - "first_year": 2016, - "last_year": 2024, - "total_projects": 88, + "slug": "genivi-alliance", + "name": "GENIVI Alliance", + "first_year": 2017, + "last_year": 2019, + "total_projects": 3, "is_currently_active": false, "active_years": [ - 2016, 2017, 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024 + 2019 ] }, { - "slug": "rocketchat", - "name": "rocket.chat", + "slug": "k-9-mail", + "name": "K-9 Mail", "first_year": 2017, - "last_year": 2025, - "total_projects": 103, - "is_currently_active": true, - "active_years": [ - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 - ] - }, - { - "slug": "submitty", - "name": "Submitty", - "first_year": 2018, - "last_year": 2024, - "total_projects": 19, + "last_year": 2017, + "total_projects": 2, "is_currently_active": false, "active_years": [ - 2018, - 2019, - 2020, - 2022, - 2023, - 2024 + 2017 ] } ], @@ -210,44 +235,48 @@ "projectCount": 46 }, "2017": { - "organizationCount": 9, - "projectCount": 50 + "organizationCount": 10, + "projectCount": 63 }, "2018": { - "organizationCount": 8, - "projectCount": 43 + "organizationCount": 9, + "projectCount": 56 }, "2019": { - "organizationCount": 8, - "projectCount": 65 + "organizationCount": 9, + "projectCount": 83 }, "2020": { - "organizationCount": 6, - "projectCount": 44 + "organizationCount": 7, + "projectCount": 53 }, "2021": { - "organizationCount": 6, - "projectCount": 47 + "organizationCount": 7, + "projectCount": 58 }, "2022": { - "organizationCount": 7, - "projectCount": 42 + "organizationCount": 8, + "projectCount": 50 }, "2023": { - "organizationCount": 6, - "projectCount": 30 + "organizationCount": 7, + "projectCount": 36 }, "2024": { - "organizationCount": 6, - "projectCount": 49 + "organizationCount": 7, + "projectCount": 67 }, "2025": { - "organizationCount": 4, - "projectCount": 42 + "organizationCount": 5, + "projectCount": 63 + }, + "2026": { + "organizationCount": 5, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.855Z" + "generated_at": "2026-02-19T13:36:00.474Z" } } \ No newline at end of file diff --git a/new-api-details/topics/communications-engineering.json b/new-api-details/topics/communications-engineering.json index ffb545bc..c6abd570 100644 --- a/new-api-details/topics/communications-engineering.json +++ b/new-api-details/topics/communications-engineering.json @@ -1,10 +1,11 @@ { "slug": "communications-engineering", "name": "communications engineering", - "published_at": "2026-01-25T16:06:29.031Z", + "published_at": "2026-02-19T13:36:01.656Z", "organizationCount": 2, "projectCount": 46, "years": [ + 2026, 2025, 2024, 2023, @@ -23,7 +24,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 28, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -40,7 +41,7 @@ "slug": "gnu-radio", "name": "GNU Radio", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 18, "is_currently_active": true, "active_years": [ @@ -53,7 +54,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -97,10 +99,14 @@ "2025": { "organizationCount": 2, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.031Z" + "generated_at": "2026-02-19T13:36:01.656Z" } } \ No newline at end of file diff --git a/new-api-details/topics/communications.json b/new-api-details/topics/communications.json index f4fd8848..4fd57ac9 100644 --- a/new-api-details/topics/communications.json +++ b/new-api-details/topics/communications.json @@ -1,10 +1,11 @@ { "slug": "communications", "name": "communications", - "published_at": "2026-01-25T16:06:28.824Z", + "published_at": "2026-02-19T13:36:01.162Z", "organizationCount": 8, "projectCount": 281, "years": [ + 2026, 2025, 2024, 2023, @@ -18,52 +19,42 @@ ], "organizations": [ { - "slug": "debian", - "name": "Debian", - "first_year": 2016, - "last_year": 2025, - "total_projects": 78, + "slug": "rocketchat", + "name": "rocket.chat", + "first_year": 2017, + "last_year": 2026, + "total_projects": 103, "is_currently_active": true, "active_years": [ - 2016, + 2017, 2018, 2019, 2020, 2021, 2022, + 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "gnss-sdr", - "name": "GNSS-SDR", + "slug": "debian", + "name": "Debian", "first_year": 2016, - "last_year": 2025, - "total_projects": 28, + "last_year": 2026, + "total_projects": 78, "is_currently_active": true, "active_years": [ 2016, - 2017, 2018, 2019, 2020, 2021, 2022, 2024, - 2025 - ] - }, - { - "slug": "grpc", - "name": "gRPC", - "first_year": 2016, - "last_year": 2018, - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2016, - 2018 + 2025, + 2026 ] }, { @@ -84,47 +75,35 @@ ] }, { - "slug": "plone-foundation", - "name": "Plone Foundation", + "slug": "gnss-sdr", + "name": "GNSS-SDR", "first_year": 2016, "last_year": 2025, - "total_projects": 26, - "is_currently_active": true, + "total_projects": 28, + "is_currently_active": false, "active_years": [ 2016, 2017, 2018, + 2019, + 2020, + 2021, 2022, - 2023, 2024, 2025 ] }, { - "slug": "read-the-docs", - "name": "Read the Docs", - "first_year": 2018, - "last_year": 2019, - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2018, - 2019 - ] - }, - { - "slug": "rocketchat", - "name": "rocket.chat", - "first_year": 2017, + "slug": "plone-foundation", + "name": "Plone Foundation", + "first_year": 2016, "last_year": 2025, - "total_projects": 103, - "is_currently_active": true, + "total_projects": 26, + "is_currently_active": false, "active_years": [ + 2016, 2017, 2018, - 2019, - 2020, - 2021, 2022, 2023, 2024, @@ -146,6 +125,30 @@ 2023, 2024 ] + }, + { + "slug": "grpc", + "name": "gRPC", + "first_year": 2016, + "last_year": 2018, + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2016, + 2018 + ] + }, + { + "slug": "read-the-docs", + "name": "Read the Docs", + "first_year": 2018, + "last_year": 2019, + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2018, + 2019 + ] } ], "yearlyStats": { @@ -188,10 +191,14 @@ "2025": { "organizationCount": 4, "projectCount": 34 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.824Z" + "generated_at": "2026-02-19T13:36:01.162Z" } } \ No newline at end of file diff --git a/new-api-details/topics/community-architecture.json b/new-api-details/topics/community-architecture.json index 4a96b320..5129f5a3 100644 --- a/new-api-details/topics/community-architecture.json +++ b/new-api-details/topics/community-architecture.json @@ -1,7 +1,7 @@ { "slug": "community-architecture", "name": "community architecture", - "published_at": "2026-01-25T16:06:28.951Z", + "published_at": "2026-02-19T13:36:01.275Z", "organizationCount": 1, "projectCount": 27, "years": [ @@ -19,7 +19,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.951Z" + "generated_at": "2026-02-19T13:36:01.275Z" } } \ No newline at end of file diff --git a/new-api-details/topics/community-building.json b/new-api-details/topics/community-building.json index 06ae83f9..7139ce8a 100644 --- a/new-api-details/topics/community-building.json +++ b/new-api-details/topics/community-building.json @@ -1,7 +1,7 @@ { "slug": "community-building", "name": "community building", - "published_at": "2026-01-25T16:06:28.663Z", + "published_at": "2026-02-19T13:36:00.999Z", "organizationCount": 1, "projectCount": 29, "years": [ @@ -19,7 +19,7 @@ "first_year": 2018, "last_year": 2025, "total_projects": 29, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2018, 2019, @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.663Z" + "generated_at": "2026-02-19T13:36:00.999Z" } } \ No newline at end of file diff --git a/new-api-details/topics/community-health.json b/new-api-details/topics/community-health.json index 206f7cba..f68fa2a1 100644 --- a/new-api-details/topics/community-health.json +++ b/new-api-details/topics/community-health.json @@ -1,7 +1,7 @@ { "slug": "community-health", "name": "community health", - "published_at": "2026-01-25T16:06:28.660Z", + "published_at": "2026-02-19T13:36:00.991Z", "organizationCount": 1, "projectCount": 29, "years": [ @@ -19,7 +19,7 @@ "first_year": 2018, "last_year": 2025, "total_projects": 29, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2018, 2019, @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.660Z" + "generated_at": "2026-02-19T13:36:00.991Z" } } \ No newline at end of file diff --git a/new-api-details/topics/community-science.json b/new-api-details/topics/community-science.json index c4bbb17f..03034acd 100644 --- a/new-api-details/topics/community-science.json +++ b/new-api-details/topics/community-science.json @@ -1,7 +1,7 @@ { "slug": "community-science", "name": "community science", - "published_at": "2026-01-25T16:06:29.518Z", + "published_at": "2026-02-19T13:36:02.660Z", "organizationCount": 1, "projectCount": 10, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.518Z" + "generated_at": "2026-02-19T13:36:02.660Z" } } \ No newline at end of file diff --git a/new-api-details/topics/community.json b/new-api-details/topics/community.json index 31ccabab..7ffee724 100644 --- a/new-api-details/topics/community.json +++ b/new-api-details/topics/community.json @@ -1,10 +1,11 @@ { "slug": "community", "name": "community", - "published_at": "2026-01-25T16:06:28.657Z", + "published_at": "2026-02-19T13:36:00.989Z", "organizationCount": 10, "projectCount": 433, "years": [ + 2026, 2025, 2024, 2023, @@ -18,26 +19,30 @@ ], "organizations": [ { - "slug": "chaoss", - "name": "CHAOSS", - "first_year": 2018, - "last_year": 2025, - "total_projects": 29, + "slug": "rocketchat", + "name": "rocket.chat", + "first_year": 2017, + "last_year": 2026, + "total_projects": 103, "is_currently_active": true, "active_years": [ + 2017, 2018, 2019, 2020, 2021, 2022, - 2025 + 2023, + 2024, + 2025, + 2026 ] }, { "slug": "debian", "name": "Debian", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 78, "is_currently_active": true, "active_years": [ @@ -48,43 +53,16 @@ 2021, 2022, 2024, - 2025 - ] - }, - { - "slug": "discourse", - "name": "Discourse", - "first_year": 2016, - "last_year": 2017, - "total_projects": 6, - "is_currently_active": false, - "active_years": [ - 2016, - 2017 + 2025, + 2026 ] }, { - "slug": "fedora-project", - "name": "Fedora Project", - "first_year": 2016, - "last_year": 2025, - "total_projects": 27, - "is_currently_active": true, - "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2025 - ] - }, - { - "slug": "metabrainz-foundation-inc", - "name": "MetaBrainz Foundation Inc", + "slug": "oppia-foundation", + "name": "Oppia Foundation", "first_year": 2016, - "last_year": 2025, - "total_projects": 60, + "last_year": 2026, + "total_projects": 77, "is_currently_active": true, "active_years": [ 2016, @@ -96,15 +74,16 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "oppia-foundation", - "name": "Oppia Foundation", + "slug": "metabrainz-foundation-inc", + "name": "MetaBrainz Foundation Inc", "first_year": 2016, - "last_year": 2025, - "total_projects": 77, + "last_year": 2026, + "total_projects": 60, "is_currently_active": true, "active_years": [ 2016, @@ -116,19 +95,8 @@ 2022, 2023, 2024, - 2025 - ] - }, - { - "slug": "phpbb-forum-software", - "name": "phpBB Forum Software", - "first_year": 2017, - "last_year": 2018, - "total_projects": 4, - "is_currently_active": false, - "active_years": [ - 2017, - 2018 + 2025, + 2026 ] }, { @@ -148,21 +116,34 @@ ] }, { - "slug": "rocketchat", - "name": "rocket.chat", - "first_year": 2017, + "slug": "chaoss", + "name": "CHAOSS", + "first_year": 2018, "last_year": 2025, - "total_projects": 103, - "is_currently_active": true, + "total_projects": 29, + "is_currently_active": false, "active_years": [ - 2017, 2018, 2019, 2020, 2021, 2022, - 2023, - 2024, + 2025 + ] + }, + { + "slug": "fedora-project", + "name": "Fedora Project", + "first_year": 2016, + "last_year": 2025, + "total_projects": 27, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, 2025 ] }, @@ -176,6 +157,30 @@ "active_years": [ 2018 ] + }, + { + "slug": "discourse", + "name": "Discourse", + "first_year": 2016, + "last_year": 2017, + "total_projects": 6, + "is_currently_active": false, + "active_years": [ + 2016, + 2017 + ] + }, + { + "slug": "phpbb-forum-software", + "name": "phpBB Forum Software", + "first_year": 2017, + "last_year": 2018, + "total_projects": 4, + "is_currently_active": false, + "active_years": [ + 2017, + 2018 + ] } ], "yearlyStats": { @@ -218,10 +223,14 @@ "2025": { "organizationCount": 6, "projectCount": 45 + }, + "2026": { + "organizationCount": 4, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.657Z" + "generated_at": "2026-02-19T13:36:00.989Z" } } \ No newline at end of file diff --git a/new-api-details/topics/compatibility.json b/new-api-details/topics/compatibility.json index 265c4847..5a14ae08 100644 --- a/new-api-details/topics/compatibility.json +++ b/new-api-details/topics/compatibility.json @@ -1,7 +1,7 @@ { "slug": "compatibility", "name": "compatibility", - "published_at": "2026-01-25T16:06:29.732Z", + "published_at": "2026-02-19T13:36:02.997Z", "organizationCount": 1, "projectCount": 4, "years": [ @@ -52,6 +52,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.732Z" + "generated_at": "2026-02-19T13:36:02.997Z" } } \ No newline at end of file diff --git a/new-api-details/topics/compilation.json b/new-api-details/topics/compilation.json index 30d837a3..2937f4f8 100644 --- a/new-api-details/topics/compilation.json +++ b/new-api-details/topics/compilation.json @@ -1,7 +1,7 @@ { "slug": "compilation", "name": "compilation", - "published_at": "2026-01-25T16:06:28.626Z", + "published_at": "2026-02-19T13:36:00.894Z", "organizationCount": 1, "projectCount": 1, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.626Z" + "generated_at": "2026-02-19T13:36:00.894Z" } } \ No newline at end of file diff --git a/new-api-details/topics/compiler-api.json b/new-api-details/topics/compiler-api.json index d7ca8a4f..44701be7 100644 --- a/new-api-details/topics/compiler-api.json +++ b/new-api-details/topics/compiler-api.json @@ -1,10 +1,11 @@ { "slug": "compiler-api", "name": "compiler api", - "published_at": "2026-01-25T16:06:29.257Z", + "published_at": "2026-02-19T13:36:02.204Z", "organizationCount": 1, "projectCount": 122, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "llvm-compiler-infrastructure", "name": "LLVM Compiler Infrastructure", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 122, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 15 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.257Z" + "generated_at": "2026-02-19T13:36:02.204Z" } } \ No newline at end of file diff --git a/new-api-details/topics/compiler.json b/new-api-details/topics/compiler.json index 3a1f8f60..3579a0c8 100644 --- a/new-api-details/topics/compiler.json +++ b/new-api-details/topics/compiler.json @@ -1,10 +1,11 @@ { "slug": "compiler", "name": "compiler", - "published_at": "2026-01-25T16:06:29.067Z", + "published_at": "2026-02-19T13:36:01.735Z", "organizationCount": 9, "projectCount": 536, "years": [ + 2026, 2025, 2024, 2023, @@ -18,24 +19,31 @@ ], "organizations": [ { - "slug": "grame", - "name": "GRAME", - "first_year": 2022, - "last_year": 2025, - "total_projects": 10, + "slug": "python-software-foundation", + "name": "Python Software Foundation", + "first_year": 2016, + "last_year": 2026, + "total_projects": 277, "is_currently_active": true, "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "llvm-compiler-infrastructure", "name": "LLVM Compiler Infrastructure", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 122, "is_currently_active": true, "active_years": [ @@ -48,45 +56,21 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "mono-project", - "name": "Mono Project", - "first_year": 2017, - "last_year": 2017, - "total_projects": 9, - "is_currently_active": false, - "active_years": [ - 2017 - ] - }, - { - "slug": "mypy", - "name": "mypy", - "first_year": 2020, - "last_year": 2021, - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2020, - 2021 - ] - }, - { - "slug": "python-software-foundation", - "name": "Python Software Foundation", + "slug": "scala-center", + "name": "Scala Center", "first_year": 2016, "last_year": 2025, - "total_projects": 277, - "is_currently_active": true, + "total_projects": 56, + "is_currently_active": false, "active_years": [ 2016, 2017, 2018, - 2019, - 2020, 2021, 2022, 2023, @@ -98,7 +82,7 @@ "slug": "qemu", "name": "QEMU", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 41, "is_currently_active": true, "active_years": [ @@ -110,25 +94,34 @@ 2021, 2022, 2023, - 2025 + 2025, + 2026 ] }, { - "slug": "scala-center", - "name": "Scala Center", - "first_year": 2016, - "last_year": 2025, - "total_projects": 56, + "slug": "grame", + "name": "GRAME", + "first_year": 2022, + "last_year": 2026, + "total_projects": 10, "is_currently_active": true, "active_years": [ - 2016, - 2017, - 2018, - 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "mono-project", + "name": "Mono Project", + "first_year": 2017, + "last_year": 2017, + "total_projects": 9, + "is_currently_active": false, + "active_years": [ + 2017 ] }, { @@ -149,12 +142,25 @@ "slug": "the-p4-language-consortium", "name": "The P4 Language Consortium", "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "total_projects": 9, "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "mypy", + "name": "mypy", + "first_year": 2020, + "last_year": 2021, + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2020, + 2021 ] } ], @@ -198,10 +204,14 @@ "2025": { "organizationCount": 6, "projectCount": 59 + }, + "2026": { + "organizationCount": 5, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.067Z" + "generated_at": "2026-02-19T13:36:01.735Z" } } \ No newline at end of file diff --git a/new-api-details/topics/compilers.json b/new-api-details/topics/compilers.json index bfa92364..d92c35b8 100644 --- a/new-api-details/topics/compilers.json +++ b/new-api-details/topics/compilers.json @@ -1,10 +1,11 @@ { "slug": "compilers", "name": "compilers", - "published_at": "2026-01-25T16:06:28.433Z", - "organizationCount": 28, - "projectCount": 655, + "published_at": "2026-02-19T13:36:00.372Z", + "organizationCount": 30, + "projectCount": 714, "years": [ + 2026, 2025, 2024, 2023, @@ -18,99 +19,94 @@ ], "organizations": [ { - "slug": "accord-project", - "name": "Accord Project", - "first_year": 2020, - "last_year": 2025, - "total_projects": 13, + "slug": "llvm-compiler-infrastructure", + "name": "LLVM Compiler Infrastructure", + "first_year": 2016, + "last_year": 2026, + "total_projects": 122, "is_currently_active": true, "active_years": [ + 2016, + 2017, + 2018, + 2019, 2020, 2021, + 2022, + 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "babel", - "name": "Babel", - "first_year": 2017, - "last_year": 2017, - "total_projects": 2, - "is_currently_active": false, + "slug": "haskellorg", + "name": "Haskell.org", + "first_year": 2018, + "last_year": 2026, + "total_projects": 70, + "is_currently_active": true, "active_years": [ - 2017 + 2018, + 2019, + 2020, + 2021, + 2022, + 2024, + 2025, + 2026 ] }, { - "slug": "chapel", - "name": "Chapel", + "slug": "free-and-open-source-silicon-foundation", + "name": "Free and Open Source Silicon Foundation", "first_year": 2016, - "last_year": 2021, - "total_projects": 16, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 60, + "is_currently_active": true, "active_years": [ 2016, 2017, + 2018, 2019, 2020, - 2021 - ] - }, - { - "slug": "clojure", - "name": "Clojure", - "first_year": 2017, - "last_year": 2017, - "total_projects": 0, - "is_currently_active": false, - "active_years": [ - 2017 + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "d-language-foundation", - "name": "D Language Foundation", + "slug": "gnu-project", + "name": "GNU Project", "first_year": 2016, - "last_year": 2025, - "total_projects": 11, + "last_year": 2026, + "total_projects": 59, "is_currently_active": true, "active_years": [ 2016, + 2017, + 2018, 2019, - 2025 - ] - }, - { - "slug": "elm-software-foundation", - "name": "Elm Software Foundation", - "first_year": 2017, - "last_year": 2017, - "total_projects": 1, - "is_currently_active": false, - "active_years": [ - 2017 - ] - }, - { - "slug": "eta", - "name": "Eta", - "first_year": 2018, - "last_year": 2018, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2018 + 2020, + 2023, + 2024, + 2026 ] }, { - "slug": "fortran-lang", - "name": "Fortran-lang", - "first_year": 2021, + "slug": "scala-center", + "name": "Scala Center", + "first_year": 2016, "last_year": 2025, - "total_projects": 21, - "is_currently_active": true, + "total_projects": 56, + "is_currently_active": false, "active_years": [ + 2016, + 2017, + 2018, 2021, 2022, 2023, @@ -119,11 +115,11 @@ ] }, { - "slug": "free-and-open-source-silicon-foundation", - "name": "Free and Open Source Silicon Foundation", + "slug": "lablua", + "name": "LabLua", "first_year": 2016, - "last_year": 2025, - "total_projects": 60, + "last_year": 2026, + "total_projects": 43, "is_currently_active": true, "active_years": [ 2016, @@ -132,28 +128,36 @@ 2019, 2020, 2021, - 2022, - 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "gdevelop", - "name": "GDevelop", - "first_year": 2020, - "last_year": 2020, - "total_projects": 2, - "is_currently_active": false, + "slug": "qemu", + "name": "QEMU", + "first_year": 2016, + "last_year": 2026, + "total_projects": 41, + "is_currently_active": true, "active_years": [ - 2020 + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2025, + 2026 ] }, { "slug": "gnu-compiler-collection-gcc", "name": "GNU Compiler Collection (GCC)", "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "total_projects": 34, "is_currently_active": true, "active_years": [ @@ -164,38 +168,45 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "graphite", - "name": "Graphite", - "first_year": 2024, - "last_year": 2025, - "total_projects": 8, + "slug": "pharo-consortium", + "name": "Pharo Consortium", + "first_year": 2017, + "last_year": 2026, + "total_projects": 32, "is_currently_active": true, "active_years": [ - 2024, - 2025 + 2017, + 2019, + 2021, + 2023, + 2025, + 2026 ] }, { - "slug": "halide", - "name": "Halide", - "first_year": 2021, - "last_year": 2021, - "total_projects": 2, - "is_currently_active": false, + "slug": "the-rust-foundation", + "name": "The Rust Foundation", + "first_year": 2024, + "last_year": 2026, + "total_projects": 28, + "is_currently_active": true, "active_years": [ - 2021 + 2024, + 2025, + 2026 ] }, { - "slug": "haskellorg", - "name": "Haskell.org", + "slug": "swift", + "name": "Swift", "first_year": 2018, - "last_year": 2025, - "total_projects": 70, + "last_year": 2026, + "total_projects": 26, "is_currently_active": true, "active_years": [ 2018, @@ -203,59 +214,98 @@ 2020, 2021, 2022, + 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "fortran-lang", + "name": "Fortran-lang", + "first_year": 2021, + "last_year": 2026, + "total_projects": 21, + "is_currently_active": true, + "active_years": [ + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ] + }, + { + "slug": "chapel", + "name": "Chapel", + "first_year": 2016, + "last_year": 2021, + "total_projects": 16, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2019, + 2020, + 2021 ] }, { "slug": "kotlin-foundation", "name": "Kotlin Foundation", "first_year": 2023, - "last_year": 2025, + "last_year": 2026, "total_projects": 16, "is_currently_active": true, "active_years": [ 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "lablua", - "name": "LabLua", - "first_year": 2016, - "last_year": 2025, - "total_projects": 43, + "slug": "accord-project", + "name": "Accord Project", + "first_year": 2020, + "last_year": 2026, + "total_projects": 13, "is_currently_active": true, "active_years": [ - 2016, - 2017, - 2018, - 2019, 2020, 2021, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "llvm-compiler-infrastructure", - "name": "LLVM Compiler Infrastructure", + "slug": "ruby-science-foundation", + "name": "Ruby Science Foundation", "first_year": 2016, - "last_year": 2025, - "total_projects": 122, - "is_currently_active": true, + "last_year": 2019, + "total_projects": 13, + "is_currently_active": false, "active_years": [ 2016, 2017, 2018, + 2019 + ] + }, + { + "slug": "d-language-foundation", + "name": "D Language Foundation", + "first_year": 2016, + "last_year": 2026, + "total_projects": 11, + "is_currently_active": true, + "active_years": [ + 2016, 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2025, + 2026 ] }, { @@ -272,32 +322,46 @@ ] }, { - "slug": "mypy", - "name": "mypy", - "first_year": 2020, - "last_year": 2021, - "total_projects": 3, - "is_currently_active": false, + "slug": "webpack", + "name": "webpack", + "first_year": 2018, + "last_year": 2026, + "total_projects": 10, + "is_currently_active": true, "active_years": [ + 2018, + 2019, 2020, - 2021 + 2024, + 2025, + 2026 ] }, { - "slug": "pharo-consortium", - "name": "Pharo Consortium", - "first_year": 2017, + "slug": "unicode-inc", + "name": "Unicode, Inc.", + "first_year": 2024, "last_year": 2025, - "total_projects": 32, - "is_currently_active": true, + "total_projects": 9, + "is_currently_active": false, "active_years": [ - 2017, - 2019, - 2021, - 2023, + 2024, 2025 ] }, + { + "slug": "graphite", + "name": "Graphite", + "first_year": 2024, + "last_year": 2026, + "total_projects": 8, + "is_currently_active": true, + "active_years": [ + 2024, + 2025, + 2026 + ] + }, { "slug": "polly-labs", "name": "Polly Labs", @@ -311,134 +375,115 @@ ] }, { - "slug": "qemu", - "name": "QEMU", - "first_year": 2016, - "last_year": 2025, - "total_projects": 41, - "is_currently_active": true, + "slug": "mypy", + "name": "mypy", + "first_year": 2020, + "last_year": 2021, + "total_projects": 3, + "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2019, 2020, - 2021, - 2022, - 2023, - 2025 + 2021 ] }, { - "slug": "ruby-science-foundation", - "name": "Ruby Science Foundation", - "first_year": 2016, - "last_year": 2019, - "total_projects": 13, + "slug": "babel", + "name": "Babel", + "first_year": 2017, + "last_year": 2017, + "total_projects": 2, "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2019 + 2017 ] }, { - "slug": "scala-center", - "name": "Scala Center", - "first_year": 2016, - "last_year": 2025, - "total_projects": 56, - "is_currently_active": true, + "slug": "eta", + "name": "Eta", + "first_year": 2018, + "last_year": 2018, + "total_projects": 2, + "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2021, - 2022, - 2023, - 2024, - 2025 + 2018 ] }, { - "slug": "swift", - "name": "Swift", - "first_year": 2018, - "last_year": 2025, - "total_projects": 26, - "is_currently_active": true, + "slug": "gdevelop", + "name": "GDevelop", + "first_year": 2020, + "last_year": 2020, + "total_projects": 2, + "is_currently_active": false, "active_years": [ - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2020 ] }, { - "slug": "the-rust-foundation", - "name": "The Rust Foundation", - "first_year": 2024, - "last_year": 2025, - "total_projects": 28, - "is_currently_active": true, + "slug": "halide", + "name": "Halide", + "first_year": 2021, + "last_year": 2021, + "total_projects": 2, + "is_currently_active": false, "active_years": [ - 2024, - 2025 + 2021 ] }, { - "slug": "unicode-inc", - "name": "Unicode, Inc.", - "first_year": 2024, - "last_year": 2025, - "total_projects": 9, - "is_currently_active": true, + "slug": "elm-software-foundation", + "name": "Elm Software Foundation", + "first_year": 2017, + "last_year": 2017, + "total_projects": 1, + "is_currently_active": false, "active_years": [ - 2024, - 2025 + 2017 ] }, { - "slug": "webpack", - "name": "webpack", - "first_year": 2018, - "last_year": 2025, - "total_projects": 10, + "slug": "boa", + "name": "Boa", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, "is_currently_active": true, "active_years": [ - 2018, - 2019, - 2020, - 2024, - 2025 + 2026 + ] + }, + { + "slug": "clojure", + "name": "Clojure", + "first_year": 2017, + "last_year": 2017, + "total_projects": 0, + "is_currently_active": false, + "active_years": [ + 2017 ] } ], "yearlyStats": { "2016": { - "organizationCount": 10, - "projectCount": 56 + "organizationCount": 11, + "projectCount": 71 }, "2017": { - "organizationCount": 14, - "projectCount": 57 + "organizationCount": 15, + "projectCount": 70 }, "2018": { - "organizationCount": 14, - "projectCount": 68 + "organizationCount": 15, + "projectCount": 77 }, "2019": { - "organizationCount": 13, - "projectCount": 80 + "organizationCount": 14, + "projectCount": 85 }, "2020": { - "organizationCount": 14, - "projectCount": 70 + "organizationCount": 15, + "projectCount": 77 }, "2021": { "organizationCount": 16, @@ -449,20 +494,24 @@ "projectCount": 66 }, "2023": { - "organizationCount": 10, - "projectCount": 65 + "organizationCount": 11, + "projectCount": 72 }, "2024": { - "organizationCount": 16, - "projectCount": 89 + "organizationCount": 17, + "projectCount": 92 }, "2025": { "organizationCount": 19, "projectCount": 136 + }, + "2026": { + "organizationCount": 18, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.433Z" + "generated_at": "2026-02-19T13:36:00.372Z" } } \ No newline at end of file diff --git a/new-api-details/topics/compliance-automation.json b/new-api-details/topics/compliance-automation.json index d45a28ef..65f5ce33 100644 --- a/new-api-details/topics/compliance-automation.json +++ b/new-api-details/topics/compliance-automation.json @@ -1,10 +1,11 @@ { "slug": "compliance-automation", "name": "compliance automation", - "published_at": "2026-01-25T16:06:28.946Z", + "published_at": "2026-02-19T13:36:01.521Z", "organizationCount": 2, "projectCount": 44, "years": [ + 2026, 2025, 2024, 2023, @@ -19,7 +20,7 @@ "slug": "fossology", "name": "FOSSology", "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "total_projects": 42, "is_currently_active": true, "active_years": [ @@ -30,18 +31,20 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "sw360", "name": "SW360", "first_year": 2025, - "last_year": 2025, + "last_year": 2026, "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] } ], @@ -77,10 +80,14 @@ "2025": { "organizationCount": 2, "projectCount": 12 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.946Z" + "generated_at": "2026-02-19T13:36:01.521Z" } } \ No newline at end of file diff --git a/new-api-details/topics/compliance.json b/new-api-details/topics/compliance.json index bc85a078..f1147baa 100644 --- a/new-api-details/topics/compliance.json +++ b/new-api-details/topics/compliance.json @@ -1,10 +1,11 @@ { "slug": "compliance", "name": "compliance", - "published_at": "2026-01-25T16:06:28.937Z", + "published_at": "2026-02-19T13:36:01.501Z", "organizationCount": 2, "projectCount": 71, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "fossology", "name": "FOSSology", "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "total_projects": 42, "is_currently_active": true, "active_years": [ @@ -31,7 +32,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -88,10 +90,14 @@ "2025": { "organizationCount": 1, "projectCount": 10 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.937Z" + "generated_at": "2026-02-19T13:36:01.501Z" } } \ No newline at end of file diff --git a/new-api-details/topics/component-based-development.json b/new-api-details/topics/component-based-development.json index 12764a75..6327df35 100644 --- a/new-api-details/topics/component-based-development.json +++ b/new-api-details/topics/component-based-development.json @@ -1,7 +1,7 @@ { "slug": "component-based-development", "name": "component-based development", - "published_at": "2026-01-25T16:06:29.597Z", + "published_at": "2026-02-19T13:36:02.790Z", "organizationCount": 1, "projectCount": 57, "years": [ @@ -64,6 +64,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.597Z" + "generated_at": "2026-02-19T13:36:02.790Z" } } \ No newline at end of file diff --git a/new-api-details/topics/component-repository.json b/new-api-details/topics/component-repository.json index 6012695c..6b2bf1e8 100644 --- a/new-api-details/topics/component-repository.json +++ b/new-api-details/topics/component-repository.json @@ -1,10 +1,11 @@ { "slug": "component-repository", "name": "component repository", - "published_at": "2026-01-25T16:06:29.607Z", + "published_at": "2026-02-19T13:36:02.869Z", "organizationCount": 1, "projectCount": 2, "years": [ + 2026, 2025 ], "organizations": [ @@ -12,11 +13,12 @@ "slug": "sw360", "name": "SW360", "first_year": 2025, - "last_year": 2025, + "last_year": 2026, "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] } ], @@ -24,10 +26,14 @@ "2025": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.607Z" + "generated_at": "2026-02-19T13:36:02.869Z" } } \ No newline at end of file diff --git a/new-api-details/topics/component-testing.json b/new-api-details/topics/component-testing.json index 400fd22a..a9dd9ba6 100644 --- a/new-api-details/topics/component-testing.json +++ b/new-api-details/topics/component-testing.json @@ -1,7 +1,7 @@ { "slug": "component-testing", "name": "Component testing", - "published_at": "2026-01-25T16:06:29.409Z", + "published_at": "2026-02-19T13:36:02.418Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.409Z" + "generated_at": "2026-02-19T13:36:02.418Z" } } \ No newline at end of file diff --git a/new-api-details/topics/components.json b/new-api-details/topics/components.json index b0db8e72..72bd8e5a 100644 --- a/new-api-details/topics/components.json +++ b/new-api-details/topics/components.json @@ -1,7 +1,7 @@ { "slug": "components", "name": "components", - "published_at": "2026-01-25T16:06:29.356Z", + "published_at": "2026-02-19T13:36:02.308Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.356Z" + "generated_at": "2026-02-19T13:36:02.308Z" } } \ No newline at end of file diff --git a/new-api-details/topics/composing.json b/new-api-details/topics/composing.json index a0336322..654905a0 100644 --- a/new-api-details/topics/composing.json +++ b/new-api-details/topics/composing.json @@ -1,7 +1,7 @@ { "slug": "composing", "name": "composing", - "published_at": "2026-01-25T16:06:29.386Z", + "published_at": "2026-02-19T13:36:02.374Z", "organizationCount": 1, "projectCount": 24, "years": [ @@ -76,6 +76,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.386Z" + "generated_at": "2026-02-19T13:36:02.374Z" } } \ No newline at end of file diff --git a/new-api-details/topics/compostion-ai.json b/new-api-details/topics/compostion-ai.json new file mode 100644 index 00000000..c7cce88a --- /dev/null +++ b/new-api-details/topics/compostion-ai.json @@ -0,0 +1,33 @@ +{ + "slug": "compostion-ai", + "name": "Compostion AI", + "published_at": "2026-02-19T13:36:02.335Z", + "organizationCount": 1, + "projectCount": 0, + "years": [ + 2026 + ], + "organizations": [ + { + "slug": "mofa-org", + "name": "MoFA Org", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + } + ], + "yearlyStats": { + "2026": { + "organizationCount": 1, + "projectCount": 0 + } + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:36:02.335Z" + } +} \ No newline at end of file diff --git a/new-api-details/topics/compress.json b/new-api-details/topics/compress.json index f324e547..c781e09d 100644 --- a/new-api-details/topics/compress.json +++ b/new-api-details/topics/compress.json @@ -1,7 +1,7 @@ { "slug": "compress", "name": "compress", - "published_at": "2026-01-25T16:06:29.156Z", + "published_at": "2026-02-19T13:36:01.824Z", "organizationCount": 1, "projectCount": 12, "years": [ @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.156Z" + "generated_at": "2026-02-19T13:36:01.824Z" } } \ No newline at end of file diff --git a/new-api-details/topics/compressio.json b/new-api-details/topics/compressio.json index 2761e44a..e4ca0107 100644 --- a/new-api-details/topics/compressio.json +++ b/new-api-details/topics/compressio.json @@ -1,10 +1,11 @@ { "slug": "compressio", "name": "compressio", - "published_at": "2026-01-25T16:06:28.916Z", + "published_at": "2026-02-19T13:36:01.356Z", "organizationCount": 1, "projectCount": 49, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "ffmpeg", "name": "FFmpeg", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 49, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.916Z" + "generated_at": "2026-02-19T13:36:01.356Z" } } \ No newline at end of file diff --git a/new-api-details/topics/compression.json b/new-api-details/topics/compression.json index 39b4d9b9..649672fa 100644 --- a/new-api-details/topics/compression.json +++ b/new-api-details/topics/compression.json @@ -1,10 +1,11 @@ { "slug": "compression", "name": "compression", - "published_at": "2026-01-25T16:06:28.541Z", + "published_at": "2026-02-19T13:36:00.640Z", "organizationCount": 3, "projectCount": 70, "years": [ + 2026, 2025, 2024, 2023, @@ -17,23 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "audacity", - "name": "Audacity", - "first_year": 2021, - "last_year": 2022, - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2021, - 2022 - ] - }, { "slug": "ffmpeg", "name": "FFmpeg", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 49, "is_currently_active": true, "active_years": [ @@ -46,14 +35,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "kiwix", "name": "Kiwix", "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "total_projects": 18, "is_currently_active": true, "active_years": [ @@ -63,7 +53,20 @@ 2021, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "audacity", + "name": "Audacity", + "first_year": 2021, + "last_year": 2022, + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2021, + 2022 ] } ], @@ -107,10 +110,14 @@ "2025": { "organizationCount": 2, "projectCount": 6 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.541Z" + "generated_at": "2026-02-19T13:36:00.640Z" } } \ No newline at end of file diff --git a/new-api-details/topics/computation-geometry.json b/new-api-details/topics/computation-geometry.json index a5fe06e4..e06dcfc7 100644 --- a/new-api-details/topics/computation-geometry.json +++ b/new-api-details/topics/computation-geometry.json @@ -1,10 +1,11 @@ { "slug": "computation-geometry", "name": "computation geometry", - "published_at": "2026-01-25T16:06:28.656Z", + "published_at": "2026-02-19T13:36:00.988Z", "organizationCount": 2, "projectCount": 88, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "cgal-project", "name": "CGAL Project", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 58, "is_currently_active": true, "active_years": [ @@ -32,14 +33,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "geomscale", "name": "GeomScale", "first_year": 2020, - "last_year": 2025, + "last_year": 2026, "total_projects": 30, "is_currently_active": true, "active_years": [ @@ -48,7 +50,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -88,10 +91,14 @@ "2025": { "organizationCount": 2, "projectCount": 11 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.656Z" + "generated_at": "2026-02-19T13:36:00.988Z" } } \ No newline at end of file diff --git a/new-api-details/topics/computation-graph.json b/new-api-details/topics/computation-graph.json index 9072fc5c..2c918bd2 100644 --- a/new-api-details/topics/computation-graph.json +++ b/new-api-details/topics/computation-graph.json @@ -1,7 +1,7 @@ { "slug": "computation-graph", "name": "computation graph", - "published_at": "2026-01-25T16:06:29.192Z", + "published_at": "2026-02-19T13:36:01.996Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.192Z" + "generated_at": "2026-02-19T13:36:01.996Z" } } \ No newline at end of file diff --git a/new-api-details/topics/computational-biology.json b/new-api-details/topics/computational-biology.json index bdd6a84b..4efbf666 100644 --- a/new-api-details/topics/computational-biology.json +++ b/new-api-details/topics/computational-biology.json @@ -1,10 +1,11 @@ { "slug": "computational-biology", "name": "computational biology", - "published_at": "2026-01-25T16:06:28.593Z", + "published_at": "2026-02-19T13:36:00.725Z", "organizationCount": 5, "projectCount": 123, "years": [ + 2026, 2025, 2024, 2023, @@ -18,35 +19,27 @@ ], "organizations": [ { - "slug": "biogears", - "name": "BioGears", - "first_year": 2020, - "last_year": 2020, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2020 - ] - }, - { - "slug": "computational-biology-university-of-nebraska-lincoln", - "name": "Computational Biology @ University of Nebraska-Lincoln", + "slug": "open-bioinformatics-foundation-obf", + "name": "Open Bioinformatics Foundation (OBF)", "first_year": 2016, - "last_year": 2019, - "total_projects": 18, + "last_year": 2022, + "total_projects": 45, "is_currently_active": false, "active_years": [ 2016, 2017, 2018, - 2019 + 2019, + 2020, + 2021, + 2022 ] }, { "slug": "geomscale", "name": "GeomScale", "first_year": 2020, - "last_year": 2025, + "last_year": 2026, "total_projects": 30, "is_currently_active": true, "active_years": [ @@ -55,40 +48,50 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "open-bioinformatics-foundation-obf", - "name": "Open Bioinformatics Foundation (OBF)", + "slug": "open-genome-informatics", + "name": "Open Genome Informatics", "first_year": 2016, - "last_year": 2022, - "total_projects": 45, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 28, + "is_currently_active": true, "active_years": [ 2016, 2017, - 2018, - 2019, 2020, 2021, - 2022 + 2022, + 2023, + 2026 ] }, { - "slug": "open-genome-informatics", - "name": "Open Genome Informatics", + "slug": "computational-biology-university-of-nebraska-lincoln", + "name": "Computational Biology @ University of Nebraska-Lincoln", "first_year": 2016, - "last_year": 2023, - "total_projects": 28, + "last_year": 2019, + "total_projects": 18, "is_currently_active": false, "active_years": [ 2016, 2017, - 2020, - 2021, - 2022, - 2023 + 2018, + 2019 + ] + }, + { + "slug": "biogears", + "name": "BioGears", + "first_year": 2020, + "last_year": 2020, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2020 ] } ], @@ -132,10 +135,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.593Z" + "generated_at": "2026-02-19T13:36:00.725Z" } } \ No newline at end of file diff --git a/new-api-details/topics/computational-chemistry.json b/new-api-details/topics/computational-chemistry.json index b41f6282..d406c975 100644 --- a/new-api-details/topics/computational-chemistry.json +++ b/new-api-details/topics/computational-chemistry.json @@ -1,10 +1,11 @@ { "slug": "computational-chemistry", "name": "computational chemistry", - "published_at": "2026-01-25T16:06:29.300Z", + "published_at": "2026-02-19T13:36:02.254Z", "organizationCount": 2, "projectCount": 67, "years": [ + 2026, 2025, 2024, 2023, @@ -17,22 +18,6 @@ 2016 ], "organizations": [ - { - "slug": "mdanalysis", - "name": "MDAnalysis", - "first_year": 2020, - "last_year": 2025, - "total_projects": 16, - "is_currently_active": true, - "active_years": [ - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 - ] - }, { "slug": "open-chemistry", "name": "Open Chemistry", @@ -51,6 +36,23 @@ 2023, 2024 ] + }, + { + "slug": "mdanalysis", + "name": "MDAnalysis", + "first_year": 2020, + "last_year": 2026, + "total_projects": 16, + "is_currently_active": true, + "active_years": [ + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ] } ], "yearlyStats": { @@ -93,10 +95,14 @@ "2025": { "organizationCount": 2, "projectCount": 8 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.300Z" + "generated_at": "2026-02-19T13:36:02.254Z" } } \ No newline at end of file diff --git a/new-api-details/topics/computational-fluid-dynamics.json b/new-api-details/topics/computational-fluid-dynamics.json index 0535a541..4c76afa3 100644 --- a/new-api-details/topics/computational-fluid-dynamics.json +++ b/new-api-details/topics/computational-fluid-dynamics.json @@ -1,10 +1,11 @@ { "slug": "computational-fluid-dynamics", "name": "Computational Fluid Dynamics", - "published_at": "2026-01-25T16:06:29.644Z", + "published_at": "2026-02-19T13:36:02.855Z", "organizationCount": 1, "projectCount": 7, "years": [ + 2026, 2025, 2024 ], @@ -13,12 +14,13 @@ "slug": "stichting-su2", "name": "Stichting SU2", "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "total_projects": 7, "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -30,10 +32,14 @@ "2025": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.644Z" + "generated_at": "2026-02-19T13:36:02.855Z" } } \ No newline at end of file diff --git a/new-api-details/topics/computational-geometry.json b/new-api-details/topics/computational-geometry.json index 6d4ef0c6..554a7269 100644 --- a/new-api-details/topics/computational-geometry.json +++ b/new-api-details/topics/computational-geometry.json @@ -1,10 +1,11 @@ { "slug": "computational-geometry", "name": "computational geometry", - "published_at": "2026-01-25T16:06:28.650Z", + "published_at": "2026-02-19T13:36:00.978Z", "organizationCount": 3, "projectCount": 96, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "cgal-project", "name": "CGAL Project", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 58, "is_currently_active": true, "active_years": [ @@ -32,14 +33,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "geomscale", "name": "GeomScale", "first_year": 2020, - "last_year": 2025, + "last_year": 2026, "total_projects": 30, "is_currently_active": true, "active_years": [ @@ -48,19 +50,21 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "graphite", "name": "Graphite", "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "total_projects": 8, "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -100,10 +104,14 @@ "2025": { "organizationCount": 3, "projectCount": 16 + }, + "2026": { + "organizationCount": 3, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.650Z" + "generated_at": "2026-02-19T13:36:00.978Z" } } \ No newline at end of file diff --git a/new-api-details/topics/computational-linguistics.json b/new-api-details/topics/computational-linguistics.json index 57941484..27f44ad2 100644 --- a/new-api-details/topics/computational-linguistics.json +++ b/new-api-details/topics/computational-linguistics.json @@ -1,10 +1,11 @@ { "slug": "computational-linguistics", "name": "computational linguistics", - "published_at": "2026-01-25T16:06:28.669Z", + "published_at": "2026-02-19T13:36:01.038Z", "organizationCount": 2, "projectCount": 40, "years": [ + 2026, 2022, 2021, 2020, @@ -13,6 +14,22 @@ 2017 ], "organizations": [ + { + "slug": "cuneiform-digital-library-initiative-cdli", + "name": "Cuneiform Digital Library Initiative (CDLI)", + "first_year": 2018, + "last_year": 2026, + "total_projects": 30, + "is_currently_active": true, + "active_years": [ + 2018, + 2019, + 2020, + 2021, + 2022, + 2026 + ] + }, { "slug": "clips-university-of-antwerp", "name": "CLiPS, University of Antwerp", @@ -25,21 +42,6 @@ 2018, 2019 ] - }, - { - "slug": "cuneiform-digital-library-initiative-cdli", - "name": "Cuneiform Digital Library Initiative (CDLI)", - "first_year": 2018, - "last_year": 2022, - "total_projects": 30, - "is_currently_active": false, - "active_years": [ - 2018, - 2019, - 2020, - 2021, - 2022 - ] } ], "yearlyStats": { @@ -66,10 +68,14 @@ "2022": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.669Z" + "generated_at": "2026-02-19T13:36:01.038Z" } } \ No newline at end of file diff --git a/new-api-details/topics/computational-mechanics.json b/new-api-details/topics/computational-mechanics.json index b94a920e..5c960e7b 100644 --- a/new-api-details/topics/computational-mechanics.json +++ b/new-api-details/topics/computational-mechanics.json @@ -1,7 +1,7 @@ { "slug": "computational-mechanics", "name": "computational mechanics", - "published_at": "2026-01-25T16:06:29.297Z", + "published_at": "2026-02-19T13:36:02.249Z", "organizationCount": 1, "projectCount": 13, "years": [ @@ -21,7 +21,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 13, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -70,6 +70,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.297Z" + "generated_at": "2026-02-19T13:36:02.249Z" } } \ No newline at end of file diff --git a/new-api-details/topics/computational-photography.json b/new-api-details/topics/computational-photography.json index 20e45762..cad4cf10 100644 --- a/new-api-details/topics/computational-photography.json +++ b/new-api-details/topics/computational-photography.json @@ -1,7 +1,7 @@ { "slug": "computational-photography", "name": "computational photography", - "published_at": "2026-01-25T16:06:28.519Z", + "published_at": "2026-02-19T13:36:00.521Z", "organizationCount": 1, "projectCount": 18, "years": [ @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.519Z" + "generated_at": "2026-02-19T13:36:00.521Z" } } \ No newline at end of file diff --git a/new-api-details/topics/computational-science.json b/new-api-details/topics/computational-science.json index 88eefa91..3784b7cd 100644 --- a/new-api-details/topics/computational-science.json +++ b/new-api-details/topics/computational-science.json @@ -1,10 +1,11 @@ { "slug": "computational-science", "name": "Computational Science", - "published_at": "2026-01-25T16:06:29.571Z", + "published_at": "2026-02-19T13:36:02.767Z", "organizationCount": 1, "projectCount": 7, "years": [ + 2026, 2025, 2024 ], @@ -13,12 +14,13 @@ "slug": "qc-devs", "name": "QC-Devs", "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "total_projects": 7, "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -30,10 +32,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.571Z" + "generated_at": "2026-02-19T13:36:02.767Z" } } \ No newline at end of file diff --git a/new-api-details/topics/computer-aided-translation.json b/new-api-details/topics/computer-aided-translation.json index c75e69ed..e0145e7a 100644 --- a/new-api-details/topics/computer-aided-translation.json +++ b/new-api-details/topics/computer-aided-translation.json @@ -1,7 +1,7 @@ { "slug": "computer-aided-translation", "name": "computer-aided translation", - "published_at": "2026-01-25T16:06:28.498Z", + "published_at": "2026-02-19T13:36:00.490Z", "organizationCount": 1, "projectCount": 67, "years": [ @@ -70,6 +70,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.498Z" + "generated_at": "2026-02-19T13:36:00.490Z" } } \ No newline at end of file diff --git a/new-api-details/topics/computer-algebra.json b/new-api-details/topics/computer-algebra.json index 666157b0..84614fc9 100644 --- a/new-api-details/topics/computer-algebra.json +++ b/new-api-details/topics/computer-algebra.json @@ -1,10 +1,11 @@ { "slug": "computer-algebra", "name": "computer algebra", - "published_at": "2026-01-25T16:06:29.656Z", + "published_at": "2026-02-19T13:36:02.874Z", "organizationCount": 1, "projectCount": 63, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "sympy", "name": "SymPy", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 63, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.656Z" + "generated_at": "2026-02-19T13:36:02.874Z" } } \ No newline at end of file diff --git a/new-api-details/topics/computer-architecture.json b/new-api-details/topics/computer-architecture.json index e473f802..265cc33e 100644 --- a/new-api-details/topics/computer-architecture.json +++ b/new-api-details/topics/computer-architecture.json @@ -1,7 +1,7 @@ { "slug": "computer-architecture", "name": "computer architecture", - "published_at": "2026-01-25T16:06:28.523Z", + "published_at": "2026-02-19T13:36:00.577Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.523Z" + "generated_at": "2026-02-19T13:36:00.577Z" } } \ No newline at end of file diff --git a/new-api-details/topics/computer-assisted-translation.json b/new-api-details/topics/computer-assisted-translation.json index 6e190ca0..c6fc4345 100644 --- a/new-api-details/topics/computer-assisted-translation.json +++ b/new-api-details/topics/computer-assisted-translation.json @@ -1,7 +1,7 @@ { "slug": "computer-assisted-translation", "name": "computer-assisted translation", - "published_at": "2026-01-25T16:06:29.565Z", + "published_at": "2026-02-19T13:36:02.754Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.565Z" + "generated_at": "2026-02-19T13:36:02.754Z" } } \ No newline at end of file diff --git a/new-api-details/topics/computer-graphics.json b/new-api-details/topics/computer-graphics.json index acde0e6b..7a0e1d4b 100644 --- a/new-api-details/topics/computer-graphics.json +++ b/new-api-details/topics/computer-graphics.json @@ -1,7 +1,7 @@ { "slug": "computer-graphics", "name": "computer graphics", - "published_at": "2026-01-25T16:06:29.819Z", + "published_at": "2026-02-19T13:36:00.568Z", "organizationCount": 1, "projectCount": 11, "years": [ @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.819Z" + "generated_at": "2026-02-19T13:36:00.568Z" } } \ No newline at end of file diff --git a/new-api-details/topics/computer-networking.json b/new-api-details/topics/computer-networking.json index 586a7005..034f7a55 100644 --- a/new-api-details/topics/computer-networking.json +++ b/new-api-details/topics/computer-networking.json @@ -1,10 +1,11 @@ { "slug": "computer-networking", "name": "computer networking", - "published_at": "2026-01-25T16:06:28.622Z", + "published_at": "2026-02-19T13:36:00.856Z", "organizationCount": 3, "projectCount": 53, "years": [ + 2026, 2025, 2024, 2023, @@ -18,16 +19,23 @@ ], "organizations": [ { - "slug": "boston-university-xia", - "name": "Boston University / XIA", - "first_year": 2016, - "last_year": 2018, - "total_projects": 8, - "is_currently_active": false, + "slug": "the-ns-3-network-simulator-project", + "name": "The ns-3 Network Simulator Project", + "first_year": 2017, + "last_year": 2026, + "total_projects": 34, + "is_currently_active": true, "active_years": [ - 2016, 2017, - 2018 + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { @@ -45,22 +53,16 @@ ] }, { - "slug": "the-ns-3-network-simulator-project", - "name": "The ns-3 Network Simulator Project", - "first_year": 2017, - "last_year": 2025, - "total_projects": 34, - "is_currently_active": true, + "slug": "boston-university-xia", + "name": "Boston University / XIA", + "first_year": 2016, + "last_year": 2018, + "total_projects": 8, + "is_currently_active": false, "active_years": [ + 2016, 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2018 ] } ], @@ -104,10 +106,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.622Z" + "generated_at": "2026-02-19T13:36:00.856Z" } } \ No newline at end of file diff --git a/new-api-details/topics/computer-security.json b/new-api-details/topics/computer-security.json index 56391b59..25f64ca7 100644 --- a/new-api-details/topics/computer-security.json +++ b/new-api-details/topics/computer-security.json @@ -1,10 +1,11 @@ { "slug": "computer-security", "name": "computer security", - "published_at": "2026-01-25T16:06:29.068Z", + "published_at": "2026-02-19T13:36:01.750Z", "organizationCount": 2, "projectCount": 10, "years": [ + 2026, 2025, 2024, 2023, @@ -12,22 +13,11 @@ 2021 ], "organizations": [ - { - "slug": "grr-rapid-response", - "name": "GRR Rapid Response", - "first_year": 2021, - "last_year": 2021, - "total_projects": 0, - "is_currently_active": false, - "active_years": [ - 2021 - ] - }, { "slug": "rizin", "name": "Rizin", "first_year": 2021, - "last_year": 2025, + "last_year": 2026, "total_projects": 10, "is_currently_active": true, "active_years": [ @@ -35,7 +25,19 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "grr-rapid-response", + "name": "GRR Rapid Response", + "first_year": 2021, + "last_year": 2021, + "total_projects": 0, + "is_currently_active": false, + "active_years": [ + 2021 ] } ], @@ -59,10 +61,14 @@ "2025": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.068Z" + "generated_at": "2026-02-19T13:36:01.750Z" } } \ No newline at end of file diff --git a/new-api-details/topics/computer-vision.json b/new-api-details/topics/computer-vision.json index 5ddef48b..0f1f83ba 100644 --- a/new-api-details/topics/computer-vision.json +++ b/new-api-details/topics/computer-vision.json @@ -1,10 +1,11 @@ { "slug": "computer-vision", "name": "computer vision", - "published_at": "2026-01-25T16:06:28.520Z", + "published_at": "2026-02-19T13:36:00.523Z", "organizationCount": 22, "projectCount": 522, "years": [ + 2026, 2025, 2024, 2023, @@ -18,93 +19,82 @@ ], "organizations": [ { - "slug": "apertus-association", - "name": "Apertus Association", - "first_year": 2017, - "last_year": 2022, - "total_projects": 18, - "is_currently_active": false, + "slug": "osgeo-open-source-geospatial-foundation", + "name": "OSGeo (Open Source Geospatial Foundation)", + "first_year": 2016, + "last_year": 2026, + "total_projects": 101, + "is_currently_active": true, "active_years": [ + 2016, 2017, 2018, 2019, 2020, 2021, - 2022 - ] - }, - { - "slug": "city-of-boston", - "name": "City of Boston", - "first_year": 2024, - "last_year": 2024, - "total_projects": 4, - "is_currently_active": false, - "active_years": [ - 2024 + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "cloudcv", - "name": "CloudCV", + "slug": "opencv", + "name": "OpenCV", "first_year": 2016, "last_year": 2025, - "total_projects": 28, - "is_currently_active": true, + "total_projects": 93, + "is_currently_active": false, "active_years": [ 2016, 2017, - 2018, 2019, 2020, 2021, + 2022, 2023, 2024, 2025 ] }, { - "slug": "cuneiform-digital-library-initiative-cdli", - "name": "Cuneiform Digital Library Initiative (CDLI)", - "first_year": 2018, - "last_year": 2022, - "total_projects": 30, + "slug": "tensorflow", + "name": "TensorFlow", + "first_year": 2019, + "last_year": 2023, + "total_projects": 81, "is_currently_active": false, "active_years": [ - 2018, 2019, 2020, 2021, - 2022 - ] - }, - { - "slug": "cvat", - "name": "CVAT", - "first_year": 2024, - "last_year": 2024, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2024 + 2022, + 2023 ] }, { - "slug": "halide", - "name": "Halide", - "first_year": 2021, - "last_year": 2021, - "total_projects": 2, + "slug": "robocomp", + "name": "RoboComp", + "first_year": 2016, + "last_year": 2022, + "total_projects": 57, "is_currently_active": false, "active_years": [ - 2021 + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022 ] }, { "slug": "jderobot", "name": "JdeRobot", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 48, "is_currently_active": true, "active_years": [ @@ -116,128 +106,123 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "kornia", - "name": "Kornia", - "first_year": 2025, - "last_year": 2025, - "total_projects": 2, + "slug": "cuneiform-digital-library-initiative-cdli", + "name": "Cuneiform Digital Library Initiative (CDLI)", + "first_year": 2018, + "last_year": 2026, + "total_projects": 30, "is_currently_active": true, "active_years": [ - 2025 - ] - }, - { - "slug": "mediapipe", - "name": "MediaPipe", - "first_year": 2021, - "last_year": 2021, - "total_projects": 6, - "is_currently_active": false, - "active_years": [ - 2021 + 2018, + 2019, + 2020, + 2021, + 2022, + 2026 ] }, { - "slug": "mobile-robot-programming-toolkit-mrpt", - "name": "Mobile Robot Programming Toolkit (MRPT)", + "slug": "cloudcv", + "name": "CloudCV", "first_year": 2016, - "last_year": 2018, - "total_projects": 8, + "last_year": 2025, + "total_projects": 28, "is_currently_active": false, "active_years": [ 2016, 2017, - 2018 + 2018, + 2019, + 2020, + 2021, + 2023, + 2024, + 2025 ] }, { - "slug": "neuroinformatics-unit", - "name": "Neuroinformatics Unit", - "first_year": 2025, - "last_year": 2025, - "total_projects": 2, - "is_currently_active": true, + "slug": "apertus-association", + "name": "Apertus Association", + "first_year": 2017, + "last_year": 2022, + "total_projects": 18, + "is_currently_active": false, "active_years": [ - 2025 + 2017, + 2018, + 2019, + 2020, + 2021, + 2022 ] }, { - "slug": "open-detection", - "name": "Open Detection", - "first_year": 2016, - "last_year": 2017, - "total_projects": 4, + "slug": "society-for-arts-and-technology-sat", + "name": "Society for Arts and Technology (SAT)", + "first_year": 2022, + "last_year": 2025, + "total_projects": 12, "is_currently_active": false, "active_years": [ - 2016, - 2017 + 2022, + 2023, + 2025 ] }, { "slug": "open-food-facts", "name": "Open Food Facts", "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "total_projects": 10, "is_currently_active": true, "active_years": [ 2018, 2022, - 2025 + 2025, + 2026 ] }, { - "slug": "opencv", - "name": "OpenCV", + "slug": "mobile-robot-programming-toolkit-mrpt", + "name": "Mobile Robot Programming Toolkit (MRPT)", "first_year": 2016, - "last_year": 2025, - "total_projects": 93, - "is_currently_active": true, + "last_year": 2018, + "total_projects": 8, + "is_currently_active": false, "active_years": [ 2016, 2017, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2018 ] }, { - "slug": "openhmd", - "name": "OpenHMD", - "first_year": 2020, - "last_year": 2020, - "total_projects": 0, + "slug": "mediapipe", + "name": "MediaPipe", + "first_year": 2021, + "last_year": 2021, + "total_projects": 6, "is_currently_active": false, "active_years": [ - 2020 + 2021 ] }, { - "slug": "osgeo-open-source-geospatial-foundation", - "name": "OSGeo (Open Source Geospatial Foundation)", + "slug": "vitrivr", + "name": "vitrivr", "first_year": 2016, - "last_year": 2025, - "total_projects": 101, - "is_currently_active": true, + "last_year": 2021, + "total_projects": 6, + "is_currently_active": false, "active_years": [ 2016, - 2017, 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2021 ] }, { @@ -253,48 +238,26 @@ ] }, { - "slug": "robocomp", - "name": "RoboComp", - "first_year": 2016, - "last_year": 2022, - "total_projects": 57, + "slug": "city-of-boston", + "name": "City of Boston", + "first_year": 2024, + "last_year": 2024, + "total_projects": 4, "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022 - ] - }, - { - "slug": "society-for-arts-and-technology-sat", - "name": "Society for Arts and Technology (SAT)", - "first_year": 2022, - "last_year": 2025, - "total_projects": 12, - "is_currently_active": true, - "active_years": [ - 2022, - 2023, - 2025 + 2024 ] }, { - "slug": "tensorflow", - "name": "TensorFlow", - "first_year": 2019, - "last_year": 2023, - "total_projects": 81, + "slug": "open-detection", + "name": "Open Detection", + "first_year": 2016, + "last_year": 2017, + "total_projects": 4, "is_currently_active": false, "active_years": [ - 2019, - 2020, - 2021, - 2022, - 2023 + 2016, + 2017 ] }, { @@ -310,17 +273,61 @@ ] }, { - "slug": "vitrivr", - "name": "vitrivr", - "first_year": 2016, + "slug": "cvat", + "name": "CVAT", + "first_year": 2024, + "last_year": 2024, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2024 + ] + }, + { + "slug": "halide", + "name": "Halide", + "first_year": 2021, "last_year": 2021, - "total_projects": 6, + "total_projects": 2, "is_currently_active": false, "active_years": [ - 2016, - 2018, 2021 ] + }, + { + "slug": "kornia", + "name": "Kornia", + "first_year": 2025, + "last_year": 2026, + "total_projects": 2, + "is_currently_active": true, + "active_years": [ + 2025, + 2026 + ] + }, + { + "slug": "neuroinformatics-unit", + "name": "Neuroinformatics Unit", + "first_year": 2025, + "last_year": 2026, + "total_projects": 2, + "is_currently_active": true, + "active_years": [ + 2025, + 2026 + ] + }, + { + "slug": "openhmd", + "name": "OpenHMD", + "first_year": 2020, + "last_year": 2020, + "total_projects": 0, + "is_currently_active": false, + "active_years": [ + 2020 + ] } ], "yearlyStats": { @@ -363,10 +370,14 @@ "2025": { "organizationCount": 8, "projectCount": 40 + }, + "2026": { + "organizationCount": 6, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.520Z" + "generated_at": "2026-02-19T13:36:00.523Z" } } \ No newline at end of file diff --git a/new-api-details/topics/concurrency.json b/new-api-details/topics/concurrency.json index 3c44afbf..937ad18e 100644 --- a/new-api-details/topics/concurrency.json +++ b/new-api-details/topics/concurrency.json @@ -1,10 +1,11 @@ { "slug": "concurrency", "name": "concurrency", - "published_at": "2026-01-25T16:06:28.699Z", + "published_at": "2026-02-19T13:36:00.949Z", "organizationCount": 5, "projectCount": 92, "years": [ + 2026, 2025, 2024, 2023, @@ -18,53 +19,44 @@ ], "organizations": [ { - "slug": "celluloid", - "name": "Celluloid", - "first_year": 2016, - "last_year": 2016, - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2016 - ] - }, - { - "slug": "stear-group", - "name": "Ste||ar group", + "slug": "the-jpf-team", + "name": "The JPF team", "first_year": 2016, - "last_year": 2025, - "total_projects": 38, + "last_year": 2026, + "total_projects": 46, "is_currently_active": true, "active_years": [ 2016, 2017, 2018, + 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "the-jpf-team", - "name": "The JPF team", + "slug": "stear-group", + "name": "Ste||ar group", "first_year": 2016, - "last_year": 2025, - "total_projects": 46, + "last_year": 2026, + "total_projects": 38, "is_currently_active": true, "active_years": [ 2016, 2017, 2018, - 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -78,6 +70,17 @@ 2019 ] }, + { + "slug": "celluloid", + "name": "Celluloid", + "first_year": 2016, + "last_year": 2016, + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2016 + ] + }, { "slug": "tokio", "name": "Tokio", @@ -130,10 +133,14 @@ "2025": { "organizationCount": 2, "projectCount": 9 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.699Z" + "generated_at": "2026-02-19T13:36:00.949Z" } } \ No newline at end of file diff --git a/new-api-details/topics/conference.json b/new-api-details/topics/conference.json index 395af73f..07e8c9a0 100644 --- a/new-api-details/topics/conference.json +++ b/new-api-details/topics/conference.json @@ -1,7 +1,7 @@ { "slug": "conference", "name": "conference", - "published_at": "2026-01-25T16:06:28.926Z", + "published_at": "2026-02-19T13:36:01.455Z", "organizationCount": 1, "projectCount": 4, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.926Z" + "generated_at": "2026-02-19T13:36:01.455Z" } } \ No newline at end of file diff --git a/new-api-details/topics/conferences.json b/new-api-details/topics/conferences.json index a75fffed..fd717ba2 100644 --- a/new-api-details/topics/conferences.json +++ b/new-api-details/topics/conferences.json @@ -1,10 +1,11 @@ { "slug": "conferences", "name": "conferences", - "published_at": "2026-01-25T16:06:29.850Z", + "published_at": "2026-02-19T13:36:02.604Z", "organizationCount": 1, "projectCount": 52, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "opensuse-project", "name": "openSUSE Project", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 52, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.850Z" + "generated_at": "2026-02-19T13:36:02.604Z" } } \ No newline at end of file diff --git a/new-api-details/topics/configu.json b/new-api-details/topics/configu.json index ba76db0c..ba355af3 100644 --- a/new-api-details/topics/configu.json +++ b/new-api-details/topics/configu.json @@ -1,10 +1,11 @@ { "slug": "configu", "name": "configu", - "published_at": "2026-01-25T16:06:29.505Z", + "published_at": "2026-02-19T13:36:02.645Z", "organizationCount": 1, "projectCount": 26, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "openwisp", "name": "OpenWISP", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 26, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.505Z" + "generated_at": "2026-02-19T13:36:02.645Z" } } \ No newline at end of file diff --git a/new-api-details/topics/configuration-management.json b/new-api-details/topics/configuration-management.json index a4f2f626..55a85e1a 100644 --- a/new-api-details/topics/configuration-management.json +++ b/new-api-details/topics/configuration-management.json @@ -1,10 +1,11 @@ { "slug": "configuration-management", "name": "configuration management", - "published_at": "2026-01-25T16:06:29.501Z", + "published_at": "2026-02-19T13:36:02.135Z", "organizationCount": 3, "projectCount": 80, "years": [ + 2026, 2025, 2024, 2023, @@ -17,22 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "kro-kube-resource-orchestrator", - "name": "kro | Kube Resource Orchestrator", - "first_year": 2025, - "last_year": 2025, - "total_projects": 2, - "is_currently_active": true, - "active_years": [ - 2025 - ] - }, { "slug": "opensuse-project", "name": "openSUSE Project", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 52, "is_currently_active": true, "active_years": [ @@ -44,14 +34,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "openwisp", "name": "OpenWISP", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 26, "is_currently_active": true, "active_years": [ @@ -63,6 +54,18 @@ 2022, 2023, 2024, + 2025, + 2026 + ] + }, + { + "slug": "kro-kube-resource-orchestrator", + "name": "kro | Kube Resource Orchestrator", + "first_year": 2025, + "last_year": 2025, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ 2025 ] } @@ -107,10 +110,14 @@ "2025": { "organizationCount": 3, "projectCount": 14 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.501Z" + "generated_at": "2026-02-19T13:36:02.135Z" } } \ No newline at end of file diff --git a/new-api-details/topics/contacts-calendar-sync.json b/new-api-details/topics/contacts-calendar-sync.json index 5865d273..752c6237 100644 --- a/new-api-details/topics/contacts-calendar-sync.json +++ b/new-api-details/topics/contacts-calendar-sync.json @@ -1,7 +1,7 @@ { "slug": "contacts-calendar-sync", "name": "contacts&calendar sync", - "published_at": "2026-01-25T16:06:28.776Z", + "published_at": "2026-02-19T13:36:01.031Z", "organizationCount": 1, "projectCount": 22, "years": [ @@ -52,6 +52,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.776Z" + "generated_at": "2026-02-19T13:36:01.031Z" } } \ No newline at end of file diff --git a/new-api-details/topics/container.json b/new-api-details/topics/container.json index c81376d5..32ef3dd3 100644 --- a/new-api-details/topics/container.json +++ b/new-api-details/topics/container.json @@ -1,10 +1,11 @@ { "slug": "container", "name": "container", - "published_at": "2026-01-25T16:06:28.677Z", + "published_at": "2026-02-19T13:36:01.055Z", "organizationCount": 2, "projectCount": 132, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "cncf", "name": "CNCF", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 113, "is_currently_active": true, "active_years": [ @@ -33,7 +34,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -95,10 +97,14 @@ "2025": { "organizationCount": 1, "projectCount": 11 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.677Z" + "generated_at": "2026-02-19T13:36:01.055Z" } } \ No newline at end of file diff --git a/new-api-details/topics/containers-kubernetes.json b/new-api-details/topics/containers-kubernetes.json index afbb0736..7d480f78 100644 --- a/new-api-details/topics/containers-kubernetes.json +++ b/new-api-details/topics/containers-kubernetes.json @@ -1,10 +1,11 @@ { "slug": "containers-kubernetes", "name": "containers kubernetes", - "published_at": "2026-01-25T16:06:29.859Z", + "published_at": "2026-02-19T13:36:02.615Z", "organizationCount": 1, "projectCount": 52, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "opensuse-project", "name": "openSUSE Project", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 52, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.859Z" + "generated_at": "2026-02-19T13:36:02.615Z" } } \ No newline at end of file diff --git a/new-api-details/topics/containers.json b/new-api-details/topics/containers.json index 9fe40121..73b668ee 100644 --- a/new-api-details/topics/containers.json +++ b/new-api-details/topics/containers.json @@ -1,10 +1,11 @@ { "slug": "containers", "name": "containers", - "published_at": "2026-01-25T16:06:28.677Z", - "organizationCount": 7, + "published_at": "2026-02-19T13:36:01.056Z", + "organizationCount": 8, "projectCount": 219, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "cncf", "name": "CNCF", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 113, "is_currently_active": true, "active_years": [ @@ -33,24 +34,28 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "criu", - "name": "CRIU", - "first_year": 2019, - "last_year": 2025, - "total_projects": 18, + "slug": "opensuse-project", + "name": "openSUSE Project", + "first_year": 2016, + "last_year": 2026, + "total_projects": 52, "is_currently_active": true, "active_years": [ - 2019, + 2016, + 2017, + 2018, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -59,7 +64,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -70,27 +75,35 @@ ] }, { - "slug": "gvisor", - "name": "gVisor", - "first_year": 2021, - "last_year": 2021, - "total_projects": 1, - "is_currently_active": false, + "slug": "criu", + "name": "CRIU", + "first_year": 2019, + "last_year": 2026, + "total_projects": 18, + "is_currently_active": true, "active_years": [ - 2021 + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { "slug": "kubevirt", "name": "KubeVirt", "first_year": 2023, - "last_year": 2025, + "last_year": 2026, "total_projects": 4, "is_currently_active": true, "active_years": [ 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -106,22 +119,25 @@ ] }, { - "slug": "opensuse-project", - "name": "openSUSE Project", - "first_year": 2016, - "last_year": 2025, - "total_projects": 52, + "slug": "gvisor", + "name": "gVisor", + "first_year": 2021, + "last_year": 2021, + "total_projects": 1, + "is_currently_active": false, + "active_years": [ + 2021 + ] + }, + { + "slug": "erofs-filesystem", + "name": "EROFS filesystem", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, "is_currently_active": true, "active_years": [ - 2016, - 2017, - 2018, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2026 ] } ], @@ -165,10 +181,14 @@ "2025": { "organizationCount": 5, "projectCount": 24 + }, + "2026": { + "organizationCount": 5, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.677Z" + "generated_at": "2026-02-19T13:36:01.056Z" } } \ No newline at end of file diff --git a/new-api-details/topics/content-management.json b/new-api-details/topics/content-management.json index af05f7c0..eb151e92 100644 --- a/new-api-details/topics/content-management.json +++ b/new-api-details/topics/content-management.json @@ -1,10 +1,11 @@ { "slug": "content-management", "name": "content management", - "published_at": "2026-01-25T16:06:28.862Z", + "published_at": "2026-02-19T13:36:01.210Z", "organizationCount": 3, "projectCount": 67, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "drupal-association", "name": "Drupal Association", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 39, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -41,7 +43,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 26, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -100,10 +102,14 @@ "2025": { "organizationCount": 2, "projectCount": 10 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.862Z" + "generated_at": "2026-02-19T13:36:01.210Z" } } \ No newline at end of file diff --git a/new-api-details/topics/continuous-delivery.json b/new-api-details/topics/continuous-delivery.json index d699eabd..6ea44aac 100644 --- a/new-api-details/topics/continuous-delivery.json +++ b/new-api-details/topics/continuous-delivery.json @@ -1,10 +1,11 @@ { "slug": "continuous-delivery", "name": "continuous delivery", - "published_at": "2026-01-25T16:06:28.796Z", + "published_at": "2026-02-19T13:36:01.079Z", "organizationCount": 3, "projectCount": 54, "years": [ + 2026, 2025, 2024, 2023, @@ -16,23 +17,11 @@ 2016 ], "organizations": [ - { - "slug": "continuous-delivery-foundation", - "name": "Continuous Delivery Foundation", - "first_year": 2020, - "last_year": 2021, - "total_projects": 9, - "is_currently_active": false, - "active_years": [ - 2020, - 2021 - ] - }, { "slug": "jenkins", "name": "Jenkins", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 33, "is_currently_active": true, "active_years": [ @@ -43,7 +32,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -61,6 +51,18 @@ 2021, 2022 ] + }, + { + "slug": "continuous-delivery-foundation", + "name": "Continuous Delivery Foundation", + "first_year": 2020, + "last_year": 2021, + "total_projects": 9, + "is_currently_active": false, + "active_years": [ + 2020, + 2021 + ] } ], "yearlyStats": { @@ -99,10 +101,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.796Z" + "generated_at": "2026-02-19T13:36:01.079Z" } } \ No newline at end of file diff --git a/new-api-details/topics/continuous-integration.json b/new-api-details/topics/continuous-integration.json index d9bdfba0..11e41c14 100644 --- a/new-api-details/topics/continuous-integration.json +++ b/new-api-details/topics/continuous-integration.json @@ -1,10 +1,11 @@ { "slug": "continuous-integration", "name": "continuous integration", - "published_at": "2026-01-25T16:06:28.795Z", + "published_at": "2026-02-19T13:36:01.078Z", "organizationCount": 3, "projectCount": 120, "years": [ + 2026, 2025, 2024, 2023, @@ -16,23 +17,11 @@ 2016 ], "organizations": [ - { - "slug": "continuous-delivery-foundation", - "name": "Continuous Delivery Foundation", - "first_year": 2020, - "last_year": 2021, - "total_projects": 9, - "is_currently_active": false, - "active_years": [ - 2020, - 2021 - ] - }, { "slug": "debian", "name": "Debian", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 78, "is_currently_active": true, "active_years": [ @@ -43,14 +32,15 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "jenkins", "name": "Jenkins", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 33, "is_currently_active": true, "active_years": [ @@ -61,7 +51,20 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "continuous-delivery-foundation", + "name": "Continuous Delivery Foundation", + "first_year": 2020, + "last_year": 2021, + "total_projects": 9, + "is_currently_active": false, + "active_years": [ + 2020, + 2021 ] } ], @@ -101,10 +104,14 @@ "2025": { "organizationCount": 2, "projectCount": 14 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.795Z" + "generated_at": "2026-02-19T13:36:01.078Z" } } \ No newline at end of file diff --git a/new-api-details/topics/contract-management.json b/new-api-details/topics/contract-management.json index 71eedfa7..dbca38b8 100644 --- a/new-api-details/topics/contract-management.json +++ b/new-api-details/topics/contract-management.json @@ -1,10 +1,11 @@ { "slug": "contract-management", "name": "contract management", - "published_at": "2026-01-25T16:06:28.439Z", + "published_at": "2026-02-19T13:36:00.385Z", "organizationCount": 1, "projectCount": 13, "years": [ + 2026, 2025, 2024, 2021, @@ -15,14 +16,15 @@ "slug": "accord-project", "name": "Accord Project", "first_year": 2020, - "last_year": 2025, + "last_year": 2026, "total_projects": 13, "is_currently_active": true, "active_years": [ 2020, 2021, 2024, - 2025 + 2025, + 2026 ] } ], @@ -42,10 +44,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.439Z" + "generated_at": "2026-02-19T13:36:00.385Z" } } \ No newline at end of file diff --git a/new-api-details/topics/contributor-activity.json b/new-api-details/topics/contributor-activity.json index f52afbc5..530577a0 100644 --- a/new-api-details/topics/contributor-activity.json +++ b/new-api-details/topics/contributor-activity.json @@ -1,7 +1,7 @@ { "slug": "contributor-activity", "name": "contributor activity", - "published_at": "2026-01-25T16:06:28.950Z", + "published_at": "2026-02-19T13:36:01.273Z", "organizationCount": 1, "projectCount": 27, "years": [ @@ -19,7 +19,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.950Z" + "generated_at": "2026-02-19T13:36:01.273Z" } } \ No newline at end of file diff --git a/new-api-details/topics/control.json b/new-api-details/topics/control.json index 88b177fb..46af5717 100644 --- a/new-api-details/topics/control.json +++ b/new-api-details/topics/control.json @@ -1,10 +1,11 @@ { "slug": "control", "name": "Control", - "published_at": "2026-01-25T16:06:29.448Z", + "published_at": "2026-02-19T13:36:02.507Z", "organizationCount": 1, "projectCount": 46, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "open-robotics", "name": "Open Robotics", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 46, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.448Z" + "generated_at": "2026-02-19T13:36:02.507Z" } } \ No newline at end of file diff --git a/new-api-details/topics/conversational.json b/new-api-details/topics/conversational.json index 5ccfae66..5345cb5d 100644 --- a/new-api-details/topics/conversational.json +++ b/new-api-details/topics/conversational.json @@ -1,7 +1,7 @@ { "slug": "conversational", "name": "conversational", - "published_at": "2026-01-25T16:06:28.837Z", + "published_at": "2026-02-19T13:36:01.175Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.837Z" + "generated_at": "2026-02-19T13:36:01.175Z" } } \ No newline at end of file diff --git a/new-api-details/topics/conversion-standards.json b/new-api-details/topics/conversion-standards.json index 83804fed..47fc1d9a 100644 --- a/new-api-details/topics/conversion-standards.json +++ b/new-api-details/topics/conversion-standards.json @@ -1,10 +1,11 @@ { "slug": "conversion-standards", "name": "conversion standards", - "published_at": "2026-01-25T16:06:28.556Z", + "published_at": "2026-02-19T13:36:00.890Z", "organizationCount": 1, "projectCount": 73, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "brl-cad", "name": "BRL-CAD", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 73, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.556Z" + "generated_at": "2026-02-19T13:36:00.890Z" } } \ No newline at end of file diff --git a/new-api-details/topics/convex-optimization.json b/new-api-details/topics/convex-optimization.json index 5cf251e2..0c439b8a 100644 --- a/new-api-details/topics/convex-optimization.json +++ b/new-api-details/topics/convex-optimization.json @@ -1,7 +1,7 @@ { "slug": "convex-optimization", "name": "convex optimization", - "published_at": "2026-01-25T16:06:28.687Z", + "published_at": "2026-02-19T13:36:01.141Z", "organizationCount": 1, "projectCount": 1, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.687Z" + "generated_at": "2026-02-19T13:36:01.141Z" } } \ No newline at end of file diff --git a/new-api-details/topics/coprocessing.json b/new-api-details/topics/coprocessing.json index 274bbda7..59db90e2 100644 --- a/new-api-details/topics/coprocessing.json +++ b/new-api-details/topics/coprocessing.json @@ -1,7 +1,7 @@ { "slug": "coprocessing", "name": "coprocessing", - "published_at": "2026-01-25T16:06:28.564Z", + "published_at": "2026-02-19T13:36:00.653Z", "organizationCount": 1, "projectCount": 44, "years": [ @@ -23,7 +23,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 44, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -82,6 +82,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.564Z" + "generated_at": "2026-02-19T13:36:00.653Z" } } \ No newline at end of file diff --git a/new-api-details/topics/copyleft.json b/new-api-details/topics/copyleft.json index 45f81f4a..afd3a92d 100644 --- a/new-api-details/topics/copyleft.json +++ b/new-api-details/topics/copyleft.json @@ -1,7 +1,7 @@ { "slug": "copyleft", "name": "copyleft", - "published_at": "2026-01-25T16:06:28.800Z", + "published_at": "2026-02-19T13:36:01.087Z", "organizationCount": 1, "projectCount": 14, "years": [ @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.800Z" + "generated_at": "2026-02-19T13:36:01.087Z" } } \ No newline at end of file diff --git a/new-api-details/topics/copyright.json b/new-api-details/topics/copyright.json index 653cbca8..f0f379f2 100644 --- a/new-api-details/topics/copyright.json +++ b/new-api-details/topics/copyright.json @@ -1,10 +1,11 @@ { "slug": "copyright", "name": "copyright", - "published_at": "2026-01-25T16:06:28.415Z", + "published_at": "2026-02-19T13:36:00.316Z", "organizationCount": 1, "projectCount": 32, "years": [ + 2026, 2025, 2024, 2023, @@ -19,7 +20,7 @@ "slug": "aboutcode", "name": "AboutCode", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 32, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.415Z" + "generated_at": "2026-02-19T13:36:00.316Z" } } \ No newline at end of file diff --git a/new-api-details/topics/corpus-annotation.json b/new-api-details/topics/corpus-annotation.json index b333bec1..8a44eec3 100644 --- a/new-api-details/topics/corpus-annotation.json +++ b/new-api-details/topics/corpus-annotation.json @@ -1,7 +1,7 @@ { "slug": "corpus-annotation", "name": "corpus annotation", - "published_at": "2026-01-25T16:06:29.755Z", + "published_at": "2026-02-19T13:36:03.102Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.755Z" + "generated_at": "2026-02-19T13:36:03.102Z" } } \ No newline at end of file diff --git a/new-api-details/topics/counter-censorship.json b/new-api-details/topics/counter-censorship.json index eac3345d..1621bd46 100644 --- a/new-api-details/topics/counter-censorship.json +++ b/new-api-details/topics/counter-censorship.json @@ -1,7 +1,7 @@ { "slug": "counter-censorship", "name": "counter-censorship", - "published_at": "2026-01-25T16:06:29.726Z", + "published_at": "2026-02-19T13:36:02.988Z", "organizationCount": 1, "projectCount": 19, "years": [ @@ -18,7 +18,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 19, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -52,6 +52,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.726Z" + "generated_at": "2026-02-19T13:36:02.988Z" } } \ No newline at end of file diff --git a/new-api-details/topics/crawling.json b/new-api-details/topics/crawling.json index 7bfb9159..5ace3185 100644 --- a/new-api-details/topics/crawling.json +++ b/new-api-details/topics/crawling.json @@ -1,7 +1,7 @@ { "slug": "crawling", "name": "crawling", - "published_at": "2026-01-25T16:06:28.905Z", + "published_at": "2026-02-19T13:36:01.256Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.905Z" + "generated_at": "2026-02-19T13:36:01.256Z" } } \ No newline at end of file diff --git a/new-api-details/topics/creative-coding.json b/new-api-details/topics/creative-coding.json index cec937ac..28179eb7 100644 --- a/new-api-details/topics/creative-coding.json +++ b/new-api-details/topics/creative-coding.json @@ -1,10 +1,11 @@ { "slug": "creative-coding", "name": "creative coding", - "published_at": "2026-01-25T16:06:29.561Z", + "published_at": "2026-02-19T13:36:02.750Z", "organizationCount": 1, "projectCount": 87, "years": [ + 2026, 2025, 2023, 2022, @@ -19,7 +20,7 @@ "slug": "processing-foundation", "name": "Processing Foundation", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 87, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2021, 2022, 2023, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.561Z" + "generated_at": "2026-02-19T13:36:02.750Z" } } \ No newline at end of file diff --git a/new-api-details/topics/creative-commons.json b/new-api-details/topics/creative-commons.json index d019bf1b..5933180d 100644 --- a/new-api-details/topics/creative-commons.json +++ b/new-api-details/topics/creative-commons.json @@ -1,7 +1,7 @@ { "slug": "creative-commons", "name": "creative commons", - "published_at": "2026-01-25T16:06:28.801Z", + "published_at": "2026-02-19T13:36:01.088Z", "organizationCount": 1, "projectCount": 14, "years": [ @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.801Z" + "generated_at": "2026-02-19T13:36:01.088Z" } } \ No newline at end of file diff --git a/new-api-details/topics/creativity-tools.json b/new-api-details/topics/creativity-tools.json index 7380f25b..ad993625 100644 --- a/new-api-details/topics/creativity-tools.json +++ b/new-api-details/topics/creativity-tools.json @@ -1,10 +1,11 @@ { "slug": "creativity-tools", "name": "creativity tools", - "published_at": "2026-01-25T16:06:29.174Z", + "published_at": "2026-02-19T13:36:01.876Z", "organizationCount": 1, "projectCount": 84, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "international-catrobat-association", "name": "International Catrobat Association", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 84, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.174Z" + "generated_at": "2026-02-19T13:36:01.876Z" } } \ No newline at end of file diff --git a/new-api-details/topics/crm.json b/new-api-details/topics/crm.json index 94db73e4..eccc1988 100644 --- a/new-api-details/topics/crm.json +++ b/new-api-details/topics/crm.json @@ -1,7 +1,7 @@ { "slug": "crm", "name": "crm", - "published_at": "2026-01-25T16:06:28.769Z", + "published_at": "2026-02-19T13:36:01.023Z", "organizationCount": 1, "projectCount": 22, "years": [ @@ -52,6 +52,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.769Z" + "generated_at": "2026-02-19T13:36:01.023Z" } } \ No newline at end of file diff --git a/new-api-details/topics/cross-desktop.json b/new-api-details/topics/cross-desktop.json index df8a6d92..3e461f93 100644 --- a/new-api-details/topics/cross-desktop.json +++ b/new-api-details/topics/cross-desktop.json @@ -1,7 +1,7 @@ { "slug": "cross-desktop", "name": "cross desktop", - "published_at": "2026-01-25T16:06:28.582Z", + "published_at": "2026-02-19T13:36:00.681Z", "organizationCount": 1, "projectCount": 5, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.582Z" + "generated_at": "2026-02-19T13:36:00.681Z" } } \ No newline at end of file diff --git a/new-api-details/topics/cross-platform.json b/new-api-details/topics/cross-platform.json index c0707088..23b0cfd6 100644 --- a/new-api-details/topics/cross-platform.json +++ b/new-api-details/topics/cross-platform.json @@ -1,10 +1,11 @@ { "slug": "cross-platform", "name": "cross-platform", - "published_at": "2026-01-25T16:06:28.581Z", + "published_at": "2026-02-19T13:36:00.678Z", "organizationCount": 9, "projectCount": 243, "years": [ + 2026, 2025, 2024, 2023, @@ -18,15 +19,24 @@ ], "organizations": [ { - "slug": "beeware-project", - "name": "BeeWare Project", - "first_year": 2017, - "last_year": 2018, - "total_projects": 5, - "is_currently_active": false, + "slug": "zulip", + "name": "Zulip", + "first_year": 2016, + "last_year": 2026, + "total_projects": 135, + "is_currently_active": true, "active_years": [ + 2016, 2017, - 2018 + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { @@ -45,75 +55,92 @@ ] }, { - "slug": "joplin", - "name": "Joplin", - "first_year": 2020, - "last_year": 2024, - "total_projects": 17, - "is_currently_active": false, + "slug": "swift", + "name": "Swift", + "first_year": 2018, + "last_year": 2026, + "total_projects": 26, + "is_currently_active": true, "active_years": [ + 2018, + 2019, 2020, 2021, 2022, - 2024 + 2023, + 2024, + 2025, + 2026 ] }, { "slug": "metacall", "name": "MetaCall", "first_year": 2021, - "last_year": 2024, + "last_year": 2026, "total_projects": 19, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2021, 2022, 2023, - 2024 + 2024, + 2026 + ] + }, + { + "slug": "joplin", + "name": "Joplin", + "first_year": 2020, + "last_year": 2026, + "total_projects": 17, + "is_currently_active": true, + "active_years": [ + 2020, + 2021, + 2022, + 2024, + 2026 ] }, { "slug": "neovim", "name": "Neovim", "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "total_projects": 8, "is_currently_active": true, "active_years": [ 2018, 2019, 2020, - 2025 + 2025, + 2026 ] }, { - "slug": "neutralinojs", - "name": "Neutralinojs", - "first_year": 2022, - "last_year": 2024, - "total_projects": 4, + "slug": "beeware-project", + "name": "BeeWare Project", + "first_year": 2017, + "last_year": 2018, + "total_projects": 5, "is_currently_active": false, "active_years": [ - 2022, - 2024 + 2017, + 2018 ] }, { - "slug": "swift", - "name": "Swift", - "first_year": 2018, - "last_year": 2025, - "total_projects": 26, + "slug": "neutralinojs", + "name": "Neutralinojs", + "first_year": 2022, + "last_year": 2026, + "total_projects": 4, "is_currently_active": true, "active_years": [ - 2018, - 2019, - 2020, - 2021, 2022, - 2023, 2024, - 2025 + 2026 ] }, { @@ -126,26 +153,6 @@ "active_years": [ 2017 ] - }, - { - "slug": "zulip", - "name": "Zulip", - "first_year": 2016, - "last_year": 2025, - "total_projects": 135, - "is_currently_active": true, - "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 - ] } ], "yearlyStats": { @@ -188,10 +195,14 @@ "2025": { "organizationCount": 4, "projectCount": 24 + }, + "2026": { + "organizationCount": 7, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.581Z" + "generated_at": "2026-02-19T13:36:00.678Z" } } \ No newline at end of file diff --git a/new-api-details/topics/crowdsourcing.json b/new-api-details/topics/crowdsourcing.json index f4222f79..7b397e08 100644 --- a/new-api-details/topics/crowdsourcing.json +++ b/new-api-details/topics/crowdsourcing.json @@ -1,10 +1,11 @@ { "slug": "crowdsourcing", "name": "crowdsourcing", - "published_at": "2026-01-25T16:06:29.435Z", + "published_at": "2026-02-19T13:36:02.491Z", "organizationCount": 2, "projectCount": 55, "years": [ + 2026, 2025, 2024, 2023, @@ -17,24 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "open-food-facts", - "name": "Open Food Facts", - "first_year": 2018, - "last_year": 2025, - "total_projects": 10, - "is_currently_active": true, - "active_years": [ - 2018, - 2022, - 2025 - ] - }, { "slug": "openstreetmap", "name": "OpenStreetMap", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 45, "is_currently_active": true, "active_years": [ @@ -47,7 +35,22 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "open-food-facts", + "name": "Open Food Facts", + "first_year": 2018, + "last_year": 2026, + "total_projects": 10, + "is_currently_active": true, + "active_years": [ + 2018, + 2022, + 2025, + 2026 ] } ], @@ -91,10 +94,14 @@ "2025": { "organizationCount": 2, "projectCount": 10 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.435Z" + "generated_at": "2026-02-19T13:36:02.491Z" } } \ No newline at end of file diff --git a/new-api-details/topics/cryptography.json b/new-api-details/topics/cryptography.json index 34cf7c77..06ca1f8d 100644 --- a/new-api-details/topics/cryptography.json +++ b/new-api-details/topics/cryptography.json @@ -1,39 +1,41 @@ { "slug": "cryptography", "name": "cryptography", - "published_at": "2026-01-25T16:06:29.095Z", + "published_at": "2026-02-19T13:36:01.704Z", "organizationCount": 2, "projectCount": 8, "years": [ + 2026, 2025, 2024, 2023, 2022 ], "organizations": [ - { - "slug": "gnutls", - "name": "GnuTLS", - "first_year": 2023, - "last_year": 2023, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2023 - ] - }, { "slug": "libssh", "name": "libssh", "first_year": 2022, - "last_year": 2025, + "last_year": 2026, "total_projects": 6, "is_currently_active": true, "active_years": [ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "gnutls", + "name": "GnuTLS", + "first_year": 2023, + "last_year": 2023, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2023 ] } ], @@ -53,10 +55,14 @@ "2025": { "organizationCount": 1, "projectCount": 1 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.095Z" + "generated_at": "2026-02-19T13:36:01.704Z" } } \ No newline at end of file diff --git a/new-api-details/topics/cs-education.json b/new-api-details/topics/cs-education.json index 0d72276f..4ade8674 100644 --- a/new-api-details/topics/cs-education.json +++ b/new-api-details/topics/cs-education.json @@ -1,10 +1,11 @@ { "slug": "cs-education", "name": "cs education", - "published_at": "2026-01-25T16:06:29.849Z", + "published_at": "2026-02-19T13:36:02.477Z", "organizationCount": 1, "projectCount": 10, "years": [ + 2026, 2025, 2024, 2023, @@ -16,7 +17,7 @@ "slug": "omegaup", "name": "omegaUp", "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "total_projects": 10, "is_currently_active": true, "active_years": [ @@ -24,7 +25,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -48,10 +50,14 @@ "2025": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.849Z" + "generated_at": "2026-02-19T13:36:02.477Z" } } \ No newline at end of file diff --git a/new-api-details/topics/cubesat.json b/new-api-details/topics/cubesat.json index ca88fbb1..14e880a0 100644 --- a/new-api-details/topics/cubesat.json +++ b/new-api-details/topics/cubesat.json @@ -1,10 +1,11 @@ { "slug": "cubesat", "name": "cubesat", - "published_at": "2026-01-25T16:06:29.272Z", + "published_at": "2026-02-19T13:36:02.173Z", "organizationCount": 1, "projectCount": 7, "years": [ + 2026, 2024, 2022, 2021 @@ -14,13 +15,14 @@ "slug": "librecube-initiative", "name": "LibreCube Initiative", "first_year": 2021, - "last_year": 2024, + "last_year": 2026, "total_projects": 7, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2021, 2022, - 2024 + 2024, + 2026 ] } ], @@ -36,10 +38,14 @@ "2024": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.272Z" + "generated_at": "2026-02-19T13:36:02.173Z" } } \ No newline at end of file diff --git a/new-api-details/topics/cubesats.json b/new-api-details/topics/cubesats.json index 56c81d28..3ea97db4 100644 --- a/new-api-details/topics/cubesats.json +++ b/new-api-details/topics/cubesats.json @@ -1,7 +1,7 @@ { "slug": "cubesats", "name": "cubesats", - "published_at": "2026-01-25T16:06:28.442Z", + "published_at": "2026-02-19T13:36:00.390Z", "organizationCount": 2, "projectCount": 37, "years": [ @@ -65,6 +65,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.442Z" + "generated_at": "2026-02-19T13:36:00.390Z" } } \ No newline at end of file diff --git a/new-api-details/topics/cultural-heritage.json b/new-api-details/topics/cultural-heritage.json index 5a2b390e..57906097 100644 --- a/new-api-details/topics/cultural-heritage.json +++ b/new-api-details/topics/cultural-heritage.json @@ -1,10 +1,11 @@ { "slug": "cultural-heritage", "name": "cultural heritage", - "published_at": "2026-01-25T16:06:28.809Z", + "published_at": "2026-02-19T13:36:01.113Z", "organizationCount": 2, "projectCount": 33, "years": [ + 2026, 2022, 2021, 2020, @@ -16,15 +17,16 @@ "slug": "cuneiform-digital-library-initiative-cdli", "name": "Cuneiform Digital Library Initiative (CDLI)", "first_year": 2018, - "last_year": 2022, + "last_year": 2026, "total_projects": 30, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2018, 2019, 2020, 2021, - 2022 + 2022, + 2026 ] }, { @@ -59,10 +61,14 @@ "2022": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.809Z" + "generated_at": "2026-02-19T13:36:01.113Z" } } \ No newline at end of file diff --git a/new-api-details/topics/culture.json b/new-api-details/topics/culture.json index 3fc66726..cc140122 100644 --- a/new-api-details/topics/culture.json +++ b/new-api-details/topics/culture.json @@ -1,10 +1,11 @@ { "slug": "culture", "name": "culture", - "published_at": "2026-01-25T16:06:28.811Z", + "published_at": "2026-02-19T13:36:01.135Z", "organizationCount": 1, "projectCount": 30, "years": [ + 2026, 2022, 2021, 2020, @@ -16,15 +17,16 @@ "slug": "cuneiform-digital-library-initiative-cdli", "name": "Cuneiform Digital Library Initiative (CDLI)", "first_year": 2018, - "last_year": 2022, + "last_year": 2026, "total_projects": 30, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2018, 2019, 2020, 2021, - 2022 + 2022, + 2026 ] } ], @@ -48,10 +50,14 @@ "2022": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.811Z" + "generated_at": "2026-02-19T13:36:01.135Z" } } \ No newline at end of file diff --git a/new-api-details/topics/customization.json b/new-api-details/topics/customization.json index 0e12dbe2..acc38a80 100644 --- a/new-api-details/topics/customization.json +++ b/new-api-details/topics/customization.json @@ -1,7 +1,7 @@ { "slug": "customization", "name": "customization", - "published_at": "2026-01-25T16:06:29.805Z", + "published_at": "2026-02-19T13:36:03.151Z", "organizationCount": 1, "projectCount": 5, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.805Z" + "generated_at": "2026-02-19T13:36:03.151Z" } } \ No newline at end of file diff --git a/new-api-details/topics/cyber-security.json b/new-api-details/topics/cyber-security.json index 23f399c9..20cd80d9 100644 --- a/new-api-details/topics/cyber-security.json +++ b/new-api-details/topics/cyber-security.json @@ -1,10 +1,11 @@ { "slug": "cyber-security", "name": "cyber security", - "published_at": "2026-01-25T16:06:29.422Z", + "published_at": "2026-02-19T13:36:02.671Z", "organizationCount": 1, "projectCount": 102, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "owasp-foundation", "name": "OWASP Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 102, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 15 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.422Z" + "generated_at": "2026-02-19T13:36:02.671Z" } } \ No newline at end of file diff --git a/new-api-details/topics/cybersecurity.json b/new-api-details/topics/cybersecurity.json index 44c29df9..9384e1b5 100644 --- a/new-api-details/topics/cybersecurity.json +++ b/new-api-details/topics/cybersecurity.json @@ -1,10 +1,11 @@ { "slug": "cybersecurity", "name": "cybersecurity", - "published_at": "2026-01-25T16:06:29.063Z", + "published_at": "2026-02-19T13:36:01.702Z", "organizationCount": 2, "projectCount": 120, "years": [ + 2026, 2025, 2024, 2023, @@ -18,15 +19,14 @@ ], "organizations": [ { - "slug": "gnu-radio", - "name": "GNU Radio", + "slug": "owasp-foundation", + "name": "OWASP Foundation", "first_year": 2016, - "last_year": 2025, - "total_projects": 18, + "last_year": 2026, + "total_projects": 102, "is_currently_active": true, "active_years": [ 2016, - 2017, 2018, 2019, 2020, @@ -34,18 +34,20 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "owasp-foundation", - "name": "OWASP Foundation", + "slug": "gnu-radio", + "name": "GNU Radio", "first_year": 2016, - "last_year": 2025, - "total_projects": 102, + "last_year": 2026, + "total_projects": 18, "is_currently_active": true, "active_years": [ 2016, + 2017, 2018, 2019, 2020, @@ -53,7 +55,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -97,10 +100,14 @@ "2025": { "organizationCount": 2, "projectCount": 19 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.063Z" + "generated_at": "2026-02-19T13:36:01.702Z" } } \ No newline at end of file diff --git a/new-api-details/topics/data-analysis.json b/new-api-details/topics/data-analysis.json index 8d7f9b7a..e5a82047 100644 --- a/new-api-details/topics/data-analysis.json +++ b/new-api-details/topics/data-analysis.json @@ -1,10 +1,11 @@ { "slug": "data-analysis", "name": "data analysis", - "published_at": "2026-01-25T16:06:28.396Z", - "organizationCount": 8, + "published_at": "2026-02-19T13:36:00.468Z", + "organizationCount": 9, "projectCount": 157, "years": [ + 2026, 2025, 2024, 2023, @@ -17,48 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "aossie-the-australian-national-universitys-open-source-software-innovation-and-education", - "name": "AOSSIE - The Australian National University's Open-Source Software Innovation and Education", - "first_year": 2016, - "last_year": 2016, - "total_projects": 6, - "is_currently_active": false, - "active_years": [ - 2016 - ] - }, - { - "slug": "genes-genomes-and-variation", - "name": "Genes, Genomes and Variation", - "first_year": 2016, - "last_year": 2019, - "total_projects": 12, - "is_currently_active": false, - "active_years": [ - 2016, - 2017, - 2018, - 2019 - ] - }, - { - "slug": "open-science-initiative-for-perfusion-imaging", - "name": "Open Science Initiative for Perfusion Imaging", - "first_year": 2024, - "last_year": 2025, - "total_projects": 9, - "is_currently_active": true, - "active_years": [ - 2024, - 2025 - ] - }, { "slug": "openastronomy", "name": "OpenAstronomy", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 77, "is_currently_active": true, "active_years": [ @@ -71,7 +35,20 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "wso2", + "name": "WSO2", + "first_year": 2016, + "last_year": 2017, + "total_projects": 20, + "is_currently_active": false, + "active_years": [ + 2016, + 2017 ] }, { @@ -91,15 +68,30 @@ ] }, { - "slug": "urban-energy-systems-laboratory-empa", - "name": "Urban Energy Systems Laboratory, Empa", + "slug": "genes-genomes-and-variation", + "name": "Genes, Genomes and Variation", "first_year": 2016, - "last_year": 2017, - "total_projects": 6, + "last_year": 2019, + "total_projects": 12, "is_currently_active": false, "active_years": [ 2016, - 2017 + 2017, + 2018, + 2019 + ] + }, + { + "slug": "open-science-initiative-for-perfusion-imaging", + "name": "Open Science Initiative for Perfusion Imaging", + "first_year": 2024, + "last_year": 2026, + "total_projects": 9, + "is_currently_active": true, + "active_years": [ + 2024, + 2025, + 2026 ] }, { @@ -108,7 +100,7 @@ "first_year": 2022, "last_year": 2025, "total_projects": 8, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2024, @@ -116,16 +108,38 @@ ] }, { - "slug": "wso2", - "name": "WSO2", + "slug": "aossie-the-australian-national-universitys-open-source-software-innovation-and-education", + "name": "AOSSIE - The Australian National University's Open-Source Software Innovation and Education", + "first_year": 2016, + "last_year": 2016, + "total_projects": 6, + "is_currently_active": false, + "active_years": [ + 2016 + ] + }, + { + "slug": "urban-energy-systems-laboratory-empa", + "name": "Urban Energy Systems Laboratory, Empa", "first_year": 2016, "last_year": 2017, - "total_projects": 20, + "total_projects": 6, "is_currently_active": false, "active_years": [ 2016, 2017 ] + }, + { + "slug": "measurement-lab", + "name": "Measurement Lab", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] } ], "yearlyStats": { @@ -168,10 +182,14 @@ "2025": { "organizationCount": 3, "projectCount": 14 + }, + "2026": { + "organizationCount": 3, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.396Z" + "generated_at": "2026-02-19T13:36:00.468Z" } } \ No newline at end of file diff --git a/new-api-details/topics/data-analytics.json b/new-api-details/topics/data-analytics.json index 43984a12..0bddf80c 100644 --- a/new-api-details/topics/data-analytics.json +++ b/new-api-details/topics/data-analytics.json @@ -1,10 +1,11 @@ { "slug": "data-analytics", "name": "data analytics", - "published_at": "2026-01-25T16:06:28.368Z", + "published_at": "2026-02-19T13:36:00.292Z", "organizationCount": 7, "projectCount": 113, "years": [ + 2026, 2025, 2024, 2023, @@ -18,11 +19,11 @@ ], "organizations": [ { - "slug": "52north-spatial-information-research-gmbh", - "name": "52°North Spatial Information Research GmbH", + "slug": "dbpedia", + "name": "DBpedia", "first_year": 2016, - "last_year": 2025, - "total_projects": 25, + "last_year": 2026, + "total_projects": 61, "is_currently_active": true, "active_years": [ 2016, @@ -34,15 +35,16 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "dbpedia", - "name": "DBpedia", + "slug": "52north-spatial-information-research-gmbh", + "name": "52°North Spatial Information Research GmbH", "first_year": 2016, - "last_year": 2025, - "total_projects": 61, + "last_year": 2026, + "total_projects": 25, "is_currently_active": true, "active_years": [ 2016, @@ -51,6 +53,21 @@ 2019, 2020, 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ] + }, + { + "slug": "internet-health-report", + "name": "Internet Health Report", + "first_year": 2022, + "last_year": 2025, + "total_projects": 15, + "is_currently_active": false, + "active_years": [ 2022, 2023, 2024, @@ -80,20 +97,6 @@ 2022 ] }, - { - "slug": "internet-health-report", - "name": "Internet Health Report", - "first_year": 2022, - "last_year": 2025, - "total_projects": 15, - "is_currently_active": true, - "active_years": [ - 2022, - 2023, - 2024, - 2025 - ] - }, { "slug": "knime", "name": "KNIME", @@ -157,10 +160,14 @@ "2025": { "organizationCount": 3, "projectCount": 11 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.368Z" + "generated_at": "2026-02-19T13:36:00.292Z" } } \ No newline at end of file diff --git a/new-api-details/topics/data-and-databases.json b/new-api-details/topics/data-and-databases.json index cb78364b..94e8175d 100644 --- a/new-api-details/topics/data-and-databases.json +++ b/new-api-details/topics/data-and-databases.json @@ -1,10 +1,11 @@ { "slug": "data-and-databases", "name": "data and databases", - "published_at": "2026-01-25T16:06:29.105Z", + "published_at": "2026-02-19T13:36:01.737Z", "organizationCount": 2, "projectCount": 30, "years": [ + 2026, 2023, 2022, 2021, @@ -13,31 +14,32 @@ 2016 ], "organizations": [ - { - "slug": "graphql-foundation", - "name": "GraphQL Foundation", - "first_year": 2020, - "last_year": 2020, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2020 - ] - }, { "slug": "open-genome-informatics", "name": "Open Genome Informatics", "first_year": 2016, - "last_year": 2023, + "last_year": 2026, "total_projects": 28, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, 2020, 2021, 2022, - 2023 + 2023, + 2026 + ] + }, + { + "slug": "graphql-foundation", + "name": "GraphQL Foundation", + "first_year": 2020, + "last_year": 2020, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2020 ] } ], @@ -65,10 +67,14 @@ "2023": { "organizationCount": 1, "projectCount": 1 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.105Z" + "generated_at": "2026-02-19T13:36:01.737Z" } } \ No newline at end of file diff --git a/new-api-details/topics/data-cataloging.json b/new-api-details/topics/data-cataloging.json index e1adae37..4e31c05d 100644 --- a/new-api-details/topics/data-cataloging.json +++ b/new-api-details/topics/data-cataloging.json @@ -1,7 +1,7 @@ { "slug": "data-cataloging", "name": "Data cataloging", - "published_at": "2026-01-25T16:06:29.518Z", + "published_at": "2026-02-19T13:36:02.664Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.518Z" + "generated_at": "2026-02-19T13:36:02.664Z" } } \ No newline at end of file diff --git a/new-api-details/topics/data-collection.json b/new-api-details/topics/data-collection.json index ca1b7734..6ffe2a6d 100644 --- a/new-api-details/topics/data-collection.json +++ b/new-api-details/topics/data-collection.json @@ -1,10 +1,11 @@ { "slug": "data-collection", "name": "data-collection", - "published_at": "2026-01-25T16:06:28.805Z", + "published_at": "2026-02-19T13:36:01.102Z", "organizationCount": 1, "projectCount": 30, "years": [ + 2026, 2022, 2021, 2020, @@ -16,15 +17,16 @@ "slug": "cuneiform-digital-library-initiative-cdli", "name": "Cuneiform Digital Library Initiative (CDLI)", "first_year": 2018, - "last_year": 2022, + "last_year": 2026, "total_projects": 30, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2018, 2019, 2020, 2021, - 2022 + 2022, + 2026 ] } ], @@ -48,10 +50,14 @@ "2022": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.805Z" + "generated_at": "2026-02-19T13:36:01.102Z" } } \ No newline at end of file diff --git a/new-api-details/topics/data-discovery.json b/new-api-details/topics/data-discovery.json index 1d83303a..918422a4 100644 --- a/new-api-details/topics/data-discovery.json +++ b/new-api-details/topics/data-discovery.json @@ -1,10 +1,11 @@ { "slug": "data-discovery", "name": "data discovery", - "published_at": "2026-01-25T16:06:29.092Z", + "published_at": "2026-02-19T13:36:01.636Z", "organizationCount": 3, "projectCount": 95, "years": [ + 2026, 2025, 2024, 2023, @@ -21,9 +22,9 @@ "slug": "global-alliance-for-genomics-and-health", "name": "Global Alliance for Genomics and Health", "first_year": 2016, - "last_year": 2024, + "last_year": 2026, "total_projects": 45, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -33,37 +34,40 @@ 2021, 2022, 2023, - 2024 - ] - }, - { - "slug": "ioos", - "name": "IOOS", - "first_year": 2021, - "last_year": 2025, - "total_projects": 22, - "is_currently_active": true, - "active_years": [ - 2021, - 2022, 2024, - 2025 + 2026 ] }, { "slug": "open-genome-informatics", "name": "Open Genome Informatics", "first_year": 2016, - "last_year": 2023, + "last_year": 2026, "total_projects": 28, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, 2020, 2021, 2022, - 2023 + 2023, + 2026 + ] + }, + { + "slug": "ioos", + "name": "IOOS", + "first_year": 2021, + "last_year": 2026, + "total_projects": 22, + "is_currently_active": true, + "active_years": [ + 2021, + 2022, + 2024, + 2025, + 2026 ] } ], @@ -107,10 +111,14 @@ "2025": { "organizationCount": 1, "projectCount": 9 + }, + "2026": { + "organizationCount": 3, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.092Z" + "generated_at": "2026-02-19T13:36:01.636Z" } } \ No newline at end of file diff --git a/new-api-details/topics/data-extraction.json b/new-api-details/topics/data-extraction.json index 81ae4236..9b0a328b 100644 --- a/new-api-details/topics/data-extraction.json +++ b/new-api-details/topics/data-extraction.json @@ -1,10 +1,11 @@ { "slug": "data-extraction", "name": "data extraction", - "published_at": "2026-01-25T16:06:28.816Z", + "published_at": "2026-02-19T13:36:01.154Z", "organizationCount": 2, "projectCount": 73, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "dbpedia", "name": "DBpedia", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 61, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -94,10 +96,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.816Z" + "generated_at": "2026-02-19T13:36:01.154Z" } } \ No newline at end of file diff --git a/new-api-details/topics/data-fusion.json b/new-api-details/topics/data-fusion.json index 15f1ac60..ea1d8ff6 100644 --- a/new-api-details/topics/data-fusion.json +++ b/new-api-details/topics/data-fusion.json @@ -1,7 +1,7 @@ { "slug": "data-fusion", "name": "data fusion", - "published_at": "2026-01-25T16:06:28.601Z", + "published_at": "2026-02-19T13:36:00.757Z", "organizationCount": 1, "projectCount": 9, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.601Z" + "generated_at": "2026-02-19T13:36:00.757Z" } } \ No newline at end of file diff --git a/new-api-details/topics/data-infrastructure.json b/new-api-details/topics/data-infrastructure.json index ecc52ce4..740a957e 100644 --- a/new-api-details/topics/data-infrastructure.json +++ b/new-api-details/topics/data-infrastructure.json @@ -1,7 +1,7 @@ { "slug": "data-infrastructure", "name": "Data Infrastructure", - "published_at": "2026-01-25T16:06:28.822Z", + "published_at": "2026-02-19T13:36:01.151Z", "organizationCount": 1, "projectCount": 1, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.822Z" + "generated_at": "2026-02-19T13:36:01.151Z" } } \ No newline at end of file diff --git a/new-api-details/topics/data-integration.json b/new-api-details/topics/data-integration.json index 2472cb06..735847ac 100644 --- a/new-api-details/topics/data-integration.json +++ b/new-api-details/topics/data-integration.json @@ -1,7 +1,7 @@ { "slug": "data-integration", "name": "data integration", - "published_at": "2026-01-25T16:06:28.604Z", + "published_at": "2026-02-19T13:36:00.768Z", "organizationCount": 4, "projectCount": 52, "years": [ @@ -16,15 +16,18 @@ ], "organizations": [ { - "slug": "biomedical-informatics-emory-university", - "name": "Biomedical Informatics, Emory University", - "first_year": 2016, - "last_year": 2019, - "total_projects": 9, + "slug": "department-of-biomedical-informatics-emory-university", + "name": "Department of Biomedical Informatics, Emory University", + "first_year": 2021, + "last_year": 2025, + "total_projects": 27, "is_currently_active": false, "active_years": [ - 2016, - 2019 + 2021, + 2022, + 2023, + 2024, + 2025 ] }, { @@ -42,18 +45,15 @@ ] }, { - "slug": "department-of-biomedical-informatics-emory-university", - "name": "Department of Biomedical Informatics, Emory University", - "first_year": 2021, - "last_year": 2025, - "total_projects": 27, - "is_currently_active": true, + "slug": "biomedical-informatics-emory-university", + "name": "Biomedical Informatics, Emory University", + "first_year": 2016, + "last_year": 2019, + "total_projects": 9, + "is_currently_active": false, "active_years": [ - 2021, - 2022, - 2023, - 2024, - 2025 + 2016, + 2019 ] }, { @@ -105,6 +105,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.604Z" + "generated_at": "2026-02-19T13:36:00.768Z" } } \ No newline at end of file diff --git a/new-api-details/topics/data-intensive-science.json b/new-api-details/topics/data-intensive-science.json index 36379d56..68620e04 100644 --- a/new-api-details/topics/data-intensive-science.json +++ b/new-api-details/topics/data-intensive-science.json @@ -1,7 +1,7 @@ { "slug": "data-intensive-science", "name": "data-intensive science", - "published_at": "2026-01-25T16:06:28.983Z", + "published_at": "2026-02-19T13:36:01.419Z", "organizationCount": 1, "projectCount": 4, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.983Z" + "generated_at": "2026-02-19T13:36:01.419Z" } } \ No newline at end of file diff --git a/new-api-details/topics/data-management.json b/new-api-details/topics/data-management.json index 3be43b7a..9b4c5885 100644 --- a/new-api-details/topics/data-management.json +++ b/new-api-details/topics/data-management.json @@ -1,10 +1,11 @@ { "slug": "data-management", "name": "data management", - "published_at": "2026-01-25T16:06:28.710Z", + "published_at": "2026-02-19T13:36:00.963Z", "organizationCount": 4, "projectCount": 140, "years": [ + 2026, 2025, 2024, 2023, @@ -16,39 +17,11 @@ 2017 ], "organizations": [ - { - "slug": "center-for-research-in-open-source-software-cross", - "name": "Center for Research in Open Source Software (CROSS)", - "first_year": 2018, - "last_year": 2022, - "total_projects": 20, - "is_currently_active": false, - "active_years": [ - 2018, - 2019, - 2021, - 2022 - ] - }, - { - "slug": "ioos", - "name": "IOOS", - "first_year": 2021, - "last_year": 2025, - "total_projects": 22, - "is_currently_active": true, - "active_years": [ - 2021, - 2022, - 2024, - 2025 - ] - }, { "slug": "postgresql", "name": "PostgreSQL", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 51, "is_currently_active": true, "active_years": [ @@ -60,20 +33,51 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "uc-ospo", "name": "UC OSPO", "first_year": 2023, - "last_year": 2025, + "last_year": 2026, "total_projects": 47, "is_currently_active": true, "active_years": [ 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "ioos", + "name": "IOOS", + "first_year": 2021, + "last_year": 2026, + "total_projects": 22, + "is_currently_active": true, + "active_years": [ + 2021, + 2022, + 2024, + 2025, + 2026 + ] + }, + { + "slug": "center-for-research-in-open-source-software-cross", + "name": "Center for Research in Open Source Software (CROSS)", + "first_year": 2018, + "last_year": 2022, + "total_projects": 20, + "is_currently_active": false, + "active_years": [ + 2018, + 2019, + 2021, + 2022 ] } ], @@ -113,10 +117,14 @@ "2025": { "organizationCount": 3, "projectCount": 33 + }, + "2026": { + "organizationCount": 3, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.710Z" + "generated_at": "2026-02-19T13:36:00.963Z" } } \ No newline at end of file diff --git a/new-api-details/topics/data-meshes.json b/new-api-details/topics/data-meshes.json index c3b604b7..ae80f615 100644 --- a/new-api-details/topics/data-meshes.json +++ b/new-api-details/topics/data-meshes.json @@ -1,7 +1,7 @@ { "slug": "data-meshes", "name": "Data Meshes", - "published_at": "2026-01-25T16:06:28.711Z", + "published_at": "2026-02-19T13:36:00.966Z", "organizationCount": 1, "projectCount": 6, "years": [ @@ -15,7 +15,7 @@ "first_year": 2022, "last_year": 2025, "total_projects": 6, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2025 @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.711Z" + "generated_at": "2026-02-19T13:36:00.966Z" } } \ No newline at end of file diff --git a/new-api-details/topics/data-mining.json b/new-api-details/topics/data-mining.json index 64b7415b..f21c56f6 100644 --- a/new-api-details/topics/data-mining.json +++ b/new-api-details/topics/data-mining.json @@ -1,10 +1,11 @@ { "slug": "data-mining", "name": "data mining", - "published_at": "2026-01-25T16:06:28.671Z", + "published_at": "2026-02-19T13:36:01.039Z", "organizationCount": 5, "projectCount": 106, "years": [ + 2026, 2024, 2023, 2022, @@ -16,19 +17,6 @@ 2016 ], "organizations": [ - { - "slug": "clips-university-of-antwerp", - "name": "CLiPS, University of Antwerp", - "first_year": 2017, - "last_year": 2019, - "total_projects": 10, - "is_currently_active": false, - "active_years": [ - 2017, - 2018, - 2019 - ] - }, { "slug": "mlpack", "name": "mlpack", @@ -52,28 +40,30 @@ "slug": "open-genome-informatics", "name": "Open Genome Informatics", "first_year": 2016, - "last_year": 2023, + "last_year": 2026, "total_projects": 28, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, 2020, 2021, 2022, - 2023 + 2023, + 2026 ] }, { - "slug": "openrefine", - "name": "OpenRefine", - "first_year": 2020, - "last_year": 2024, - "total_projects": 3, + "slug": "clips-university-of-antwerp", + "name": "CLiPS, University of Antwerp", + "first_year": 2017, + "last_year": 2019, + "total_projects": 10, "is_currently_active": false, "active_years": [ - 2020, - 2024 + 2017, + 2018, + 2019 ] }, { @@ -86,6 +76,18 @@ "active_years": [ 2016 ] + }, + { + "slug": "openrefine", + "name": "OpenRefine", + "first_year": 2020, + "last_year": 2024, + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2020, + 2024 + ] } ], "yearlyStats": { @@ -124,10 +126,14 @@ "2024": { "organizationCount": 2, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.671Z" + "generated_at": "2026-02-19T13:36:01.039Z" } } \ No newline at end of file diff --git a/new-api-details/topics/data-modeling.json b/new-api-details/topics/data-modeling.json index f95b67e5..c6102410 100644 --- a/new-api-details/topics/data-modeling.json +++ b/new-api-details/topics/data-modeling.json @@ -1,10 +1,11 @@ { "slug": "data-modeling", "name": "data modeling", - "published_at": "2026-01-25T16:06:28.437Z", + "published_at": "2026-02-19T13:36:00.383Z", "organizationCount": 2, "projectCount": 132, "years": [ + 2026, 2025, 2024, 2023, @@ -17,25 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "accord-project", - "name": "Accord Project", - "first_year": 2020, - "last_year": 2025, - "total_projects": 13, - "is_currently_active": true, - "active_years": [ - 2020, - 2021, - 2024, - 2025 - ] - }, { "slug": "national-resource-for-network-biology-nrnb", "name": "National Resource for Network Biology (NRNB)", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 119, "is_currently_active": true, "active_years": [ @@ -48,7 +35,23 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "accord-project", + "name": "Accord Project", + "first_year": 2020, + "last_year": 2026, + "total_projects": 13, + "is_currently_active": true, + "active_years": [ + 2020, + 2021, + 2024, + 2025, + 2026 ] } ], @@ -92,10 +95,14 @@ "2025": { "organizationCount": 2, "projectCount": 13 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.437Z" + "generated_at": "2026-02-19T13:36:00.383Z" } } \ No newline at end of file diff --git a/new-api-details/topics/data-portal.json b/new-api-details/topics/data-portal.json index b9e16fc2..2da637f6 100644 --- a/new-api-details/topics/data-portal.json +++ b/new-api-details/topics/data-portal.json @@ -1,7 +1,7 @@ { "slug": "data-portal", "name": "data portal", - "published_at": "2026-01-25T16:06:29.765Z", + "published_at": "2026-02-19T13:36:03.112Z", "organizationCount": 1, "projectCount": 6, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.765Z" + "generated_at": "2026-02-19T13:36:03.112Z" } } \ No newline at end of file diff --git a/new-api-details/topics/data-processing-pipeline.json b/new-api-details/topics/data-processing-pipeline.json index 4d284a14..8a10fd59 100644 --- a/new-api-details/topics/data-processing-pipeline.json +++ b/new-api-details/topics/data-processing-pipeline.json @@ -1,10 +1,11 @@ { "slug": "data-processing-pipeline", "name": "data processing pipeline", - "published_at": "2026-01-25T16:06:28.804Z", + "published_at": "2026-02-19T13:36:01.100Z", "organizationCount": 2, "projectCount": 42, "years": [ + 2026, 2022, 2021, 2020, @@ -17,15 +18,16 @@ "slug": "cuneiform-digital-library-initiative-cdli", "name": "Cuneiform Digital Library Initiative (CDLI)", "first_year": 2018, - "last_year": 2022, + "last_year": 2026, "total_projects": 30, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2018, 2019, 2020, 2021, - 2022 + 2022, + 2026 ] }, { @@ -69,10 +71,14 @@ "2022": { "organizationCount": 2, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.804Z" + "generated_at": "2026-02-19T13:36:01.100Z" } } \ No newline at end of file diff --git a/new-api-details/topics/data-processing.json b/new-api-details/topics/data-processing.json index 0f19ab85..72376e7f 100644 --- a/new-api-details/topics/data-processing.json +++ b/new-api-details/topics/data-processing.json @@ -1,10 +1,11 @@ { "slug": "data-processing", "name": "data processing", - "published_at": "2026-01-25T16:06:28.807Z", + "published_at": "2026-02-19T13:36:01.104Z", "organizationCount": 5, "projectCount": 63, "years": [ + 2026, 2025, 2024, 2023, @@ -21,22 +22,23 @@ "slug": "cuneiform-digital-library-initiative-cdli", "name": "Cuneiform Digital Library Initiative (CDLI)", "first_year": 2018, - "last_year": 2022, + "last_year": 2026, "total_projects": 30, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2018, 2019, 2020, 2021, - 2022 + 2022, + 2026 ] }, { "slug": "gnu-octave", "name": "GNU Octave", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 23, "is_currently_active": true, "active_years": [ @@ -49,7 +51,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -63,17 +66,6 @@ 2016 ] }, - { - "slug": "mapaction", - "name": "MapAction", - "first_year": 2021, - "last_year": 2021, - "total_projects": 1, - "is_currently_active": false, - "active_years": [ - 2021 - ] - }, { "slug": "mzmine", "name": "MZmine", @@ -85,6 +77,17 @@ 2020, 2022 ] + }, + { + "slug": "mapaction", + "name": "MapAction", + "first_year": 2021, + "last_year": 2021, + "total_projects": 1, + "is_currently_active": false, + "active_years": [ + 2021 + ] } ], "yearlyStats": { @@ -127,10 +130,14 @@ "2025": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.807Z" + "generated_at": "2026-02-19T13:36:01.104Z" } } \ No newline at end of file diff --git a/new-api-details/topics/data-refinement.json b/new-api-details/topics/data-refinement.json index 568c98a8..375374bb 100644 --- a/new-api-details/topics/data-refinement.json +++ b/new-api-details/topics/data-refinement.json @@ -1,7 +1,7 @@ { "slug": "data-refinement", "name": "data refinement", - "published_at": "2026-01-25T16:06:29.711Z", + "published_at": "2026-02-19T13:36:02.949Z", "organizationCount": 1, "projectCount": 1, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.711Z" + "generated_at": "2026-02-19T13:36:02.949Z" } } \ No newline at end of file diff --git a/new-api-details/topics/data-science.json b/new-api-details/topics/data-science.json index 245494d8..5eada40d 100644 --- a/new-api-details/topics/data-science.json +++ b/new-api-details/topics/data-science.json @@ -1,10 +1,11 @@ { "slug": "data-science", "name": "data science", - "published_at": "2026-01-25T16:06:28.693Z", - "organizationCount": 34, + "published_at": "2026-02-19T13:36:00.912Z", + "organizationCount": 35, "projectCount": 1692, "years": [ + 2026, 2025, 2024, 2023, @@ -18,65 +19,53 @@ ], "organizations": [ { - "slug": "canadian-centre-for-computational-genomics", - "name": "Canadian Centre for Computational Genomics", + "slug": "numfocus", + "name": "NumFOCUS", "first_year": 2016, - "last_year": 2020, - "total_projects": 15, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 277, + "is_currently_active": true, "active_years": [ 2016, + 2017, 2018, 2019, - 2020 - ] - }, - { - "slug": "center-for-research-in-open-source-software-cross", - "name": "Center for Research in Open Source Software (CROSS)", - "first_year": 2018, - "last_year": 2022, - "total_projects": 20, - "is_currently_active": false, - "active_years": [ - 2018, - 2019, + 2020, 2021, - 2022 - ] - }, - { - "slug": "center-for-translational-data-science", - "name": "Center for Translational Data Science", - "first_year": 2022, - "last_year": 2025, - "total_projects": 6, - "is_currently_active": true, - "active_years": [ 2022, - 2025 + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "computational-biology-university-of-nebraska-lincoln", - "name": "Computational Biology @ University of Nebraska-Lincoln", + "slug": "r-project-for-statistical-computing", + "name": "R project for statistical computing", "first_year": 2016, - "last_year": 2019, - "total_projects": 18, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 212, + "is_currently_active": true, "active_years": [ 2016, 2017, 2018, - 2019 + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "dbpedia", - "name": "DBpedia", + "slug": "incf", + "name": "INCF", "first_year": 2016, - "last_year": 2025, - "total_projects": 61, + "last_year": 2026, + "total_projects": 211, "is_currently_active": true, "active_years": [ 2016, @@ -88,68 +77,36 @@ 2022, 2023, 2024, - 2025 - ] - }, - { - "slug": "developers-italia", - "name": "Developers Italia", - "first_year": 2018, - "last_year": 2019, - "total_projects": 5, - "is_currently_active": false, - "active_years": [ - 2018, - 2019 - ] - }, - { - "slug": "earth-science-information-partners", - "name": "Earth Science Information Partners", - "first_year": 2018, - "last_year": 2019, - "total_projects": 4, - "is_currently_active": false, - "active_years": [ - 2018, - 2019 - ] - }, - { - "slug": "genome-assembly-and-annotation", - "name": "Genome Assembly and Annotation", - "first_year": 2021, - "last_year": 2023, - "total_projects": 14, - "is_currently_active": false, - "active_years": [ - 2021, - 2022, - 2023 + 2025, + 2026 ] }, { - "slug": "geomscale", - "name": "GeomScale", - "first_year": 2020, - "last_year": 2025, - "total_projects": 30, + "slug": "the-julia-language", + "name": "The Julia Language", + "first_year": 2016, + "last_year": 2026, + "total_projects": 140, "is_currently_active": true, "active_years": [ + 2016, + 2017, + 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "incf", - "name": "INCF", + "slug": "national-resource-for-network-biology-nrnb", + "name": "National Resource for Network Biology (NRNB)", "first_year": 2016, - "last_year": 2025, - "total_projects": 211, + "last_year": 2026, + "total_projects": 119, "is_currently_active": true, "active_years": [ 2016, @@ -161,52 +118,16 @@ 2022, 2023, 2024, - 2025 - ] - }, - { - "slug": "intermine", - "name": "InterMine", - "first_year": 2018, - "last_year": 2019, - "total_projects": 12, - "is_currently_active": false, - "active_years": [ - 2018, - 2019 - ] - }, - { - "slug": "ioos", - "name": "IOOS", - "first_year": 2021, - "last_year": 2025, - "total_projects": 22, - "is_currently_active": true, - "active_years": [ - 2021, - 2022, - 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "knime", - "name": "KNIME", - "first_year": 2019, - "last_year": 2019, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2019 - ] - }, - { - "slug": "mlpack", - "name": "mlpack", + "slug": "red-hen-lab", + "name": "Red Hen Lab", "first_year": 2016, "last_year": 2024, - "total_projects": 60, + "total_projects": 88, "is_currently_active": false, "active_years": [ 2016, @@ -221,22 +142,26 @@ ] }, { - "slug": "mzmine-and-ms-dial", - "name": "MZmine and MS-DIAL", - "first_year": 2023, + "slug": "tensorflow", + "name": "TensorFlow", + "first_year": 2019, "last_year": 2023, - "total_projects": 2, + "total_projects": 81, "is_currently_active": false, "active_years": [ + 2019, + 2020, + 2021, + 2022, 2023 ] }, { - "slug": "national-resource-for-network-biology-nrnb", - "name": "National Resource for Network Biology (NRNB)", + "slug": "openastronomy", + "name": "OpenAstronomy", "first_year": 2016, - "last_year": 2025, - "total_projects": 119, + "last_year": 2026, + "total_projects": 77, "is_currently_active": true, "active_years": [ 2016, @@ -248,27 +173,38 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "neuroinformatics-unit", - "name": "Neuroinformatics Unit", - "first_year": 2025, - "last_year": 2025, - "total_projects": 2, + "slug": "dbpedia", + "name": "DBpedia", + "first_year": 2016, + "last_year": 2026, + "total_projects": 61, "is_currently_active": true, "active_years": [ - 2025 + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "numfocus", - "name": "NumFOCUS", + "slug": "mlpack", + "name": "mlpack", "first_year": 2016, - "last_year": 2025, - "total_projects": 277, - "is_currently_active": true, + "last_year": 2024, + "total_projects": 60, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -278,8 +214,7 @@ 2021, 2022, 2023, - 2024, - 2025 + 2024 ] }, { @@ -302,132 +237,141 @@ ] }, { - "slug": "open-chromosome-collective", - "name": "Open Chromosome Collective", - "first_year": 2024, - "last_year": 2024, - "total_projects": 3, - "is_currently_active": false, + "slug": "uc-ospo", + "name": "UC OSPO", + "first_year": 2023, + "last_year": 2026, + "total_projects": 47, + "is_currently_active": true, "active_years": [ - 2024 + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "openastronomy", - "name": "OpenAstronomy", - "first_year": 2016, - "last_year": 2025, - "total_projects": 77, + "slug": "pharo-consortium", + "name": "Pharo Consortium", + "first_year": 2017, + "last_year": 2026, + "total_projects": 32, "is_currently_active": true, "active_years": [ - 2016, 2017, - 2018, 2019, - 2020, 2021, - 2022, 2023, - 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "pecan-project", - "name": "PEcAn Project", - "first_year": 2017, - "last_year": 2025, + "slug": "geomscale", + "name": "GeomScale", + "first_year": 2020, + "last_year": 2026, "total_projects": 30, "is_currently_active": true, "active_years": [ - 2017, - 2018, - 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "pharo-consortium", - "name": "Pharo Consortium", + "slug": "pecan-project", + "name": "PEcAn Project", "first_year": 2017, - "last_year": 2025, - "total_projects": 32, + "last_year": 2026, + "total_projects": 30, "is_currently_active": true, "active_years": [ 2017, + 2018, 2019, + 2020, 2021, + 2022, 2023, - 2025 + 2024, + 2025, + 2026 ] }, { - "slug": "polypheny", - "name": "Polypheny", + "slug": "ioos", + "name": "IOOS", "first_year": 2021, - "last_year": 2024, - "total_projects": 9, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 22, + "is_currently_active": true, "active_years": [ 2021, 2022, - 2024 + 2024, + 2025, + 2026 ] }, { - "slug": "qc-devs", - "name": "QC-Devs", - "first_year": 2024, - "last_year": 2025, - "total_projects": 7, - "is_currently_active": true, + "slug": "center-for-research-in-open-source-software-cross", + "name": "Center for Research in Open Source Software (CROSS)", + "first_year": 2018, + "last_year": 2022, + "total_projects": 20, + "is_currently_active": false, "active_years": [ - 2024, - 2025 + 2018, + 2019, + 2021, + 2022 ] }, { - "slug": "r-project-for-statistical-computing", - "name": "R project for statistical computing", + "slug": "computational-biology-university-of-nebraska-lincoln", + "name": "Computational Biology @ University of Nebraska-Lincoln", "first_year": 2016, - "last_year": 2025, - "total_projects": 212, - "is_currently_active": true, + "last_year": 2019, + "total_projects": 18, + "is_currently_active": false, "active_years": [ 2016, 2017, 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2019 ] }, { - "slug": "red-hen-lab", - "name": "Red Hen Lab", + "slug": "canadian-centre-for-computational-genomics", + "name": "Canadian Centre for Computational Genomics", "first_year": 2016, - "last_year": 2024, - "total_projects": 88, + "last_year": 2020, + "total_projects": 15, "is_currently_active": false, "active_years": [ 2016, - 2017, 2018, 2019, - 2020, + 2020 + ] + }, + { + "slug": "genome-assembly-and-annotation", + "name": "Genome Assembly and Annotation", + "first_year": 2021, + "last_year": 2026, + "total_projects": 14, + "is_currently_active": true, + "active_years": [ 2021, 2022, 2023, - 2024 + 2026 ] }, { @@ -444,6 +388,18 @@ 2019 ] }, + { + "slug": "intermine", + "name": "InterMine", + "first_year": 2018, + "last_year": 2019, + "total_projects": 12, + "is_currently_active": false, + "active_years": [ + 2018, + 2019 + ] + }, { "slug": "shogun", "name": "Shogun", @@ -458,6 +414,19 @@ 2020 ] }, + { + "slug": "polypheny", + "name": "Polypheny", + "first_year": 2021, + "last_year": 2024, + "total_projects": 9, + "is_currently_active": false, + "active_years": [ + 2021, + 2022, + 2024 + ] + }, { "slug": "sktime", "name": "sktime", @@ -471,39 +440,54 @@ ] }, { - "slug": "tensorflow", - "name": "TensorFlow", - "first_year": 2019, - "last_year": 2023, - "total_projects": 81, - "is_currently_active": false, + "slug": "qc-devs", + "name": "QC-Devs", + "first_year": 2024, + "last_year": 2026, + "total_projects": 7, + "is_currently_active": true, "active_years": [ - 2019, - 2020, - 2021, - 2022, - 2023 + 2024, + 2025, + 2026 ] }, { - "slug": "the-julia-language", - "name": "The Julia Language", - "first_year": 2016, + "slug": "center-for-translational-data-science", + "name": "Center for Translational Data Science", + "first_year": 2022, "last_year": 2025, - "total_projects": 140, - "is_currently_active": true, + "total_projects": 6, + "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2019, - 2020, - 2021, 2022, - 2023, - 2024, 2025 ] }, + { + "slug": "developers-italia", + "name": "Developers Italia", + "first_year": 2018, + "last_year": 2019, + "total_projects": 5, + "is_currently_active": false, + "active_years": [ + 2018, + 2019 + ] + }, + { + "slug": "earth-science-information-partners", + "name": "Earth Science Information Partners", + "first_year": 2018, + "last_year": 2019, + "total_projects": 4, + "is_currently_active": false, + "active_years": [ + 2018, + 2019 + ] + }, { "slug": "the-vega-project-at-the-university-of-washington", "name": "The Vega Project at the University of Washington", @@ -517,16 +501,59 @@ ] }, { - "slug": "uc-ospo", - "name": "UC OSPO", + "slug": "open-chromosome-collective", + "name": "Open Chromosome Collective", + "first_year": 2024, + "last_year": 2024, + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2024 + ] + }, + { + "slug": "knime", + "name": "KNIME", + "first_year": 2019, + "last_year": 2019, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2019 + ] + }, + { + "slug": "mzmine-and-ms-dial", + "name": "MZmine and MS-DIAL", "first_year": 2023, - "last_year": 2025, - "total_projects": 47, + "last_year": 2023, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2023 + ] + }, + { + "slug": "neuroinformatics-unit", + "name": "Neuroinformatics Unit", + "first_year": 2025, + "last_year": 2026, + "total_projects": 2, "is_currently_active": true, "active_years": [ - 2023, - 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "metaflow", + "name": "Metaflow", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 ] } ], @@ -570,10 +597,14 @@ "2025": { "organizationCount": 15, "projectCount": 170 + }, + "2026": { + "organizationCount": 16, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.693Z" + "generated_at": "2026-02-19T13:36:00.912Z" } } \ No newline at end of file diff --git a/new-api-details/topics/data-security.json b/new-api-details/topics/data-security.json index 95e9cd98..2a9bdada 100644 --- a/new-api-details/topics/data-security.json +++ b/new-api-details/topics/data-security.json @@ -1,10 +1,11 @@ { "slug": "data-security", "name": "data security", - "published_at": "2026-01-25T16:06:28.842Z", + "published_at": "2026-02-19T13:36:01.181Z", "organizationCount": 2, "projectCount": 72, "years": [ + 2026, 2025, 2024, 2023, @@ -18,37 +19,38 @@ ], "organizations": [ { - "slug": "department-of-biomedical-informatics-emory-university", - "name": "Department of Biomedical Informatics, Emory University", - "first_year": 2021, - "last_year": 2025, - "total_projects": 27, + "slug": "global-alliance-for-genomics-and-health", + "name": "Global Alliance for Genomics and Health", + "first_year": 2016, + "last_year": 2026, + "total_projects": 45, "is_currently_active": true, "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, 2021, 2022, 2023, 2024, - 2025 + 2026 ] }, { - "slug": "global-alliance-for-genomics-and-health", - "name": "Global Alliance for Genomics and Health", - "first_year": 2016, - "last_year": 2024, - "total_projects": 45, + "slug": "department-of-biomedical-informatics-emory-university", + "name": "Department of Biomedical Informatics, Emory University", + "first_year": 2021, + "last_year": 2025, + "total_projects": 27, "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, 2021, 2022, 2023, - 2024 + 2024, + 2025 ] } ], @@ -92,10 +94,14 @@ "2025": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.842Z" + "generated_at": "2026-02-19T13:36:01.181Z" } } \ No newline at end of file diff --git a/new-api-details/topics/data-sharing.json b/new-api-details/topics/data-sharing.json index 789b5a31..9605d765 100644 --- a/new-api-details/topics/data-sharing.json +++ b/new-api-details/topics/data-sharing.json @@ -1,10 +1,11 @@ { "slug": "data-sharing", "name": "data sharing", - "published_at": "2026-01-25T16:06:29.089Z", + "published_at": "2026-02-19T13:36:01.634Z", "organizationCount": 2, "projectCount": 50, "years": [ + 2026, 2024, 2023, 2022, @@ -20,9 +21,9 @@ "slug": "global-alliance-for-genomics-and-health", "name": "Global Alliance for Genomics and Health", "first_year": 2016, - "last_year": 2024, + "last_year": 2026, "total_projects": 45, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -32,7 +33,8 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -84,10 +86,14 @@ "2024": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.089Z" + "generated_at": "2026-02-19T13:36:01.634Z" } } \ No newline at end of file diff --git a/new-api-details/topics/data-streaming.json b/new-api-details/topics/data-streaming.json index b93015f4..0357b78e 100644 --- a/new-api-details/topics/data-streaming.json +++ b/new-api-details/topics/data-streaming.json @@ -1,7 +1,7 @@ { "slug": "data-streaming", "name": "data streaming", - "published_at": "2026-01-25T16:06:29.117Z", + "published_at": "2026-02-19T13:36:01.762Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.117Z" + "generated_at": "2026-02-19T13:36:01.762Z" } } \ No newline at end of file diff --git a/new-api-details/topics/data-structures.json b/new-api-details/topics/data-structures.json index 866b09f5..eba1eef0 100644 --- a/new-api-details/topics/data-structures.json +++ b/new-api-details/topics/data-structures.json @@ -1,10 +1,11 @@ { "slug": "data-structures", "name": "data structures", - "published_at": "2026-01-25T16:06:28.622Z", + "published_at": "2026-02-19T13:36:00.854Z", "organizationCount": 4, "projectCount": 59, "years": [ + 2026, 2025, 2021, 2020, @@ -33,24 +34,14 @@ "slug": "d-language-foundation", "name": "D Language Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 11, "is_currently_active": true, "active_years": [ 2016, 2019, - 2025 - ] - }, - { - "slug": "jgrapht", - "name": "JGraphT", - "first_year": 2018, - "last_year": 2018, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2018 + 2025, + 2026 ] }, { @@ -64,6 +55,17 @@ 2020, 2021 ] + }, + { + "slug": "jgrapht", + "name": "JGraphT", + "first_year": 2018, + "last_year": 2018, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2018 + ] } ], "yearlyStats": { @@ -94,10 +96,14 @@ "2025": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.622Z" + "generated_at": "2026-02-19T13:36:00.854Z" } } \ No newline at end of file diff --git a/new-api-details/topics/data-validation.json b/new-api-details/topics/data-validation.json index 25f9e35c..9da8d7bb 100644 --- a/new-api-details/topics/data-validation.json +++ b/new-api-details/topics/data-validation.json @@ -1,10 +1,11 @@ { "slug": "data-validation", "name": "data validation", - "published_at": "2026-01-25T16:06:29.207Z", + "published_at": "2026-02-19T13:36:02.078Z", "organizationCount": 1, "projectCount": 14, "years": [ + 2026, 2025, 2024 ], @@ -13,12 +14,13 @@ "slug": "json-schema", "name": "JSON Schema", "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "total_projects": 14, "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -30,10 +32,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.207Z" + "generated_at": "2026-02-19T13:36:02.078Z" } } \ No newline at end of file diff --git a/new-api-details/topics/data-visualisation.json b/new-api-details/topics/data-visualisation.json index a57760c5..5b25a60b 100644 --- a/new-api-details/topics/data-visualisation.json +++ b/new-api-details/topics/data-visualisation.json @@ -1,10 +1,11 @@ { "slug": "data-visualisation", "name": "data visualisation", - "published_at": "2026-01-25T16:06:28.885Z", + "published_at": "2026-02-19T13:36:01.227Z", "organizationCount": 5, "projectCount": 58, "years": [ + 2026, 2023, 2022, 2021, @@ -16,15 +17,20 @@ ], "organizations": [ { - "slug": "earth-science-information-partners", - "name": "Earth Science Information Partners", - "first_year": 2018, - "last_year": 2019, - "total_projects": 4, - "is_currently_active": false, + "slug": "open-genome-informatics", + "name": "Open Genome Informatics", + "first_year": 2016, + "last_year": 2026, + "total_projects": 28, + "is_currently_active": true, "active_years": [ - 2018, - 2019 + 2016, + 2017, + 2020, + 2021, + 2022, + 2023, + 2026 ] }, { @@ -54,19 +60,15 @@ ] }, { - "slug": "open-genome-informatics", - "name": "Open Genome Informatics", - "first_year": 2016, - "last_year": 2023, - "total_projects": 28, + "slug": "earth-science-information-partners", + "name": "Earth Science Information Partners", + "first_year": 2018, + "last_year": 2019, + "total_projects": 4, "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2020, - 2021, - 2022, - 2023 + 2018, + 2019 ] }, { @@ -113,10 +115,14 @@ "2023": { "organizationCount": 1, "projectCount": 1 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.885Z" + "generated_at": "2026-02-19T13:36:01.227Z" } } \ No newline at end of file diff --git a/new-api-details/topics/data-visualization.json b/new-api-details/topics/data-visualization.json index 067d904c..bee7cd19 100644 --- a/new-api-details/topics/data-visualization.json +++ b/new-api-details/topics/data-visualization.json @@ -1,10 +1,11 @@ { "slug": "data-visualization", "name": "data visualization", - "published_at": "2026-01-25T16:06:28.551Z", + "published_at": "2026-02-19T13:36:00.884Z", "organizationCount": 22, "projectCount": 1156, "years": [ + 2026, 2025, 2024, 2023, @@ -18,11 +19,11 @@ ], "organizations": [ { - "slug": "brl-cad", - "name": "BRL-CAD", + "slug": "numfocus", + "name": "NumFOCUS", "first_year": 2016, - "last_year": 2025, - "total_projects": 73, + "last_year": 2026, + "total_projects": 277, "is_currently_active": true, "active_years": [ 2016, @@ -34,115 +35,58 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "camicroscope", - "name": "caMicroscope", - "first_year": 2020, - "last_year": 2024, - "total_projects": 13, - "is_currently_active": false, - "active_years": [ - 2020, - 2021, - 2023, - 2024 - ] - }, - { - "slug": "cbioportal-for-cancer-genomics", - "name": "cBioPortal for Cancer Genomics", + "slug": "r-project-for-statistical-computing", + "name": "R project for statistical computing", "first_year": 2016, - "last_year": 2025, - "total_projects": 38, + "last_year": 2026, + "total_projects": 212, "is_currently_active": true, "active_years": [ 2016, 2017, + 2018, 2019, + 2020, + 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "chaoss", - "name": "CHAOSS", - "first_year": 2018, - "last_year": 2025, - "total_projects": 29, + "slug": "incf", + "name": "INCF", + "first_year": 2016, + "last_year": 2026, + "total_projects": 211, "is_currently_active": true, "active_years": [ + 2016, + 2017, 2018, 2019, 2020, 2021, 2022, - 2025 - ] - }, - { - "slug": "cuneiform-digital-library-initiative-cdli", - "name": "Cuneiform Digital Library Initiative (CDLI)", - "first_year": 2018, - "last_year": 2022, - "total_projects": 30, - "is_currently_active": false, - "active_years": [ - 2018, - 2019, - 2020, - 2021, - 2022 - ] - }, - { - "slug": "earth-science-information-partners", - "name": "Earth Science Information Partners", - "first_year": 2018, - "last_year": 2019, - "total_projects": 4, - "is_currently_active": false, - "active_years": [ - 2018, - 2019 - ] - }, - { - "slug": "elastic", - "name": "Elastic", - "first_year": 2018, - "last_year": 2020, - "total_projects": 4, - "is_currently_active": false, - "active_years": [ - 2018, - 2020 - ] - }, - { - "slug": "genes-genomes-and-variation", - "name": "Genes, Genomes and Variation", - "first_year": 2016, - "last_year": 2019, - "total_projects": 12, - "is_currently_active": false, - "active_years": [ - 2016, - 2017, - 2018, - 2019 + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "incf", - "name": "INCF", + "slug": "national-resource-for-network-biology-nrnb", + "name": "National Resource for Network Biology (NRNB)", "first_year": 2016, - "last_year": 2025, - "total_projects": 211, + "last_year": 2026, + "total_projects": 119, "is_currently_active": true, "active_years": [ 2016, @@ -154,14 +98,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "liquid-galaxy-project", "name": "Liquid Galaxy project", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 75, "is_currently_active": true, "active_years": [ @@ -173,15 +118,16 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "national-resource-for-network-biology-nrnb", - "name": "National Resource for Network Biology (NRNB)", + "slug": "brl-cad", + "name": "BRL-CAD", "first_year": 2016, - "last_year": 2025, - "total_projects": 119, + "last_year": 2026, + "total_projects": 73, "is_currently_active": true, "active_years": [ 2016, @@ -193,63 +139,75 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "numfocus", - "name": "NumFOCUS", + "slug": "cbioportal-for-cancer-genomics", + "name": "cBioPortal for Cancer Genomics", "first_year": 2016, - "last_year": 2025, - "total_projects": 277, + "last_year": 2026, + "total_projects": 38, "is_currently_active": true, "active_years": [ 2016, 2017, - 2018, 2019, - 2020, - 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "open-science-initiative-for-perfusion-imaging", - "name": "Open Science Initiative for Perfusion Imaging", - "first_year": 2024, - "last_year": 2025, - "total_projects": 9, + "slug": "cuneiform-digital-library-initiative-cdli", + "name": "Cuneiform Digital Library Initiative (CDLI)", + "first_year": 2018, + "last_year": 2026, + "total_projects": 30, "is_currently_active": true, "active_years": [ - 2024, - 2025 + 2018, + 2019, + 2020, + 2021, + 2022, + 2026 ] }, { - "slug": "openrefine", - "name": "OpenRefine", - "first_year": 2020, - "last_year": 2024, - "total_projects": 3, + "slug": "chaoss", + "name": "CHAOSS", + "first_year": 2018, + "last_year": 2025, + "total_projects": 29, "is_currently_active": false, "active_years": [ + 2018, + 2019, 2020, - 2024 + 2021, + 2022, + 2025 ] }, { - "slug": "percona", - "name": "Percona", - "first_year": 2019, - "last_year": 2020, - "total_projects": 3, - "is_currently_active": false, + "slug": "submitty", + "name": "Submitty", + "first_year": 2018, + "last_year": 2026, + "total_projects": 19, + "is_currently_active": true, "active_years": [ + 2018, 2019, - 2020 + 2020, + 2022, + 2023, + 2024, + 2026 ] }, { @@ -270,50 +228,68 @@ ] }, { - "slug": "r-project-for-statistical-computing", - "name": "R project for statistical computing", + "slug": "camicroscope", + "name": "caMicroscope", + "first_year": 2020, + "last_year": 2024, + "total_projects": 13, + "is_currently_active": false, + "active_years": [ + 2020, + 2021, + 2023, + 2024 + ] + }, + { + "slug": "genes-genomes-and-variation", + "name": "Genes, Genomes and Variation", "first_year": 2016, - "last_year": 2025, - "total_projects": 212, - "is_currently_active": true, + "last_year": 2019, + "total_projects": 12, + "is_currently_active": false, "active_years": [ 2016, 2017, 2018, - 2019, - 2020, - 2021, - 2022, - 2023, + 2019 + ] + }, + { + "slug": "open-science-initiative-for-perfusion-imaging", + "name": "Open Science Initiative for Perfusion Imaging", + "first_year": 2024, + "last_year": 2026, + "total_projects": 9, + "is_currently_active": true, + "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "space-virginia-tech", - "name": "Space @ Virginia Tech", + "slug": "earth-science-information-partners", + "name": "Earth Science Information Partners", "first_year": 2018, - "last_year": 2018, - "total_projects": 2, + "last_year": 2019, + "total_projects": 4, "is_currently_active": false, "active_years": [ - 2018 + 2018, + 2019 ] }, { - "slug": "submitty", - "name": "Submitty", + "slug": "elastic", + "name": "Elastic", "first_year": 2018, - "last_year": 2024, - "total_projects": 19, + "last_year": 2020, + "total_projects": 4, "is_currently_active": false, "active_years": [ 2018, - 2019, - 2020, - 2022, - 2023, - 2024 + 2020 ] }, { @@ -328,6 +304,30 @@ 2019 ] }, + { + "slug": "openrefine", + "name": "OpenRefine", + "first_year": 2020, + "last_year": 2024, + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2020, + 2024 + ] + }, + { + "slug": "percona", + "name": "Percona", + "first_year": 2019, + "last_year": 2020, + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2019, + 2020 + ] + }, { "slug": "ucsc-xena", "name": "UCSC Xena", @@ -341,6 +341,17 @@ 2019 ] }, + { + "slug": "space-virginia-tech", + "name": "Space @ Virginia Tech", + "first_year": 2018, + "last_year": 2018, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2018 + ] + }, { "slug": "wireshark", "name": "Wireshark", @@ -393,10 +404,14 @@ "2025": { "organizationCount": 9, "projectCount": 120 + }, + "2026": { + "organizationCount": 10, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.551Z" + "generated_at": "2026-02-19T13:36:00.884Z" } } \ No newline at end of file diff --git a/new-api-details/topics/data-vizualisation.json b/new-api-details/topics/data-vizualisation.json index 39eabfec..12834bfc 100644 --- a/new-api-details/topics/data-vizualisation.json +++ b/new-api-details/topics/data-vizualisation.json @@ -1,7 +1,7 @@ { "slug": "data-vizualisation", "name": "data vizualisation", - "published_at": "2026-01-25T16:06:29.569Z", + "published_at": "2026-02-19T13:36:02.760Z", "organizationCount": 1, "projectCount": 15, "years": [ @@ -64,6 +64,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.569Z" + "generated_at": "2026-02-19T13:36:02.760Z" } } \ No newline at end of file diff --git a/new-api-details/topics/data-wrangling.json b/new-api-details/topics/data-wrangling.json index d157d4d3..c6087b78 100644 --- a/new-api-details/topics/data-wrangling.json +++ b/new-api-details/topics/data-wrangling.json @@ -1,7 +1,7 @@ { "slug": "data-wrangling", "name": "data-wrangling", - "published_at": "2026-01-25T16:06:29.489Z", + "published_at": "2026-02-19T13:36:02.589Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.489Z" + "generated_at": "2026-02-19T13:36:02.589Z" } } \ No newline at end of file diff --git a/new-api-details/topics/data.json b/new-api-details/topics/data.json index 955cd6f4..f4b44fa7 100644 --- a/new-api-details/topics/data.json +++ b/new-api-details/topics/data.json @@ -1,10 +1,11 @@ { "slug": "data", "name": "data", - "published_at": "2026-01-25T16:06:28.686Z", - "organizationCount": 12, - "projectCount": 414, + "published_at": "2026-02-19T13:36:01.137Z", + "organizationCount": 13, + "projectCount": 444, "years": [ + 2026, 2025, 2024, 2023, @@ -18,44 +19,25 @@ ], "organizations": [ { - "slug": "cvat", - "name": "CVAT", - "first_year": 2024, - "last_year": 2024, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2024 - ] - }, - { - "slug": "data-for-the-common-good", - "name": "Data for the Common Good", - "first_year": 2024, - "last_year": 2025, - "total_projects": 8, - "is_currently_active": true, - "active_years": [ - 2024, - 2025 - ] - }, - { - "slug": "kart-project", - "name": "Kart Project", - "first_year": 2022, - "last_year": 2022, - "total_projects": 1, + "slug": "tensorflow", + "name": "TensorFlow", + "first_year": 2019, + "last_year": 2023, + "total_projects": 81, "is_currently_active": false, "active_years": [ - 2022 + 2019, + 2020, + 2021, + 2022, + 2023 ] }, { "slug": "liquid-galaxy-project", "name": "Liquid Galaxy project", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 75, "is_currently_active": true, "active_years": [ @@ -67,26 +49,34 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "mathesar", - "name": "Mathesar", - "first_year": 2022, - "last_year": 2023, - "total_projects": 5, - "is_currently_active": false, + "slug": "open-technologies-alliance-gfoss", + "name": "Open Technologies Alliance - GFOSS", + "first_year": 2017, + "last_year": 2026, + "total_projects": 70, + "is_currently_active": true, "active_years": [ + 2017, + 2018, + 2019, + 2021, 2022, - 2023 + 2023, + 2024, + 2025, + 2026 ] }, { "slug": "metabrainz-foundation-inc", "name": "MetaBrainz Foundation Inc", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 60, "is_currently_active": true, "active_years": [ @@ -99,34 +89,53 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "open-technologies-alliance-gfoss", - "name": "Open Technologies Alliance - GFOSS", + "slug": "postgresql", + "name": "PostgreSQL", "first_year": 2017, - "last_year": 2025, - "total_projects": 70, + "last_year": 2026, + "total_projects": 51, "is_currently_active": true, "active_years": [ 2017, 2018, 2019, + 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "postgresql", - "name": "PostgreSQL", - "first_year": 2017, - "last_year": 2025, - "total_projects": 51, + "slug": "cuneiform-digital-library-initiative-cdli", + "name": "Cuneiform Digital Library Initiative (CDLI)", + "first_year": 2018, + "last_year": 2026, + "total_projects": 30, "is_currently_active": true, + "active_years": [ + 2018, + 2019, + 2020, + 2021, + 2022, + 2026 + ] + }, + { + "slug": "spdx", + "name": "SPDX", + "first_year": 2017, + "last_year": 2023, + "total_projects": 29, + "is_currently_active": false, "active_years": [ 2017, 2018, @@ -134,9 +143,7 @@ 2020, 2021, 2022, - 2023, - 2024, - 2025 + 2023 ] }, { @@ -168,35 +175,50 @@ ] }, { - "slug": "spdx", - "name": "SPDX", - "first_year": 2017, + "slug": "data-for-the-common-good", + "name": "Data for the Common Good", + "first_year": 2024, + "last_year": 2026, + "total_projects": 8, + "is_currently_active": true, + "active_years": [ + 2024, + 2025, + 2026 + ] + }, + { + "slug": "mathesar", + "name": "Mathesar", + "first_year": 2022, "last_year": 2023, - "total_projects": 29, + "total_projects": 5, "is_currently_active": false, "active_years": [ - 2017, - 2018, - 2019, - 2020, - 2021, 2022, 2023 ] }, { - "slug": "tensorflow", - "name": "TensorFlow", - "first_year": 2019, - "last_year": 2023, - "total_projects": 81, + "slug": "cvat", + "name": "CVAT", + "first_year": 2024, + "last_year": 2024, + "total_projects": 2, "is_currently_active": false, "active_years": [ - 2019, - 2020, - 2021, - 2022, - 2023 + 2024 + ] + }, + { + "slug": "kart-project", + "name": "Kart Project", + "first_year": 2022, + "last_year": 2022, + "total_projects": 1, + "is_currently_active": false, + "active_years": [ + 2022 ] } ], @@ -210,24 +232,24 @@ "projectCount": 23 }, "2018": { - "organizationCount": 5, - "projectCount": 26 + "organizationCount": 6, + "projectCount": 28 }, "2019": { - "organizationCount": 7, - "projectCount": 59 + "organizationCount": 8, + "projectCount": 64 }, "2020": { - "organizationCount": 6, - "projectCount": 41 + "organizationCount": 7, + "projectCount": 50 }, "2021": { - "organizationCount": 7, - "projectCount": 61 + "organizationCount": 8, + "projectCount": 68 }, "2022": { - "organizationCount": 8, - "projectCount": 60 + "organizationCount": 9, + "projectCount": 67 }, "2023": { "organizationCount": 8, @@ -240,10 +262,14 @@ "2025": { "organizationCount": 5, "projectCount": 37 + }, + "2026": { + "organizationCount": 6, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.686Z" + "generated_at": "2026-02-19T13:36:01.137Z" } } \ No newline at end of file diff --git a/new-api-details/topics/database-engines.json b/new-api-details/topics/database-engines.json index 9ce8eb6a..c6ade984 100644 --- a/new-api-details/topics/database-engines.json +++ b/new-api-details/topics/database-engines.json @@ -1,10 +1,11 @@ { "slug": "database-engines", "name": "Database Engines", - "published_at": "2026-01-25T16:06:29.319Z", + "published_at": "2026-02-19T13:36:02.214Z", "organizationCount": 1, "projectCount": 39, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "mariadb", "name": "MariaDB", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 39, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.319Z" + "generated_at": "2026-02-19T13:36:02.214Z" } } \ No newline at end of file diff --git a/new-api-details/topics/database-optimization.json b/new-api-details/topics/database-optimization.json index 3ab140e4..fa42fb86 100644 --- a/new-api-details/topics/database-optimization.json +++ b/new-api-details/topics/database-optimization.json @@ -1,7 +1,7 @@ { "slug": "database-optimization", "name": "database optimization", - "published_at": "2026-01-25T16:06:29.530Z", + "published_at": "2026-02-19T13:36:02.689Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.530Z" + "generated_at": "2026-02-19T13:36:02.689Z" } } \ No newline at end of file diff --git a/new-api-details/topics/database-services.json b/new-api-details/topics/database-services.json index 06416599..1ea5c591 100644 --- a/new-api-details/topics/database-services.json +++ b/new-api-details/topics/database-services.json @@ -1,7 +1,7 @@ { "slug": "database-services", "name": "database services", - "published_at": "2026-01-25T16:06:29.719Z", + "published_at": "2026-02-19T13:36:02.977Z", "organizationCount": 1, "projectCount": 1, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.719Z" + "generated_at": "2026-02-19T13:36:02.977Z" } } \ No newline at end of file diff --git a/new-api-details/topics/database-systems.json b/new-api-details/topics/database-systems.json index 236d2493..6d7f50ea 100644 --- a/new-api-details/topics/database-systems.json +++ b/new-api-details/topics/database-systems.json @@ -1,7 +1,7 @@ { "slug": "database-systems", "name": "Database systems", - "published_at": "2026-01-25T16:06:29.606Z", + "published_at": "2026-02-19T13:36:02.850Z", "organizationCount": 1, "projectCount": 6, "years": [ @@ -15,7 +15,7 @@ "first_year": 2023, "last_year": 2025, "total_projects": 6, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2023, 2025 @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.606Z" + "generated_at": "2026-02-19T13:36:02.850Z" } } \ No newline at end of file diff --git a/new-api-details/topics/database.json b/new-api-details/topics/database.json index 2e2049a6..6428a870 100644 --- a/new-api-details/topics/database.json +++ b/new-api-details/topics/database.json @@ -1,10 +1,11 @@ { "slug": "database", "name": "database", - "published_at": "2026-01-25T16:06:28.574Z", + "published_at": "2026-02-19T13:36:00.668Z", "organizationCount": 17, "projectCount": 993, "years": [ + 2026, 2025, 2024, 2023, @@ -18,25 +19,33 @@ ], "organizations": [ { - "slug": "beam-community", - "name": "Beam Community", + "slug": "python-software-foundation", + "name": "Python Software Foundation", "first_year": 2016, - "last_year": 2018, - "total_projects": 19, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 277, + "is_currently_active": true, "active_years": [ 2016, 2017, - 2018 + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "ccextractor-development", - "name": "CCExtractor Development", + "slug": "the-apache-software-foundation", + "name": "The Apache Software Foundation", "first_year": 2016, "last_year": 2025, - "total_projects": 80, - "is_currently_active": true, + "total_projects": 248, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -51,52 +60,54 @@ ] }, { - "slug": "genes-genomes-and-variation", - "name": "Genes, Genomes and Variation", + "slug": "national-resource-for-network-biology-nrnb", + "name": "National Resource for Network Biology (NRNB)", "first_year": 2016, - "last_year": 2019, - "total_projects": 12, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 119, + "is_currently_active": true, "active_years": [ 2016, 2017, 2018, - 2019 + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "green-navigation", - "name": "Green Navigation", + "slug": "ccextractor-development", + "name": "CCExtractor Development", "first_year": 2016, - "last_year": 2017, - "total_projects": 8, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 80, + "is_currently_active": true, "active_years": [ 2016, - 2017 - ] - }, - { - "slug": "hydra-ecosystem", - "name": "Hydra Ecosystem", - "first_year": 2018, - "last_year": 2021, - "total_projects": 8, - "is_currently_active": false, - "active_years": [ + 2017, 2018, 2019, 2020, - 2021 + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { "slug": "jboss-community", "name": "JBoss Community", "first_year": 2016, - "last_year": 2022, + "last_year": 2026, "total_projects": 52, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -104,28 +115,35 @@ 2019, 2020, 2021, - 2022 + 2022, + 2026 ] }, { - "slug": "joplin", - "name": "Joplin", - "first_year": 2020, - "last_year": 2024, - "total_projects": 17, - "is_currently_active": false, + "slug": "postgresql", + "name": "PostgreSQL", + "first_year": 2017, + "last_year": 2026, + "total_projects": 51, + "is_currently_active": true, "active_years": [ + 2017, + 2018, + 2019, 2020, 2021, 2022, - 2024 + 2023, + 2024, + 2025, + 2026 ] }, { "slug": "mariadb", "name": "MariaDB", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 39, "is_currently_active": true, "active_years": [ @@ -138,22 +156,18 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "national-resource-for-network-biology-nrnb", - "name": "National Resource for Network Biology (NRNB)", - "first_year": 2016, + "slug": "the-palisadoes-foundation", + "name": "The Palisadoes Foundation", + "first_year": 2021, "last_year": 2025, - "total_projects": 119, - "is_currently_active": true, + "total_projects": 36, + "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, 2021, 2022, 2023, @@ -162,79 +176,71 @@ ] }, { - "slug": "phpmyadmin", - "name": "phpMyAdmin", - "first_year": 2017, - "last_year": 2019, - "total_projects": 9, + "slug": "beam-community", + "name": "Beam Community", + "first_year": 2016, + "last_year": 2018, + "total_projects": 19, "is_currently_active": false, "active_years": [ + 2016, 2017, - 2018, - 2019 + 2018 ] }, { - "slug": "polypheny", - "name": "Polypheny", - "first_year": 2021, - "last_year": 2024, - "total_projects": 9, - "is_currently_active": false, + "slug": "joplin", + "name": "Joplin", + "first_year": 2020, + "last_year": 2026, + "total_projects": 17, + "is_currently_active": true, "active_years": [ + 2020, 2021, 2022, - 2024 + 2024, + 2026 ] }, { - "slug": "postgresql", - "name": "PostgreSQL", - "first_year": 2017, - "last_year": 2025, - "total_projects": 51, - "is_currently_active": true, + "slug": "genes-genomes-and-variation", + "name": "Genes, Genomes and Variation", + "first_year": 2016, + "last_year": 2019, + "total_projects": 12, + "is_currently_active": false, "active_years": [ + 2016, 2017, 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2019 ] }, { - "slug": "python-software-foundation", - "name": "Python Software Foundation", - "first_year": 2016, - "last_year": 2025, - "total_projects": 277, - "is_currently_active": true, + "slug": "phpmyadmin", + "name": "phpMyAdmin", + "first_year": 2017, + "last_year": 2019, + "total_projects": 9, + "is_currently_active": false, "active_years": [ - 2016, 2017, 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2019 ] }, { - "slug": "seaql", - "name": "SeaQL", - "first_year": 2022, - "last_year": 2022, - "total_projects": 0, + "slug": "polypheny", + "name": "Polypheny", + "first_year": 2021, + "last_year": 2024, + "total_projects": 9, "is_currently_active": false, "active_years": [ - 2022 + 2021, + 2022, + 2024 ] }, { @@ -251,38 +257,40 @@ ] }, { - "slug": "the-apache-software-foundation", - "name": "The Apache Software Foundation", + "slug": "green-navigation", + "name": "Green Navigation", "first_year": 2016, - "last_year": 2025, - "total_projects": 248, - "is_currently_active": true, + "last_year": 2017, + "total_projects": 8, + "is_currently_active": false, "active_years": [ 2016, - 2017, + 2017 + ] + }, + { + "slug": "hydra-ecosystem", + "name": "Hydra Ecosystem", + "first_year": 2018, + "last_year": 2021, + "total_projects": 8, + "is_currently_active": false, + "active_years": [ 2018, 2019, 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2021 ] }, { - "slug": "the-palisadoes-foundation", - "name": "The Palisadoes Foundation", - "first_year": 2021, - "last_year": 2025, - "total_projects": 36, - "is_currently_active": true, + "slug": "seaql", + "name": "SeaQL", + "first_year": 2022, + "last_year": 2022, + "total_projects": 0, + "is_currently_active": false, "active_years": [ - 2021, - 2022, - 2023, - 2024, - 2025 + 2022 ] } ], @@ -326,10 +334,14 @@ "2025": { "organizationCount": 7, "projectCount": 83 + }, + "2026": { + "organizationCount": 7, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.574Z" + "generated_at": "2026-02-19T13:36:00.668Z" } } \ No newline at end of file diff --git a/new-api-details/topics/databases.json b/new-api-details/topics/databases.json index 7f721c8e..21bf0f61 100644 --- a/new-api-details/topics/databases.json +++ b/new-api-details/topics/databases.json @@ -1,10 +1,11 @@ { "slug": "databases", "name": "databases", - "published_at": "2026-01-25T16:06:28.466Z", + "published_at": "2026-02-19T13:36:00.481Z", "organizationCount": 15, "projectCount": 337, "years": [ + 2026, 2025, 2024, 2023, @@ -18,62 +19,53 @@ ], "organizations": [ { - "slug": "apache-datafusion", - "name": "Apache DataFusion", - "first_year": 2025, - "last_year": 2025, - "total_projects": 2, + "slug": "osgeo-open-source-geospatial-foundation", + "name": "OSGeo (Open Source Geospatial Foundation)", + "first_year": 2016, + "last_year": 2026, + "total_projects": 101, "is_currently_active": true, "active_years": [ - 2025 - ] - }, - { - "slug": "center-for-research-in-open-source-software-cross", - "name": "Center for Research in Open Source Software (CROSS)", - "first_year": 2018, - "last_year": 2022, - "total_projects": 20, - "is_currently_active": false, - "active_years": [ + 2016, + 2017, 2018, 2019, + 2020, 2021, - 2022 - ] - }, - { - "slug": "elastic", - "name": "Elastic", - "first_year": 2018, - "last_year": 2020, - "total_projects": 4, - "is_currently_active": false, - "active_years": [ - 2018, - 2020 + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "genes-genomes-and-variation", - "name": "Genes, Genomes and Variation", + "slug": "metabrainz-foundation-inc", + "name": "MetaBrainz Foundation Inc", "first_year": 2016, - "last_year": 2019, - "total_projects": 12, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 60, + "is_currently_active": true, "active_years": [ 2016, 2017, 2018, - 2019 + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "mariadb", - "name": "MariaDB", + "slug": "openstreetmap", + "name": "OpenStreetMap", "first_year": 2016, - "last_year": 2025, - "total_projects": 39, + "last_year": 2026, + "total_projects": 45, "is_currently_active": true, "active_years": [ 2016, @@ -85,27 +77,16 @@ 2022, 2023, 2024, - 2025 - ] - }, - { - "slug": "mathesar", - "name": "Mathesar", - "first_year": 2022, - "last_year": 2023, - "total_projects": 5, - "is_currently_active": false, - "active_years": [ - 2022, - 2023 + 2025, + 2026 ] }, { - "slug": "metabrainz-foundation-inc", - "name": "MetaBrainz Foundation Inc", + "slug": "mariadb", + "name": "MariaDB", "first_year": 2016, - "last_year": 2025, - "total_projects": 60, + "last_year": 2026, + "total_projects": 39, "is_currently_active": true, "active_years": [ 2016, @@ -117,63 +98,103 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "open-genome-informatics", "name": "Open Genome Informatics", "first_year": 2016, - "last_year": 2023, + "last_year": 2026, "total_projects": 28, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, 2020, 2021, 2022, - 2023 + 2023, + 2026 ] }, { - "slug": "openstreetmap", - "name": "OpenStreetMap", + "slug": "center-for-research-in-open-source-software-cross", + "name": "Center for Research in Open Source Software (CROSS)", + "first_year": 2018, + "last_year": 2022, + "total_projects": 20, + "is_currently_active": false, + "active_years": [ + 2018, + 2019, + 2021, + 2022 + ] + }, + { + "slug": "genes-genomes-and-variation", + "name": "Genes, Genomes and Variation", "first_year": 2016, - "last_year": 2025, - "total_projects": 45, - "is_currently_active": true, + "last_year": 2019, + "total_projects": 12, + "is_currently_active": false, "active_years": [ 2016, 2017, 2018, - 2019, - 2020, + 2019 + ] + }, + { + "slug": "polypheny", + "name": "Polypheny", + "first_year": 2021, + "last_year": 2024, + "total_projects": 9, + "is_currently_active": false, + "active_years": [ 2021, 2022, - 2023, - 2024, - 2025 + 2024 ] }, { - "slug": "osgeo-open-source-geospatial-foundation", - "name": "OSGeo (Open Source Geospatial Foundation)", + "slug": "vitrivr", + "name": "vitrivr", "first_year": 2016, - "last_year": 2025, - "total_projects": 101, - "is_currently_active": true, + "last_year": 2021, + "total_projects": 6, + "is_currently_active": false, "active_years": [ 2016, - 2017, 2018, - 2019, - 2020, - 2021, + 2021 + ] + }, + { + "slug": "mathesar", + "name": "Mathesar", + "first_year": 2022, + "last_year": 2023, + "total_projects": 5, + "is_currently_active": false, + "active_years": [ 2022, - 2023, - 2024, - 2025 + 2023 + ] + }, + { + "slug": "elastic", + "name": "Elastic", + "first_year": 2018, + "last_year": 2020, + "total_projects": 4, + "is_currently_active": false, + "active_years": [ + 2018, + 2020 ] }, { @@ -189,16 +210,14 @@ ] }, { - "slug": "polypheny", - "name": "Polypheny", - "first_year": 2021, - "last_year": 2024, - "total_projects": 9, + "slug": "apache-datafusion", + "name": "Apache DataFusion", + "first_year": 2025, + "last_year": 2025, + "total_projects": 2, "is_currently_active": false, "active_years": [ - 2021, - 2022, - 2024 + 2025 ] }, { @@ -222,19 +241,6 @@ "active_years": [ 2019 ] - }, - { - "slug": "vitrivr", - "name": "vitrivr", - "first_year": 2016, - "last_year": 2021, - "total_projects": 6, - "is_currently_active": false, - "active_years": [ - 2016, - 2018, - 2021 - ] } ], "yearlyStats": { @@ -277,10 +283,14 @@ "2025": { "organizationCount": 5, "projectCount": 30 + }, + "2026": { + "organizationCount": 5, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.466Z" + "generated_at": "2026-02-19T13:36:00.481Z" } } \ No newline at end of file diff --git a/new-api-details/topics/dataviz.json b/new-api-details/topics/dataviz.json index 872ff3a8..b1ca888d 100644 --- a/new-api-details/topics/dataviz.json +++ b/new-api-details/topics/dataviz.json @@ -1,10 +1,11 @@ { "slug": "dataviz", "name": "dataviz", - "published_at": "2026-01-25T16:06:29.397Z", + "published_at": "2026-02-19T13:36:02.392Z", "organizationCount": 1, "projectCount": 119, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "national-resource-for-network-biology-nrnb", "name": "National Resource for Network Biology (NRNB)", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 119, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 8 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.397Z" + "generated_at": "2026-02-19T13:36:02.392Z" } } \ No newline at end of file diff --git a/new-api-details/topics/ddd.json b/new-api-details/topics/ddd.json index 5ece2295..449e7786 100644 --- a/new-api-details/topics/ddd.json +++ b/new-api-details/topics/ddd.json @@ -1,7 +1,7 @@ { "slug": "ddd", "name": "ddd", - "published_at": "2026-01-25T16:06:29.673Z", + "published_at": "2026-02-19T13:36:02.904Z", "organizationCount": 1, "projectCount": 248, "years": [ @@ -23,7 +23,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 248, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -82,6 +82,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.673Z" + "generated_at": "2026-02-19T13:36:02.904Z" } } \ No newline at end of file diff --git a/new-api-details/topics/debian-ci.json b/new-api-details/topics/debian-ci.json index 44980220..45cb51d5 100644 --- a/new-api-details/topics/debian-ci.json +++ b/new-api-details/topics/debian-ci.json @@ -1,10 +1,11 @@ { "slug": "debian-ci", "name": "debian-ci", - "published_at": "2026-01-25T16:06:28.827Z", + "published_at": "2026-02-19T13:36:01.167Z", "organizationCount": 1, "projectCount": 78, "years": [ + 2026, 2025, 2024, 2022, @@ -19,7 +20,7 @@ "slug": "debian", "name": "Debian", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 78, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.827Z" + "generated_at": "2026-02-19T13:36:01.167Z" } } \ No newline at end of file diff --git a/new-api-details/topics/debug.json b/new-api-details/topics/debug.json index 7ece7c9d..58e5f09d 100644 --- a/new-api-details/topics/debug.json +++ b/new-api-details/topics/debug.json @@ -1,10 +1,11 @@ { "slug": "debug", "name": "debug", - "published_at": "2026-01-25T16:06:28.995Z", + "published_at": "2026-02-19T13:36:01.532Z", "organizationCount": 2, "projectCount": 70, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "free-and-open-source-silicon-foundation", "name": "Free and Open Source Silicon Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 60, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -91,10 +93,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.995Z" + "generated_at": "2026-02-19T13:36:01.532Z" } } \ No newline at end of file diff --git a/new-api-details/topics/debuggers.json b/new-api-details/topics/debuggers.json index 9914c339..6cdae504 100644 --- a/new-api-details/topics/debuggers.json +++ b/new-api-details/topics/debuggers.json @@ -1,10 +1,11 @@ { "slug": "debuggers", "name": "debuggers", - "published_at": "2026-01-25T16:06:29.259Z", + "published_at": "2026-02-19T13:36:02.205Z", "organizationCount": 1, "projectCount": 122, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "llvm-compiler-infrastructure", "name": "LLVM Compiler Infrastructure", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 122, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 15 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.259Z" + "generated_at": "2026-02-19T13:36:02.205Z" } } \ No newline at end of file diff --git a/new-api-details/topics/debugging.json b/new-api-details/topics/debugging.json index 9b050b7d..390bbd07 100644 --- a/new-api-details/topics/debugging.json +++ b/new-api-details/topics/debugging.json @@ -1,10 +1,11 @@ { "slug": "debugging", "name": "debugging", - "published_at": "2026-01-25T16:06:28.458Z", + "published_at": "2026-02-19T13:36:00.445Z", "organizationCount": 6, "projectCount": 134, "years": [ + 2026, 2025, 2024, 2023, @@ -17,24 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "android-graphics-tools-team", - "name": "Android Graphics Tools Team", - "first_year": 2019, - "last_year": 2021, - "total_projects": 8, - "is_currently_active": false, - "active_years": [ - 2019, - 2020, - 2021 - ] - }, { "slug": "free-and-open-source-silicon-foundation", "name": "Free and Open Source Silicon Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 60, "is_currently_active": true, "active_years": [ @@ -47,7 +35,27 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "swift", + "name": "Swift", + "first_year": 2018, + "last_year": 2026, + "total_projects": 26, + "is_currently_active": true, + "active_years": [ + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { @@ -64,21 +72,6 @@ 2020 ] }, - { - "slug": "rizin", - "name": "Rizin", - "first_year": 2021, - "last_year": 2025, - "total_projects": 10, - "is_currently_active": true, - "active_years": [ - 2021, - 2022, - 2023, - 2024, - 2025 - ] - }, { "slug": "strace", "name": "strace", @@ -97,21 +90,32 @@ ] }, { - "slug": "swift", - "name": "Swift", - "first_year": 2018, - "last_year": 2025, - "total_projects": 26, + "slug": "rizin", + "name": "Rizin", + "first_year": 2021, + "last_year": 2026, + "total_projects": 10, "is_currently_active": true, "active_years": [ - 2018, - 2019, - 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "android-graphics-tools-team", + "name": "Android Graphics Tools Team", + "first_year": 2019, + "last_year": 2021, + "total_projects": 8, + "is_currently_active": false, + "active_years": [ + 2019, + 2020, + 2021 ] } ], @@ -155,10 +159,14 @@ "2025": { "organizationCount": 3, "projectCount": 13 + }, + "2026": { + "organizationCount": 3, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.458Z" + "generated_at": "2026-02-19T13:36:00.445Z" } } \ No newline at end of file diff --git a/new-api-details/topics/decentralisation.json b/new-api-details/topics/decentralisation.json index 20158259..df3d2df6 100644 --- a/new-api-details/topics/decentralisation.json +++ b/new-api-details/topics/decentralisation.json @@ -1,7 +1,7 @@ { "slug": "decentralisation", "name": "decentralisation", - "published_at": "2026-01-25T16:06:29.322Z", + "published_at": "2026-02-19T13:36:02.220Z", "organizationCount": 1, "projectCount": 29, "years": [ @@ -64,6 +64,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.322Z" + "generated_at": "2026-02-19T13:36:02.220Z" } } \ No newline at end of file diff --git a/new-api-details/topics/decentralised.json b/new-api-details/topics/decentralised.json index 769d5ea5..3ffd0ef9 100644 --- a/new-api-details/topics/decentralised.json +++ b/new-api-details/topics/decentralised.json @@ -1,7 +1,7 @@ { "slug": "decentralised", "name": "decentralised", - "published_at": "2026-01-25T16:06:29.331Z", + "published_at": "2026-02-19T13:36:02.232Z", "organizationCount": 1, "projectCount": 29, "years": [ @@ -64,6 +64,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.331Z" + "generated_at": "2026-02-19T13:36:02.232Z" } } \ No newline at end of file diff --git a/new-api-details/topics/decentralization.json b/new-api-details/topics/decentralization.json index b16f4787..25d2f06f 100644 --- a/new-api-details/topics/decentralization.json +++ b/new-api-details/topics/decentralization.json @@ -1,7 +1,7 @@ { "slug": "decentralization", "name": "decentralization", - "published_at": "2026-01-25T16:06:29.324Z", + "published_at": "2026-02-19T13:36:02.224Z", "organizationCount": 2, "projectCount": 33, "years": [ @@ -76,6 +76,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.324Z" + "generated_at": "2026-02-19T13:36:02.224Z" } } \ No newline at end of file diff --git a/new-api-details/topics/decentralized.json b/new-api-details/topics/decentralized.json index f2f9e4f7..246a7fde 100644 --- a/new-api-details/topics/decentralized.json +++ b/new-api-details/topics/decentralized.json @@ -1,7 +1,7 @@ { "slug": "decentralized", "name": "decentralized", - "published_at": "2026-01-25T16:06:29.332Z", + "published_at": "2026-02-19T13:36:01.567Z", "organizationCount": 2, "projectCount": 103, "years": [ @@ -23,7 +23,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 74, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -98,6 +98,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.332Z" + "generated_at": "2026-02-19T13:36:01.567Z" } } \ No newline at end of file diff --git a/new-api-details/topics/deception.json b/new-api-details/topics/deception.json index cbc8109e..401a268d 100644 --- a/new-api-details/topics/deception.json +++ b/new-api-details/topics/deception.json @@ -1,10 +1,11 @@ { "slug": "deception", "name": "deception", - "published_at": "2026-01-25T16:06:29.681Z", + "published_at": "2026-02-19T13:36:02.909Z", "organizationCount": 1, "projectCount": 101, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "the-honeynet-project", "name": "The Honeynet Project", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 101, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.681Z" + "generated_at": "2026-02-19T13:36:02.909Z" } } \ No newline at end of file diff --git a/new-api-details/topics/declarative-language.json b/new-api-details/topics/declarative-language.json index f7e7fdbe..76a200b8 100644 --- a/new-api-details/topics/declarative-language.json +++ b/new-api-details/topics/declarative-language.json @@ -1,7 +1,7 @@ { "slug": "declarative-language", "name": "declarative language", - "published_at": "2026-01-25T16:06:29.720Z", + "published_at": "2026-02-19T13:36:02.979Z", "organizationCount": 2, "projectCount": 5, "years": [ @@ -9,17 +9,6 @@ 2018 ], "organizations": [ - { - "slug": "the-qt-project", - "name": "The Qt Project", - "first_year": 2018, - "last_year": 2018, - "total_projects": 1, - "is_currently_active": false, - "active_years": [ - 2018 - ] - }, { "slug": "the-vega-project-at-the-university-of-washington", "name": "The Vega Project at the University of Washington", @@ -31,6 +20,17 @@ 2018, 2019 ] + }, + { + "slug": "the-qt-project", + "name": "The Qt Project", + "first_year": 2018, + "last_year": 2018, + "total_projects": 1, + "is_currently_active": false, + "active_years": [ + 2018 + ] } ], "yearlyStats": { @@ -45,6 +45,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.720Z" + "generated_at": "2026-02-19T13:36:02.979Z" } } \ No newline at end of file diff --git a/new-api-details/topics/declarative.json b/new-api-details/topics/declarative.json index d0eb57a9..ee1dfc91 100644 --- a/new-api-details/topics/declarative.json +++ b/new-api-details/topics/declarative.json @@ -1,10 +1,11 @@ { "slug": "declarative", "name": "declarative", - "published_at": "2026-01-25T16:06:29.411Z", + "published_at": "2026-02-19T13:36:02.421Z", "organizationCount": 1, "projectCount": 3, "years": [ + 2026, 2024 ], "organizations": [ @@ -12,11 +13,12 @@ "slug": "nixos-foundation", "name": "NixOS Foundation", "first_year": 2024, - "last_year": 2024, + "last_year": 2026, "total_projects": 3, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ - 2024 + 2024, + 2026 ] } ], @@ -24,10 +26,14 @@ "2024": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.411Z" + "generated_at": "2026-02-19T13:36:02.421Z" } } \ No newline at end of file diff --git a/new-api-details/topics/decoder.json b/new-api-details/topics/decoder.json index 6cb2bda8..4f357282 100644 --- a/new-api-details/topics/decoder.json +++ b/new-api-details/topics/decoder.json @@ -1,10 +1,11 @@ { "slug": "decoder", "name": "decoder", - "published_at": "2026-01-25T16:06:28.635Z", + "published_at": "2026-02-19T13:36:00.937Z", "organizationCount": 1, "projectCount": 80, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "ccextractor-development", "name": "CCExtractor Development", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 80, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 10 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.635Z" + "generated_at": "2026-02-19T13:36:00.937Z" } } \ No newline at end of file diff --git a/new-api-details/topics/decompilation.json b/new-api-details/topics/decompilation.json index 03db7c97..28a82ae5 100644 --- a/new-api-details/topics/decompilation.json +++ b/new-api-details/topics/decompilation.json @@ -1,10 +1,11 @@ { "slug": "decompilation", "name": "decompilation", - "published_at": "2026-01-25T16:06:28.920Z", + "published_at": "2026-02-19T13:36:01.381Z", "organizationCount": 2, "projectCount": 22, "years": [ + 2026, 2025, 2024, 2023, @@ -14,19 +15,6 @@ 2016 ], "organizations": [ - { - "slug": "flare", - "name": "FLARE", - "first_year": 2023, - "last_year": 2025, - "total_projects": 7, - "is_currently_active": true, - "active_years": [ - 2023, - 2024, - 2025 - ] - }, { "slug": "radare", "name": "Radare", @@ -40,6 +28,20 @@ 2018, 2020 ] + }, + { + "slug": "flare", + "name": "FLARE", + "first_year": 2023, + "last_year": 2026, + "total_projects": 7, + "is_currently_active": true, + "active_years": [ + 2023, + 2024, + 2025, + 2026 + ] } ], "yearlyStats": { @@ -70,10 +72,14 @@ "2025": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.920Z" + "generated_at": "2026-02-19T13:36:01.381Z" } } \ No newline at end of file diff --git a/new-api-details/topics/deep-learning.json b/new-api-details/topics/deep-learning.json index 03ba5545..ef1ecc3c 100644 --- a/new-api-details/topics/deep-learning.json +++ b/new-api-details/topics/deep-learning.json @@ -1,10 +1,11 @@ { "slug": "deep-learning", "name": "deep learning", - "published_at": "2026-01-25T16:06:28.444Z", - "organizationCount": 16, + "published_at": "2026-02-19T13:36:00.413Z", + "organizationCount": 17, "projectCount": 501, "years": [ + 2026, 2025, 2024, 2023, @@ -18,92 +19,51 @@ ], "organizations": [ { - "slug": "alaska", - "name": "Alaska", - "first_year": 2024, - "last_year": 2025, - "total_projects": 12, - "is_currently_active": true, - "active_years": [ - 2024, - 2025 - ] - }, - { - "slug": "cbmiuthsc", - "name": "CBMI@UTHSC", - "first_year": 2019, - "last_year": 2019, - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2019 - ] - }, - { - "slug": "cloudcv", - "name": "CloudCV", + "slug": "opencv", + "name": "OpenCV", "first_year": 2016, "last_year": 2025, - "total_projects": 28, - "is_currently_active": true, + "total_projects": 93, + "is_currently_active": false, "active_years": [ 2016, 2017, - 2018, 2019, 2020, 2021, + 2022, 2023, 2024, 2025 ] }, { - "slug": "cvat", - "name": "CVAT", - "first_year": 2024, + "slug": "red-hen-lab", + "name": "Red Hen Lab", + "first_year": 2016, "last_year": 2024, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2024 - ] - }, - { - "slug": "genome-assembly-and-annotation", - "name": "Genome Assembly and Annotation", - "first_year": 2021, - "last_year": 2023, - "total_projects": 14, + "total_projects": 88, "is_currently_active": false, "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, 2021, 2022, - 2023 + 2023, + 2024 ] }, { - "slug": "knime", - "name": "KNIME", + "slug": "tensorflow", + "name": "TensorFlow", "first_year": 2019, - "last_year": 2019, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2019 - ] - }, - { - "slug": "librehealth", - "name": "LibreHealth", - "first_year": 2017, "last_year": 2023, - "total_projects": 31, + "total_projects": 81, "is_currently_active": false, "active_years": [ - 2017, - 2018, 2019, 2020, 2021, @@ -111,17 +71,6 @@ 2023 ] }, - { - "slug": "mediapipe", - "name": "MediaPipe", - "first_year": 2021, - "last_year": 2021, - "total_projects": 6, - "is_currently_active": false, - "active_years": [ - 2021 - ] - }, { "slug": "mlpack", "name": "mlpack", @@ -142,58 +91,48 @@ ] }, { - "slug": "opencv", - "name": "OpenCV", + "slug": "stear-group", + "name": "Ste||ar group", "first_year": 2016, - "last_year": 2025, - "total_projects": 93, + "last_year": 2026, + "total_projects": 38, "is_currently_active": true, "active_years": [ 2016, 2017, - 2019, + 2018, 2020, 2021, 2022, 2023, 2024, - 2025 - ] - }, - { - "slug": "openms", - "name": "OpenMS", - "first_year": 2025, - "last_year": 2025, - "total_projects": 2, - "is_currently_active": true, - "active_years": [ - 2025 + 2025, + 2026 ] }, { "slug": "openvino-toolkit", "name": "OpenVINO Toolkit", "first_year": 2022, - "last_year": 2025, + "last_year": 2026, "total_projects": 32, "is_currently_active": true, "active_years": [ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "red-hen-lab", - "name": "Red Hen Lab", - "first_year": 2016, - "last_year": 2024, - "total_projects": 88, - "is_currently_active": false, + "slug": "librehealth", + "name": "LibreHealth", + "first_year": 2017, + "last_year": 2026, + "total_projects": 31, + "is_currently_active": true, "active_years": [ - 2016, 2017, 2018, 2019, @@ -201,28 +140,55 @@ 2021, 2022, 2023, - 2024 + 2026 ] }, { - "slug": "stear-group", - "name": "Ste||ar group", + "slug": "cloudcv", + "name": "CloudCV", "first_year": 2016, "last_year": 2025, - "total_projects": 38, - "is_currently_active": true, + "total_projects": 28, + "is_currently_active": false, "active_years": [ 2016, 2017, 2018, + 2019, 2020, 2021, - 2022, 2023, 2024, 2025 ] }, + { + "slug": "genome-assembly-and-annotation", + "name": "Genome Assembly and Annotation", + "first_year": 2021, + "last_year": 2026, + "total_projects": 14, + "is_currently_active": true, + "active_years": [ + 2021, + 2022, + 2023, + 2026 + ] + }, + { + "slug": "alaska", + "name": "Alaska", + "first_year": 2024, + "last_year": 2026, + "total_projects": 12, + "is_currently_active": true, + "active_years": [ + 2024, + 2025, + 2026 + ] + }, { "slug": "stony-brook-university-biomedical-informatics", "name": "Stony Brook University Biomedical Informatics", @@ -237,18 +203,70 @@ ] }, { - "slug": "tensorflow", - "name": "TensorFlow", + "slug": "mediapipe", + "name": "MediaPipe", + "first_year": 2021, + "last_year": 2021, + "total_projects": 6, + "is_currently_active": false, + "active_years": [ + 2021 + ] + }, + { + "slug": "cbmiuthsc", + "name": "CBMI@UTHSC", "first_year": 2019, - "last_year": 2023, - "total_projects": 81, + "last_year": 2019, + "total_projects": 3, "is_currently_active": false, "active_years": [ - 2019, - 2020, - 2021, - 2022, - 2023 + 2019 + ] + }, + { + "slug": "cvat", + "name": "CVAT", + "first_year": 2024, + "last_year": 2024, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2024 + ] + }, + { + "slug": "knime", + "name": "KNIME", + "first_year": 2019, + "last_year": 2019, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2019 + ] + }, + { + "slug": "openms", + "name": "OpenMS", + "first_year": 2025, + "last_year": 2026, + "total_projects": 2, + "is_currently_active": true, + "active_years": [ + 2025, + 2026 + ] + }, + { + "slug": "mllam", + "name": "MLLAM", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 ] } ], @@ -292,10 +310,14 @@ "2025": { "organizationCount": 7, "projectCount": 47 + }, + "2026": { + "organizationCount": 7, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.444Z" + "generated_at": "2026-02-19T13:36:00.413Z" } } \ No newline at end of file diff --git a/new-api-details/topics/deep-neural-net-rendering.json b/new-api-details/topics/deep-neural-net-rendering.json index f48b462d..a84798a7 100644 --- a/new-api-details/topics/deep-neural-net-rendering.json +++ b/new-api-details/topics/deep-neural-net-rendering.json @@ -1,10 +1,11 @@ { "slug": "deep-neural-net-rendering", "name": "deep neural net rendering", - "published_at": "2026-01-25T16:06:28.556Z", + "published_at": "2026-02-19T13:36:00.891Z", "organizationCount": 1, "projectCount": 73, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "brl-cad", "name": "BRL-CAD", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 73, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.556Z" + "generated_at": "2026-02-19T13:36:00.891Z" } } \ No newline at end of file diff --git a/new-api-details/topics/dependencies.json b/new-api-details/topics/dependencies.json index 61e115a3..85505393 100644 --- a/new-api-details/topics/dependencies.json +++ b/new-api-details/topics/dependencies.json @@ -1,10 +1,11 @@ { "slug": "dependencies", "name": "dependencies", - "published_at": "2026-01-25T16:06:28.419Z", + "published_at": "2026-02-19T13:36:00.332Z", "organizationCount": 2, "projectCount": 61, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "aboutcode", "name": "AboutCode", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 32, "is_currently_active": true, "active_years": [ @@ -31,7 +32,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -40,7 +42,7 @@ "first_year": 2018, "last_year": 2025, "total_projects": 29, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2018, 2019, @@ -87,10 +89,14 @@ "2025": { "organizationCount": 2, "projectCount": 8 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.419Z" + "generated_at": "2026-02-19T13:36:00.332Z" } } \ No newline at end of file diff --git a/new-api-details/topics/dependency-management.json b/new-api-details/topics/dependency-management.json index 65e8320d..d8262bdb 100644 --- a/new-api-details/topics/dependency-management.json +++ b/new-api-details/topics/dependency-management.json @@ -1,7 +1,7 @@ { "slug": "dependency-management", "name": "dependency management", - "published_at": "2026-01-25T16:06:29.827Z", + "published_at": "2026-02-19T13:36:01.065Z", "organizationCount": 1, "projectCount": 37, "years": [ @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.827Z" + "generated_at": "2026-02-19T13:36:01.065Z" } } \ No newline at end of file diff --git a/new-api-details/topics/design-system.json b/new-api-details/topics/design-system.json index 215fba3c..49f816c5 100644 --- a/new-api-details/topics/design-system.json +++ b/new-api-details/topics/design-system.json @@ -1,7 +1,7 @@ { "slug": "design-system", "name": "design system", - "published_at": "2026-01-25T16:06:29.585Z", + "published_at": "2026-02-19T13:36:02.780Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.585Z" + "generated_at": "2026-02-19T13:36:02.780Z" } } \ No newline at end of file diff --git a/new-api-details/topics/design.json b/new-api-details/topics/design.json index 56bdc582..56c40c3f 100644 --- a/new-api-details/topics/design.json +++ b/new-api-details/topics/design.json @@ -1,10 +1,11 @@ { "slug": "design", "name": "design", - "published_at": "2026-01-25T16:06:29.023Z", + "published_at": "2026-02-19T13:36:01.649Z", "organizationCount": 5, "projectCount": 516, "years": [ + 2026, 2025, 2024, 2023, @@ -18,11 +19,11 @@ ], "organizations": [ { - "slug": "gnome-foundation", - "name": "GNOME Foundation", + "slug": "python-software-foundation", + "name": "Python Software Foundation", "first_year": 2016, - "last_year": 2025, - "total_projects": 115, + "last_year": 2026, + "total_projects": 277, "is_currently_active": true, "active_years": [ 2016, @@ -34,29 +35,16 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "gnu-image-manipulation-program", - "name": "GNU Image Manipulation Program", - "first_year": 2022, - "last_year": 2025, - "total_projects": 10, - "is_currently_active": true, - "active_years": [ - 2022, - 2023, - 2024, - 2025 - ] - }, - { - "slug": "inkscape", - "name": "Inkscape", + "slug": "gnome-foundation", + "name": "GNOME Foundation", "first_year": 2016, - "last_year": 2025, - "total_projects": 27, + "last_year": 2026, + "total_projects": 115, "is_currently_active": true, "active_years": [ 2016, @@ -68,14 +56,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "processing-foundation", "name": "Processing Foundation", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 87, "is_currently_active": true, "active_years": [ @@ -86,16 +75,17 @@ 2021, 2022, 2023, - 2025 + 2025, + 2026 ] }, { - "slug": "python-software-foundation", - "name": "Python Software Foundation", + "slug": "inkscape", + "name": "Inkscape", "first_year": 2016, "last_year": 2025, - "total_projects": 277, - "is_currently_active": true, + "total_projects": 27, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -108,6 +98,21 @@ 2024, 2025 ] + }, + { + "slug": "gnu-image-manipulation-program", + "name": "GNU Image Manipulation Program", + "first_year": 2022, + "last_year": 2026, + "total_projects": 10, + "is_currently_active": true, + "active_years": [ + 2022, + 2023, + 2024, + 2025, + 2026 + ] } ], "yearlyStats": { @@ -150,10 +155,14 @@ "2025": { "organizationCount": 5, "projectCount": 33 + }, + "2026": { + "organizationCount": 4, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.023Z" + "generated_at": "2026-02-19T13:36:01.649Z" } } \ No newline at end of file diff --git a/new-api-details/topics/deskstop.json b/new-api-details/topics/deskstop.json index 88605930..e3383afc 100644 --- a/new-api-details/topics/deskstop.json +++ b/new-api-details/topics/deskstop.json @@ -1,10 +1,11 @@ { "slug": "deskstop", "name": "deskstop", - "published_at": "2026-01-25T16:06:29.232Z", + "published_at": "2026-02-19T13:36:02.086Z", "organizationCount": 1, "projectCount": 167, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "kde-community", "name": "KDE Community", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 167, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 15 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.232Z" + "generated_at": "2026-02-19T13:36:02.086Z" } } \ No newline at end of file diff --git a/new-api-details/topics/desktop-app-development.json b/new-api-details/topics/desktop-app-development.json new file mode 100644 index 00000000..93ce2fd3 --- /dev/null +++ b/new-api-details/topics/desktop-app-development.json @@ -0,0 +1,45 @@ +{ + "slug": "desktop-app-development", + "name": "Desktop App Development", + "published_at": "2026-02-19T13:36:02.411Z", + "organizationCount": 1, + "projectCount": 4, + "years": [ + 2026, + 2024, + 2022 + ], + "organizations": [ + { + "slug": "neutralinojs", + "name": "Neutralinojs", + "first_year": 2022, + "last_year": 2026, + "total_projects": 4, + "is_currently_active": true, + "active_years": [ + 2022, + 2024, + 2026 + ] + } + ], + "yearlyStats": { + "2022": { + "organizationCount": 1, + "projectCount": 1 + }, + "2024": { + "organizationCount": 1, + "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 + } + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:36:02.411Z" + } +} \ No newline at end of file diff --git a/new-api-details/topics/desktop-application.json b/new-api-details/topics/desktop-application.json index ba741bf8..199f0951 100644 --- a/new-api-details/topics/desktop-application.json +++ b/new-api-details/topics/desktop-application.json @@ -1,10 +1,11 @@ { "slug": "desktop-application", "name": "desktop application", - "published_at": "2026-01-25T16:06:29.231Z", + "published_at": "2026-02-19T13:36:02.085Z", "organizationCount": 2, "projectCount": 232, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "kde-community", "name": "KDE Community", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 167, "is_currently_active": true, "active_years": [ @@ -34,14 +35,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "libreoffice", "name": "LibreOffice", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 65, "is_currently_active": true, "active_years": [ @@ -54,7 +56,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -98,10 +101,14 @@ "2025": { "organizationCount": 2, "projectCount": 22 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.231Z" + "generated_at": "2026-02-19T13:36:02.085Z" } } \ No newline at end of file diff --git a/new-api-details/topics/desktop-applications.json b/new-api-details/topics/desktop-applications.json index bfd43646..328a77b6 100644 --- a/new-api-details/topics/desktop-applications.json +++ b/new-api-details/topics/desktop-applications.json @@ -1,10 +1,11 @@ { "slug": "desktop-applications", "name": "desktop applications", - "published_at": "2026-01-25T16:06:29.020Z", + "published_at": "2026-02-19T13:36:01.639Z", "organizationCount": 2, "projectCount": 282, "years": [ + 2026, 2025, 2024, 2023, @@ -18,11 +19,11 @@ ], "organizations": [ { - "slug": "gnome-foundation", - "name": "GNOME Foundation", + "slug": "kde-community", + "name": "KDE Community", "first_year": 2016, - "last_year": 2025, - "total_projects": 115, + "last_year": 2026, + "total_projects": 167, "is_currently_active": true, "active_years": [ 2016, @@ -34,15 +35,16 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "kde-community", - "name": "KDE Community", + "slug": "gnome-foundation", + "name": "GNOME Foundation", "first_year": 2016, - "last_year": 2025, - "total_projects": 167, + "last_year": 2026, + "total_projects": 115, "is_currently_active": true, "active_years": [ 2016, @@ -54,7 +56,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -98,10 +101,14 @@ "2025": { "organizationCount": 2, "projectCount": 20 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.020Z" + "generated_at": "2026-02-19T13:36:01.639Z" } } \ No newline at end of file diff --git a/new-api-details/topics/desktop-environment.json b/new-api-details/topics/desktop-environment.json index 1df0ba7b..36b23730 100644 --- a/new-api-details/topics/desktop-environment.json +++ b/new-api-details/topics/desktop-environment.json @@ -1,10 +1,11 @@ { "slug": "desktop-environment", "name": "desktop environment", - "published_at": "2026-01-25T16:06:29.021Z", + "published_at": "2026-02-19T13:36:01.640Z", "organizationCount": 3, "projectCount": 287, "years": [ + 2026, 2025, 2024, 2023, @@ -18,11 +19,11 @@ ], "organizations": [ { - "slug": "gnome-foundation", - "name": "GNOME Foundation", + "slug": "kde-community", + "name": "KDE Community", "first_year": 2016, - "last_year": 2025, - "total_projects": 115, + "last_year": 2026, + "total_projects": 167, "is_currently_active": true, "active_years": [ 2016, @@ -34,15 +35,16 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "kde-community", - "name": "KDE Community", + "slug": "gnome-foundation", + "name": "GNOME Foundation", "first_year": 2016, - "last_year": 2025, - "total_projects": 167, + "last_year": 2026, + "total_projects": 115, "is_currently_active": true, "active_years": [ 2016, @@ -54,7 +56,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -110,10 +113,14 @@ "2025": { "organizationCount": 2, "projectCount": 20 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.021Z" + "generated_at": "2026-02-19T13:36:01.640Z" } } \ No newline at end of file diff --git a/new-api-details/topics/desktop-integration.json b/new-api-details/topics/desktop-integration.json index 70beedb4..cd64d1b4 100644 --- a/new-api-details/topics/desktop-integration.json +++ b/new-api-details/topics/desktop-integration.json @@ -1,10 +1,11 @@ { "slug": "desktop-integration", "name": "desktop integration", - "published_at": "2026-01-25T16:06:29.110Z", + "published_at": "2026-02-19T13:36:01.754Z", "organizationCount": 2, "projectCount": 30, "years": [ + 2026, 2024, 2023, 2022, @@ -20,9 +21,9 @@ "slug": "haiku", "name": "Haiku", "first_year": 2017, - "last_year": 2024, + "last_year": 2026, "total_projects": 26, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, @@ -31,7 +32,8 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -86,10 +88,14 @@ "2024": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.111Z" + "generated_at": "2026-02-19T13:36:01.754Z" } } \ No newline at end of file diff --git a/new-api-details/topics/desktop-portals.json b/new-api-details/topics/desktop-portals.json index c4fa03ed..154fc77b 100644 --- a/new-api-details/topics/desktop-portals.json +++ b/new-api-details/topics/desktop-portals.json @@ -1,7 +1,7 @@ { "slug": "desktop-portals", "name": "Desktop Portals", - "published_at": "2026-01-25T16:06:29.772Z", + "published_at": "2026-02-19T13:36:03.123Z", "organizationCount": 1, "projectCount": 7, "years": [ @@ -15,7 +15,7 @@ "first_year": 2024, "last_year": 2025, "total_projects": 7, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2024, 2025 @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.772Z" + "generated_at": "2026-02-19T13:36:03.123Z" } } \ No newline at end of file diff --git a/new-api-details/topics/desktop.json b/new-api-details/topics/desktop.json index 5cd5b6ef..bd5b7c5b 100644 --- a/new-api-details/topics/desktop.json +++ b/new-api-details/topics/desktop.json @@ -1,10 +1,11 @@ { "slug": "desktop", "name": "desktop", - "published_at": "2026-01-25T16:06:28.799Z", + "published_at": "2026-02-19T13:36:01.084Z", "organizationCount": 14, "projectCount": 467, "years": [ + 2026, 2025, 2024, 2023, @@ -18,36 +19,53 @@ ], "organizations": [ { - "slug": "conversationsim", - "name": "Conversations.im", - "first_year": 2017, - "last_year": 2018, - "total_projects": 4, - "is_currently_active": false, + "slug": "kde-community", + "name": "KDE Community", + "first_year": 2016, + "last_year": 2026, + "total_projects": 167, + "is_currently_active": true, "active_years": [ + 2016, 2017, - 2018 + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "electron", - "name": "Electron", - "first_year": 2022, - "last_year": 2025, - "total_projects": 4, + "slug": "gnome-foundation", + "name": "GNOME Foundation", + "first_year": 2016, + "last_year": 2026, + "total_projects": 115, "is_currently_active": true, "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, 2022, + 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "fedora-project", - "name": "Fedora Project", + "slug": "sugar-labs", + "name": "Sugar Labs", "first_year": 2016, - "last_year": 2025, - "total_projects": 27, + "last_year": 2026, + "total_projects": 89, "is_currently_active": true, "active_years": [ 2016, @@ -55,26 +73,27 @@ 2018, 2019, 2020, - 2025 + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "gnome-foundation", - "name": "GNOME Foundation", + "slug": "fedora-project", + "name": "Fedora Project", "first_year": 2016, "last_year": 2025, - "total_projects": 115, - "is_currently_active": true, + "total_projects": 27, + "is_currently_active": false, "active_years": [ 2016, 2017, 2018, 2019, 2020, - 2021, - 2022, - 2023, - 2024, 2025 ] }, @@ -82,9 +101,9 @@ "slug": "haiku", "name": "Haiku", "first_year": 2017, - "last_year": 2024, + "last_year": 2026, "total_projects": 26, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, @@ -93,16 +112,17 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { - "slug": "kde-community", - "name": "KDE Community", + "slug": "reactos-foundation", + "name": "ReactOS Foundation", "first_year": 2016, - "last_year": 2025, - "total_projects": 167, - "is_currently_active": true, + "last_year": 2022, + "total_projects": 15, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -110,105 +130,92 @@ 2019, 2020, 2021, - 2022, - 2023, - 2024, - 2025 + 2022 ] }, { "slug": "kolibrios-project-team", "name": "KolibriOS Project Team", "first_year": 2016, - "last_year": 2024, + "last_year": 2026, "total_projects": 6, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, - 2024 + 2024, + 2026 ] }, { - "slug": "microkernel-devroom", - "name": "Microkernel devroom", - "first_year": 2017, - "last_year": 2017, - "total_projects": 3, + "slug": "xfce", + "name": "Xfce", + "first_year": 2021, + "last_year": 2022, + "total_projects": 5, "is_currently_active": false, "active_years": [ - 2017 + 2021, + 2022 ] }, { - "slug": "neutralinojs", - "name": "Neutralinojs", - "first_year": 2022, - "last_year": 2024, + "slug": "conversationsim", + "name": "Conversations.im", + "first_year": 2017, + "last_year": 2018, "total_projects": 4, "is_currently_active": false, "active_years": [ - 2022, - 2024 + 2017, + 2018 ] }, { - "slug": "reactos-foundation", - "name": "ReactOS Foundation", - "first_year": 2016, - "last_year": 2022, - "total_projects": 15, + "slug": "electron", + "name": "Electron", + "first_year": 2022, + "last_year": 2025, + "total_projects": 4, "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022 + 2022, + 2024, + 2025 ] }, { - "slug": "sugar-labs", - "name": "Sugar Labs", - "first_year": 2016, - "last_year": 2025, - "total_projects": 89, + "slug": "neutralinojs", + "name": "Neutralinojs", + "first_year": 2022, + "last_year": 2026, + "total_projects": 4, "is_currently_active": true, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, 2022, - 2023, 2024, - 2025 + 2026 ] }, { - "slug": "wxwidgets", - "name": "wxWidgets", + "slug": "microkernel-devroom", + "name": "Microkernel devroom", "first_year": 2017, "last_year": 2017, - "total_projects": 2, + "total_projects": 3, "is_currently_active": false, "active_years": [ 2017 ] }, { - "slug": "xfce", - "name": "Xfce", - "first_year": 2021, - "last_year": 2022, - "total_projects": 5, + "slug": "wxwidgets", + "name": "wxWidgets", + "first_year": 2017, + "last_year": 2017, + "total_projects": 2, "is_currently_active": false, "active_years": [ - 2021, - 2022 + 2017 ] }, { @@ -264,10 +271,14 @@ "2025": { "organizationCount": 5, "projectCount": 35 + }, + "2026": { + "organizationCount": 6, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.799Z" + "generated_at": "2026-02-19T13:36:01.084Z" } } \ No newline at end of file diff --git a/new-api-details/topics/dev-ops.json b/new-api-details/topics/dev-ops.json index 57aa53da..ab93f7ff 100644 --- a/new-api-details/topics/dev-ops.json +++ b/new-api-details/topics/dev-ops.json @@ -1,7 +1,7 @@ { "slug": "dev-ops", "name": "dev-ops", - "published_at": "2026-01-25T16:06:29.283Z", + "published_at": "2026-02-19T13:36:02.191Z", "organizationCount": 1, "projectCount": 4, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.283Z" + "generated_at": "2026-02-19T13:36:02.191Z" } } \ No newline at end of file diff --git a/new-api-details/topics/dev-tool.json b/new-api-details/topics/dev-tool.json index c2124b05..14bf881e 100644 --- a/new-api-details/topics/dev-tool.json +++ b/new-api-details/topics/dev-tool.json @@ -1,7 +1,7 @@ { "slug": "dev-tool", "name": "Dev Tool", - "published_at": "2026-01-25T16:06:29.235Z", + "published_at": "2026-02-19T13:36:02.094Z", "organizationCount": 1, "projectCount": 11, "years": [ @@ -16,7 +16,7 @@ "first_year": 2023, "last_year": 2025, "total_projects": 11, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2023, 2024, @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.235Z" + "generated_at": "2026-02-19T13:36:02.094Z" } } \ No newline at end of file diff --git a/new-api-details/topics/developer-tooling.json b/new-api-details/topics/developer-tooling.json index a360244d..77099a9b 100644 --- a/new-api-details/topics/developer-tooling.json +++ b/new-api-details/topics/developer-tooling.json @@ -1,10 +1,11 @@ { "slug": "developer-tooling", "name": "developer tooling", - "published_at": "2026-01-25T16:06:29.208Z", + "published_at": "2026-02-19T13:36:02.079Z", "organizationCount": 1, "projectCount": 14, "years": [ + 2026, 2025, 2024 ], @@ -13,12 +14,13 @@ "slug": "json-schema", "name": "JSON Schema", "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "total_projects": 14, "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -30,10 +32,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.208Z" + "generated_at": "2026-02-19T13:36:02.079Z" } } \ No newline at end of file diff --git a/new-api-details/topics/developer-tools.json b/new-api-details/topics/developer-tools.json index d047d546..1f5f872b 100644 --- a/new-api-details/topics/developer-tools.json +++ b/new-api-details/topics/developer-tools.json @@ -1,10 +1,11 @@ { "slug": "developer-tools", "name": "developer tools", - "published_at": "2026-01-25T16:06:28.402Z", - "organizationCount": 15, + "published_at": "2026-02-19T13:36:00.442Z", + "organizationCount": 16, "projectCount": 354, "years": [ + 2026, 2025, 2024, 2023, @@ -17,72 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "android-graphics-tools-team", - "name": "Android Graphics Tools Team", - "first_year": 2019, - "last_year": 2021, - "total_projects": 8, - "is_currently_active": false, - "active_years": [ - 2019, - 2020, - 2021 - ] - }, - { - "slug": "api-dash", - "name": "API Dash", - "first_year": 2024, - "last_year": 2025, - "total_projects": 3, - "is_currently_active": true, - "active_years": [ - 2024, - 2025 - ] - }, - { - "slug": "bazel", - "name": "Bazel", - "first_year": 2017, - "last_year": 2019, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2017, - 2019 - ] - }, - { - "slug": "continuous-delivery-foundation", - "name": "Continuous Delivery Foundation", - "first_year": 2020, - "last_year": 2021, - "total_projects": 9, - "is_currently_active": false, - "active_years": [ - 2020, - 2021 - ] - }, - { - "slug": "copyleft-games", - "name": "Copyleft Games", - "first_year": 2016, - "last_year": 2017, - "total_projects": 4, - "is_currently_active": false, - "active_years": [ - 2016, - 2017 - ] - }, { "slug": "eclipse-foundation", "name": "Eclipse Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 68, "is_currently_active": true, "active_years": [ @@ -94,32 +34,35 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "gnu-compiler-collection-gcc", - "name": "GNU Compiler Collection (GCC)", - "first_year": 2018, - "last_year": 2025, - "total_projects": 34, + "slug": "opensuse-project", + "name": "openSUSE Project", + "first_year": 2016, + "last_year": 2026, + "total_projects": 52, "is_currently_active": true, "active_years": [ + 2016, + 2017, 2018, - 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "jderobot", "name": "JdeRobot", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 48, "is_currently_active": true, "active_years": [ @@ -131,58 +74,83 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "jenkins", - "name": "Jenkins", + "slug": "ruby", + "name": "Ruby", "first_year": 2016, - "last_year": 2025, - "total_projects": 33, + "last_year": 2026, + "total_projects": 38, "is_currently_active": true, "active_years": [ 2016, 2018, 2019, 2020, + 2021, 2022, 2023, - 2024, - 2025 + 2026 ] }, { - "slug": "neovim", - "name": "Neovim", + "slug": "gnu-compiler-collection-gcc", + "name": "GNU Compiler Collection (GCC)", "first_year": 2018, - "last_year": 2025, - "total_projects": 8, + "last_year": 2026, + "total_projects": 34, "is_currently_active": true, "active_years": [ 2018, 2019, 2020, - 2025 + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "opensuse-project", - "name": "openSUSE Project", + "slug": "jenkins", + "name": "Jenkins", "first_year": 2016, - "last_year": 2025, - "total_projects": 52, + "last_year": 2026, + "total_projects": 33, "is_currently_active": true, "active_years": [ 2016, - 2017, 2018, + 2019, + 2020, + 2022, + 2023, + 2024, + 2025, + 2026 + ] + }, + { + "slug": "swift", + "name": "Swift", + "first_year": 2018, + "last_year": 2026, + "total_projects": 26, + "is_currently_active": true, + "active_years": [ + 2018, + 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -200,49 +168,103 @@ ] }, { - "slug": "ruby", - "name": "Ruby", - "first_year": 2016, - "last_year": 2023, - "total_projects": 38, + "slug": "continuous-delivery-foundation", + "name": "Continuous Delivery Foundation", + "first_year": 2020, + "last_year": 2021, + "total_projects": 9, "is_currently_active": false, "active_years": [ - 2016, + 2020, + 2021 + ] + }, + { + "slug": "android-graphics-tools-team", + "name": "Android Graphics Tools Team", + "first_year": 2019, + "last_year": 2021, + "total_projects": 8, + "is_currently_active": false, + "active_years": [ + 2019, + 2020, + 2021 + ] + }, + { + "slug": "neovim", + "name": "Neovim", + "first_year": 2018, + "last_year": 2026, + "total_projects": 8, + "is_currently_active": true, + "active_years": [ 2018, 2019, 2020, - 2021, - 2022, - 2023 + 2025, + 2026 + ] + }, + { + "slug": "copyleft-games", + "name": "Copyleft Games", + "first_year": 2016, + "last_year": 2017, + "total_projects": 4, + "is_currently_active": false, + "active_years": [ + 2016, + 2017 + ] + }, + { + "slug": "api-dash", + "name": "API Dash", + "first_year": 2024, + "last_year": 2026, + "total_projects": 3, + "is_currently_active": true, + "active_years": [ + 2024, + 2025, + 2026 + ] + }, + { + "slug": "bazel", + "name": "Bazel", + "first_year": 2017, + "last_year": 2019, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2017, + 2019 ] }, { "slug": "st-jude-childrens-research-hospital", "name": "St. Jude Children's Research Hospital", "first_year": 2025, - "last_year": 2025, + "last_year": 2026, "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] }, { - "slug": "swift", - "name": "Swift", - "first_year": 2018, - "last_year": 2025, - "total_projects": 26, + "slug": "gemini-cli", + "name": "Gemini CLI", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, "is_currently_active": true, "active_years": [ - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2026 ] } ], @@ -286,10 +308,14 @@ "2025": { "organizationCount": 9, "projectCount": 43 + }, + "2026": { + "organizationCount": 11, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.402Z" + "generated_at": "2026-02-19T13:36:00.442Z" } } \ No newline at end of file diff --git a/new-api-details/topics/developer.json b/new-api-details/topics/developer.json index f4911ed9..8e566df1 100644 --- a/new-api-details/topics/developer.json +++ b/new-api-details/topics/developer.json @@ -1,7 +1,7 @@ { "slug": "developer", "name": "developer", - "published_at": "2026-01-25T16:06:29.866Z", + "published_at": "2026-02-19T13:36:02.706Z", "organizationCount": 1, "projectCount": 9, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.866Z" + "generated_at": "2026-02-19T13:36:02.706Z" } } \ No newline at end of file diff --git a/new-api-details/topics/developing-countries.json b/new-api-details/topics/developing-countries.json index 8d5c2bf6..64ff2767 100644 --- a/new-api-details/topics/developing-countries.json +++ b/new-api-details/topics/developing-countries.json @@ -1,10 +1,11 @@ { "slug": "developing-countries", "name": "developing countries", - "published_at": "2026-01-25T16:06:29.480Z", + "published_at": "2026-02-19T13:36:02.580Z", "organizationCount": 1, "projectCount": 94, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "openmrs", "name": "OpenMRS", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 94, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 8 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.480Z" + "generated_at": "2026-02-19T13:36:02.580Z" } } \ No newline at end of file diff --git a/new-api-details/topics/developing-world.json b/new-api-details/topics/developing-world.json index 9e49682f..59329ced 100644 --- a/new-api-details/topics/developing-world.json +++ b/new-api-details/topics/developing-world.json @@ -1,10 +1,11 @@ { "slug": "developing-world", "name": "developing world", - "published_at": "2026-01-25T16:06:29.479Z", + "published_at": "2026-02-19T13:36:02.578Z", "organizationCount": 1, "projectCount": 94, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "openmrs", "name": "OpenMRS", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 94, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 8 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.479Z" + "generated_at": "2026-02-19T13:36:02.578Z" } } \ No newline at end of file diff --git a/new-api-details/topics/development-framework.json b/new-api-details/topics/development-framework.json new file mode 100644 index 00000000..e690b3b6 --- /dev/null +++ b/new-api-details/topics/development-framework.json @@ -0,0 +1,33 @@ +{ + "slug": "development-framework", + "name": "development framework", + "published_at": "2026-02-19T13:36:02.333Z", + "organizationCount": 1, + "projectCount": 0, + "years": [ + 2026 + ], + "organizations": [ + { + "slug": "mofa-org", + "name": "MoFA Org", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + } + ], + "yearlyStats": { + "2026": { + "organizationCount": 1, + "projectCount": 0 + } + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:36:02.333Z" + } +} \ No newline at end of file diff --git a/new-api-details/topics/development-tools.json b/new-api-details/topics/development-tools.json index 730e8eeb..d6cc95c5 100644 --- a/new-api-details/topics/development-tools.json +++ b/new-api-details/topics/development-tools.json @@ -1,10 +1,11 @@ { "slug": "development-tools", "name": "development tools", - "published_at": "2026-01-25T16:06:28.559Z", + "published_at": "2026-02-19T13:36:00.646Z", "organizationCount": 9, "projectCount": 239, "years": [ + 2026, 2025, 2024, 2023, @@ -18,112 +19,118 @@ ], "organizations": [ { - "slug": "bazel", - "name": "Bazel", - "first_year": 2017, - "last_year": 2019, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2017, - 2019 - ] - }, - { - "slug": "clojure", - "name": "Clojure", - "first_year": 2017, - "last_year": 2017, - "total_projects": 0, - "is_currently_active": false, - "active_years": [ - 2017 - ] - }, - { - "slug": "homebrew", - "name": "Homebrew", + "slug": "llvm-compiler-infrastructure", + "name": "LLVM Compiler Infrastructure", "first_year": 2016, - "last_year": 2022, - "total_projects": 11, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 122, + "is_currently_active": true, "active_years": [ 2016, 2017, 2018, + 2019, 2020, - 2022 + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "jenkins", - "name": "Jenkins", + "slug": "mit-app-inventor", + "name": "MIT App Inventor", "first_year": 2016, - "last_year": 2025, - "total_projects": 33, + "last_year": 2026, + "total_projects": 45, "is_currently_active": true, "active_years": [ 2016, - 2018, + 2017, 2019, 2020, + 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "llvm-compiler-infrastructure", - "name": "LLVM Compiler Infrastructure", + "slug": "jenkins", + "name": "Jenkins", "first_year": 2016, - "last_year": 2025, - "total_projects": 122, + "last_year": 2026, + "total_projects": 33, "is_currently_active": true, "active_years": [ 2016, - 2017, 2018, 2019, 2020, - 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "metacall", "name": "MetaCall", "first_year": 2021, - "last_year": 2024, + "last_year": 2026, "total_projects": 19, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { - "slug": "mit-app-inventor", - "name": "MIT App Inventor", + "slug": "homebrew", + "name": "Homebrew", "first_year": 2016, - "last_year": 2025, - "total_projects": 45, - "is_currently_active": true, + "last_year": 2022, + "total_projects": 11, + "is_currently_active": false, "active_years": [ 2016, 2017, + 2018, + 2020, + 2022 + ] + }, + { + "slug": "symbiflow", + "name": "SymbiFlow", + "first_year": 2019, + "last_year": 2021, + "total_projects": 5, + "is_currently_active": false, + "active_years": [ 2019, 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2021 + ] + }, + { + "slug": "bazel", + "name": "Bazel", + "first_year": 2017, + "last_year": 2019, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2017, + 2019 ] }, { @@ -138,16 +145,14 @@ ] }, { - "slug": "symbiflow", - "name": "SymbiFlow", - "first_year": 2019, - "last_year": 2021, - "total_projects": 5, + "slug": "clojure", + "name": "Clojure", + "first_year": 2017, + "last_year": 2017, + "total_projects": 0, "is_currently_active": false, "active_years": [ - 2019, - 2020, - 2021 + 2017 ] } ], @@ -191,10 +196,14 @@ "2025": { "organizationCount": 3, "projectCount": 25 + }, + "2026": { + "organizationCount": 4, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.559Z" + "generated_at": "2026-02-19T13:36:00.646Z" } } \ No newline at end of file diff --git a/new-api-details/topics/development.json b/new-api-details/topics/development.json index 95739bdd..8a93913a 100644 --- a/new-api-details/topics/development.json +++ b/new-api-details/topics/development.json @@ -1,10 +1,11 @@ { "slug": "development", "name": "development", - "published_at": "2026-01-25T16:06:28.629Z", + "published_at": "2026-02-19T13:36:00.924Z", "organizationCount": 3, "projectCount": 80, "years": [ + 2026, 2025, 2024, 2023, @@ -18,51 +19,53 @@ ], "organizations": [ { - "slug": "castor", - "name": "CASTOR", - "first_year": 2021, - "last_year": 2021, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2021 - ] - }, - { - "slug": "jenkins", - "name": "Jenkins", + "slug": "mit-app-inventor", + "name": "MIT App Inventor", "first_year": 2016, - "last_year": 2025, - "total_projects": 33, + "last_year": 2026, + "total_projects": 45, "is_currently_active": true, "active_years": [ 2016, - 2018, + 2017, 2019, 2020, + 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "mit-app-inventor", - "name": "MIT App Inventor", + "slug": "jenkins", + "name": "Jenkins", "first_year": 2016, - "last_year": 2025, - "total_projects": 45, + "last_year": 2026, + "total_projects": 33, "is_currently_active": true, "active_years": [ 2016, - 2017, + 2018, 2019, 2020, - 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "castor", + "name": "CASTOR", + "first_year": 2021, + "last_year": 2021, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2021 ] } ], @@ -106,10 +109,14 @@ "2025": { "organizationCount": 2, "projectCount": 10 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.629Z" + "generated_at": "2026-02-19T13:36:00.924Z" } } \ No newline at end of file diff --git a/new-api-details/topics/devices.json b/new-api-details/topics/devices.json index c418d69e..05ba4601 100644 --- a/new-api-details/topics/devices.json +++ b/new-api-details/topics/devices.json @@ -1,7 +1,7 @@ { "slug": "devices", "name": "devices", - "published_at": "2026-01-25T16:06:29.580Z", + "published_at": "2026-02-19T13:36:02.774Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.580Z" + "generated_at": "2026-02-19T13:36:02.774Z" } } \ No newline at end of file diff --git a/new-api-details/topics/devops.json b/new-api-details/topics/devops.json index 1cdf28d2..1ee2afce 100644 --- a/new-api-details/topics/devops.json +++ b/new-api-details/topics/devops.json @@ -1,10 +1,11 @@ { "slug": "devops", "name": "devops", - "published_at": "2026-01-25T16:06:28.584Z", + "published_at": "2026-02-19T13:36:00.685Z", "organizationCount": 13, "projectCount": 283, "years": [ + 2026, 2025, 2024, 2023, @@ -18,45 +19,43 @@ ], "organizations": [ { - "slug": "bench-routes", - "name": "Bench-Routes", - "first_year": 2021, - "last_year": 2021, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2021 - ] - }, - { - "slug": "center-for-translational-data-science", - "name": "Center for Translational Data Science", - "first_year": 2022, - "last_year": 2025, - "total_projects": 6, + "slug": "cncf", + "name": "CNCF", + "first_year": 2017, + "last_year": 2026, + "total_projects": 113, "is_currently_active": true, "active_years": [ + 2017, + 2018, + 2019, + 2020, + 2021, 2022, - 2025 + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "cncf", - "name": "CNCF", - "first_year": 2017, - "last_year": 2025, - "total_projects": 113, + "slug": "opensuse-project", + "name": "openSUSE Project", + "first_year": 2016, + "last_year": 2026, + "total_projects": 52, "is_currently_active": true, "active_years": [ + 2016, 2017, 2018, - 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -74,15 +73,22 @@ ] }, { - "slug": "continuous-delivery-foundation", - "name": "Continuous Delivery Foundation", - "first_year": 2020, - "last_year": 2021, - "total_projects": 9, - "is_currently_active": false, + "slug": "jenkins", + "name": "Jenkins", + "first_year": 2016, + "last_year": 2026, + "total_projects": 33, + "is_currently_active": true, "active_years": [ + 2016, + 2018, + 2019, 2020, - 2021 + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { @@ -91,7 +97,7 @@ "first_year": 2021, "last_year": 2025, "total_projects": 15, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2021, 2022, @@ -100,32 +106,27 @@ ] }, { - "slug": "jenkins", - "name": "Jenkins", - "first_year": 2016, - "last_year": 2025, - "total_projects": 33, - "is_currently_active": true, + "slug": "continuous-delivery-foundation", + "name": "Continuous Delivery Foundation", + "first_year": 2020, + "last_year": 2021, + "total_projects": 9, + "is_currently_active": false, "active_years": [ - 2016, - 2018, - 2019, 2020, - 2022, - 2023, - 2024, - 2025 + 2021 ] }, { - "slug": "keptn", - "name": "Keptn", + "slug": "center-for-translational-data-science", + "name": "Center for Translational Data Science", "first_year": 2022, - "last_year": 2022, - "total_projects": 3, + "last_year": 2025, + "total_projects": 6, "is_currently_active": false, "active_years": [ - 2022 + 2022, + 2025 ] }, { @@ -140,14 +141,26 @@ ] }, { - "slug": "meshery", - "name": "Meshery", + "slug": "open-science-labs", + "name": "Open Science Labs", "first_year": 2025, - "last_year": 2025, - "total_projects": 2, + "last_year": 2026, + "total_projects": 4, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 + ] + }, + { + "slug": "keptn", + "name": "Keptn", + "first_year": 2022, + "last_year": 2022, + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2022 ] }, { @@ -163,33 +176,26 @@ ] }, { - "slug": "open-science-labs", - "name": "Open Science Labs", - "first_year": 2025, - "last_year": 2025, - "total_projects": 4, - "is_currently_active": true, + "slug": "bench-routes", + "name": "Bench-Routes", + "first_year": 2021, + "last_year": 2021, + "total_projects": 2, + "is_currently_active": false, "active_years": [ - 2025 + 2021 ] }, { - "slug": "opensuse-project", - "name": "openSUSE Project", - "first_year": 2016, - "last_year": 2025, - "total_projects": 52, + "slug": "meshery", + "name": "Meshery", + "first_year": 2025, + "last_year": 2026, + "total_projects": 2, "is_currently_active": true, "active_years": [ - 2016, - 2017, - 2018, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2025, + 2026 ] } ], @@ -233,10 +239,14 @@ "2025": { "organizationCount": 7, "projectCount": 38 + }, + "2026": { + "organizationCount": 5, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.584Z" + "generated_at": "2026-02-19T13:36:00.685Z" } } \ No newline at end of file diff --git a/new-api-details/topics/devsecops.json b/new-api-details/topics/devsecops.json index 24221522..2a0d6d24 100644 --- a/new-api-details/topics/devsecops.json +++ b/new-api-details/topics/devsecops.json @@ -1,10 +1,11 @@ { "slug": "devsecops", "name": "DevSecOps", - "published_at": "2026-01-25T16:06:29.087Z", + "published_at": "2026-02-19T13:36:01.628Z", "organizationCount": 2, "projectCount": 117, "years": [ + 2026, 2025, 2024, 2023, @@ -16,25 +17,11 @@ 2016 ], "organizations": [ - { - "slug": "gitlab", - "name": "GitLab", - "first_year": 2021, - "last_year": 2025, - "total_projects": 15, - "is_currently_active": true, - "active_years": [ - 2021, - 2022, - 2023, - 2025 - ] - }, { "slug": "owasp-foundation", "name": "OWASP Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 102, "is_currently_active": true, "active_years": [ @@ -46,6 +33,21 @@ 2022, 2023, 2024, + 2025, + 2026 + ] + }, + { + "slug": "gitlab", + "name": "GitLab", + "first_year": 2021, + "last_year": 2025, + "total_projects": 15, + "is_currently_active": false, + "active_years": [ + 2021, + 2022, + 2023, 2025 ] } @@ -86,10 +88,14 @@ "2025": { "organizationCount": 2, "projectCount": 20 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.088Z" + "generated_at": "2026-02-19T13:36:01.628Z" } } \ No newline at end of file diff --git a/new-api-details/topics/devtools.json b/new-api-details/topics/devtools.json index a587d361..b2e694cb 100644 --- a/new-api-details/topics/devtools.json +++ b/new-api-details/topics/devtools.json @@ -1,10 +1,11 @@ { "slug": "devtools", "name": "devtools", - "published_at": "2026-01-25T16:06:29.366Z", + "published_at": "2026-02-19T13:36:02.338Z", "organizationCount": 3, "projectCount": 82, "years": [ + 2026, 2025, 2020, 2019, @@ -13,18 +14,6 @@ 2016 ], "organizations": [ - { - "slug": "moira", - "name": "Moira", - "first_year": 2019, - "last_year": 2020, - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2019, - 2020 - ] - }, { "slug": "mozilla", "name": "Mozilla", @@ -44,11 +33,24 @@ "slug": "open-science-labs", "name": "Open Science Labs", "first_year": 2025, - "last_year": 2025, + "last_year": 2026, "total_projects": 4, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 + ] + }, + { + "slug": "moira", + "name": "Moira", + "first_year": 2019, + "last_year": 2020, + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2019, + 2020 ] } ], @@ -76,10 +78,14 @@ "2025": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.366Z" + "generated_at": "2026-02-19T13:36:02.338Z" } } \ No newline at end of file diff --git a/new-api-details/topics/dhcp.json b/new-api-details/topics/dhcp.json index 293a24a0..a615d28b 100644 --- a/new-api-details/topics/dhcp.json +++ b/new-api-details/topics/dhcp.json @@ -1,7 +1,7 @@ { "slug": "dhcp", "name": "dhcp", - "published_at": "2026-01-25T16:06:29.186Z", + "published_at": "2026-02-19T13:36:01.956Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.186Z" + "generated_at": "2026-02-19T13:36:01.956Z" } } \ No newline at end of file diff --git a/new-api-details/topics/diagnostic.json b/new-api-details/topics/diagnostic.json index 2d191557..9ac88e27 100644 --- a/new-api-details/topics/diagnostic.json +++ b/new-api-details/topics/diagnostic.json @@ -1,7 +1,7 @@ { "slug": "diagnostic", "name": "diagnostic", - "published_at": "2026-01-25T16:06:29.876Z", + "published_at": "2026-02-19T13:36:02.865Z", "organizationCount": 1, "projectCount": 15, "years": [ @@ -64,6 +64,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.876Z" + "generated_at": "2026-02-19T13:36:02.865Z" } } \ No newline at end of file diff --git a/new-api-details/topics/diagnostics.json b/new-api-details/topics/diagnostics.json index ca75e8f7..a3857ce2 100644 --- a/new-api-details/topics/diagnostics.json +++ b/new-api-details/topics/diagnostics.json @@ -1,7 +1,7 @@ { "slug": "diagnostics", "name": "diagnostics", - "published_at": "2026-01-25T16:06:29.016Z", + "published_at": "2026-02-19T13:36:01.588Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.016Z" + "generated_at": "2026-02-19T13:36:01.588Z" } } \ No newline at end of file diff --git a/new-api-details/topics/dicom-pathology.json b/new-api-details/topics/dicom-pathology.json index 68d4788a..7819f860 100644 --- a/new-api-details/topics/dicom-pathology.json +++ b/new-api-details/topics/dicom-pathology.json @@ -1,7 +1,7 @@ { "slug": "dicom-pathology", "name": "dicom pathology", - "published_at": "2026-01-25T16:06:29.821Z", + "published_at": "2026-02-19T13:36:00.905Z", "organizationCount": 1, "projectCount": 13, "years": [ @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.822Z" + "generated_at": "2026-02-19T13:36:00.905Z" } } \ No newline at end of file diff --git a/new-api-details/topics/differential-privacy.json b/new-api-details/topics/differential-privacy.json index d1556f6d..4f8b6dc8 100644 --- a/new-api-details/topics/differential-privacy.json +++ b/new-api-details/topics/differential-privacy.json @@ -1,7 +1,7 @@ { "slug": "differential-privacy", "name": "differential privacy", - "published_at": "2026-01-25T16:06:29.488Z", + "published_at": "2026-02-19T13:36:02.572Z", "organizationCount": 1, "projectCount": 9, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.488Z" + "generated_at": "2026-02-19T13:36:02.572Z" } } \ No newline at end of file diff --git a/new-api-details/topics/digital-arts.json b/new-api-details/topics/digital-arts.json index d49d13d1..bd4f80ab 100644 --- a/new-api-details/topics/digital-arts.json +++ b/new-api-details/topics/digital-arts.json @@ -1,7 +1,7 @@ { "slug": "digital-arts", "name": "digital arts", - "published_at": "2026-01-25T16:06:29.625Z", + "published_at": "2026-02-19T13:36:02.829Z", "organizationCount": 1, "projectCount": 12, "years": [ @@ -16,7 +16,7 @@ "first_year": 2022, "last_year": 2025, "total_projects": 12, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2023, @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.625Z" + "generated_at": "2026-02-19T13:36:02.829Z" } } \ No newline at end of file diff --git a/new-api-details/topics/digital-design.json b/new-api-details/topics/digital-design.json index 38151229..2af901da 100644 --- a/new-api-details/topics/digital-design.json +++ b/new-api-details/topics/digital-design.json @@ -1,10 +1,11 @@ { "slug": "digital-design", "name": "digital design", - "published_at": "2026-01-25T16:06:28.998Z", + "published_at": "2026-02-19T13:36:01.534Z", "organizationCount": 1, "projectCount": 60, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "free-and-open-source-silicon-foundation", "name": "Free and Open Source Silicon Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 60, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.998Z" + "generated_at": "2026-02-19T13:36:01.534Z" } } \ No newline at end of file diff --git a/new-api-details/topics/digital-financial-services.json b/new-api-details/topics/digital-financial-services.json index 9d583a75..faff6f70 100644 --- a/new-api-details/topics/digital-financial-services.json +++ b/new-api-details/topics/digital-financial-services.json @@ -1,10 +1,11 @@ { "slug": "digital-financial-services", "name": "digital financial services", - "published_at": "2026-01-25T16:06:29.706Z", + "published_at": "2026-02-19T13:36:02.943Z", "organizationCount": 1, "projectCount": 102, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "the-mifos-initiative", "name": "The Mifos Initiative", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 102, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 13 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.706Z" + "generated_at": "2026-02-19T13:36:02.943Z" } } \ No newline at end of file diff --git a/new-api-details/topics/digital-forensics.json b/new-api-details/topics/digital-forensics.json index 25523ec7..691a276a 100644 --- a/new-api-details/topics/digital-forensics.json +++ b/new-api-details/topics/digital-forensics.json @@ -1,7 +1,7 @@ { "slug": "digital-forensics", "name": "digital forensics", - "published_at": "2026-01-25T16:06:29.069Z", + "published_at": "2026-02-19T13:36:01.751Z", "organizationCount": 1, "projectCount": 0, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.069Z" + "generated_at": "2026-02-19T13:36:01.752Z" } } \ No newline at end of file diff --git a/new-api-details/topics/digital-hardware-design.json b/new-api-details/topics/digital-hardware-design.json index b4449079..7a31544d 100644 --- a/new-api-details/topics/digital-hardware-design.json +++ b/new-api-details/topics/digital-hardware-design.json @@ -1,7 +1,7 @@ { "slug": "digital-hardware-design", "name": "digital hardware design", - "published_at": "2026-01-25T16:06:28.522Z", + "published_at": "2026-02-19T13:36:00.525Z", "organizationCount": 1, "projectCount": 18, "years": [ @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.522Z" + "generated_at": "2026-02-19T13:36:00.525Z" } } \ No newline at end of file diff --git a/new-api-details/topics/digital-imaging.json b/new-api-details/topics/digital-imaging.json index 66d0de37..4d7f04bf 100644 --- a/new-api-details/topics/digital-imaging.json +++ b/new-api-details/topics/digital-imaging.json @@ -1,7 +1,7 @@ { "slug": "digital-imaging", "name": "digital imaging", - "published_at": "2026-01-25T16:06:28.515Z", + "published_at": "2026-02-19T13:36:00.510Z", "organizationCount": 1, "projectCount": 18, "years": [ @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.515Z" + "generated_at": "2026-02-19T13:36:00.511Z" } } \ No newline at end of file diff --git a/new-api-details/topics/digital-knowledge.json b/new-api-details/topics/digital-knowledge.json index b5bb2c76..3b37624c 100644 --- a/new-api-details/topics/digital-knowledge.json +++ b/new-api-details/topics/digital-knowledge.json @@ -1,7 +1,7 @@ { "slug": "digital-knowledge", "name": "digital knowledge", - "published_at": "2026-01-25T16:06:29.784Z", + "published_at": "2026-02-19T13:36:03.142Z", "organizationCount": 1, "projectCount": 4, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.784Z" + "generated_at": "2026-02-19T13:36:03.142Z" } } \ No newline at end of file diff --git a/new-api-details/topics/digital-library.json b/new-api-details/topics/digital-library.json index 21ec72fb..f2fb77cc 100644 --- a/new-api-details/topics/digital-library.json +++ b/new-api-details/topics/digital-library.json @@ -1,7 +1,7 @@ { "slug": "digital-library", "name": "digital library", - "published_at": "2026-01-25T16:06:29.808Z", + "published_at": "2026-02-19T13:36:03.174Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.808Z" + "generated_at": "2026-02-19T13:36:03.174Z" } } \ No newline at end of file diff --git a/new-api-details/topics/digital-logic-design.json b/new-api-details/topics/digital-logic-design.json index c11c2939..c4c3df03 100644 --- a/new-api-details/topics/digital-logic-design.json +++ b/new-api-details/topics/digital-logic-design.json @@ -1,10 +1,11 @@ { "slug": "digital-logic-design", "name": "digital logic design", - "published_at": "2026-01-25T16:06:28.761Z", + "published_at": "2026-02-19T13:36:01.021Z", "organizationCount": 1, "projectCount": 32, "years": [ + 2026, 2025, 2024, 2023, @@ -18,7 +19,7 @@ "slug": "circuitverseorg", "name": "CircuitVerse.org", "first_year": 2019, - "last_year": 2025, + "last_year": 2026, "total_projects": 32, "is_currently_active": true, "active_years": [ @@ -28,7 +29,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -60,10 +62,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.761Z" + "generated_at": "2026-02-19T13:36:01.021Z" } } \ No newline at end of file diff --git a/new-api-details/topics/digital-marketing.json b/new-api-details/topics/digital-marketing.json index 590dc393..4dbb3ae3 100644 --- a/new-api-details/topics/digital-marketing.json +++ b/new-api-details/topics/digital-marketing.json @@ -1,7 +1,7 @@ { "slug": "digital-marketing", "name": "Digital Marketing", - "published_at": "2026-01-25T16:06:29.335Z", + "published_at": "2026-02-19T13:36:02.237Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.335Z" + "generated_at": "2026-02-19T13:36:02.237Z" } } \ No newline at end of file diff --git a/new-api-details/topics/digital-preservation.json b/new-api-details/topics/digital-preservation.json index 4a280ee6..c4528a8b 100644 --- a/new-api-details/topics/digital-preservation.json +++ b/new-api-details/topics/digital-preservation.json @@ -1,7 +1,7 @@ { "slug": "digital-preservation", "name": "digital preservation", - "published_at": "2026-01-25T16:06:29.626Z", + "published_at": "2026-02-19T13:36:02.837Z", "organizationCount": 1, "projectCount": 6, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.626Z" + "generated_at": "2026-02-19T13:36:02.837Z" } } \ No newline at end of file diff --git a/new-api-details/topics/digital-public-goods.json b/new-api-details/topics/digital-public-goods.json index 1074f8c7..8faa0d82 100644 --- a/new-api-details/topics/digital-public-goods.json +++ b/new-api-details/topics/digital-public-goods.json @@ -1,10 +1,11 @@ { "slug": "digital-public-goods", "name": "Digital Public Goods", - "published_at": "2026-01-25T16:06:29.439Z", + "published_at": "2026-02-19T13:36:02.500Z", "organizationCount": 1, "projectCount": 9, "years": [ + 2026, 2025, 2024 ], @@ -13,12 +14,13 @@ "slug": "open-healthcare-network", "name": "Open HealthCare Network", "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "total_projects": 9, "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -30,10 +32,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.439Z" + "generated_at": "2026-02-19T13:36:02.500Z" } } \ No newline at end of file diff --git a/new-api-details/topics/digital-rights.json b/new-api-details/topics/digital-rights.json index 59883c99..1ac4c61c 100644 --- a/new-api-details/topics/digital-rights.json +++ b/new-api-details/topics/digital-rights.json @@ -1,7 +1,7 @@ { "slug": "digital-rights", "name": "digital rights", - "published_at": "2026-01-25T16:06:28.586Z", + "published_at": "2026-02-19T13:36:00.690Z", "organizationCount": 1, "projectCount": 20, "years": [ @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.586Z" + "generated_at": "2026-02-19T13:36:00.690Z" } } \ No newline at end of file diff --git a/new-api-details/topics/digital-signal-processing.json b/new-api-details/topics/digital-signal-processing.json index fe2b107f..fb467eeb 100644 --- a/new-api-details/topics/digital-signal-processing.json +++ b/new-api-details/topics/digital-signal-processing.json @@ -1,10 +1,11 @@ { "slug": "digital-signal-processing", "name": "digital signal processing", - "published_at": "2026-01-25T16:06:29.032Z", + "published_at": "2026-02-19T13:36:01.657Z", "organizationCount": 5, "projectCount": 72, "years": [ + 2026, 2025, 2024, 2023, @@ -23,7 +24,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 28, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -40,7 +41,7 @@ "slug": "gnu-radio", "name": "GNU Radio", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 18, "is_currently_active": true, "active_years": [ @@ -53,21 +54,8 @@ 2022, 2023, 2024, - 2025 - ] - }, - { - "slug": "grame", - "name": "GRAME", - "first_year": 2022, - "last_year": 2025, - "total_projects": 10, - "is_currently_active": true, - "active_years": [ - 2022, - 2023, - 2024, - 2025 + 2025, + 2026 ] }, { @@ -87,6 +75,21 @@ 2024 ] }, + { + "slug": "grame", + "name": "GRAME", + "first_year": 2022, + "last_year": 2026, + "total_projects": 10, + "is_currently_active": true, + "active_years": [ + 2022, + 2023, + 2024, + 2025, + 2026 + ] + }, { "slug": "zynaddsubfx", "name": "ZynAddSubFX", @@ -139,10 +142,14 @@ "2025": { "organizationCount": 3, "projectCount": 10 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.032Z" + "generated_at": "2026-02-19T13:36:01.657Z" } } \ No newline at end of file diff --git a/new-api-details/topics/digitization.json b/new-api-details/topics/digitization.json index abf8f36b..c15c2351 100644 --- a/new-api-details/topics/digitization.json +++ b/new-api-details/topics/digitization.json @@ -1,10 +1,11 @@ { "slug": "digitization", "name": "digitization", - "published_at": "2026-01-25T16:06:28.808Z", + "published_at": "2026-02-19T13:36:01.105Z", "organizationCount": 1, "projectCount": 30, "years": [ + 2026, 2022, 2021, 2020, @@ -16,15 +17,16 @@ "slug": "cuneiform-digital-library-initiative-cdli", "name": "Cuneiform Digital Library Initiative (CDLI)", "first_year": 2018, - "last_year": 2022, + "last_year": 2026, "total_projects": 30, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2018, 2019, 2020, 2021, - 2022 + 2022, + 2026 ] } ], @@ -48,10 +50,14 @@ "2022": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.808Z" + "generated_at": "2026-02-19T13:36:01.105Z" } } \ No newline at end of file diff --git a/new-api-details/topics/directx.json b/new-api-details/topics/directx.json index 5c9229e5..2bd2e63d 100644 --- a/new-api-details/topics/directx.json +++ b/new-api-details/topics/directx.json @@ -1,7 +1,7 @@ { "slug": "directx", "name": "directx", - "published_at": "2026-01-25T16:06:29.733Z", + "published_at": "2026-02-19T13:36:03.007Z", "organizationCount": 1, "projectCount": 4, "years": [ @@ -52,6 +52,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.733Z" + "generated_at": "2026-02-19T13:36:03.007Z" } } \ No newline at end of file diff --git a/new-api-details/topics/disassembly.json b/new-api-details/topics/disassembly.json index 6f6c431b..2426de06 100644 --- a/new-api-details/topics/disassembly.json +++ b/new-api-details/topics/disassembly.json @@ -1,10 +1,11 @@ { "slug": "disassembly", "name": "disassembly", - "published_at": "2026-01-25T16:06:28.919Z", + "published_at": "2026-02-19T13:36:01.373Z", "organizationCount": 3, "projectCount": 32, "years": [ + 2026, 2025, 2024, 2023, @@ -16,19 +17,6 @@ 2016 ], "organizations": [ - { - "slug": "flare", - "name": "FLARE", - "first_year": 2023, - "last_year": 2025, - "total_projects": 7, - "is_currently_active": true, - "active_years": [ - 2023, - 2024, - 2025 - ] - }, { "slug": "radare", "name": "Radare", @@ -47,7 +35,7 @@ "slug": "rizin", "name": "Rizin", "first_year": 2021, - "last_year": 2025, + "last_year": 2026, "total_projects": 10, "is_currently_active": true, "active_years": [ @@ -55,7 +43,22 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "flare", + "name": "FLARE", + "first_year": 2023, + "last_year": 2026, + "total_projects": 7, + "is_currently_active": true, + "active_years": [ + 2023, + 2024, + 2025, + 2026 ] } ], @@ -95,10 +98,14 @@ "2025": { "organizationCount": 2, "projectCount": 5 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.919Z" + "generated_at": "2026-02-19T13:36:01.373Z" } } \ No newline at end of file diff --git a/new-api-details/topics/discovery.json b/new-api-details/topics/discovery.json index 18a45c8b..9b57f86e 100644 --- a/new-api-details/topics/discovery.json +++ b/new-api-details/topics/discovery.json @@ -1,7 +1,7 @@ { "slug": "discovery", "name": "discovery", - "published_at": "2026-01-25T16:06:28.884Z", + "published_at": "2026-02-19T13:36:01.225Z", "organizationCount": 1, "projectCount": 4, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.884Z" + "generated_at": "2026-02-19T13:36:01.225Z" } } \ No newline at end of file diff --git a/new-api-details/topics/display.json b/new-api-details/topics/display.json index 9050b764..8265cf8e 100644 --- a/new-api-details/topics/display.json +++ b/new-api-details/topics/display.json @@ -1,7 +1,7 @@ { "slug": "display", "name": "display", - "published_at": "2026-01-25T16:06:29.774Z", + "published_at": "2026-02-19T13:36:03.125Z", "organizationCount": 1, "projectCount": 1, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.774Z" + "generated_at": "2026-02-19T13:36:03.125Z" } } \ No newline at end of file diff --git a/new-api-details/topics/distributed-computing.json b/new-api-details/topics/distributed-computing.json index b94e3623..8ff796fe 100644 --- a/new-api-details/topics/distributed-computing.json +++ b/new-api-details/topics/distributed-computing.json @@ -1,7 +1,7 @@ { "slug": "distributed-computing", "name": "distributed computing", - "published_at": "2026-01-25T16:06:28.440Z", + "published_at": "2026-02-19T13:36:00.387Z", "organizationCount": 3, "projectCount": 65, "years": [ @@ -85,6 +85,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.440Z" + "generated_at": "2026-02-19T13:36:00.387Z" } } \ No newline at end of file diff --git a/new-api-details/topics/distributed-databases.json b/new-api-details/topics/distributed-databases.json index ca126157..e1492b01 100644 --- a/new-api-details/topics/distributed-databases.json +++ b/new-api-details/topics/distributed-databases.json @@ -1,10 +1,11 @@ { "slug": "distributed-databases", "name": "distributed databases", - "published_at": "2026-01-25T16:06:28.578Z", + "published_at": "2026-02-19T13:36:00.674Z", "organizationCount": 2, "projectCount": 35, "years": [ + 2026, 2025, 2024, 2023, @@ -32,7 +33,7 @@ "slug": "learning-equality", "name": "Learning Equality", "first_year": 2021, - "last_year": 2025, + "last_year": 2026, "total_projects": 16, "is_currently_active": true, "active_years": [ @@ -40,7 +41,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -76,10 +78,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.578Z" + "generated_at": "2026-02-19T13:36:00.674Z" } } \ No newline at end of file diff --git a/new-api-details/topics/distributed-datastructures.json b/new-api-details/topics/distributed-datastructures.json index 7a99234a..1eef00a3 100644 --- a/new-api-details/topics/distributed-datastructures.json +++ b/new-api-details/topics/distributed-datastructures.json @@ -1,10 +1,11 @@ { "slug": "distributed-datastructures", "name": "distributed datastructures", - "published_at": "2026-01-25T16:06:29.640Z", + "published_at": "2026-02-19T13:36:02.852Z", "organizationCount": 1, "projectCount": 38, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "stear-group", "name": "Ste||ar group", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 38, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.640Z" + "generated_at": "2026-02-19T13:36:02.852Z" } } \ No newline at end of file diff --git a/new-api-details/topics/distributed-energy-systems.json b/new-api-details/topics/distributed-energy-systems.json index 99dbef73..3827bf88 100644 --- a/new-api-details/topics/distributed-energy-systems.json +++ b/new-api-details/topics/distributed-energy-systems.json @@ -1,7 +1,7 @@ { "slug": "distributed-energy-systems", "name": "distributed energy systems", - "published_at": "2026-01-25T16:06:29.762Z", + "published_at": "2026-02-19T13:36:03.109Z", "organizationCount": 1, "projectCount": 6, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.762Z" + "generated_at": "2026-02-19T13:36:03.109Z" } } \ No newline at end of file diff --git a/new-api-details/topics/distributed-networks.json b/new-api-details/topics/distributed-networks.json index c083c9d2..dd764e11 100644 --- a/new-api-details/topics/distributed-networks.json +++ b/new-api-details/topics/distributed-networks.json @@ -1,7 +1,7 @@ { "slug": "distributed-networks", "name": "distributed networks", - "published_at": "2026-01-25T16:06:28.703Z", + "published_at": "2026-02-19T13:36:00.954Z", "organizationCount": 3, "projectCount": 28, "years": [ @@ -28,27 +28,27 @@ ] }, { - "slug": "grpc", - "name": "gRPC", + "slug": "p2psporg", + "name": "P2PSP.org", "first_year": 2016, "last_year": 2018, - "total_projects": 3, + "total_projects": 5, "is_currently_active": false, "active_years": [ 2016, + 2017, 2018 ] }, { - "slug": "p2psporg", - "name": "P2PSP.org", + "slug": "grpc", + "name": "gRPC", "first_year": 2016, "last_year": 2018, - "total_projects": 5, + "total_projects": 3, "is_currently_active": false, "active_years": [ 2016, - 2017, 2018 ] } @@ -81,6 +81,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.703Z" + "generated_at": "2026-02-19T13:36:00.954Z" } } \ No newline at end of file diff --git a/new-api-details/topics/distributed-system.json b/new-api-details/topics/distributed-system.json index b643450c..dd57705d 100644 --- a/new-api-details/topics/distributed-system.json +++ b/new-api-details/topics/distributed-system.json @@ -1,7 +1,7 @@ { "slug": "distributed-system", "name": "distributed system", - "published_at": "2026-01-25T16:06:28.840Z", + "published_at": "2026-02-19T13:36:01.179Z", "organizationCount": 1, "projectCount": 27, "years": [ @@ -18,7 +18,7 @@ "first_year": 2021, "last_year": 2025, "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2021, 2022, @@ -52,6 +52,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.840Z" + "generated_at": "2026-02-19T13:36:01.179Z" } } \ No newline at end of file diff --git a/new-api-details/topics/distributed-systems.json b/new-api-details/topics/distributed-systems.json index 48f00ded..348e6a7f 100644 --- a/new-api-details/topics/distributed-systems.json +++ b/new-api-details/topics/distributed-systems.json @@ -1,10 +1,11 @@ { "slug": "distributed-systems", "name": "distributed systems", - "published_at": "2026-01-25T16:06:28.602Z", + "published_at": "2026-02-19T13:36:00.760Z", "organizationCount": 11, "projectCount": 175, "years": [ + 2026, 2025, 2024, 2023, @@ -18,36 +19,50 @@ ], "organizations": [ { - "slug": "biomedical-informatics-emory-university", - "name": "Biomedical Informatics, Emory University", + "slug": "lablua", + "name": "LabLua", "first_year": 2016, - "last_year": 2019, - "total_projects": 9, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 43, + "is_currently_active": true, "active_years": [ 2016, - 2019 + 2017, + 2018, + 2019, + 2020, + 2021, + 2024, + 2025, + 2026 ] }, { - "slug": "camicroscope", - "name": "caMicroscope", - "first_year": 2020, - "last_year": 2024, - "total_projects": 13, - "is_currently_active": false, + "slug": "mariadb", + "name": "MariaDB", + "first_year": 2016, + "last_year": 2026, + "total_projects": 39, + "is_currently_active": true, "active_years": [ + 2016, + 2017, + 2018, + 2019, 2020, 2021, + 2022, 2023, - 2024 + 2024, + 2025, + 2026 ] }, { "slug": "ceph-foundation", "name": "Ceph Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 31, "is_currently_active": true, "active_years": [ @@ -58,7 +73,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -67,7 +83,7 @@ "first_year": 2021, "last_year": 2025, "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2021, 2022, @@ -76,6 +92,32 @@ 2025 ] }, + { + "slug": "camicroscope", + "name": "caMicroscope", + "first_year": 2020, + "last_year": 2024, + "total_projects": 13, + "is_currently_active": false, + "active_years": [ + 2020, + 2021, + 2023, + 2024 + ] + }, + { + "slug": "biomedical-informatics-emory-university", + "name": "Biomedical Informatics, Emory University", + "first_year": 2016, + "last_year": 2019, + "total_projects": 9, + "is_currently_active": false, + "active_years": [ + 2016, + 2019 + ] + }, { "slug": "erlang-ecosystem-foundation", "name": "Erlang Ecosystem Foundation", @@ -100,21 +142,15 @@ ] }, { - "slug": "lablua", - "name": "LabLua", - "first_year": 2016, - "last_year": 2025, - "total_projects": 43, - "is_currently_active": true, + "slug": "tarantool", + "name": "Tarantool", + "first_year": 2021, + "last_year": 2022, + "total_projects": 3, + "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, 2021, - 2024, - 2025 + 2022 ] }, { @@ -128,26 +164,6 @@ 2023 ] }, - { - "slug": "mariadb", - "name": "MariaDB", - "first_year": 2016, - "last_year": 2025, - "total_projects": 39, - "is_currently_active": true, - "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 - ] - }, { "slug": "plan-9-foundation", "name": "Plan 9 Foundation", @@ -158,18 +174,6 @@ "active_years": [ 2021 ] - }, - { - "slug": "tarantool", - "name": "Tarantool", - "first_year": 2021, - "last_year": 2022, - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2021, - 2022 - ] } ], "yearlyStats": { @@ -212,10 +216,14 @@ "2025": { "organizationCount": 4, "projectCount": 20 + }, + "2026": { + "organizationCount": 3, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.602Z" + "generated_at": "2026-02-19T13:36:00.760Z" } } \ No newline at end of file diff --git a/new-api-details/topics/distributed.json b/new-api-details/topics/distributed.json index 17072174..4bd3f482 100644 --- a/new-api-details/topics/distributed.json +++ b/new-api-details/topics/distributed.json @@ -1,7 +1,7 @@ { "slug": "distributed", "name": "distributed", - "published_at": "2026-01-25T16:06:28.701Z", + "published_at": "2026-02-19T13:36:00.952Z", "organizationCount": 3, "projectCount": 28, "years": [ @@ -14,14 +14,19 @@ ], "organizations": [ { - "slug": "celluloid", - "name": "Celluloid", + "slug": "performance-co-pilot", + "name": "Performance Co-Pilot", "first_year": 2016, - "last_year": 2016, - "total_projects": 3, + "last_year": 2022, + "total_projects": 19, "is_currently_active": false, "active_years": [ - 2016 + 2016, + 2017, + 2018, + 2019, + 2020, + 2022 ] }, { @@ -37,19 +42,14 @@ ] }, { - "slug": "performance-co-pilot", - "name": "Performance Co-Pilot", + "slug": "celluloid", + "name": "Celluloid", "first_year": 2016, - "last_year": 2022, - "total_projects": 19, + "last_year": 2016, + "total_projects": 3, "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2022 + 2016 ] } ], @@ -81,6 +81,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.701Z" + "generated_at": "2026-02-19T13:36:00.952Z" } } \ No newline at end of file diff --git a/new-api-details/topics/distribution.json b/new-api-details/topics/distribution.json index 20390770..c3ca8523 100644 --- a/new-api-details/topics/distribution.json +++ b/new-api-details/topics/distribution.json @@ -1,7 +1,7 @@ { "slug": "distribution", "name": "distribution", - "published_at": "2026-01-25T16:06:28.956Z", + "published_at": "2026-02-19T13:36:01.293Z", "organizationCount": 2, "projectCount": 38, "years": [ @@ -20,7 +20,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -78,6 +78,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.956Z" + "generated_at": "2026-02-19T13:36:01.293Z" } } \ No newline at end of file diff --git a/new-api-details/topics/diversity-and-inclusion.json b/new-api-details/topics/diversity-and-inclusion.json index e55b0bf3..6e349a2f 100644 --- a/new-api-details/topics/diversity-and-inclusion.json +++ b/new-api-details/topics/diversity-and-inclusion.json @@ -1,7 +1,7 @@ { "slug": "diversity-and-inclusion", "name": "diversity and inclusion", - "published_at": "2026-01-25T16:06:28.660Z", + "published_at": "2026-02-19T13:36:00.992Z", "organizationCount": 1, "projectCount": 29, "years": [ @@ -19,7 +19,7 @@ "first_year": 2018, "last_year": 2025, "total_projects": 29, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2018, 2019, @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.661Z" + "generated_at": "2026-02-19T13:36:00.992Z" } } \ No newline at end of file diff --git a/new-api-details/topics/diversity-equity-and-inclusion.json b/new-api-details/topics/diversity-equity-and-inclusion.json index 43201a1f..50176d54 100644 --- a/new-api-details/topics/diversity-equity-and-inclusion.json +++ b/new-api-details/topics/diversity-equity-and-inclusion.json @@ -1,7 +1,7 @@ { "slug": "diversity-equity-and-inclusion", "name": "Diversity Equity and Inclusion", - "published_at": "2026-01-25T16:06:28.661Z", + "published_at": "2026-02-19T13:36:00.994Z", "organizationCount": 1, "projectCount": 29, "years": [ @@ -19,7 +19,7 @@ "first_year": 2018, "last_year": 2025, "total_projects": 29, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2018, 2019, @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.661Z" + "generated_at": "2026-02-19T13:36:00.994Z" } } \ No newline at end of file diff --git a/new-api-details/topics/diversity.json b/new-api-details/topics/diversity.json index 6f7bfcc5..7d001dba 100644 --- a/new-api-details/topics/diversity.json +++ b/new-api-details/topics/diversity.json @@ -1,7 +1,7 @@ { "slug": "diversity", "name": "diversity", - "published_at": "2026-01-25T16:06:29.567Z", + "published_at": "2026-02-19T13:36:02.758Z", "organizationCount": 1, "projectCount": 38, "years": [ @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.567Z" + "generated_at": "2026-02-19T13:36:02.758Z" } } \ No newline at end of file diff --git a/new-api-details/topics/diy.json b/new-api-details/topics/diy.json index 80118dd6..3e71727c 100644 --- a/new-api-details/topics/diy.json +++ b/new-api-details/topics/diy.json @@ -1,7 +1,7 @@ { "slug": "diy", "name": "diy", - "published_at": "2026-01-25T16:06:29.568Z", + "published_at": "2026-02-19T13:36:02.759Z", "organizationCount": 1, "projectCount": 38, "years": [ @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.568Z" + "generated_at": "2026-02-19T13:36:02.759Z" } } \ No newline at end of file diff --git a/new-api-details/topics/dj.json b/new-api-details/topics/dj.json index 150bbcf6..61dfdea6 100644 --- a/new-api-details/topics/dj.json +++ b/new-api-details/topics/dj.json @@ -1,10 +1,11 @@ { "slug": "dj", "name": "dj", - "published_at": "2026-01-25T16:06:29.357Z", + "published_at": "2026-02-19T13:36:02.316Z", "organizationCount": 1, "projectCount": 16, "years": [ + 2026, 2025, 2024, 2022, @@ -18,7 +19,7 @@ "slug": "mixxx", "name": "Mixxx", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 16, "is_currently_active": true, "active_years": [ @@ -28,7 +29,8 @@ 2020, 2022, 2024, - 2025 + 2025, + 2026 ] } ], @@ -60,10 +62,14 @@ "2025": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.357Z" + "generated_at": "2026-02-19T13:36:02.316Z" } } \ No newline at end of file diff --git a/new-api-details/topics/django.json b/new-api-details/topics/django.json index 18cc2337..fb61eb60 100644 --- a/new-api-details/topics/django.json +++ b/new-api-details/topics/django.json @@ -1,7 +1,7 @@ { "slug": "django", "name": "django", - "published_at": "2026-01-25T16:06:28.783Z", + "published_at": "2026-02-19T13:36:01.048Z", "organizationCount": 1, "projectCount": 28, "years": [ @@ -22,7 +22,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 28, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -76,6 +76,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.783Z" + "generated_at": "2026-02-19T13:36:01.048Z" } } \ No newline at end of file diff --git a/new-api-details/topics/dl-inference.json b/new-api-details/topics/dl-inference.json index b38edee4..aee912a8 100644 --- a/new-api-details/topics/dl-inference.json +++ b/new-api-details/topics/dl-inference.json @@ -1,10 +1,11 @@ { "slug": "dl-inference", "name": "DL-inference", - "published_at": "2026-01-25T16:06:29.497Z", + "published_at": "2026-02-19T13:36:02.635Z", "organizationCount": 1, "projectCount": 32, "years": [ + 2026, 2025, 2024, 2023, @@ -15,14 +16,15 @@ "slug": "openvino-toolkit", "name": "OpenVINO Toolkit", "first_year": 2022, - "last_year": 2025, + "last_year": 2026, "total_projects": 32, "is_currently_active": true, "active_years": [ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -42,10 +44,14 @@ "2025": { "organizationCount": 1, "projectCount": 16 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.497Z" + "generated_at": "2026-02-19T13:36:02.635Z" } } \ No newline at end of file diff --git a/new-api-details/topics/dns-recursive-solutions.json b/new-api-details/topics/dns-recursive-solutions.json index 90d92588..b9e4c0a9 100644 --- a/new-api-details/topics/dns-recursive-solutions.json +++ b/new-api-details/topics/dns-recursive-solutions.json @@ -1,7 +1,7 @@ { "slug": "dns-recursive-solutions", "name": "DNS recursive solutions", - "published_at": "2026-01-25T16:06:29.557Z", + "published_at": "2026-02-19T13:36:02.743Z", "organizationCount": 1, "projectCount": 1, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.557Z" + "generated_at": "2026-02-19T13:36:02.743Z" } } \ No newline at end of file diff --git a/new-api-details/topics/dns.json b/new-api-details/topics/dns.json index fb1549af..6cc458de 100644 --- a/new-api-details/topics/dns.json +++ b/new-api-details/topics/dns.json @@ -1,7 +1,7 @@ { "slug": "dns", "name": "dns", - "published_at": "2026-01-25T16:06:29.187Z", + "published_at": "2026-02-19T13:36:01.959Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.187Z" + "generated_at": "2026-02-19T13:36:01.959Z" } } \ No newline at end of file diff --git a/new-api-details/topics/docker.json b/new-api-details/topics/docker.json index 14efb58e..16780f1c 100644 --- a/new-api-details/topics/docker.json +++ b/new-api-details/topics/docker.json @@ -1,7 +1,7 @@ { "slug": "docker", "name": "docker", - "published_at": "2026-01-25T16:06:29.130Z", + "published_at": "2026-02-19T13:36:01.785Z", "organizationCount": 1, "projectCount": 8, "years": [ @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.130Z" + "generated_at": "2026-02-19T13:36:01.785Z" } } \ No newline at end of file diff --git a/new-api-details/topics/docs.json b/new-api-details/topics/docs.json index 762803a7..1946353b 100644 --- a/new-api-details/topics/docs.json +++ b/new-api-details/topics/docs.json @@ -1,7 +1,7 @@ { "slug": "docs", "name": "docs", - "published_at": "2026-01-25T16:06:29.586Z", + "published_at": "2026-02-19T13:36:02.783Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.586Z" + "generated_at": "2026-02-19T13:36:02.783Z" } } \ No newline at end of file diff --git a/new-api-details/topics/document-assembly.json b/new-api-details/topics/document-assembly.json index ec6dda9a..72c32f73 100644 --- a/new-api-details/topics/document-assembly.json +++ b/new-api-details/topics/document-assembly.json @@ -1,10 +1,11 @@ { "slug": "document-assembly", "name": "document assembly", - "published_at": "2026-01-25T16:06:28.439Z", + "published_at": "2026-02-19T13:36:00.386Z", "organizationCount": 1, "projectCount": 13, "years": [ + 2026, 2025, 2024, 2021, @@ -15,14 +16,15 @@ "slug": "accord-project", "name": "Accord Project", "first_year": 2020, - "last_year": 2025, + "last_year": 2026, "total_projects": 13, "is_currently_active": true, "active_years": [ 2020, 2021, 2024, - 2025 + 2025, + 2026 ] } ], @@ -42,10 +44,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.439Z" + "generated_at": "2026-02-19T13:36:00.386Z" } } \ No newline at end of file diff --git a/new-api-details/topics/documentation.json b/new-api-details/topics/documentation.json index d8a1ef8f..d87c2a2e 100644 --- a/new-api-details/topics/documentation.json +++ b/new-api-details/topics/documentation.json @@ -1,7 +1,7 @@ { "slug": "documentation", "name": "documentation", - "published_at": "2026-01-25T16:06:29.557Z", + "published_at": "2026-02-19T13:36:02.741Z", "organizationCount": 3, "projectCount": 60, "years": [ @@ -16,20 +16,6 @@ 2016 ], "organizations": [ - { - "slug": "postman", - "name": "Postman", - "first_year": 2020, - "last_year": 2024, - "total_projects": 19, - "is_currently_active": false, - "active_years": [ - 2020, - 2021, - 2023, - 2024 - ] - }, { "slug": "public-lab", "name": "Public Lab", @@ -46,6 +32,20 @@ 2022 ] }, + { + "slug": "postman", + "name": "Postman", + "first_year": 2020, + "last_year": 2024, + "total_projects": 19, + "is_currently_active": false, + "active_years": [ + 2020, + 2021, + 2023, + 2024 + ] + }, { "slug": "read-the-docs", "name": "Read the Docs", @@ -99,6 +99,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.557Z" + "generated_at": "2026-02-19T13:36:02.741Z" } } \ No newline at end of file diff --git a/new-api-details/topics/drivers.json b/new-api-details/topics/drivers.json index 6b872218..7a8afecf 100644 --- a/new-api-details/topics/drivers.json +++ b/new-api-details/topics/drivers.json @@ -1,10 +1,11 @@ { "slug": "drivers", "name": "drivers", - "published_at": "2026-01-25T16:06:28.975Z", + "published_at": "2026-02-19T13:36:01.085Z", "organizationCount": 8, "projectCount": 78, "years": [ + 2026, 2024, 2023, 2022, @@ -17,14 +18,35 @@ ], "organizations": [ { - "slug": "coreboot", - "name": "coreboot", + "slug": "haiku", + "name": "Haiku", + "first_year": 2017, + "last_year": 2026, + "total_projects": 26, + "is_currently_active": true, + "active_years": [ + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2026 + ] + }, + { + "slug": "xorg-foundation", + "name": "X.Org Foundation", "first_year": 2016, "last_year": 2023, - "total_projects": 11, + "total_projects": 19, "is_currently_active": false, "active_years": [ 2016, + 2017, + 2018, 2019, 2020, 2022, @@ -32,100 +54,81 @@ ] }, { - "slug": "flashrom", - "name": "Flashrom", - "first_year": 2022, + "slug": "reactos-foundation", + "name": "ReactOS Foundation", + "first_year": 2016, "last_year": 2022, - "total_projects": 1, - "is_currently_active": false, - "active_years": [ - 2022 - ] - }, - { - "slug": "haiku", - "name": "Haiku", - "first_year": 2017, - "last_year": 2024, - "total_projects": 26, + "total_projects": 15, "is_currently_active": false, "active_years": [ + 2016, 2017, 2018, 2019, 2020, 2021, - 2022, - 2023, - 2024 + 2022 ] }, { - "slug": "illumosorg", - "name": "illumos.org", - "first_year": 2017, - "last_year": 2017, - "total_projects": 0, + "slug": "coreboot", + "name": "coreboot", + "first_year": 2016, + "last_year": 2023, + "total_projects": 11, "is_currently_active": false, "active_years": [ - 2017 + 2016, + 2019, + 2020, + 2022, + 2023 ] }, { "slug": "kolibrios-project-team", "name": "KolibriOS Project Team", "first_year": 2016, - "last_year": 2024, + "last_year": 2026, "total_projects": 6, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, - 2024 + 2024, + 2026 ] }, { - "slug": "openhmd", - "name": "OpenHMD", - "first_year": 2020, - "last_year": 2020, - "total_projects": 0, + "slug": "flashrom", + "name": "Flashrom", + "first_year": 2022, + "last_year": 2022, + "total_projects": 1, "is_currently_active": false, "active_years": [ - 2020 + 2022 ] }, { - "slug": "reactos-foundation", - "name": "ReactOS Foundation", - "first_year": 2016, - "last_year": 2022, - "total_projects": 15, + "slug": "illumosorg", + "name": "illumos.org", + "first_year": 2017, + "last_year": 2017, + "total_projects": 0, "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022 + 2017 ] }, { - "slug": "xorg-foundation", - "name": "X.Org Foundation", - "first_year": 2016, - "last_year": 2023, - "total_projects": 19, + "slug": "openhmd", + "name": "OpenHMD", + "first_year": 2020, + "last_year": 2020, + "total_projects": 0, "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2022, - 2023 + 2020 ] } ], @@ -165,10 +168,14 @@ "2024": { "organizationCount": 2, "projectCount": 7 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.975Z" + "generated_at": "2026-02-19T13:36:01.085Z" } } \ No newline at end of file diff --git a/new-api-details/topics/drone.json b/new-api-details/topics/drone.json index 19efd19e..ac24faf1 100644 --- a/new-api-details/topics/drone.json +++ b/new-api-details/topics/drone.json @@ -1,10 +1,11 @@ { "slug": "drone", "name": "Drone", - "published_at": "2026-01-25T16:06:28.530Z", + "published_at": "2026-02-19T13:36:00.621Z", "organizationCount": 1, "projectCount": 38, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "ardupilot", "name": "ArduPilot", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 38, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.530Z" + "generated_at": "2026-02-19T13:36:00.621Z" } } \ No newline at end of file diff --git a/new-api-details/topics/drones.json b/new-api-details/topics/drones.json index 17859078..173183a9 100644 --- a/new-api-details/topics/drones.json +++ b/new-api-details/topics/drones.json @@ -1,10 +1,11 @@ { "slug": "drones", "name": "drones", - "published_at": "2026-01-25T16:06:28.525Z", + "published_at": "2026-02-19T13:36:00.608Z", "organizationCount": 2, "projectCount": 41, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "ardupilot", "name": "ArduPilot", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 38, "is_currently_active": true, "active_years": [ @@ -33,7 +34,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -88,10 +90,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.525Z" + "generated_at": "2026-02-19T13:36:00.608Z" } } \ No newline at end of file diff --git a/new-api-details/topics/drug-discovery.json b/new-api-details/topics/drug-discovery.json index 9293cc35..e69eb708 100644 --- a/new-api-details/topics/drug-discovery.json +++ b/new-api-details/topics/drug-discovery.json @@ -1,10 +1,11 @@ { "slug": "drug-discovery", "name": "Drug Discovery", - "published_at": "2026-01-25T16:06:28.837Z", + "published_at": "2026-02-19T13:36:01.174Z", "organizationCount": 1, "projectCount": 14, "years": [ + 2026, 2025, 2024 ], @@ -13,12 +14,13 @@ "slug": "deepchem", "name": "DeepChem", "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "total_projects": 14, "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -30,10 +32,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.837Z" + "generated_at": "2026-02-19T13:36:01.174Z" } } \ No newline at end of file diff --git a/new-api-details/topics/drupal-8.json b/new-api-details/topics/drupal-8.json index e698e236..0dbc70b6 100644 --- a/new-api-details/topics/drupal-8.json +++ b/new-api-details/topics/drupal-8.json @@ -1,10 +1,11 @@ { "slug": "drupal-8", "name": "drupal 8", - "published_at": "2026-01-25T16:06:28.868Z", + "published_at": "2026-02-19T13:36:01.218Z", "organizationCount": 1, "projectCount": 39, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "drupal-association", "name": "Drupal Association", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 39, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.868Z" + "generated_at": "2026-02-19T13:36:01.218Z" } } \ No newline at end of file diff --git a/new-api-details/topics/dsl.json b/new-api-details/topics/dsl.json index cc27ff23..f83264db 100644 --- a/new-api-details/topics/dsl.json +++ b/new-api-details/topics/dsl.json @@ -1,7 +1,7 @@ { "slug": "dsl", "name": "dsl", - "published_at": "2026-01-25T16:06:28.686Z", + "published_at": "2026-02-19T13:36:01.139Z", "organizationCount": 2, "projectCount": 249, "years": [ @@ -17,24 +17,13 @@ 2016 ], "organizations": [ - { - "slug": "cvxpy", - "name": "CVXPY", - "first_year": 2016, - "last_year": 2016, - "total_projects": 1, - "is_currently_active": false, - "active_years": [ - 2016 - ] - }, { "slug": "the-apache-software-foundation", "name": "The Apache Software Foundation", "first_year": 2016, "last_year": 2025, "total_projects": 248, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -47,6 +36,17 @@ 2024, 2025 ] + }, + { + "slug": "cvxpy", + "name": "CVXPY", + "first_year": 2016, + "last_year": 2016, + "total_projects": 1, + "is_currently_active": false, + "active_years": [ + 2016 + ] } ], "yearlyStats": { @@ -93,6 +93,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.686Z" + "generated_at": "2026-02-19T13:36:01.139Z" } } \ No newline at end of file diff --git a/new-api-details/topics/dsp.json b/new-api-details/topics/dsp.json index d12d9eb5..449228d6 100644 --- a/new-api-details/topics/dsp.json +++ b/new-api-details/topics/dsp.json @@ -1,10 +1,11 @@ { "slug": "dsp", "name": "dsp", - "published_at": "2026-01-25T16:06:29.061Z", + "published_at": "2026-02-19T13:36:01.701Z", "organizationCount": 3, "projectCount": 49, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "gnu-radio", "name": "GNU Radio", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 18, "is_currently_active": true, "active_years": [ @@ -34,14 +35,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "mixxx", "name": "Mixxx", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 16, "is_currently_active": true, "active_years": [ @@ -51,7 +53,8 @@ 2020, 2022, 2024, - 2025 + 2025, + 2026 ] }, { @@ -112,10 +115,14 @@ "2025": { "organizationCount": 2, "projectCount": 7 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.061Z" + "generated_at": "2026-02-19T13:36:01.701Z" } } \ No newline at end of file diff --git a/new-api-details/topics/dtls.json b/new-api-details/topics/dtls.json index eba46d0b..6fc283c8 100644 --- a/new-api-details/topics/dtls.json +++ b/new-api-details/topics/dtls.json @@ -1,7 +1,7 @@ { "slug": "dtls", "name": "DTLS", - "published_at": "2026-01-25T16:06:29.098Z", + "published_at": "2026-02-19T13:36:01.707Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.098Z" + "generated_at": "2026-02-19T13:36:01.707Z" } } \ No newline at end of file diff --git a/new-api-details/topics/dvcs.json b/new-api-details/topics/dvcs.json index b7899112..accd3a56 100644 --- a/new-api-details/topics/dvcs.json +++ b/new-api-details/topics/dvcs.json @@ -1,10 +1,11 @@ { "slug": "dvcs", "name": "dvcs", - "published_at": "2026-01-25T16:06:29.084Z", + "published_at": "2026-02-19T13:36:01.621Z", "organizationCount": 1, "projectCount": 22, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "git", "name": "Git", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 22, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.084Z" + "generated_at": "2026-02-19T13:36:01.621Z" } } \ No newline at end of file diff --git a/new-api-details/topics/dxp.json b/new-api-details/topics/dxp.json index 09b15ecc..be4df875 100644 --- a/new-api-details/topics/dxp.json +++ b/new-api-details/topics/dxp.json @@ -1,10 +1,11 @@ { "slug": "dxp", "name": "DXP", - "published_at": "2026-01-25T16:06:28.876Z", + "published_at": "2026-02-19T13:36:01.221Z", "organizationCount": 2, "projectCount": 41, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "drupal-association", "name": "Drupal Association", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 39, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -83,10 +85,14 @@ "2025": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.876Z" + "generated_at": "2026-02-19T13:36:01.221Z" } } \ No newline at end of file diff --git a/new-api-details/topics/dynamic-environment.json b/new-api-details/topics/dynamic-environment.json index 0e7376ee..2bc4e9ae 100644 --- a/new-api-details/topics/dynamic-environment.json +++ b/new-api-details/topics/dynamic-environment.json @@ -1,10 +1,11 @@ { "slug": "dynamic-environment", "name": "dynamic environment", - "published_at": "2026-01-25T16:06:29.535Z", + "published_at": "2026-02-19T13:36:02.697Z", "organizationCount": 1, "projectCount": 32, "years": [ + 2026, 2025, 2023, 2021, @@ -16,7 +17,7 @@ "slug": "pharo-consortium", "name": "Pharo Consortium", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 32, "is_currently_active": true, "active_years": [ @@ -24,7 +25,8 @@ 2019, 2021, 2023, - 2025 + 2025, + 2026 ] } ], @@ -48,10 +50,14 @@ "2025": { "organizationCount": 1, "projectCount": 8 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.535Z" + "generated_at": "2026-02-19T13:36:02.697Z" } } \ No newline at end of file diff --git a/new-api-details/topics/e-health.json b/new-api-details/topics/e-health.json index 54d5e3ec..86016280 100644 --- a/new-api-details/topics/e-health.json +++ b/new-api-details/topics/e-health.json @@ -1,7 +1,7 @@ { "slug": "e-health", "name": "e-health", - "published_at": "2026-01-25T16:06:29.119Z", + "published_at": "2026-02-19T13:36:01.768Z", "organizationCount": 1, "projectCount": 6, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.119Z" + "generated_at": "2026-02-19T13:36:01.768Z" } } \ No newline at end of file diff --git a/new-api-details/topics/e-learning.json b/new-api-details/topics/e-learning.json index 771b015b..050df90e 100644 --- a/new-api-details/topics/e-learning.json +++ b/new-api-details/topics/e-learning.json @@ -1,7 +1,7 @@ { "slug": "e-learning", "name": "e-learning", - "published_at": "2026-01-25T16:06:29.369Z", + "published_at": "2026-02-19T13:36:02.350Z", "organizationCount": 1, "projectCount": 7, "years": [ @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.369Z" + "generated_at": "2026-02-19T13:36:02.350Z" } } \ No newline at end of file diff --git a/new-api-details/topics/e-mail.json b/new-api-details/topics/e-mail.json index 313d290c..67021788 100644 --- a/new-api-details/topics/e-mail.json +++ b/new-api-details/topics/e-mail.json @@ -1,7 +1,7 @@ { "slug": "e-mail", "name": "e-mail", - "published_at": "2026-01-25T16:06:29.474Z", + "published_at": "2026-02-19T13:36:02.568Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.474Z" + "generated_at": "2026-02-19T13:36:02.568Z" } } \ No newline at end of file diff --git a/new-api-details/topics/e2e.json b/new-api-details/topics/e2e.json index 5d2af352..381b07b5 100644 --- a/new-api-details/topics/e2e.json +++ b/new-api-details/topics/e2e.json @@ -1,7 +1,7 @@ { "slug": "e2e", "name": "e2e", - "published_at": "2026-01-25T16:06:29.254Z", + "published_at": "2026-02-19T13:36:02.154Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.254Z" + "generated_at": "2026-02-19T13:36:02.154Z" } } \ No newline at end of file diff --git a/new-api-details/topics/earth-data.json b/new-api-details/topics/earth-data.json index df8ab65e..936d5d93 100644 --- a/new-api-details/topics/earth-data.json +++ b/new-api-details/topics/earth-data.json @@ -1,7 +1,7 @@ { "slug": "earth-data", "name": "earth data", - "published_at": "2026-01-25T16:06:28.882Z", + "published_at": "2026-02-19T13:36:01.223Z", "organizationCount": 1, "projectCount": 4, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.882Z" + "generated_at": "2026-02-19T13:36:01.223Z" } } \ No newline at end of file diff --git a/new-api-details/topics/earth-observation.json b/new-api-details/topics/earth-observation.json index 6ac5c52b..bc414cba 100644 --- a/new-api-details/topics/earth-observation.json +++ b/new-api-details/topics/earth-observation.json @@ -1,10 +1,11 @@ { "slug": "earth-observation", "name": "earth observation", - "published_at": "2026-01-25T16:06:28.351Z", + "published_at": "2026-02-19T13:36:00.257Z", "organizationCount": 2, "projectCount": 29, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "52north-spatial-information-research-gmbh", "name": "52°North Spatial Information Research GmbH", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 25, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -90,10 +92,14 @@ "2025": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.351Z" + "generated_at": "2026-02-19T13:36:00.257Z" } } \ No newline at end of file diff --git a/new-api-details/topics/earth-science.json b/new-api-details/topics/earth-science.json index 97d2f98b..5e0da3cb 100644 --- a/new-api-details/topics/earth-science.json +++ b/new-api-details/topics/earth-science.json @@ -1,10 +1,11 @@ { "slug": "earth-science", "name": "earth science", - "published_at": "2026-01-25T16:06:28.885Z", - "organizationCount": 1, + "published_at": "2026-02-19T13:36:01.226Z", + "organizationCount": 2, "projectCount": 4, "years": [ + 2026, 2019, 2018 ], @@ -20,6 +21,17 @@ 2018, 2019 ] + }, + { + "slug": "mllam", + "name": "MLLAM", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] } ], "yearlyStats": { @@ -30,10 +42,14 @@ "2019": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.885Z" + "generated_at": "2026-02-19T13:36:01.226Z" } } \ No newline at end of file diff --git a/new-api-details/topics/earth-sciences.json b/new-api-details/topics/earth-sciences.json index b1fdaab2..714024db 100644 --- a/new-api-details/topics/earth-sciences.json +++ b/new-api-details/topics/earth-sciences.json @@ -1,10 +1,11 @@ { "slug": "earth-sciences", "name": "earth sciences", - "published_at": "2026-01-25T16:06:29.138Z", + "published_at": "2026-02-19T13:36:01.985Z", "organizationCount": 1, "projectCount": 22, "years": [ + 2026, 2025, 2024, 2022, @@ -15,14 +16,15 @@ "slug": "ioos", "name": "IOOS", "first_year": 2021, - "last_year": 2025, + "last_year": 2026, "total_projects": 22, "is_currently_active": true, "active_years": [ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] } ], @@ -42,10 +44,14 @@ "2025": { "organizationCount": 1, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.138Z" + "generated_at": "2026-02-19T13:36:01.985Z" } } \ No newline at end of file diff --git a/new-api-details/topics/earth-system-monitoring.json b/new-api-details/topics/earth-system-monitoring.json index 165b55a5..3de8533c 100644 --- a/new-api-details/topics/earth-system-monitoring.json +++ b/new-api-details/topics/earth-system-monitoring.json @@ -1,7 +1,7 @@ { "slug": "earth-system-monitoring", "name": "earth-system monitoring", - "published_at": "2026-01-25T16:06:28.985Z", + "published_at": "2026-02-19T13:36:01.422Z", "organizationCount": 1, "projectCount": 4, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.985Z" + "generated_at": "2026-02-19T13:36:01.423Z" } } \ No newline at end of file diff --git a/new-api-details/topics/eclipse.json b/new-api-details/topics/eclipse.json index 1de576e0..06612e4a 100644 --- a/new-api-details/topics/eclipse.json +++ b/new-api-details/topics/eclipse.json @@ -1,10 +1,11 @@ { "slug": "eclipse", "name": "eclipse", - "published_at": "2026-01-25T16:06:28.887Z", + "published_at": "2026-02-19T13:36:01.232Z", "organizationCount": 2, "projectCount": 120, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "eclipse-foundation", "name": "Eclipse Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 68, "is_currently_active": true, "active_years": [ @@ -33,16 +34,17 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "jboss-community", "name": "JBoss Community", "first_year": 2016, - "last_year": 2022, + "last_year": 2026, "total_projects": 52, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -50,7 +52,8 @@ 2019, 2020, 2021, - 2022 + 2022, + 2026 ] } ], @@ -94,10 +97,14 @@ "2025": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.887Z" + "generated_at": "2026-02-19T13:36:01.232Z" } } \ No newline at end of file diff --git a/new-api-details/topics/ecological-forecasting.json b/new-api-details/topics/ecological-forecasting.json index 3472f56c..70838769 100644 --- a/new-api-details/topics/ecological-forecasting.json +++ b/new-api-details/topics/ecological-forecasting.json @@ -1,10 +1,11 @@ { "slug": "ecological-forecasting", "name": "ecological forecasting", - "published_at": "2026-01-25T16:06:29.522Z", + "published_at": "2026-02-19T13:36:02.684Z", "organizationCount": 1, "projectCount": 30, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "pecan-project", "name": "PEcAn Project", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 30, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 2, "projectCount": 8 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.522Z" + "generated_at": "2026-02-19T13:36:02.684Z" } } \ No newline at end of file diff --git a/new-api-details/topics/ecosystem-models.json b/new-api-details/topics/ecosystem-models.json index 6f160615..3127eaa7 100644 --- a/new-api-details/topics/ecosystem-models.json +++ b/new-api-details/topics/ecosystem-models.json @@ -1,10 +1,11 @@ { "slug": "ecosystem-models", "name": "ecosystem models", - "published_at": "2026-01-25T16:06:29.521Z", + "published_at": "2026-02-19T13:36:02.683Z", "organizationCount": 1, "projectCount": 30, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "pecan-project", "name": "PEcAn Project", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 30, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.521Z" + "generated_at": "2026-02-19T13:36:02.683Z" } } \ No newline at end of file diff --git a/new-api-details/topics/eda-tools.json b/new-api-details/topics/eda-tools.json index e3a9d556..a93445a7 100644 --- a/new-api-details/topics/eda-tools.json +++ b/new-api-details/topics/eda-tools.json @@ -1,10 +1,11 @@ { "slug": "eda-tools", "name": "eda tools", - "published_at": "2026-01-25T16:06:28.997Z", + "published_at": "2026-02-19T13:36:01.533Z", "organizationCount": 1, "projectCount": 60, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "free-and-open-source-silicon-foundation", "name": "Free and Open Source Silicon Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 60, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.997Z" + "generated_at": "2026-02-19T13:36:01.533Z" } } \ No newline at end of file diff --git a/new-api-details/topics/eda.json b/new-api-details/topics/eda.json index b35d75f3..5e8bafd8 100644 --- a/new-api-details/topics/eda.json +++ b/new-api-details/topics/eda.json @@ -1,10 +1,11 @@ { "slug": "eda", "name": "eda", - "published_at": "2026-01-25T16:06:29.002Z", + "published_at": "2026-02-19T13:36:01.539Z", "organizationCount": 1, "projectCount": 60, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "free-and-open-source-silicon-foundation", "name": "Free and Open Source Silicon Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 60, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.002Z" + "generated_at": "2026-02-19T13:36:01.539Z" } } \ No newline at end of file diff --git a/new-api-details/topics/edge-ai.json b/new-api-details/topics/edge-ai.json index bc00482d..06f14aeb 100644 --- a/new-api-details/topics/edge-ai.json +++ b/new-api-details/topics/edge-ai.json @@ -1,10 +1,11 @@ { "slug": "edge-ai", "name": "Edge AI", - "published_at": "2026-01-25T16:06:29.496Z", + "published_at": "2026-02-19T13:36:02.633Z", "organizationCount": 1, "projectCount": 32, "years": [ + 2026, 2025, 2024, 2023, @@ -15,14 +16,15 @@ "slug": "openvino-toolkit", "name": "OpenVINO Toolkit", "first_year": 2022, - "last_year": 2025, + "last_year": 2026, "total_projects": 32, "is_currently_active": true, "active_years": [ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -42,10 +44,14 @@ "2025": { "organizationCount": 1, "projectCount": 16 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.496Z" + "generated_at": "2026-02-19T13:36:02.633Z" } } \ No newline at end of file diff --git a/new-api-details/topics/edge.json b/new-api-details/topics/edge.json index 8ed0a221..4ff95fa6 100644 --- a/new-api-details/topics/edge.json +++ b/new-api-details/topics/edge.json @@ -1,10 +1,11 @@ { "slug": "edge", "name": "edge", - "published_at": "2026-01-25T16:06:29.852Z", + "published_at": "2026-02-19T13:36:02.606Z", "organizationCount": 1, "projectCount": 52, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "opensuse-project", "name": "openSUSE Project", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 52, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.852Z" + "generated_at": "2026-02-19T13:36:02.606Z" } } \ No newline at end of file diff --git a/new-api-details/topics/edit.json b/new-api-details/topics/edit.json index 943591b7..c5c90e13 100644 --- a/new-api-details/topics/edit.json +++ b/new-api-details/topics/edit.json @@ -1,10 +1,11 @@ { "slug": "edit", "name": "edit", - "published_at": "2026-01-25T16:06:29.742Z", + "published_at": "2026-02-19T13:36:03.073Z", "organizationCount": 1, "projectCount": 3, "years": [ + 2026, 2017 ], "organizations": [ @@ -12,11 +13,12 @@ "slug": "tiled", "name": "Tiled", "first_year": 2017, - "last_year": 2017, + "last_year": 2026, "total_projects": 3, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ - 2017 + 2017, + 2026 ] } ], @@ -24,10 +26,14 @@ "2017": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.742Z" + "generated_at": "2026-02-19T13:36:03.073Z" } } \ No newline at end of file diff --git a/new-api-details/topics/editing.json b/new-api-details/topics/editing.json index f369d1d8..e6a77994 100644 --- a/new-api-details/topics/editing.json +++ b/new-api-details/topics/editing.json @@ -1,10 +1,11 @@ { "slug": "editing", "name": "editing", - "published_at": "2026-01-25T16:06:28.540Z", + "published_at": "2026-02-19T13:36:00.639Z", "organizationCount": 3, "projectCount": 98, "years": [ + 2026, 2025, 2024, 2023, @@ -17,6 +18,27 @@ 2016 ], "organizations": [ + { + "slug": "videolan", + "name": "VideoLAN", + "first_year": 2016, + "last_year": 2026, + "total_projects": 92, + "is_currently_active": true, + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ] + }, { "slug": "audacity", "name": "Audacity", @@ -33,31 +55,12 @@ "slug": "tiled", "name": "Tiled", "first_year": 2017, - "last_year": 2017, + "last_year": 2026, "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2017 - ] - }, - { - "slug": "videolan", - "name": "VideoLAN", - "first_year": 2016, - "last_year": 2025, - "total_projects": 92, "is_currently_active": true, "active_years": [ - 2016, 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2026 ] } ], @@ -101,10 +104,14 @@ "2025": { "organizationCount": 1, "projectCount": 15 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.540Z" + "generated_at": "2026-02-19T13:36:00.639Z" } } \ No newline at end of file diff --git a/new-api-details/topics/editor.json b/new-api-details/topics/editor.json index 96fb6d0d..8df889fd 100644 --- a/new-api-details/topics/editor.json +++ b/new-api-details/topics/editor.json @@ -1,10 +1,11 @@ { "slug": "editor", "name": "editor", - "published_at": "2026-01-25T16:06:29.087Z", - "organizationCount": 3, + "published_at": "2026-02-19T13:36:01.625Z", + "organizationCount": 4, "projectCount": 104, "years": [ + 2026, 2025, 2024, 2023, @@ -18,48 +19,61 @@ ], "organizations": [ { - "slug": "github", - "name": "GitHub", + "slug": "videolan", + "name": "VideoLAN", "first_year": 2016, - "last_year": 2016, - "total_projects": 4, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 92, + "is_currently_active": true, "active_years": [ - 2016 + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { "slug": "neovim", "name": "Neovim", "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "total_projects": 8, "is_currently_active": true, "active_years": [ 2018, 2019, 2020, - 2025 + 2025, + 2026 ] }, { - "slug": "videolan", - "name": "VideoLAN", + "slug": "github", + "name": "GitHub", "first_year": 2016, - "last_year": 2025, - "total_projects": 92, + "last_year": 2016, + "total_projects": 4, + "is_currently_active": false, + "active_years": [ + 2016 + ] + }, + { + "slug": "moganlab", + "name": "MoganLab", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, "is_currently_active": true, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2026 ] } ], @@ -103,10 +117,14 @@ "2025": { "organizationCount": 2, "projectCount": 18 + }, + "2026": { + "organizationCount": 3, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.087Z" + "generated_at": "2026-02-19T13:36:01.625Z" } } \ No newline at end of file diff --git a/new-api-details/topics/edk2.json b/new-api-details/topics/edk2.json index b636a7c1..cdc647a3 100644 --- a/new-api-details/topics/edk2.json +++ b/new-api-details/topics/edk2.json @@ -1,7 +1,7 @@ { "slug": "edk2", "name": "edk2", - "published_at": "2026-01-25T16:06:29.738Z", + "published_at": "2026-02-19T13:36:03.069Z", "organizationCount": 1, "projectCount": 8, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.738Z" + "generated_at": "2026-02-19T13:36:03.069Z" } } \ No newline at end of file diff --git a/new-api-details/topics/edtech.json b/new-api-details/topics/edtech.json index 190a58bb..9a915f0b 100644 --- a/new-api-details/topics/edtech.json +++ b/new-api-details/topics/edtech.json @@ -1,10 +1,11 @@ { "slug": "edtech", "name": "edtech", - "published_at": "2026-01-25T16:06:29.576Z", + "published_at": "2026-02-19T13:36:02.147Z", "organizationCount": 3, "projectCount": 13, "years": [ + 2026, 2025, 2024, 2023, @@ -12,22 +13,11 @@ 2018 ], "organizations": [ - { - "slug": "languagetoolorg", - "name": "languagetool.org", - "first_year": 2018, - "last_year": 2018, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2018 - ] - }, { "slug": "omegaup", "name": "omegaUp", "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "total_projects": 10, "is_currently_active": true, "active_years": [ @@ -35,7 +25,19 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "languagetoolorg", + "name": "languagetool.org", + "first_year": 2018, + "last_year": 2018, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2018 ] }, { @@ -70,10 +72,14 @@ "2025": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.576Z" + "generated_at": "2026-02-19T13:36:02.147Z" } } \ No newline at end of file diff --git a/new-api-details/topics/education.json b/new-api-details/topics/education.json index 6d269297..e7285073 100644 --- a/new-api-details/topics/education.json +++ b/new-api-details/topics/education.json @@ -1,10 +1,11 @@ { "slug": "education", "name": "education", - "published_at": "2026-01-25T16:06:28.461Z", - "organizationCount": 32, + "published_at": "2026-02-19T13:36:00.407Z", + "organizationCount": 33, "projectCount": 1263, "years": [ + 2026, 2025, 2024, 2023, @@ -18,103 +19,163 @@ ], "organizations": [ { - "slug": "aimacode", - "name": "aimacode", + "slug": "kde-community", + "name": "KDE Community", "first_year": 2016, - "last_year": 2019, - "total_projects": 16, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 167, + "is_currently_active": true, "active_years": [ 2016, 2017, 2018, - 2019 + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "ankidroid", - "name": "AnkiDroid", - "first_year": 2021, - "last_year": 2025, - "total_projects": 10, + "slug": "sugar-labs", + "name": "Sugar Labs", + "first_year": 2016, + "last_year": 2026, + "total_projects": 89, "is_currently_active": true, "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, 2021, 2022, + 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "berkman-klein-center-for-internet-and-society", - "name": "Berkman Klein Center for Internet and Society", - "first_year": 2016, - "last_year": 2019, - "total_projects": 20, - "is_currently_active": false, + "slug": "processing-foundation", + "name": "Processing Foundation", + "first_year": 2017, + "last_year": 2026, + "total_projects": 87, + "is_currently_active": true, "active_years": [ - 2016, 2017, 2018, - 2019 + 2019, + 2020, + 2021, + 2022, + 2023, + 2025, + 2026 ] }, { - "slug": "buildmlearn", - "name": "BuildmLearn", + "slug": "wikimedia-foundation", + "name": "Wikimedia Foundation", "first_year": 2016, - "last_year": 2016, - "total_projects": 4, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 85, + "is_currently_active": true, "active_years": [ - 2016 + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2026 ] }, { - "slug": "circuitverseorg", - "name": "CircuitVerse.org", - "first_year": 2019, - "last_year": 2025, - "total_projects": 32, + "slug": "international-catrobat-association", + "name": "International Catrobat Association", + "first_year": 2016, + "last_year": 2026, + "total_projects": 84, "is_currently_active": true, "active_years": [ + 2016, + 2017, + 2018, 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "cmu-sphinx", - "name": "CMU Sphinx", - "first_year": 2017, - "last_year": 2017, - "total_projects": 11, + "slug": "tensorflow", + "name": "TensorFlow", + "first_year": 2019, + "last_year": 2023, + "total_projects": 81, "is_currently_active": false, "active_years": [ - 2017 + 2019, + 2020, + 2021, + 2022, + 2023 ] }, { - "slug": "copyleft-games", - "name": "Copyleft Games", + "slug": "oppia-foundation", + "name": "Oppia Foundation", "first_year": 2016, - "last_year": 2017, - "total_projects": 4, + "last_year": 2026, + "total_projects": 77, + "is_currently_active": true, + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ] + }, + { + "slug": "mozilla", + "name": "Mozilla", + "first_year": 2016, + "last_year": 2020, + "total_projects": 75, "is_currently_active": false, "active_years": [ 2016, - 2017 + 2017, + 2018, + 2019, + 2020 ] }, { "slug": "haskellorg", "name": "Haskell.org", "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "total_projects": 70, "is_currently_active": true, "active_years": [ @@ -124,22 +185,21 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "international-catrobat-association", - "name": "International Catrobat Association", + "slug": "scala-center", + "name": "Scala Center", "first_year": 2016, "last_year": 2025, - "total_projects": 84, - "is_currently_active": true, + "total_projects": 56, + "is_currently_active": false, "active_years": [ 2016, 2017, 2018, - 2019, - 2020, 2021, 2022, 2023, @@ -148,13 +208,14 @@ ] }, { - "slug": "jderobot", - "name": "JdeRobot", - "first_year": 2017, - "last_year": 2025, - "total_projects": 48, + "slug": "sagemath", + "name": "SageMath", + "first_year": 2016, + "last_year": 2026, + "total_projects": 55, "is_currently_active": true, "active_years": [ + 2016, 2017, 2018, 2019, @@ -163,18 +224,18 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "kde-community", - "name": "KDE Community", - "first_year": 2016, - "last_year": 2025, - "total_projects": 167, + "slug": "jderobot", + "name": "JdeRobot", + "first_year": 2017, + "last_year": 2026, + "total_projects": 48, "is_currently_active": true, "active_years": [ - 2016, 2017, 2018, 2019, @@ -183,73 +244,68 @@ 2022, 2023, 2024, - 2025 - ] - }, - { - "slug": "languagetoolorg", - "name": "languagetool.org", - "first_year": 2018, - "last_year": 2018, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2018 + 2025, + 2026 ] }, { - "slug": "learning-equality", - "name": "Learning Equality", - "first_year": 2021, - "last_year": 2025, - "total_projects": 16, + "slug": "uc-ospo", + "name": "UC OSPO", + "first_year": 2023, + "last_year": 2026, + "total_projects": 47, "is_currently_active": true, "active_years": [ - 2021, - 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "lowrisc", - "name": "lowRISC", + "slug": "mit-app-inventor", + "name": "MIT App Inventor", "first_year": 2016, - "last_year": 2020, - "total_projects": 10, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 45, + "is_currently_active": true, "active_years": [ 2016, 2017, - 2020 + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "mit-app-inventor", - "name": "MIT App Inventor", - "first_year": 2016, - "last_year": 2025, - "total_projects": 45, + "slug": "circuitverseorg", + "name": "CircuitVerse.org", + "first_year": 2019, + "last_year": 2026, + "total_projects": 32, "is_currently_active": true, "active_years": [ - 2016, - 2017, 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "moodle", - "name": "Moodle", + "slug": "berkman-klein-center-for-internet-and-society", + "name": "Berkman Klein Center for Internet and Society", "first_year": 2016, "last_year": 2019, - "total_projects": 7, + "total_projects": 20, "is_currently_active": false, "active_years": [ 2016, @@ -259,255 +315,227 @@ ] }, { - "slug": "mozilla", - "name": "Mozilla", + "slug": "teammates-national-university-of-singapore", + "name": "TEAMMATES @ National University of Singapore", "first_year": 2016, - "last_year": 2020, - "total_projects": 75, + "last_year": 2018, + "total_projects": 20, "is_currently_active": false, "active_years": [ 2016, 2017, - 2018, - 2019, - 2020 + 2018 ] }, { - "slug": "omegaup", - "name": "omegaUp", + "slug": "submitty", + "name": "Submitty", "first_year": 2018, - "last_year": 2025, - "total_projects": 10, + "last_year": 2026, + "total_projects": 19, "is_currently_active": true, "active_years": [ 2018, + 2019, + 2020, 2022, 2023, 2024, - 2025 + 2026 ] }, { - "slug": "open-roberta", - "name": "Open Roberta", - "first_year": 2018, - "last_year": 2021, - "total_projects": 8, + "slug": "aimacode", + "name": "aimacode", + "first_year": 2016, + "last_year": 2019, + "total_projects": 16, "is_currently_active": false, "active_years": [ + 2016, + 2017, 2018, - 2019, - 2020, - 2021 + 2019 ] }, { - "slug": "oppia-foundation", - "name": "Oppia Foundation", - "first_year": 2016, - "last_year": 2025, - "total_projects": 77, + "slug": "learning-equality", + "name": "Learning Equality", + "first_year": 2021, + "last_year": 2026, + "total_projects": 16, "is_currently_active": true, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "pocket-science-lab", - "name": "Pocket Science Lab", - "first_year": 2018, - "last_year": 2018, - "total_projects": 2, + "slug": "cmu-sphinx", + "name": "CMU Sphinx", + "first_year": 2017, + "last_year": 2017, + "total_projects": 11, "is_currently_active": false, "active_years": [ - 2018 + 2017 ] }, { - "slug": "processing-foundation", - "name": "Processing Foundation", - "first_year": 2017, - "last_year": 2025, - "total_projects": 87, + "slug": "ankidroid", + "name": "AnkiDroid", + "first_year": 2021, + "last_year": 2026, + "total_projects": 10, "is_currently_active": true, "active_years": [ - 2017, - 2018, - 2019, - 2020, 2021, 2022, - 2023, - 2025 - ] - }, - { - "slug": "quillorg", - "name": "Quill.org", - "first_year": 2018, - "last_year": 2018, - "total_projects": 1, - "is_currently_active": false, - "active_years": [ - 2018 + 2024, + 2025, + 2026 ] }, { - "slug": "sagemath", - "name": "SageMath", + "slug": "lowrisc", + "name": "lowRISC", "first_year": 2016, - "last_year": 2025, - "total_projects": 55, - "is_currently_active": true, + "last_year": 2020, + "total_projects": 10, + "is_currently_active": false, "active_years": [ 2016, 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2020 ] }, { - "slug": "scala-center", - "name": "Scala Center", - "first_year": 2016, - "last_year": 2025, - "total_projects": 56, + "slug": "omegaup", + "name": "omegaUp", + "first_year": 2018, + "last_year": 2026, + "total_projects": 10, "is_currently_active": true, "active_years": [ - 2016, - 2017, 2018, - 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "submitty", - "name": "Submitty", + "slug": "open-roberta", + "name": "Open Roberta", "first_year": 2018, - "last_year": 2024, - "total_projects": 19, + "last_year": 2021, + "total_projects": 8, "is_currently_active": false, "active_years": [ 2018, 2019, 2020, - 2022, - 2023, - 2024 + 2021 ] }, { - "slug": "sugar-labs", - "name": "Sugar Labs", + "slug": "moodle", + "name": "Moodle", "first_year": 2016, - "last_year": 2025, - "total_projects": 89, - "is_currently_active": true, + "last_year": 2019, + "total_projects": 7, + "is_currently_active": false, "active_years": [ 2016, 2017, 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2019 ] }, { - "slug": "teammates-national-university-of-singapore", - "name": "TEAMMATES @ National University of Singapore", + "slug": "the-center-for-connected-learning-and-computer-based-modeling", + "name": "The Center for Connected Learning and Computer-Based Modeling", "first_year": 2016, - "last_year": 2018, - "total_projects": 20, + "last_year": 2019, + "total_projects": 5, "is_currently_active": false, "active_years": [ 2016, 2017, - 2018 + 2018, + 2019 ] }, { - "slug": "tensorflow", - "name": "TensorFlow", - "first_year": 2019, - "last_year": 2023, - "total_projects": 81, + "slug": "buildmlearn", + "name": "BuildmLearn", + "first_year": 2016, + "last_year": 2016, + "total_projects": 4, "is_currently_active": false, "active_years": [ - 2019, - 2020, - 2021, - 2022, - 2023 + 2016 ] }, { - "slug": "the-center-for-connected-learning-and-computer-based-modeling", - "name": "The Center for Connected Learning and Computer-Based Modeling", + "slug": "copyleft-games", + "name": "Copyleft Games", "first_year": 2016, - "last_year": 2019, - "total_projects": 5, + "last_year": 2017, + "total_projects": 4, "is_currently_active": false, "active_years": [ 2016, - 2017, - 2018, - 2019 + 2017 ] }, { - "slug": "uc-ospo", - "name": "UC OSPO", - "first_year": 2023, - "last_year": 2025, - "total_projects": 47, - "is_currently_active": true, + "slug": "languagetoolorg", + "name": "languagetool.org", + "first_year": 2018, + "last_year": 2018, + "total_projects": 2, + "is_currently_active": false, "active_years": [ - 2023, - 2024, - 2025 + 2018 ] }, { - "slug": "wikimedia-foundation", - "name": "Wikimedia Foundation", - "first_year": 2016, - "last_year": 2024, - "total_projects": 85, + "slug": "pocket-science-lab", + "name": "Pocket Science Lab", + "first_year": 2018, + "last_year": 2018, + "total_projects": 2, "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024 + 2018 + ] + }, + { + "slug": "quillorg", + "name": "Quill.org", + "first_year": 2018, + "last_year": 2018, + "total_projects": 1, + "is_currently_active": false, + "active_years": [ + 2018 + ] + }, + { + "slug": "learning-unlimited", + "name": "Learning Unlimited", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 ] } ], @@ -551,10 +579,14 @@ "2025": { "organizationCount": 17, "projectCount": 130 + }, + "2026": { + "organizationCount": 18, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.461Z" + "generated_at": "2026-02-19T13:36:00.407Z" } } \ No newline at end of file diff --git a/new-api-details/topics/educational-technology.json b/new-api-details/topics/educational-technology.json index 1283d232..ea8c04a5 100644 --- a/new-api-details/topics/educational-technology.json +++ b/new-api-details/topics/educational-technology.json @@ -1,10 +1,11 @@ { "slug": "educational-technology", "name": "educational technology", - "published_at": "2026-01-25T16:06:29.310Z", + "published_at": "2026-02-19T13:36:02.312Z", "organizationCount": 2, "projectCount": 122, "years": [ + 2026, 2025, 2024, 2023, @@ -18,42 +19,44 @@ ], "organizations": [ { - "slug": "mit-app-inventor", - "name": "MIT App Inventor", + "slug": "oppia-foundation", + "name": "Oppia Foundation", "first_year": 2016, - "last_year": 2025, - "total_projects": 45, + "last_year": 2026, + "total_projects": 77, "is_currently_active": true, "active_years": [ 2016, 2017, + 2018, 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "oppia-foundation", - "name": "Oppia Foundation", + "slug": "mit-app-inventor", + "name": "MIT App Inventor", "first_year": 2016, - "last_year": 2025, - "total_projects": 77, + "last_year": 2026, + "total_projects": 45, "is_currently_active": true, "active_years": [ 2016, 2017, - 2018, 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -97,10 +100,14 @@ "2025": { "organizationCount": 2, "projectCount": 11 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.310Z" + "generated_at": "2026-02-19T13:36:02.312Z" } } \ No newline at end of file diff --git a/new-api-details/topics/effects.json b/new-api-details/topics/effects.json index 66c5cafa..c789d137 100644 --- a/new-api-details/topics/effects.json +++ b/new-api-details/topics/effects.json @@ -1,7 +1,7 @@ { "slug": "effects", "name": "Effects", - "published_at": "2026-01-25T16:06:28.543Z", + "published_at": "2026-02-19T13:36:00.641Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.543Z" + "generated_at": "2026-02-19T13:36:00.641Z" } } \ No newline at end of file diff --git a/new-api-details/topics/ehealth.json b/new-api-details/topics/ehealth.json index 286cc7e5..0f7ab31b 100644 --- a/new-api-details/topics/ehealth.json +++ b/new-api-details/topics/ehealth.json @@ -1,10 +1,11 @@ { "slug": "ehealth", "name": "ehealth", - "published_at": "2026-01-25T16:06:29.188Z", + "published_at": "2026-02-19T13:36:01.966Z", "organizationCount": 2, "projectCount": 107, "years": [ + 2026, 2025, 2024, 2023, @@ -17,24 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "invesalius", - "name": "Invesalius", - "first_year": 2023, - "last_year": 2025, - "total_projects": 13, - "is_currently_active": true, - "active_years": [ - 2023, - 2024, - 2025 - ] - }, { "slug": "openmrs", "name": "OpenMRS", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 94, "is_currently_active": true, "active_years": [ @@ -47,7 +35,22 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "invesalius", + "name": "Invesalius", + "first_year": 2023, + "last_year": 2026, + "total_projects": 13, + "is_currently_active": true, + "active_years": [ + 2023, + 2024, + 2025, + 2026 ] } ], @@ -91,10 +94,14 @@ "2025": { "organizationCount": 2, "projectCount": 14 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.188Z" + "generated_at": "2026-02-19T13:36:01.966Z" } } \ No newline at end of file diff --git a/new-api-details/topics/electromagnetics.json b/new-api-details/topics/electromagnetics.json index 7f872193..fe18a16a 100644 --- a/new-api-details/topics/electromagnetics.json +++ b/new-api-details/topics/electromagnetics.json @@ -1,10 +1,11 @@ { "slug": "electromagnetics", "name": "electromagnetics", - "published_at": "2026-01-25T16:06:29.838Z", + "published_at": "2026-02-19T13:36:01.727Z", "organizationCount": 1, "projectCount": 18, "years": [ + 2026, 2025, 2024, 2023, @@ -16,7 +17,7 @@ "slug": "gprmax", "name": "gprMax", "first_year": 2019, - "last_year": 2025, + "last_year": 2026, "total_projects": 18, "is_currently_active": true, "active_years": [ @@ -24,7 +25,8 @@ 2021, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -48,10 +50,14 @@ "2025": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.838Z" + "generated_at": "2026-02-19T13:36:01.727Z" } } \ No newline at end of file diff --git a/new-api-details/topics/electronic-design-tools.json b/new-api-details/topics/electronic-design-tools.json index 3216e759..edd1f6e8 100644 --- a/new-api-details/topics/electronic-design-tools.json +++ b/new-api-details/topics/electronic-design-tools.json @@ -1,10 +1,11 @@ { "slug": "electronic-design-tools", "name": "electronic design tools", - "published_at": "2026-01-25T16:06:29.000Z", + "published_at": "2026-02-19T13:36:01.537Z", "organizationCount": 2, "projectCount": 65, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "free-and-open-source-silicon-foundation", "name": "Free and Open Source Silicon Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 60, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -91,10 +93,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.000Z" + "generated_at": "2026-02-19T13:36:01.537Z" } } \ No newline at end of file diff --git a/new-api-details/topics/electronic-medical-record-system.json b/new-api-details/topics/electronic-medical-record-system.json index 16e774ea..ad985f35 100644 --- a/new-api-details/topics/electronic-medical-record-system.json +++ b/new-api-details/topics/electronic-medical-record-system.json @@ -1,10 +1,11 @@ { "slug": "electronic-medical-record-system", "name": "Electronic Medical Record System", - "published_at": "2026-01-25T16:06:29.483Z", + "published_at": "2026-02-19T13:36:02.585Z", "organizationCount": 1, "projectCount": 94, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "openmrs", "name": "OpenMRS", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 94, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 8 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.483Z" + "generated_at": "2026-02-19T13:36:02.585Z" } } \ No newline at end of file diff --git a/new-api-details/topics/electronic-medical-records.json b/new-api-details/topics/electronic-medical-records.json index f7419f50..719bcceb 100644 --- a/new-api-details/topics/electronic-medical-records.json +++ b/new-api-details/topics/electronic-medical-records.json @@ -1,10 +1,11 @@ { "slug": "electronic-medical-records", "name": "electronic medical records", - "published_at": "2026-01-25T16:06:29.438Z", + "published_at": "2026-02-19T13:36:02.496Z", "organizationCount": 2, "projectCount": 103, "years": [ + 2026, 2025, 2024, 2023, @@ -17,23 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "open-healthcare-network", - "name": "Open HealthCare Network", - "first_year": 2024, - "last_year": 2025, - "total_projects": 9, - "is_currently_active": true, - "active_years": [ - 2024, - 2025 - ] - }, { "slug": "openmrs", "name": "OpenMRS", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 94, "is_currently_active": true, "active_years": [ @@ -46,7 +35,21 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "open-healthcare-network", + "name": "Open HealthCare Network", + "first_year": 2024, + "last_year": 2026, + "total_projects": 9, + "is_currently_active": true, + "active_years": [ + 2024, + 2025, + 2026 ] } ], @@ -90,10 +93,14 @@ "2025": { "organizationCount": 2, "projectCount": 14 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.438Z" + "generated_at": "2026-02-19T13:36:02.497Z" } } \ No newline at end of file diff --git a/new-api-details/topics/electronic-voting.json b/new-api-details/topics/electronic-voting.json index a0843f51..46ba7146 100644 --- a/new-api-details/topics/electronic-voting.json +++ b/new-api-details/topics/electronic-voting.json @@ -1,10 +1,11 @@ { "slug": "electronic-voting", "name": "electronic voting", - "published_at": "2026-01-25T16:06:28.382Z", + "published_at": "2026-02-19T13:36:00.470Z", "organizationCount": 1, "projectCount": 117, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "aossie", "name": "AOSSIE", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 117, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 21 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.382Z" + "generated_at": "2026-02-19T13:36:00.470Z" } } \ No newline at end of file diff --git a/new-api-details/topics/electronics.json b/new-api-details/topics/electronics.json index 1d5fda87..a9b0a7c2 100644 --- a/new-api-details/topics/electronics.json +++ b/new-api-details/topics/electronics.json @@ -1,7 +1,7 @@ { "slug": "electronics", "name": "electronics", - "published_at": "2026-01-25T16:06:28.534Z", + "published_at": "2026-02-19T13:36:00.606Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.534Z" + "generated_at": "2026-02-19T13:36:00.606Z" } } \ No newline at end of file diff --git a/new-api-details/topics/electrophysiology.json b/new-api-details/topics/electrophysiology.json index 7476e7db..cb42bceb 100644 --- a/new-api-details/topics/electrophysiology.json +++ b/new-api-details/topics/electrophysiology.json @@ -1,7 +1,7 @@ { "slug": "electrophysiology", "name": "electrophysiology", - "published_at": "2026-01-25T16:06:29.434Z", + "published_at": "2026-02-19T13:36:02.490Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.434Z" + "generated_at": "2026-02-19T13:36:02.490Z" } } \ No newline at end of file diff --git a/new-api-details/topics/eletric-mobility.json b/new-api-details/topics/eletric-mobility.json index bdc6e6ec..fd3970a5 100644 --- a/new-api-details/topics/eletric-mobility.json +++ b/new-api-details/topics/eletric-mobility.json @@ -1,7 +1,7 @@ { "slug": "eletric-mobility", "name": "eletric mobility", - "published_at": "2026-01-25T16:06:29.109Z", + "published_at": "2026-02-19T13:36:01.742Z", "organizationCount": 1, "projectCount": 8, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.109Z" + "generated_at": "2026-02-19T13:36:01.742Z" } } \ No newline at end of file diff --git a/new-api-details/topics/email.json b/new-api-details/topics/email.json index 1753cb20..eef559d4 100644 --- a/new-api-details/topics/email.json +++ b/new-api-details/topics/email.json @@ -1,10 +1,11 @@ { "slug": "email", "name": "email", - "published_at": "2026-01-25T16:06:28.854Z", - "organizationCount": 4, + "published_at": "2026-02-19T13:36:01.199Z", + "organizationCount": 5, "projectCount": 15, "years": [ + 2026, 2025, 2021, 2019, @@ -38,6 +39,19 @@ 2021 ] }, + { + "slug": "rspamd", + "name": "Rspamd", + "first_year": 2017, + "last_year": 2025, + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2017, + 2018, + 2025 + ] + }, { "slug": "k-9-mail", "name": "K-9 Mail", @@ -50,16 +64,14 @@ ] }, { - "slug": "rspamd", - "name": "Rspamd", - "first_year": 2017, - "last_year": 2025, - "total_projects": 3, + "slug": "gnu-mailman", + "name": "GNU Mailman", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, "is_currently_active": true, "active_years": [ - 2017, - 2018, - 2025 + 2026 ] } ], @@ -87,10 +99,14 @@ "2025": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.854Z" + "generated_at": "2026-02-19T13:36:01.199Z" } } \ No newline at end of file diff --git a/new-api-details/topics/embeddable-widget.json b/new-api-details/topics/embeddable-widget.json index 0fd445d8..3615383d 100644 --- a/new-api-details/topics/embeddable-widget.json +++ b/new-api-details/topics/embeddable-widget.json @@ -1,7 +1,7 @@ { "slug": "embeddable-widget", "name": "embeddable widget", - "published_at": "2026-01-25T16:06:29.709Z", + "published_at": "2026-02-19T13:36:02.945Z", "organizationCount": 1, "projectCount": 1, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.709Z" + "generated_at": "2026-02-19T13:36:02.945Z" } } \ No newline at end of file diff --git a/new-api-details/topics/embeddded.json b/new-api-details/topics/embeddded.json index d555b742..23a369f9 100644 --- a/new-api-details/topics/embeddded.json +++ b/new-api-details/topics/embeddded.json @@ -1,10 +1,11 @@ { "slug": "embeddded", "name": "embeddded", - "published_at": "2026-01-25T16:06:29.074Z", + "published_at": "2026-02-19T13:36:01.597Z", "organizationCount": 2, "projectCount": 101, "years": [ + 2026, 2025, 2024, 2023, @@ -18,12 +19,12 @@ ], "organizations": [ { - "slug": "gentoo-foundation", - "name": "Gentoo Foundation", + "slug": "the-freebsd-project", + "name": "The FreeBSD Project", "first_year": 2016, - "last_year": 2023, - "total_projects": 25, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 76, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -32,16 +33,19 @@ 2020, 2021, 2022, - 2023 + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "the-freebsd-project", - "name": "The FreeBSD Project", + "slug": "gentoo-foundation", + "name": "Gentoo Foundation", "first_year": 2016, - "last_year": 2025, - "total_projects": 76, - "is_currently_active": true, + "last_year": 2023, + "total_projects": 25, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -50,9 +54,7 @@ 2020, 2021, 2022, - 2023, - 2024, - 2025 + 2023 ] } ], @@ -96,10 +98,14 @@ "2025": { "organizationCount": 1, "projectCount": 12 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.074Z" + "generated_at": "2026-02-19T13:36:01.597Z" } } \ No newline at end of file diff --git a/new-api-details/topics/embedded-automotive.json b/new-api-details/topics/embedded-automotive.json index 7f72eb7f..504904c8 100644 --- a/new-api-details/topics/embedded-automotive.json +++ b/new-api-details/topics/embedded-automotive.json @@ -1,7 +1,7 @@ { "slug": "embedded-automotive", "name": "embedded/automotive", - "published_at": "2026-01-25T16:06:29.805Z", + "published_at": "2026-02-19T13:36:03.150Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.805Z" + "generated_at": "2026-02-19T13:36:03.150Z" } } \ No newline at end of file diff --git a/new-api-details/topics/embedded-hardware.json b/new-api-details/topics/embedded-hardware.json index 885df44d..69aa8e84 100644 --- a/new-api-details/topics/embedded-hardware.json +++ b/new-api-details/topics/embedded-hardware.json @@ -1,7 +1,7 @@ { "slug": "embedded-hardware", "name": "embedded hardware", - "published_at": "2026-01-25T16:06:29.744Z", + "published_at": "2026-02-19T13:36:02.207Z", "organizationCount": 2, "projectCount": 16, "years": [ @@ -64,6 +64,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.744Z" + "generated_at": "2026-02-19T13:36:02.207Z" } } \ No newline at end of file diff --git a/new-api-details/topics/embedded-system.json b/new-api-details/topics/embedded-system.json index 6d4a90e4..822422b4 100644 --- a/new-api-details/topics/embedded-system.json +++ b/new-api-details/topics/embedded-system.json @@ -1,10 +1,11 @@ { "slug": "embedded-system", "name": "Embedded System", - "published_at": "2026-01-25T16:06:29.677Z", + "published_at": "2026-02-19T13:36:02.906Z", "organizationCount": 1, "projectCount": 76, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "the-freebsd-project", "name": "The FreeBSD Project", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 76, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 12 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.677Z" + "generated_at": "2026-02-19T13:36:02.906Z" } } \ No newline at end of file diff --git a/new-api-details/topics/embedded-systems.json b/new-api-details/topics/embedded-systems.json index 876eae0d..2f54bec0 100644 --- a/new-api-details/topics/embedded-systems.json +++ b/new-api-details/topics/embedded-systems.json @@ -1,10 +1,11 @@ { "slug": "embedded-systems", "name": "embedded systems", - "published_at": "2026-01-25T16:06:28.516Z", + "published_at": "2026-02-19T13:36:00.516Z", "organizationCount": 12, "projectCount": 503, "years": [ + 2026, 2025, 2024, 2023, @@ -18,29 +19,32 @@ ], "organizations": [ { - "slug": "apertus-association", - "name": "Apertus Association", - "first_year": 2017, - "last_year": 2022, - "total_projects": 18, + "slug": "score-lab", + "name": "SCoRe Lab", + "first_year": 2016, + "last_year": 2023, + "total_projects": 149, "is_currently_active": false, "active_years": [ + 2016, 2017, 2018, 2019, 2020, 2021, - 2022 + 2022, + 2023 ] }, { - "slug": "ardupilot", - "name": "ArduPilot", - "first_year": 2017, - "last_year": 2025, - "total_projects": 38, + "slug": "the-freebsd-project", + "name": "The FreeBSD Project", + "first_year": 2016, + "last_year": 2026, + "total_projects": 76, "is_currently_active": true, "active_years": [ + 2016, 2017, 2018, 2019, @@ -49,51 +53,34 @@ 2022, 2023, 2024, - 2025 - ] - }, - { - "slug": "buildroot", - "name": "Buildroot", - "first_year": 2019, - "last_year": 2019, - "total_projects": 1, - "is_currently_active": false, - "active_years": [ - 2019 + 2025, + 2026 ] }, { - "slug": "coreboot", - "name": "coreboot", + "slug": "freifunk", + "name": "freifunk", "first_year": 2016, - "last_year": 2023, - "total_projects": 11, + "last_year": 2025, + "total_projects": 74, "is_currently_active": false, "active_years": [ 2016, + 2017, + 2018, 2019, - 2020, + 2021, 2022, - 2023 - ] - }, - { - "slug": "embox", - "name": "Embox", - "first_year": 2020, - "last_year": 2020, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2020 + 2023, + 2024, + 2025 ] }, { "slug": "free-and-open-source-silicon-foundation", "name": "Free and Open Source Silicon Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 60, "is_currently_active": true, "active_years": [ @@ -106,39 +93,49 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "freifunk", - "name": "freifunk", + "slug": "rtems-project", + "name": "RTEMS Project", "first_year": 2016, - "last_year": 2025, - "total_projects": 74, + "last_year": 2026, + "total_projects": 46, "is_currently_active": true, "active_years": [ 2016, 2017, 2018, 2019, + 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "genivi-alliance", - "name": "GENIVI Alliance", + "slug": "ardupilot", + "name": "ArduPilot", "first_year": 2017, - "last_year": 2019, - "total_projects": 3, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 38, + "is_currently_active": true, "active_years": [ 2017, 2018, - 2019 + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { @@ -160,61 +157,69 @@ ] }, { - "slug": "rtems-project", - "name": "RTEMS Project", - "first_year": 2016, - "last_year": 2025, - "total_projects": 46, - "is_currently_active": true, + "slug": "apertus-association", + "name": "Apertus Association", + "first_year": 2017, + "last_year": 2022, + "total_projects": 18, + "is_currently_active": false, "active_years": [ - 2016, 2017, 2018, 2019, 2020, 2021, - 2022, - 2023, - 2024, - 2025 + 2022 ] }, { - "slug": "score-lab", - "name": "SCoRe Lab", + "slug": "coreboot", + "name": "coreboot", "first_year": 2016, "last_year": 2023, - "total_projects": 149, + "total_projects": 11, "is_currently_active": false, "active_years": [ 2016, - 2017, - 2018, 2019, 2020, - 2021, 2022, 2023 ] }, { - "slug": "the-freebsd-project", - "name": "The FreeBSD Project", - "first_year": 2016, - "last_year": 2025, - "total_projects": 76, - "is_currently_active": true, + "slug": "genivi-alliance", + "name": "GENIVI Alliance", + "first_year": 2017, + "last_year": 2019, + "total_projects": 3, + "is_currently_active": false, "active_years": [ - 2016, 2017, 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2019 + ] + }, + { + "slug": "embox", + "name": "Embox", + "first_year": 2020, + "last_year": 2020, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2020 + ] + }, + { + "slug": "buildroot", + "name": "Buildroot", + "first_year": 2019, + "last_year": 2019, + "total_projects": 1, + "is_currently_active": false, + "active_years": [ + 2019 ] } ], @@ -258,10 +263,14 @@ "2025": { "organizationCount": 5, "projectCount": 36 + }, + "2026": { + "organizationCount": 4, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.516Z" + "generated_at": "2026-02-19T13:36:00.516Z" } } \ No newline at end of file diff --git a/new-api-details/topics/embedded.json b/new-api-details/topics/embedded.json index b571d93b..7b284937 100644 --- a/new-api-details/topics/embedded.json +++ b/new-api-details/topics/embedded.json @@ -1,10 +1,11 @@ { "slug": "embedded", "name": "embedded", - "published_at": "2026-01-25T16:06:28.568Z", + "published_at": "2026-02-19T13:36:00.658Z", "organizationCount": 8, "projectCount": 272, "years": [ + 2026, 2025, 2024, 2023, @@ -18,11 +19,11 @@ ], "organizations": [ { - "slug": "beagleboardorg", - "name": "BeagleBoard.org", + "slug": "the-freebsd-project", + "name": "The FreeBSD Project", "first_year": 2016, - "last_year": 2025, - "total_projects": 44, + "last_year": 2026, + "total_projects": 76, "is_currently_active": true, "active_years": [ 2016, @@ -34,28 +35,16 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "genivi-alliance", - "name": "GENIVI Alliance", - "first_year": 2017, - "last_year": 2019, - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2017, - 2018, - 2019 - ] - }, - { - "slug": "gentoo-foundation", - "name": "Gentoo Foundation", + "slug": "mlpack", + "name": "mlpack", "first_year": 2016, - "last_year": 2023, - "total_projects": 25, + "last_year": 2024, + "total_projects": 60, "is_currently_active": false, "active_years": [ 2016, @@ -64,31 +53,18 @@ 2019, 2020, 2021, - 2022, - 2023 - ] - }, - { - "slug": "micro-electronics-research-lab-uitu", - "name": "Micro Electronics Research Lab - UITU", - "first_year": 2022, - "last_year": 2025, - "total_projects": 12, - "is_currently_active": true, - "active_years": [ 2022, 2023, - 2024, - 2025 + 2024 ] }, { - "slug": "mlpack", - "name": "mlpack", + "slug": "rtems-project", + "name": "RTEMS Project", "first_year": 2016, - "last_year": 2024, - "total_projects": 60, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 46, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -98,16 +74,18 @@ 2021, 2022, 2023, - 2024 + 2024, + 2025, + 2026 ] }, { - "slug": "rtems-project", - "name": "RTEMS Project", + "slug": "beagleboardorg", + "name": "BeagleBoard.org", "first_year": 2016, "last_year": 2025, - "total_projects": 46, - "is_currently_active": true, + "total_projects": 44, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -122,12 +100,12 @@ ] }, { - "slug": "the-freebsd-project", - "name": "The FreeBSD Project", + "slug": "gentoo-foundation", + "name": "Gentoo Foundation", "first_year": 2016, - "last_year": 2025, - "total_projects": 76, - "is_currently_active": true, + "last_year": 2023, + "total_projects": 25, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -135,6 +113,18 @@ 2019, 2020, 2021, + 2022, + 2023 + ] + }, + { + "slug": "micro-electronics-research-lab-uitu", + "name": "Micro Electronics Research Lab - UITU", + "first_year": 2022, + "last_year": 2025, + "total_projects": 12, + "is_currently_active": false, + "active_years": [ 2022, 2023, 2024, @@ -154,6 +144,19 @@ 2018, 2019 ] + }, + { + "slug": "genivi-alliance", + "name": "GENIVI Alliance", + "first_year": 2017, + "last_year": 2019, + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2017, + 2018, + 2019 + ] } ], "yearlyStats": { @@ -196,10 +199,14 @@ "2025": { "organizationCount": 4, "projectCount": 30 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.568Z" + "generated_at": "2026-02-19T13:36:00.658Z" } } \ No newline at end of file diff --git a/new-api-details/topics/embodied-ai.json b/new-api-details/topics/embodied-ai.json index 34f9b794..7ae5bda0 100644 --- a/new-api-details/topics/embodied-ai.json +++ b/new-api-details/topics/embodied-ai.json @@ -1,10 +1,11 @@ { "slug": "embodied-ai", "name": "Embodied AI", - "published_at": "2026-01-25T16:06:29.829Z", + "published_at": "2026-02-19T13:36:01.206Z", "organizationCount": 1, "projectCount": 2, "years": [ + 2026, 2025 ], "organizations": [ @@ -12,11 +13,12 @@ "slug": "dora-rs", "name": "dora-rs", "first_year": 2025, - "last_year": 2025, + "last_year": 2026, "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] } ], @@ -24,10 +26,14 @@ "2025": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.829Z" + "generated_at": "2026-02-19T13:36:01.206Z" } } \ No newline at end of file diff --git a/new-api-details/topics/emulation.json b/new-api-details/topics/emulation.json index cea938d4..f430c856 100644 --- a/new-api-details/topics/emulation.json +++ b/new-api-details/topics/emulation.json @@ -1,10 +1,11 @@ { "slug": "emulation", "name": "emulation", - "published_at": "2026-01-25T16:06:28.918Z", + "published_at": "2026-02-19T13:36:01.368Z", "organizationCount": 4, "projectCount": 92, "years": [ + 2026, 2025, 2024, 2023, @@ -18,27 +19,33 @@ ], "organizations": [ { - "slug": "flare", - "name": "FLARE", - "first_year": 2023, - "last_year": 2025, - "total_projects": 7, + "slug": "qemu", + "name": "QEMU", + "first_year": 2016, + "last_year": 2026, + "total_projects": 41, "is_currently_active": true, "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, 2023, - 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "qemu", - "name": "QEMU", - "first_year": 2016, - "last_year": 2025, - "total_projects": 41, + "slug": "the-ns-3-network-simulator-project", + "name": "The ns-3 Network Simulator Project", + "first_year": 2017, + "last_year": 2026, + "total_projects": 34, "is_currently_active": true, "active_years": [ - 2016, 2017, 2018, 2019, @@ -46,14 +53,16 @@ 2021, 2022, 2023, - 2025 + 2024, + 2025, + 2026 ] }, { "slug": "rizin", "name": "Rizin", "first_year": 2021, - "last_year": 2025, + "last_year": 2026, "total_projects": 10, "is_currently_active": true, "active_years": [ @@ -61,26 +70,22 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "the-ns-3-network-simulator-project", - "name": "The ns-3 Network Simulator Project", - "first_year": 2017, - "last_year": 2025, - "total_projects": 34, + "slug": "flare", + "name": "FLARE", + "first_year": 2023, + "last_year": 2026, + "total_projects": 7, "is_currently_active": true, "active_years": [ - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -124,10 +129,14 @@ "2025": { "organizationCount": 4, "projectCount": 15 + }, + "2026": { + "organizationCount": 4, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.918Z" + "generated_at": "2026-02-19T13:36:01.368Z" } } \ No newline at end of file diff --git a/new-api-details/topics/emulator.json b/new-api-details/topics/emulator.json index 72264dce..303ce84e 100644 --- a/new-api-details/topics/emulator.json +++ b/new-api-details/topics/emulator.json @@ -1,10 +1,11 @@ { "slug": "emulator", "name": "emulator", - "published_at": "2026-01-25T16:06:29.573Z", + "published_at": "2026-02-19T13:36:02.771Z", "organizationCount": 1, "projectCount": 41, "years": [ + 2026, 2025, 2023, 2022, @@ -20,7 +21,7 @@ "slug": "qemu", "name": "QEMU", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 41, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2021, 2022, 2023, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.573Z" + "generated_at": "2026-02-19T13:36:02.771Z" } } \ No newline at end of file diff --git a/new-api-details/topics/encoding.json b/new-api-details/topics/encoding.json index d6671a16..17375837 100644 --- a/new-api-details/topics/encoding.json +++ b/new-api-details/topics/encoding.json @@ -1,7 +1,7 @@ { "slug": "encoding", "name": "encoding", - "published_at": "2026-01-25T16:06:29.156Z", + "published_at": "2026-02-19T13:36:01.825Z", "organizationCount": 1, "projectCount": 12, "years": [ @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.156Z" + "generated_at": "2026-02-19T13:36:01.825Z" } } \ No newline at end of file diff --git a/new-api-details/topics/encrypted-computation.json b/new-api-details/topics/encrypted-computation.json index 9f3ed2ef..714bfe06 100644 --- a/new-api-details/topics/encrypted-computation.json +++ b/new-api-details/topics/encrypted-computation.json @@ -1,7 +1,7 @@ { "slug": "encrypted-computation", "name": "encrypted computation", - "published_at": "2026-01-25T16:06:29.486Z", + "published_at": "2026-02-19T13:36:02.569Z", "organizationCount": 1, "projectCount": 9, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.486Z" + "generated_at": "2026-02-19T13:36:02.569Z" } } \ No newline at end of file diff --git a/new-api-details/topics/encryption.json b/new-api-details/topics/encryption.json index 45beeb0b..945b1bad 100644 --- a/new-api-details/topics/encryption.json +++ b/new-api-details/topics/encryption.json @@ -1,10 +1,11 @@ { "slug": "encryption", "name": "encryption", - "published_at": "2026-01-25T16:06:29.223Z", + "published_at": "2026-02-19T13:36:02.054Z", "organizationCount": 5, "projectCount": 60, "years": [ + 2026, 2024, 2022, 2021, @@ -15,32 +16,6 @@ 2016 ], "organizations": [ - { - "slug": "joplin", - "name": "Joplin", - "first_year": 2020, - "last_year": 2024, - "total_projects": 17, - "is_currently_active": false, - "active_years": [ - 2020, - 2021, - 2022, - 2024 - ] - }, - { - "slug": "leap-encryption-access-project", - "name": "LEAP Encryption Access Project", - "first_year": 2018, - "last_year": 2022, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2018, - 2022 - ] - }, { "slug": "matrixorg", "name": "Matrix.org", @@ -59,31 +34,59 @@ ] }, { - "slug": "openkeychain-openpgp-for-android", - "name": "OpenKeychain (OpenPGP for Android)", - "first_year": 2016, - "last_year": 2016, - "total_projects": 2, - "is_currently_active": false, + "slug": "joplin", + "name": "Joplin", + "first_year": 2020, + "last_year": 2026, + "total_projects": 17, + "is_currently_active": true, "active_years": [ - 2016 + 2020, + 2021, + 2022, + 2024, + 2026 ] }, { "slug": "the-libreswan-project", "name": "The Libreswan Project", "first_year": 2017, - "last_year": 2022, + "last_year": 2026, "total_projects": 10, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, 2019, 2020, 2021, + 2022, + 2026 + ] + }, + { + "slug": "leap-encryption-access-project", + "name": "LEAP Encryption Access Project", + "first_year": 2018, + "last_year": 2022, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2018, 2022 ] + }, + { + "slug": "openkeychain-openpgp-for-android", + "name": "OpenKeychain (OpenPGP for Android)", + "first_year": 2016, + "last_year": 2016, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2016 + ] } ], "yearlyStats": { @@ -118,10 +121,14 @@ "2024": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.223Z" + "generated_at": "2026-02-19T13:36:02.054Z" } } \ No newline at end of file diff --git a/new-api-details/topics/encyclopedia.json b/new-api-details/topics/encyclopedia.json index 3034db4a..200721b8 100644 --- a/new-api-details/topics/encyclopedia.json +++ b/new-api-details/topics/encyclopedia.json @@ -1,10 +1,11 @@ { "slug": "encyclopedia", "name": "encyclopedia", - "published_at": "2026-01-25T16:06:29.779Z", + "published_at": "2026-02-19T13:36:03.138Z", "organizationCount": 1, "projectCount": 85, "years": [ + 2026, 2024, 2023, 2022, @@ -20,9 +21,9 @@ "slug": "wikimedia-foundation", "name": "Wikimedia Foundation", "first_year": 2016, - "last_year": 2024, + "last_year": 2026, "total_projects": 85, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -32,7 +33,8 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] } ], @@ -72,10 +74,14 @@ "2024": { "organizationCount": 1, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.779Z" + "generated_at": "2026-02-19T13:36:03.138Z" } } \ No newline at end of file diff --git a/new-api-details/topics/end-to-end-testing.json b/new-api-details/topics/end-to-end-testing.json index 29407af9..312f53dd 100644 --- a/new-api-details/topics/end-to-end-testing.json +++ b/new-api-details/topics/end-to-end-testing.json @@ -1,7 +1,7 @@ { "slug": "end-to-end-testing", "name": "End-To-End Testing", - "published_at": "2026-01-25T16:06:29.407Z", + "published_at": "2026-02-19T13:36:02.417Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.407Z" + "generated_at": "2026-02-19T13:36:02.417Z" } } \ No newline at end of file diff --git a/new-api-details/topics/end-user-application.json b/new-api-details/topics/end-user-application.json index a0dfdb41..da68323f 100644 --- a/new-api-details/topics/end-user-application.json +++ b/new-api-details/topics/end-user-application.json @@ -1,10 +1,11 @@ { "slug": "end-user-application", "name": "end user application", - "published_at": "2026-01-25T16:06:28.851Z", + "published_at": "2026-02-19T13:36:01.195Z", "organizationCount": 4, "projectCount": 215, "years": [ + 2026, 2025, 2024, 2023, @@ -17,25 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "digital-impact-alliance-dial-at-un-foundation", - "name": "Digital Impact Alliance (DIAL) at UN Foundation", - "first_year": 2018, - "last_year": 2021, - "total_projects": 31, - "is_currently_active": false, - "active_years": [ - 2018, - 2019, - 2020, - 2021 - ] - }, { "slug": "gnome-foundation", "name": "GNOME Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 115, "is_currently_active": true, "active_years": [ @@ -48,14 +35,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "libreoffice", "name": "LibreOffice", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 65, "is_currently_active": true, "active_years": [ @@ -68,7 +56,22 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "digital-impact-alliance-dial-at-un-foundation", + "name": "Digital Impact Alliance (DIAL) at UN Foundation", + "first_year": 2018, + "last_year": 2021, + "total_projects": 31, + "is_currently_active": false, + "active_years": [ + 2018, + 2019, + 2020, + 2021 ] }, { @@ -124,10 +127,14 @@ "2025": { "organizationCount": 3, "projectCount": 19 + }, + "2026": { + "organizationCount": 3, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.851Z" + "generated_at": "2026-02-19T13:36:01.195Z" } } \ No newline at end of file diff --git a/new-api-details/topics/end-user-applications.json b/new-api-details/topics/end-user-applications.json index 3b0f56a1..2b95b6ef 100644 --- a/new-api-details/topics/end-user-applications.json +++ b/new-api-details/topics/end-user-applications.json @@ -1,10 +1,11 @@ { "slug": "end-user-applications", "name": "end user applications", - "published_at": "2026-01-25T16:06:29.022Z", + "published_at": "2026-02-19T13:36:01.643Z", "organizationCount": 3, "projectCount": 204, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "gnome-foundation", "name": "GNOME Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 115, "is_currently_active": true, "active_years": [ @@ -34,14 +35,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "libreoffice", "name": "LibreOffice", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 65, "is_currently_active": true, "active_years": [ @@ -54,7 +56,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -117,10 +120,14 @@ "2025": { "organizationCount": 2, "projectCount": 12 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.022Z" + "generated_at": "2026-02-19T13:36:01.644Z" } } \ No newline at end of file diff --git a/new-api-details/topics/energy.json b/new-api-details/topics/energy.json index e8df81f7..df7a9df8 100644 --- a/new-api-details/topics/energy.json +++ b/new-api-details/topics/energy.json @@ -1,7 +1,7 @@ { "slug": "energy", "name": "energy", - "published_at": "2026-01-25T16:06:29.761Z", + "published_at": "2026-02-19T13:36:03.108Z", "organizationCount": 1, "projectCount": 6, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.761Z" + "generated_at": "2026-02-19T13:36:03.108Z" } } \ No newline at end of file diff --git a/new-api-details/topics/engineering.json b/new-api-details/topics/engineering.json index 27257ba7..43fcb1de 100644 --- a/new-api-details/topics/engineering.json +++ b/new-api-details/topics/engineering.json @@ -1,10 +1,11 @@ { "slug": "engineering", "name": "engineering", - "published_at": "2026-01-25T16:06:28.403Z", + "published_at": "2026-02-19T13:36:00.629Z", "organizationCount": 6, "projectCount": 77, "years": [ + 2026, 2025, 2024, 2023, @@ -17,22 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "ascend", - "name": "ASCEND", - "first_year": 2016, - "last_year": 2016, - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2016 - ] - }, { "slug": "fortran-lang", "name": "Fortran-lang", "first_year": 2021, - "last_year": 2025, + "last_year": 2026, "total_projects": 21, "is_currently_active": true, "active_years": [ @@ -40,27 +30,15 @@ 2022, 2023, 2024, - 2025 - ] - }, - { - "slug": "freecad", - "name": "FreeCAD", - "first_year": 2023, - "last_year": 2025, - "total_projects": 8, - "is_currently_active": true, - "active_years": [ - 2023, - 2024, - 2025 + 2025, + 2026 ] }, { "slug": "gprmax", "name": "gprMax", "first_year": 2019, - "last_year": 2025, + "last_year": 2026, "total_projects": 18, "is_currently_active": true, "active_years": [ @@ -68,7 +46,21 @@ 2021, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "scilab", + "name": "Scilab", + "first_year": 2016, + "last_year": 2018, + "total_projects": 14, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2018 ] }, { @@ -77,7 +69,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 13, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -90,16 +82,28 @@ ] }, { - "slug": "scilab", - "name": "Scilab", + "slug": "freecad", + "name": "FreeCAD", + "first_year": 2023, + "last_year": 2026, + "total_projects": 8, + "is_currently_active": true, + "active_years": [ + 2023, + 2024, + 2025, + 2026 + ] + }, + { + "slug": "ascend", + "name": "ASCEND", "first_year": 2016, - "last_year": 2018, - "total_projects": 14, + "last_year": 2016, + "total_projects": 3, "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018 + 2016 ] } ], @@ -143,10 +147,14 @@ "2025": { "organizationCount": 4, "projectCount": 14 + }, + "2026": { + "organizationCount": 3, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.403Z" + "generated_at": "2026-02-19T13:36:00.629Z" } } \ No newline at end of file diff --git a/new-api-details/topics/engines.json b/new-api-details/topics/engines.json index cea9e9a1..8cbe8629 100644 --- a/new-api-details/topics/engines.json +++ b/new-api-details/topics/engines.json @@ -1,10 +1,11 @@ { "slug": "engines", "name": "engines", - "published_at": "2026-01-25T16:06:29.618Z", + "published_at": "2026-02-19T13:36:02.821Z", "organizationCount": 1, "projectCount": 34, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "scummvm", "name": "ScummVM", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 34, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.618Z" + "generated_at": "2026-02-19T13:36:02.821Z" } } \ No newline at end of file diff --git a/new-api-details/topics/engraving.json b/new-api-details/topics/engraving.json index b6444ab3..0101d813 100644 --- a/new-api-details/topics/engraving.json +++ b/new-api-details/topics/engraving.json @@ -1,7 +1,7 @@ { "slug": "engraving", "name": "engraving", - "published_at": "2026-01-25T16:06:29.389Z", + "published_at": "2026-02-19T13:36:02.382Z", "organizationCount": 1, "projectCount": 24, "years": [ @@ -76,6 +76,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.389Z" + "generated_at": "2026-02-19T13:36:02.382Z" } } \ No newline at end of file diff --git a/new-api-details/topics/enteprise-analytics.json b/new-api-details/topics/enteprise-analytics.json index a5cd7b49..3918b76f 100644 --- a/new-api-details/topics/enteprise-analytics.json +++ b/new-api-details/topics/enteprise-analytics.json @@ -1,7 +1,7 @@ { "slug": "enteprise-analytics", "name": "enteprise analytics", - "published_at": "2026-01-25T16:06:29.105Z", + "published_at": "2026-02-19T13:36:01.723Z", "organizationCount": 1, "projectCount": 5, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.105Z" + "generated_at": "2026-02-19T13:36:01.723Z" } } \ No newline at end of file diff --git a/new-api-details/topics/enterprise-application.json b/new-api-details/topics/enterprise-application.json index 8c816dda..d13ec9bb 100644 --- a/new-api-details/topics/enterprise-application.json +++ b/new-api-details/topics/enterprise-application.json @@ -1,10 +1,11 @@ { "slug": "enterprise-application", "name": "enterprise application", - "published_at": "2026-01-25T16:06:29.198Z", + "published_at": "2026-02-19T13:36:02.019Z", "organizationCount": 2, "projectCount": 54, "years": [ + 2026, 2022, 2021, 2020, @@ -18,9 +19,9 @@ "slug": "jboss-community", "name": "JBoss Community", "first_year": 2016, - "last_year": 2022, + "last_year": 2026, "total_projects": 52, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -28,7 +29,8 @@ 2019, 2020, 2021, - 2022 + 2022, + 2026 ] }, { @@ -71,10 +73,14 @@ "2022": { "organizationCount": 1, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.198Z" + "generated_at": "2026-02-19T13:36:02.019Z" } } \ No newline at end of file diff --git a/new-api-details/topics/enterprise-applications.json b/new-api-details/topics/enterprise-applications.json index edbc468c..38f2a034 100644 --- a/new-api-details/topics/enterprise-applications.json +++ b/new-api-details/topics/enterprise-applications.json @@ -1,10 +1,11 @@ { "slug": "enterprise-applications", "name": "enterprise applications", - "published_at": "2026-01-25T16:06:29.198Z", + "published_at": "2026-02-19T13:36:02.017Z", "organizationCount": 2, "projectCount": 78, "years": [ + 2026, 2025, 2024, 2023, @@ -21,9 +22,9 @@ "slug": "jboss-community", "name": "JBoss Community", "first_year": 2016, - "last_year": 2022, + "last_year": 2026, "total_projects": 52, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -31,7 +32,8 @@ 2019, 2020, 2021, - 2022 + 2022, + 2026 ] }, { @@ -40,7 +42,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 26, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -92,10 +94,14 @@ "2025": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.198Z" + "generated_at": "2026-02-19T13:36:02.017Z" } } \ No newline at end of file diff --git a/new-api-details/topics/enterprise-information-systems.json b/new-api-details/topics/enterprise-information-systems.json index ab31a19b..5826561c 100644 --- a/new-api-details/topics/enterprise-information-systems.json +++ b/new-api-details/topics/enterprise-information-systems.json @@ -1,7 +1,7 @@ { "slug": "enterprise-information-systems", "name": "enterprise information systems", - "published_at": "2026-01-25T16:06:29.418Z", + "published_at": "2026-02-19T13:36:02.666Z", "organizationCount": 1, "projectCount": 0, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.418Z" + "generated_at": "2026-02-19T13:36:02.666Z" } } \ No newline at end of file diff --git a/new-api-details/topics/enterprise.json b/new-api-details/topics/enterprise.json index 77df93f2..2ad4e766 100644 --- a/new-api-details/topics/enterprise.json +++ b/new-api-details/topics/enterprise.json @@ -1,10 +1,11 @@ { "slug": "enterprise", "name": "enterprise", - "published_at": "2026-01-25T16:06:29.614Z", + "published_at": "2026-02-19T13:36:02.811Z", "organizationCount": 2, "projectCount": 138, "years": [ + 2026, 2025, 2024, 2023, @@ -17,25 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "samba", - "name": "Samba", - "first_year": 2017, - "last_year": 2021, - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2017, - 2019, - 2020, - 2021 - ] - }, { "slug": "zulip", "name": "Zulip", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 135, "is_currently_active": true, "active_years": [ @@ -48,7 +35,22 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "samba", + "name": "Samba", + "first_year": 2017, + "last_year": 2021, + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2017, + 2019, + 2020, + 2021 ] } ], @@ -92,10 +94,14 @@ "2025": { "organizationCount": 1, "projectCount": 14 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.614Z" + "generated_at": "2026-02-19T13:36:02.811Z" } } \ No newline at end of file diff --git a/new-api-details/topics/environment-generation.json b/new-api-details/topics/environment-generation.json index de5bc2f9..fc9fb41f 100644 --- a/new-api-details/topics/environment-generation.json +++ b/new-api-details/topics/environment-generation.json @@ -1,10 +1,11 @@ { "slug": "environment-generation", "name": "environment generation", - "published_at": "2026-01-25T16:06:29.686Z", + "published_at": "2026-02-19T13:36:02.918Z", "organizationCount": 1, "projectCount": 46, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "the-jpf-team", "name": "The JPF team", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 46, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.686Z" + "generated_at": "2026-02-19T13:36:02.918Z" } } \ No newline at end of file diff --git a/new-api-details/topics/environment.json b/new-api-details/topics/environment.json index 27406d08..db259861 100644 --- a/new-api-details/topics/environment.json +++ b/new-api-details/topics/environment.json @@ -1,10 +1,11 @@ { "slug": "environment", "name": "environment", - "published_at": "2026-01-25T16:06:28.381Z", + "published_at": "2026-02-19T13:36:00.469Z", "organizationCount": 3, "projectCount": 165, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "aossie", "name": "AOSSIE", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 117, "is_currently_active": true, "active_years": [ @@ -33,20 +34,8 @@ 2022, 2023, 2024, - 2025 - ] - }, - { - "slug": "open-food-facts", - "name": "Open Food Facts", - "first_year": 2018, - "last_year": 2025, - "total_projects": 10, - "is_currently_active": true, - "active_years": [ - 2018, - 2022, - 2025 + 2025, + 2026 ] }, { @@ -64,6 +53,20 @@ 2021, 2022 ] + }, + { + "slug": "open-food-facts", + "name": "Open Food Facts", + "first_year": 2018, + "last_year": 2026, + "total_projects": 10, + "is_currently_active": true, + "active_years": [ + 2018, + 2022, + 2025, + 2026 + ] } ], "yearlyStats": { @@ -106,10 +109,14 @@ "2025": { "organizationCount": 2, "projectCount": 25 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.381Z" + "generated_at": "2026-02-19T13:36:00.469Z" } } \ No newline at end of file diff --git a/new-api-details/topics/event-handling.json b/new-api-details/topics/event-handling.json index 9669d3e4..cbe4d280 100644 --- a/new-api-details/topics/event-handling.json +++ b/new-api-details/topics/event-handling.json @@ -1,7 +1,7 @@ { "slug": "event-handling", "name": "event handling", - "published_at": "2026-01-25T16:06:29.843Z", + "published_at": "2026-02-19T13:36:02.075Z", "organizationCount": 1, "projectCount": 7, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.843Z" + "generated_at": "2026-02-19T13:36:02.075Z" } } \ No newline at end of file diff --git a/new-api-details/topics/event-management.json b/new-api-details/topics/event-management.json index 4e9f34e6..9d64b831 100644 --- a/new-api-details/topics/event-management.json +++ b/new-api-details/topics/event-management.json @@ -1,10 +1,11 @@ { "slug": "event-management", "name": "event management", - "published_at": "2026-01-25T16:06:28.933Z", + "published_at": "2026-02-19T13:36:01.481Z", "organizationCount": 1, "projectCount": 140, "years": [ + 2026, 2025, 2024, 2019, @@ -17,7 +18,7 @@ "slug": "fossasia", "name": "FOSSASIA", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 140, "is_currently_active": true, "active_years": [ @@ -26,7 +27,8 @@ 2018, 2019, 2024, - 2025 + 2025, + 2026 ] } ], @@ -54,10 +56,14 @@ "2025": { "organizationCount": 1, "projectCount": 20 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.933Z" + "generated_at": "2026-02-19T13:36:01.481Z" } } \ No newline at end of file diff --git a/new-api-details/topics/event-solutions.json b/new-api-details/topics/event-solutions.json index d9da835b..ca96a547 100644 --- a/new-api-details/topics/event-solutions.json +++ b/new-api-details/topics/event-solutions.json @@ -1,10 +1,11 @@ { "slug": "event-solutions", "name": "event solutions", - "published_at": "2026-01-25T16:06:28.936Z", + "published_at": "2026-02-19T13:36:01.493Z", "organizationCount": 2, "projectCount": 142, "years": [ + 2026, 2025, 2024, 2019, @@ -17,7 +18,7 @@ "slug": "fossasia", "name": "FOSSASIA", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 140, "is_currently_active": true, "active_years": [ @@ -26,7 +27,8 @@ 2018, 2019, 2024, - 2025 + 2025, + 2026 ] }, { @@ -65,10 +67,14 @@ "2025": { "organizationCount": 1, "projectCount": 20 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.936Z" + "generated_at": "2026-02-19T13:36:01.493Z" } } \ No newline at end of file diff --git a/new-api-details/topics/evented.json b/new-api-details/topics/evented.json index b147d1cb..b1ff4d41 100644 --- a/new-api-details/topics/evented.json +++ b/new-api-details/topics/evented.json @@ -1,7 +1,7 @@ { "slug": "evented", "name": "evented", - "published_at": "2026-01-25T16:06:28.700Z", + "published_at": "2026-02-19T13:36:00.951Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.700Z" + "generated_at": "2026-02-19T13:36:00.951Z" } } \ No newline at end of file diff --git a/new-api-details/topics/events-management.json b/new-api-details/topics/events-management.json index ae31be4e..e6f24c1e 100644 --- a/new-api-details/topics/events-management.json +++ b/new-api-details/topics/events-management.json @@ -1,7 +1,7 @@ { "slug": "events-management", "name": "events management", - "published_at": "2026-01-25T16:06:28.773Z", + "published_at": "2026-02-19T13:36:01.025Z", "organizationCount": 1, "projectCount": 22, "years": [ @@ -52,6 +52,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.773Z" + "generated_at": "2026-02-19T13:36:01.025Z" } } \ No newline at end of file diff --git a/new-api-details/topics/exoplanet.json b/new-api-details/topics/exoplanet.json index 3fde0150..b1160664 100644 --- a/new-api-details/topics/exoplanet.json +++ b/new-api-details/topics/exoplanet.json @@ -1,7 +1,7 @@ { "slug": "exoplanet", "name": "exoplanet", - "published_at": "2026-01-25T16:06:29.564Z", + "published_at": "2026-02-19T13:36:02.753Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.564Z" + "generated_at": "2026-02-19T13:36:02.753Z" } } \ No newline at end of file diff --git a/new-api-details/topics/exploitation.json b/new-api-details/topics/exploitation.json index 265d350b..154cf893 100644 --- a/new-api-details/topics/exploitation.json +++ b/new-api-details/topics/exploitation.json @@ -1,10 +1,11 @@ { "slug": "exploitation", "name": "exploitation", - "published_at": "2026-01-25T16:06:29.350Z", + "published_at": "2026-02-19T13:36:02.294Z", "organizationCount": 1, "projectCount": 12, "years": [ + 2026, 2023, 2022, 2021, @@ -17,16 +18,17 @@ "slug": "metasploit", "name": "Metasploit", "first_year": 2017, - "last_year": 2023, + "last_year": 2026, "total_projects": 12, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, 2020, 2021, 2022, - 2023 + 2023, + 2026 ] } ], @@ -54,10 +56,14 @@ "2023": { "organizationCount": 1, "projectCount": 1 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.350Z" + "generated_at": "2026-02-19T13:36:02.294Z" } } \ No newline at end of file diff --git a/new-api-details/topics/extensions.json b/new-api-details/topics/extensions.json index 14ad68b5..f20abe9e 100644 --- a/new-api-details/topics/extensions.json +++ b/new-api-details/topics/extensions.json @@ -1,7 +1,7 @@ { "slug": "extensions", "name": "extensions", - "published_at": "2026-01-25T16:06:29.800Z", + "published_at": "2026-02-19T13:36:03.171Z", "organizationCount": 1, "projectCount": 12, "years": [ @@ -70,6 +70,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.800Z" + "generated_at": "2026-02-19T13:36:03.171Z" } } \ No newline at end of file diff --git a/new-api-details/topics/eye-tracking.json b/new-api-details/topics/eye-tracking.json index 873a435e..94915e1f 100644 --- a/new-api-details/topics/eye-tracking.json +++ b/new-api-details/topics/eye-tracking.json @@ -1,10 +1,11 @@ { "slug": "eye-tracking", "name": "Eye Tracking", - "published_at": "2026-01-25T16:06:29.759Z", + "published_at": "2026-02-19T13:36:03.106Z", "organizationCount": 1, "projectCount": 8, "years": [ + 2026, 2025, 2024 ], @@ -13,12 +14,13 @@ "slug": "uramaki-lab", "name": "Uramaki LAB", "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "total_projects": 8, "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -30,10 +32,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.759Z" + "generated_at": "2026-02-19T13:36:03.106Z" } } \ No newline at end of file diff --git a/new-api-details/topics/faas.json b/new-api-details/topics/faas.json index 04ddfc28..b293c4a8 100644 --- a/new-api-details/topics/faas.json +++ b/new-api-details/topics/faas.json @@ -1,10 +1,11 @@ { "slug": "faas", "name": "faas", - "published_at": "2026-01-25T16:06:29.348Z", + "published_at": "2026-02-19T13:36:02.288Z", "organizationCount": 2, "projectCount": 25, "years": [ + 2026, 2024, 2023, 2022, @@ -15,14 +16,15 @@ "slug": "metacall", "name": "MetaCall", "first_year": 2021, - "last_year": 2024, + "last_year": 2026, "total_projects": 19, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -54,10 +56,14 @@ "2024": { "organizationCount": 2, "projectCount": 11 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.348Z" + "generated_at": "2026-02-19T13:36:02.288Z" } } \ No newline at end of file diff --git a/new-api-details/topics/fairness.json b/new-api-details/topics/fairness.json index b495e121..4665f030 100644 --- a/new-api-details/topics/fairness.json +++ b/new-api-details/topics/fairness.json @@ -1,7 +1,7 @@ { "slug": "fairness", "name": "Fairness", - "published_at": "2026-01-25T16:06:29.590Z", + "published_at": "2026-02-19T13:36:02.786Z", "organizationCount": 1, "projectCount": 4, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.590Z" + "generated_at": "2026-02-19T13:36:02.786Z" } } \ No newline at end of file diff --git a/new-api-details/topics/fake-news.json b/new-api-details/topics/fake-news.json index a54d8391..c1824f42 100644 --- a/new-api-details/topics/fake-news.json +++ b/new-api-details/topics/fake-news.json @@ -1,7 +1,7 @@ { "slug": "fake-news", "name": "fake-news", - "published_at": "2026-01-25T16:06:29.782Z", + "published_at": "2026-02-19T13:36:03.140Z", "organizationCount": 1, "projectCount": 4, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.782Z" + "generated_at": "2026-02-19T13:36:03.140Z" } } \ No newline at end of file diff --git a/new-api-details/topics/fashiontech.json b/new-api-details/topics/fashiontech.json index b3bac64a..3f4ad42d 100644 --- a/new-api-details/topics/fashiontech.json +++ b/new-api-details/topics/fashiontech.json @@ -1,10 +1,11 @@ { "slug": "fashiontech", "name": "fashiontech", - "published_at": "2026-01-25T16:06:28.931Z", + "published_at": "2026-02-19T13:36:01.470Z", "organizationCount": 1, "projectCount": 140, "years": [ + 2026, 2025, 2024, 2019, @@ -17,7 +18,7 @@ "slug": "fossasia", "name": "FOSSASIA", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 140, "is_currently_active": true, "active_years": [ @@ -26,7 +27,8 @@ 2018, 2019, 2024, - 2025 + 2025, + 2026 ] } ], @@ -54,10 +56,14 @@ "2025": { "organizationCount": 1, "projectCount": 20 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.931Z" + "generated_at": "2026-02-19T13:36:01.470Z" } } \ No newline at end of file diff --git a/new-api-details/topics/fast-algorithms.json b/new-api-details/topics/fast-algorithms.json index a05eae0d..8a9df4d3 100644 --- a/new-api-details/topics/fast-algorithms.json +++ b/new-api-details/topics/fast-algorithms.json @@ -1,7 +1,7 @@ { "slug": "fast-algorithms", "name": "fast algorithms", - "published_at": "2026-01-25T16:06:29.622Z", + "published_at": "2026-02-19T13:36:02.321Z", "organizationCount": 2, "projectCount": 70, "years": [ @@ -90,6 +90,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.622Z" + "generated_at": "2026-02-19T13:36:02.321Z" } } \ No newline at end of file diff --git a/new-api-details/topics/feature-detection.json b/new-api-details/topics/feature-detection.json index 9af5e2f6..9be014b1 100644 --- a/new-api-details/topics/feature-detection.json +++ b/new-api-details/topics/feature-detection.json @@ -1,7 +1,7 @@ { "slug": "feature-detection", "name": "feature detection", - "published_at": "2026-01-25T16:06:29.315Z", + "published_at": "2026-02-19T13:36:02.384Z", "organizationCount": 2, "projectCount": 5, "years": [ @@ -50,6 +50,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.315Z" + "generated_at": "2026-02-19T13:36:02.384Z" } } \ No newline at end of file diff --git a/new-api-details/topics/federated-learning.json b/new-api-details/topics/federated-learning.json index 931443eb..d9d037fd 100644 --- a/new-api-details/topics/federated-learning.json +++ b/new-api-details/topics/federated-learning.json @@ -1,7 +1,7 @@ { "slug": "federated-learning", "name": "federated learning", - "published_at": "2026-01-25T16:06:29.486Z", + "published_at": "2026-02-19T13:36:02.571Z", "organizationCount": 1, "projectCount": 9, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.486Z" + "generated_at": "2026-02-19T13:36:02.571Z" } } \ No newline at end of file diff --git a/new-api-details/topics/federated.json b/new-api-details/topics/federated.json index f4388a6b..b759b39f 100644 --- a/new-api-details/topics/federated.json +++ b/new-api-details/topics/federated.json @@ -1,7 +1,7 @@ { "slug": "federated", "name": "federated", - "published_at": "2026-01-25T16:06:29.327Z", + "published_at": "2026-02-19T13:36:02.227Z", "organizationCount": 1, "projectCount": 29, "years": [ @@ -64,6 +64,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.327Z" + "generated_at": "2026-02-19T13:36:02.227Z" } } \ No newline at end of file diff --git a/new-api-details/topics/federation.json b/new-api-details/topics/federation.json index a663dc11..a6d88b16 100644 --- a/new-api-details/topics/federation.json +++ b/new-api-details/topics/federation.json @@ -1,7 +1,7 @@ { "slug": "federation", "name": "federation", - "published_at": "2026-01-25T16:06:29.836Z", + "published_at": "2026-02-19T13:36:01.568Z", "organizationCount": 1, "projectCount": 74, "years": [ @@ -22,7 +22,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 74, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -76,6 +76,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.836Z" + "generated_at": "2026-02-19T13:36:01.568Z" } } \ No newline at end of file diff --git a/new-api-details/topics/ffi.json b/new-api-details/topics/ffi.json index 91fd7848..4265336d 100644 --- a/new-api-details/topics/ffi.json +++ b/new-api-details/topics/ffi.json @@ -1,10 +1,11 @@ { "slug": "ffi", "name": "ffi", - "published_at": "2026-01-25T16:06:29.349Z", + "published_at": "2026-02-19T13:36:02.290Z", "organizationCount": 1, "projectCount": 19, "years": [ + 2026, 2024, 2023, 2022, @@ -15,14 +16,15 @@ "slug": "metacall", "name": "MetaCall", "first_year": 2021, - "last_year": 2024, + "last_year": 2026, "total_projects": 19, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] } ], @@ -42,10 +44,14 @@ "2024": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.349Z" + "generated_at": "2026-02-19T13:36:02.290Z" } } \ No newline at end of file diff --git a/new-api-details/topics/ffmpeg-neuronetwork.json b/new-api-details/topics/ffmpeg-neuronetwork.json index 4f4dfa56..34936f26 100644 --- a/new-api-details/topics/ffmpeg-neuronetwork.json +++ b/new-api-details/topics/ffmpeg-neuronetwork.json @@ -1,7 +1,7 @@ { "slug": "ffmpeg-neuronetwork", "name": "ffmpeg neuronetwork", - "published_at": "2026-01-25T16:06:29.169Z", + "published_at": "2026-02-19T13:36:01.853Z", "organizationCount": 1, "projectCount": 12, "years": [ @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.169Z" + "generated_at": "2026-02-19T13:36:01.853Z" } } \ No newline at end of file diff --git a/new-api-details/topics/file-formats.json b/new-api-details/topics/file-formats.json index 6868c8b6..26a89db3 100644 --- a/new-api-details/topics/file-formats.json +++ b/new-api-details/topics/file-formats.json @@ -1,7 +1,7 @@ { "slug": "file-formats", "name": "file formats", - "published_at": "2026-01-25T16:06:28.427Z", + "published_at": "2026-02-19T13:36:00.363Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.427Z" + "generated_at": "2026-02-19T13:36:00.363Z" } } \ No newline at end of file diff --git a/new-api-details/topics/file-share.json b/new-api-details/topics/file-share.json index 5e7de26c..1f22813d 100644 --- a/new-api-details/topics/file-share.json +++ b/new-api-details/topics/file-share.json @@ -1,7 +1,7 @@ { "slug": "file-share", "name": "file share", - "published_at": "2026-01-25T16:06:29.864Z", + "published_at": "2026-02-19T13:36:02.675Z", "organizationCount": 1, "projectCount": 5, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.864Z" + "generated_at": "2026-02-19T13:36:02.675Z" } } \ No newline at end of file diff --git a/new-api-details/topics/filesystem.json b/new-api-details/topics/filesystem.json index 5e7c70a4..072ff7be 100644 --- a/new-api-details/topics/filesystem.json +++ b/new-api-details/topics/filesystem.json @@ -1,10 +1,11 @@ { "slug": "filesystem", "name": "filesystem", - "published_at": "2026-01-25T16:06:29.114Z", + "published_at": "2026-02-19T13:36:01.755Z", "organizationCount": 1, "projectCount": 26, "years": [ + 2026, 2024, 2023, 2022, @@ -19,9 +20,9 @@ "slug": "haiku", "name": "Haiku", "first_year": 2017, - "last_year": 2024, + "last_year": 2026, "total_projects": 26, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, @@ -30,7 +31,8 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] } ], @@ -66,10 +68,14 @@ "2024": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.114Z" + "generated_at": "2026-02-19T13:36:01.756Z" } } \ No newline at end of file diff --git a/new-api-details/topics/filesystems.json b/new-api-details/topics/filesystems.json index 6c84c0d3..9aedc651 100644 --- a/new-api-details/topics/filesystems.json +++ b/new-api-details/topics/filesystems.json @@ -1,10 +1,11 @@ { "slug": "filesystems", "name": "filesystems", - "published_at": "2026-01-25T16:06:29.113Z", - "organizationCount": 2, + "published_at": "2026-02-19T13:36:01.265Z", + "organizationCount": 3, "projectCount": 30, "years": [ + 2026, 2025, 2024, 2023, @@ -20,9 +21,9 @@ "slug": "haiku", "name": "Haiku", "first_year": 2017, - "last_year": 2024, + "last_year": 2026, "total_projects": 26, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, @@ -31,19 +32,32 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { "slug": "openafs", "name": "OpenAFS", "first_year": 2022, - "last_year": 2025, + "last_year": 2026, "total_projects": 4, "is_currently_active": true, "active_years": [ 2022, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "erofs-filesystem", + "name": "EROFS filesystem", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 ] } ], @@ -83,10 +97,14 @@ "2025": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 3, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.113Z" + "generated_at": "2026-02-19T13:36:01.265Z" } } \ No newline at end of file diff --git a/new-api-details/topics/film.json b/new-api-details/topics/film.json index 40433b4d..bfbfcc4e 100644 --- a/new-api-details/topics/film.json +++ b/new-api-details/topics/film.json @@ -1,7 +1,7 @@ { "slug": "film", "name": "Film", - "published_at": "2026-01-25T16:06:28.432Z", + "published_at": "2026-02-19T13:36:00.371Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.432Z" + "generated_at": "2026-02-19T13:36:00.371Z" } } \ No newline at end of file diff --git a/new-api-details/topics/filmmaking.json b/new-api-details/topics/filmmaking.json index 3acb9fd8..1707ccc5 100644 --- a/new-api-details/topics/filmmaking.json +++ b/new-api-details/topics/filmmaking.json @@ -1,7 +1,7 @@ { "slug": "filmmaking", "name": "filmmaking", - "published_at": "2026-01-25T16:06:28.426Z", + "published_at": "2026-02-19T13:36:00.359Z", "organizationCount": 2, "projectCount": 13, "years": [ @@ -12,18 +12,6 @@ 2019 ], "organizations": [ - { - "slug": "academy-software-foundation", - "name": "Academy Software Foundation", - "first_year": 2020, - "last_year": 2022, - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2020, - 2022 - ] - }, { "slug": "pitivi", "name": "Pitivi", @@ -37,6 +25,18 @@ 2021, 2023 ] + }, + { + "slug": "academy-software-foundation", + "name": "Academy Software Foundation", + "first_year": 2020, + "last_year": 2022, + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2020, + 2022 + ] } ], "yearlyStats": { @@ -63,6 +63,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.426Z" + "generated_at": "2026-02-19T13:36:00.359Z" } } \ No newline at end of file diff --git a/new-api-details/topics/filter.json b/new-api-details/topics/filter.json index bb235fac..9208628a 100644 --- a/new-api-details/topics/filter.json +++ b/new-api-details/topics/filter.json @@ -1,10 +1,11 @@ { "slug": "filter", "name": "filter", - "published_at": "2026-01-25T16:06:28.915Z", + "published_at": "2026-02-19T13:36:01.351Z", "organizationCount": 1, "projectCount": 49, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "ffmpeg", "name": "FFmpeg", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 49, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.915Z" + "generated_at": "2026-02-19T13:36:01.351Z" } } \ No newline at end of file diff --git a/new-api-details/topics/finance.json b/new-api-details/topics/finance.json index b2764384..93884202 100644 --- a/new-api-details/topics/finance.json +++ b/new-api-details/topics/finance.json @@ -1,10 +1,11 @@ { "slug": "finance", "name": "finance", - "published_at": "2026-01-25T16:06:29.082Z", + "published_at": "2026-02-19T13:36:01.615Z", "organizationCount": 1, "projectCount": 30, "years": [ + 2026, 2025, 2024, 2023, @@ -17,7 +18,7 @@ "slug": "geomscale", "name": "GeomScale", "first_year": 2020, - "last_year": 2025, + "last_year": 2026, "total_projects": 30, "is_currently_active": true, "active_years": [ @@ -26,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -54,10 +56,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.082Z" + "generated_at": "2026-02-19T13:36:01.615Z" } } \ No newline at end of file diff --git a/new-api-details/topics/financial-inclusion.json b/new-api-details/topics/financial-inclusion.json index 518d1cb4..0002713b 100644 --- a/new-api-details/topics/financial-inclusion.json +++ b/new-api-details/topics/financial-inclusion.json @@ -1,10 +1,11 @@ { "slug": "financial-inclusion", "name": "financial inclusion", - "published_at": "2026-01-25T16:06:29.704Z", + "published_at": "2026-02-19T13:36:02.940Z", "organizationCount": 1, "projectCount": 102, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "the-mifos-initiative", "name": "The Mifos Initiative", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 102, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 13 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.704Z" + "generated_at": "2026-02-19T13:36:02.940Z" } } \ No newline at end of file diff --git a/new-api-details/topics/finite-state-automata.json b/new-api-details/topics/finite-state-automata.json index 11aeb257..0fc75167 100644 --- a/new-api-details/topics/finite-state-automata.json +++ b/new-api-details/topics/finite-state-automata.json @@ -1,7 +1,7 @@ { "slug": "finite-state-automata", "name": "finite state automata", - "published_at": "2026-01-25T16:06:29.754Z", + "published_at": "2026-02-19T13:36:03.101Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.754Z" + "generated_at": "2026-02-19T13:36:03.101Z" } } \ No newline at end of file diff --git a/new-api-details/topics/fintech.json b/new-api-details/topics/fintech.json index 1068e081..ea32d600 100644 --- a/new-api-details/topics/fintech.json +++ b/new-api-details/topics/fintech.json @@ -1,10 +1,11 @@ { "slug": "fintech", "name": "fintech", - "published_at": "2026-01-25T16:06:29.702Z", + "published_at": "2026-02-19T13:36:02.939Z", "organizationCount": 1, "projectCount": 102, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "the-mifos-initiative", "name": "The Mifos Initiative", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 102, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 13 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.702Z" + "generated_at": "2026-02-19T13:36:02.939Z" } } \ No newline at end of file diff --git a/new-api-details/topics/firefox.json b/new-api-details/topics/firefox.json index c5a87fb2..3e1923c9 100644 --- a/new-api-details/topics/firefox.json +++ b/new-api-details/topics/firefox.json @@ -1,7 +1,7 @@ { "slug": "firefox", "name": "firefox", - "published_at": "2026-01-25T16:06:29.377Z", + "published_at": "2026-02-19T13:36:02.361Z", "organizationCount": 1, "projectCount": 75, "years": [ @@ -52,6 +52,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.377Z" + "generated_at": "2026-02-19T13:36:02.361Z" } } \ No newline at end of file diff --git a/new-api-details/topics/firewall.json b/new-api-details/topics/firewall.json index 380429b1..691bab91 100644 --- a/new-api-details/topics/firewall.json +++ b/new-api-details/topics/firewall.json @@ -1,7 +1,7 @@ { "slug": "firewall", "name": "firewall", - "published_at": "2026-01-25T16:06:29.400Z", + "published_at": "2026-02-19T13:36:02.399Z", "organizationCount": 1, "projectCount": 11, "years": [ @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.400Z" + "generated_at": "2026-02-19T13:36:02.399Z" } } \ No newline at end of file diff --git a/new-api-details/topics/firmware-development.json b/new-api-details/topics/firmware-development.json index 7c66f80b..6ff84e3b 100644 --- a/new-api-details/topics/firmware-development.json +++ b/new-api-details/topics/firmware-development.json @@ -1,7 +1,7 @@ { "slug": "firmware-development", "name": "firmware development", - "published_at": "2026-01-25T16:06:29.835Z", + "published_at": "2026-02-19T13:36:01.557Z", "organizationCount": 1, "projectCount": 74, "years": [ @@ -22,7 +22,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 74, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -76,6 +76,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.835Z" + "generated_at": "2026-02-19T13:36:01.557Z" } } \ No newline at end of file diff --git a/new-api-details/topics/firmware.json b/new-api-details/topics/firmware.json index 25cc5a5d..a0f147ce 100644 --- a/new-api-details/topics/firmware.json +++ b/new-api-details/topics/firmware.json @@ -1,10 +1,11 @@ { "slug": "firmware", "name": "firmware", - "published_at": "2026-01-25T16:06:28.936Z", + "published_at": "2026-02-19T13:36:01.085Z", "organizationCount": 5, "projectCount": 162, "years": [ + 2026, 2025, 2024, 2023, @@ -17,6 +18,23 @@ 2016 ], "organizations": [ + { + "slug": "fossasia", + "name": "FOSSASIA", + "first_year": 2016, + "last_year": 2026, + "total_projects": 140, + "is_currently_active": true, + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2024, + 2025, + 2026 + ] + }, { "slug": "coreboot", "name": "coreboot", @@ -33,32 +51,17 @@ ] }, { - "slug": "flashrom", - "name": "Flashrom", - "first_year": 2022, + "slug": "tianocore", + "name": "TianoCore", + "first_year": 2021, "last_year": 2022, - "total_projects": 1, + "total_projects": 8, "is_currently_active": false, "active_years": [ + 2021, 2022 ] }, - { - "slug": "fossasia", - "name": "FOSSASIA", - "first_year": 2016, - "last_year": 2025, - "total_projects": 140, - "is_currently_active": true, - "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2024, - 2025 - ] - }, { "slug": "pocket-science-lab", "name": "Pocket Science Lab", @@ -71,14 +74,13 @@ ] }, { - "slug": "tianocore", - "name": "TianoCore", - "first_year": 2021, + "slug": "flashrom", + "name": "Flashrom", + "first_year": 2022, "last_year": 2022, - "total_projects": 8, + "total_projects": 1, "is_currently_active": false, "active_years": [ - 2021, 2022 ] } @@ -123,10 +125,14 @@ "2025": { "organizationCount": 1, "projectCount": 20 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.936Z" + "generated_at": "2026-02-19T13:36:01.085Z" } } \ No newline at end of file diff --git a/new-api-details/topics/flash-chips.json b/new-api-details/topics/flash-chips.json index 1158f56b..ac2bf401 100644 --- a/new-api-details/topics/flash-chips.json +++ b/new-api-details/topics/flash-chips.json @@ -1,7 +1,7 @@ { "slug": "flash-chips", "name": "flash chips", - "published_at": "2026-01-25T16:06:28.980Z", + "published_at": "2026-02-19T13:36:01.400Z", "organizationCount": 1, "projectCount": 1, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.980Z" + "generated_at": "2026-02-19T13:36:01.400Z" } } \ No newline at end of file diff --git a/new-api-details/topics/flashcard.json b/new-api-details/topics/flashcard.json index 22bd3030..400e1752 100644 --- a/new-api-details/topics/flashcard.json +++ b/new-api-details/topics/flashcard.json @@ -1,10 +1,11 @@ { "slug": "flashcard", "name": "flashcard", - "published_at": "2026-01-25T16:06:28.464Z", + "published_at": "2026-02-19T13:36:00.457Z", "organizationCount": 1, "projectCount": 10, "years": [ + 2026, 2025, 2024, 2022, @@ -15,14 +16,15 @@ "slug": "ankidroid", "name": "AnkiDroid", "first_year": 2021, - "last_year": 2025, + "last_year": 2026, "total_projects": 10, "is_currently_active": true, "active_years": [ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] } ], @@ -42,10 +44,14 @@ "2025": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.464Z" + "generated_at": "2026-02-19T13:36:00.457Z" } } \ No newline at end of file diff --git a/new-api-details/topics/flashcards.json b/new-api-details/topics/flashcards.json index 41acd241..25e73834 100644 --- a/new-api-details/topics/flashcards.json +++ b/new-api-details/topics/flashcards.json @@ -1,10 +1,11 @@ { "slug": "flashcards", "name": "Flashcards", - "published_at": "2026-01-25T16:06:28.465Z", + "published_at": "2026-02-19T13:36:00.459Z", "organizationCount": 1, "projectCount": 10, "years": [ + 2026, 2025, 2024, 2022, @@ -15,14 +16,15 @@ "slug": "ankidroid", "name": "AnkiDroid", "first_year": 2021, - "last_year": 2025, + "last_year": 2026, "total_projects": 10, "is_currently_active": true, "active_years": [ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] } ], @@ -42,10 +44,14 @@ "2025": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.465Z" + "generated_at": "2026-02-19T13:36:00.459Z" } } \ No newline at end of file diff --git a/new-api-details/topics/fleet-management.json b/new-api-details/topics/fleet-management.json index 211cd5b2..90c183ee 100644 --- a/new-api-details/topics/fleet-management.json +++ b/new-api-details/topics/fleet-management.json @@ -1,10 +1,11 @@ { "slug": "fleet-management", "name": "fleet management", - "published_at": "2026-01-25T16:06:29.446Z", + "published_at": "2026-02-19T13:36:02.506Z", "organizationCount": 1, "projectCount": 46, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "open-robotics", "name": "Open Robotics", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 46, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.446Z" + "generated_at": "2026-02-19T13:36:02.506Z" } } \ No newline at end of file diff --git a/new-api-details/topics/floating-car-data.json b/new-api-details/topics/floating-car-data.json index 277e3e5a..4d10db0e 100644 --- a/new-api-details/topics/floating-car-data.json +++ b/new-api-details/topics/floating-car-data.json @@ -1,10 +1,11 @@ { "slug": "floating-car-data", "name": "floating car data", - "published_at": "2026-01-25T16:06:28.357Z", + "published_at": "2026-02-19T13:36:00.269Z", "organizationCount": 1, "projectCount": 25, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "52north-spatial-information-research-gmbh", "name": "52°North Spatial Information Research GmbH", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 25, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.357Z" + "generated_at": "2026-02-19T13:36:00.269Z" } } \ No newline at end of file diff --git a/new-api-details/topics/floss.json b/new-api-details/topics/floss.json index a0b2b713..ea1fc49c 100644 --- a/new-api-details/topics/floss.json +++ b/new-api-details/topics/floss.json @@ -1,7 +1,7 @@ { "slug": "floss", "name": "floss", - "published_at": "2026-01-25T16:06:29.632Z", + "published_at": "2026-02-19T13:36:02.842Z", "organizationCount": 1, "projectCount": 6, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.632Z" + "generated_at": "2026-02-19T13:36:02.842Z" } } \ No newline at end of file diff --git a/new-api-details/topics/fluid-dynamics.json b/new-api-details/topics/fluid-dynamics.json index 19b35311..cde94b2f 100644 --- a/new-api-details/topics/fluid-dynamics.json +++ b/new-api-details/topics/fluid-dynamics.json @@ -1,10 +1,11 @@ { "slug": "fluid-dynamics", "name": "Fluid Dynamics", - "published_at": "2026-01-25T16:06:29.647Z", + "published_at": "2026-02-19T13:36:02.857Z", "organizationCount": 1, "projectCount": 7, "years": [ + 2026, 2025, 2024 ], @@ -13,12 +14,13 @@ "slug": "stichting-su2", "name": "Stichting SU2", "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "total_projects": 7, "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -30,10 +32,14 @@ "2025": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.647Z" + "generated_at": "2026-02-19T13:36:02.857Z" } } \ No newline at end of file diff --git a/new-api-details/topics/fonts.json b/new-api-details/topics/fonts.json index 0dcd3614..32d3a0d7 100644 --- a/new-api-details/topics/fonts.json +++ b/new-api-details/topics/fonts.json @@ -1,10 +1,11 @@ { "slug": "fonts", "name": "fonts", - "published_at": "2026-01-25T16:06:29.004Z", + "published_at": "2026-02-19T13:36:01.546Z", "organizationCount": 2, "projectCount": 25, "years": [ + 2026, 2025, 2024, 2023, @@ -38,12 +39,13 @@ "slug": "graphite", "name": "Graphite", "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "total_projects": 8, "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -83,10 +85,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.004Z" + "generated_at": "2026-02-19T13:36:01.546Z" } } \ No newline at end of file diff --git a/new-api-details/topics/food.json b/new-api-details/topics/food.json index be53b9f9..dc3e22f0 100644 --- a/new-api-details/topics/food.json +++ b/new-api-details/topics/food.json @@ -1,10 +1,11 @@ { "slug": "food", "name": "food", - "published_at": "2026-01-25T16:06:29.436Z", + "published_at": "2026-02-19T13:36:02.492Z", "organizationCount": 1, "projectCount": 10, "years": [ + 2026, 2025, 2022, 2018 @@ -14,13 +15,14 @@ "slug": "open-food-facts", "name": "Open Food Facts", "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "total_projects": 10, "is_currently_active": true, "active_years": [ 2018, 2022, - 2025 + 2025, + 2026 ] } ], @@ -36,10 +38,14 @@ "2025": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.436Z" + "generated_at": "2026-02-19T13:36:02.492Z" } } \ No newline at end of file diff --git a/new-api-details/topics/forecasting.json b/new-api-details/topics/forecasting.json index 123c5712..df407905 100644 --- a/new-api-details/topics/forecasting.json +++ b/new-api-details/topics/forecasting.json @@ -1,7 +1,7 @@ { "slug": "forecasting", "name": "Forecasting", - "published_at": "2026-01-25T16:06:29.430Z", + "published_at": "2026-02-19T13:36:02.485Z", "organizationCount": 1, "projectCount": 10, "years": [ @@ -15,7 +15,7 @@ "first_year": 2024, "last_year": 2025, "total_projects": 10, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2024, 2025 @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.430Z" + "generated_at": "2026-02-19T13:36:02.485Z" } } \ No newline at end of file diff --git a/new-api-details/topics/foreign-function-interface.json b/new-api-details/topics/foreign-function-interface.json index 12ac52af..48f6ad16 100644 --- a/new-api-details/topics/foreign-function-interface.json +++ b/new-api-details/topics/foreign-function-interface.json @@ -1,10 +1,11 @@ { "slug": "foreign-function-interface", "name": "foreign function interface", - "published_at": "2026-01-25T16:06:29.347Z", + "published_at": "2026-02-19T13:36:02.287Z", "organizationCount": 1, "projectCount": 19, "years": [ + 2026, 2024, 2023, 2022, @@ -15,14 +16,15 @@ "slug": "metacall", "name": "MetaCall", "first_year": 2021, - "last_year": 2024, + "last_year": 2026, "total_projects": 19, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] } ], @@ -42,10 +44,14 @@ "2024": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.347Z" + "generated_at": "2026-02-19T13:36:02.287Z" } } \ No newline at end of file diff --git a/new-api-details/topics/forensic.json b/new-api-details/topics/forensic.json index 3666de78..345927cd 100644 --- a/new-api-details/topics/forensic.json +++ b/new-api-details/topics/forensic.json @@ -1,7 +1,7 @@ { "slug": "forensic", "name": "forensic", - "published_at": "2026-01-25T16:06:29.602Z", + "published_at": "2026-02-19T13:36:02.816Z", "organizationCount": 1, "projectCount": 149, "years": [ @@ -70,6 +70,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.602Z" + "generated_at": "2026-02-19T13:36:02.816Z" } } \ No newline at end of file diff --git a/new-api-details/topics/formal-methods.json b/new-api-details/topics/formal-methods.json index c2d1245a..04378557 100644 --- a/new-api-details/topics/formal-methods.json +++ b/new-api-details/topics/formal-methods.json @@ -1,10 +1,11 @@ { "slug": "formal-methods", "name": "formal methods", - "published_at": "2026-01-25T16:06:29.636Z", + "published_at": "2026-02-19T13:36:02.836Z", "organizationCount": 3, "projectCount": 61, "years": [ + 2026, 2025, 2024, 2023, @@ -17,26 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "software-and-computational-systems-lab-at-lmu-munich", - "name": "Software and Computational Systems Lab at LMU Munich", - "first_year": 2018, - "last_year": 2025, - "total_projects": 14, - "is_currently_active": true, - "active_years": [ - 2018, - 2019, - 2023, - 2024, - 2025 - ] - }, { "slug": "the-jpf-team", "name": "The JPF team", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 46, "is_currently_active": true, "active_years": [ @@ -49,6 +35,22 @@ 2022, 2023, 2024, + 2025, + 2026 + ] + }, + { + "slug": "software-and-computational-systems-lab-at-lmu-munich", + "name": "Software and Computational Systems Lab at LMU Munich", + "first_year": 2018, + "last_year": 2025, + "total_projects": 14, + "is_currently_active": false, + "active_years": [ + 2018, + 2019, + 2023, + 2024, 2025 ] }, @@ -104,10 +106,14 @@ "2025": { "organizationCount": 2, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.636Z" + "generated_at": "2026-02-19T13:36:02.836Z" } } \ No newline at end of file diff --git a/new-api-details/topics/fortran.json b/new-api-details/topics/fortran.json index 8656a0cd..5180f70d 100644 --- a/new-api-details/topics/fortran.json +++ b/new-api-details/topics/fortran.json @@ -1,10 +1,11 @@ { "slug": "fortran", "name": "Fortran", - "published_at": "2026-01-25T16:06:28.988Z", + "published_at": "2026-02-19T13:36:01.434Z", "organizationCount": 1, "projectCount": 21, "years": [ + 2026, 2025, 2024, 2023, @@ -16,7 +17,7 @@ "slug": "fortran-lang", "name": "Fortran-lang", "first_year": 2021, - "last_year": 2025, + "last_year": 2026, "total_projects": 21, "is_currently_active": true, "active_years": [ @@ -24,7 +25,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -48,10 +50,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.988Z" + "generated_at": "2026-02-19T13:36:01.434Z" } } \ No newline at end of file diff --git a/new-api-details/topics/forum.json b/new-api-details/topics/forum.json index 719762e5..0a121e83 100644 --- a/new-api-details/topics/forum.json +++ b/new-api-details/topics/forum.json @@ -1,7 +1,7 @@ { "slug": "forum", "name": "forum", - "published_at": "2026-01-25T16:06:28.856Z", + "published_at": "2026-02-19T13:36:01.201Z", "organizationCount": 3, "projectCount": 48, "years": [ @@ -13,6 +13,22 @@ 2016 ], "organizations": [ + { + "slug": "public-lab", + "name": "Public Lab", + "first_year": 2016, + "last_year": 2022, + "total_projects": 38, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2021, + 2022 + ] + }, { "slug": "discourse", "name": "Discourse", @@ -36,22 +52,6 @@ 2017, 2018 ] - }, - { - "slug": "public-lab", - "name": "Public Lab", - "first_year": 2016, - "last_year": 2022, - "total_projects": 38, - "is_currently_active": false, - "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2021, - 2022 - ] } ], "yearlyStats": { @@ -82,6 +82,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.856Z" + "generated_at": "2026-02-19T13:36:01.201Z" } } \ No newline at end of file diff --git a/new-api-details/topics/fpga.json b/new-api-details/topics/fpga.json index 092483b0..a70a7d65 100644 --- a/new-api-details/topics/fpga.json +++ b/new-api-details/topics/fpga.json @@ -1,10 +1,11 @@ { "slug": "fpga", "name": "fpga", - "published_at": "2026-01-25T16:06:28.518Z", + "published_at": "2026-02-19T13:36:00.520Z", "organizationCount": 6, "projectCount": 103, "years": [ + 2026, 2025, 2024, 2023, @@ -17,27 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "apertus-association", - "name": "Apertus Association", - "first_year": 2017, - "last_year": 2022, - "total_projects": 18, - "is_currently_active": false, - "active_years": [ - 2017, - 2018, - 2019, - 2020, - 2021, - 2022 - ] - }, { "slug": "free-and-open-source-silicon-foundation", "name": "Free and Open Source Silicon Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 60, "is_currently_active": true, "active_years": [ @@ -50,7 +35,24 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "apertus-association", + "name": "Apertus Association", + "first_year": 2017, + "last_year": 2022, + "total_projects": 18, + "is_currently_active": false, + "active_years": [ + 2017, + 2018, + 2019, + 2020, + 2021, + 2022 ] }, { @@ -67,15 +69,17 @@ ] }, { - "slug": "polly-labs", - "name": "Polly Labs", - "first_year": 2017, - "last_year": 2018, - "total_projects": 4, + "slug": "timvideosus", + "name": "TimVideos.us", + "first_year": 2016, + "last_year": 2019, + "total_projects": 6, "is_currently_active": false, "active_years": [ + 2016, 2017, - 2018 + 2018, + 2019 ] }, { @@ -92,17 +96,15 @@ ] }, { - "slug": "timvideosus", - "name": "TimVideos.us", - "first_year": 2016, - "last_year": 2019, - "total_projects": 6, + "slug": "polly-labs", + "name": "Polly Labs", + "first_year": 2017, + "last_year": 2018, + "total_projects": 4, "is_currently_active": false, "active_years": [ - 2016, 2017, - 2018, - 2019 + 2018 ] } ], @@ -146,10 +148,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.518Z" + "generated_at": "2026-02-19T13:36:00.520Z" } } \ No newline at end of file diff --git a/new-api-details/topics/framework-development.json b/new-api-details/topics/framework-development.json index 5a376156..9aae4c72 100644 --- a/new-api-details/topics/framework-development.json +++ b/new-api-details/topics/framework-development.json @@ -1,7 +1,7 @@ { "slug": "framework-development", "name": "framework development", - "published_at": "2026-01-25T16:06:29.840Z", + "published_at": "2026-02-19T13:36:02.072Z", "organizationCount": 1, "projectCount": 7, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.840Z" + "generated_at": "2026-02-19T13:36:02.072Z" } } \ No newline at end of file diff --git a/new-api-details/topics/framework.json b/new-api-details/topics/framework.json index f7d80fa9..2b1aca7f 100644 --- a/new-api-details/topics/framework.json +++ b/new-api-details/topics/framework.json @@ -1,10 +1,11 @@ { "slug": "framework", "name": "framework", - "published_at": "2026-01-25T16:06:28.901Z", + "published_at": "2026-02-19T13:36:01.249Z", "organizationCount": 5, "projectCount": 66, "years": [ + 2026, 2025, 2024, 2022, @@ -16,13 +17,30 @@ 2016 ], "organizations": [ + { + "slug": "robocomp", + "name": "RoboComp", + "first_year": 2016, + "last_year": 2022, + "total_projects": 57, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022 + ] + }, { "slug": "electron", "name": "Electron", "first_year": 2022, "last_year": 2025, "total_projects": 4, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2024, @@ -33,29 +51,24 @@ "slug": "neutralinojs", "name": "Neutralinojs", "first_year": 2022, - "last_year": 2024, + "last_year": 2026, "total_projects": 4, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2022, - 2024 + 2024, + 2026 ] }, { - "slug": "robocomp", - "name": "RoboComp", - "first_year": 2016, - "last_year": 2022, - "total_projects": 57, + "slug": "seastar", + "name": "Seastar", + "first_year": 2018, + "last_year": 2018, + "total_projects": 1, "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022 + 2018 ] }, { @@ -68,17 +81,6 @@ "active_years": [ 2022 ] - }, - { - "slug": "seastar", - "name": "Seastar", - "first_year": 2018, - "last_year": 2018, - "total_projects": 1, - "is_currently_active": false, - "active_years": [ - 2018 - ] } ], "yearlyStats": { @@ -117,10 +119,14 @@ "2025": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.901Z" + "generated_at": "2026-02-19T13:36:01.249Z" } } \ No newline at end of file diff --git a/new-api-details/topics/frameworks.json b/new-api-details/topics/frameworks.json index 3869c83b..c394a3c8 100644 --- a/new-api-details/topics/frameworks.json +++ b/new-api-details/topics/frameworks.json @@ -1,10 +1,11 @@ { "slug": "frameworks", "name": "frameworks", - "published_at": "2026-01-25T16:06:28.890Z", + "published_at": "2026-02-19T13:36:01.236Z", "organizationCount": 2, "projectCount": 94, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "eclipse-foundation", "name": "Eclipse Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 68, "is_currently_active": true, "active_years": [ @@ -33,16 +34,17 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "haiku", "name": "Haiku", "first_year": 2017, - "last_year": 2024, + "last_year": 2026, "total_projects": 26, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, @@ -51,7 +53,8 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] } ], @@ -95,10 +98,14 @@ "2025": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.890Z" + "generated_at": "2026-02-19T13:36:01.236Z" } } \ No newline at end of file diff --git a/new-api-details/topics/free-and-open-source-software-license-and-origin.json b/new-api-details/topics/free-and-open-source-software-license-and-origin.json index e38ffe69..310bdce8 100644 --- a/new-api-details/topics/free-and-open-source-software-license-and-origin.json +++ b/new-api-details/topics/free-and-open-source-software-license-and-origin.json @@ -1,10 +1,11 @@ { "slug": "free-and-open-source-software-license-and-origin", "name": "free and open source software license and origin", - "published_at": "2026-01-25T16:06:28.407Z", + "published_at": "2026-02-19T13:36:00.300Z", "organizationCount": 1, "projectCount": 32, "years": [ + 2026, 2025, 2024, 2023, @@ -19,7 +20,7 @@ "slug": "aboutcode", "name": "AboutCode", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 32, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.407Z" + "generated_at": "2026-02-19T13:36:00.300Z" } } \ No newline at end of file diff --git a/new-api-details/topics/free-and-open-source-software.json b/new-api-details/topics/free-and-open-source-software.json index 809771e7..6bbb0ca6 100644 --- a/new-api-details/topics/free-and-open-source-software.json +++ b/new-api-details/topics/free-and-open-source-software.json @@ -1,10 +1,11 @@ { "slug": "free-and-open-source-software", "name": "free and open source software", - "published_at": "2026-01-25T16:06:29.630Z", + "published_at": "2026-02-19T13:36:02.840Z", "organizationCount": 2, "projectCount": 44, "years": [ + 2026, 2025, 2024, 2023, @@ -17,24 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "software-heritage", - "name": "Software Heritage", - "first_year": 2019, - "last_year": 2022, - "total_projects": 6, - "is_currently_active": false, - "active_years": [ - 2019, - 2021, - 2022 - ] - }, { "slug": "the-netbsd-foundation", "name": "The NetBSD Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 38, "is_currently_active": true, "active_years": [ @@ -47,7 +35,21 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "software-heritage", + "name": "Software Heritage", + "first_year": 2019, + "last_year": 2022, + "total_projects": 6, + "is_currently_active": false, + "active_years": [ + 2019, + 2021, + 2022 ] } ], @@ -91,10 +93,14 @@ "2025": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.630Z" + "generated_at": "2026-02-19T13:36:02.840Z" } } \ No newline at end of file diff --git a/new-api-details/topics/free-software.json b/new-api-details/topics/free-software.json index cba440f1..714b42a2 100644 --- a/new-api-details/topics/free-software.json +++ b/new-api-details/topics/free-software.json @@ -1,10 +1,11 @@ { "slug": "free-software", "name": "free software", - "published_at": "2026-01-25T16:06:29.044Z", + "published_at": "2026-02-19T13:36:01.678Z", "organizationCount": 2, "projectCount": 134, "years": [ + 2026, 2024, 2023, 2020, @@ -15,35 +16,36 @@ ], "organizations": [ { - "slug": "gnu-project", - "name": "GNU Project", + "slug": "mozilla", + "name": "Mozilla", "first_year": 2016, - "last_year": 2024, - "total_projects": 59, + "last_year": 2020, + "total_projects": 75, "is_currently_active": false, "active_years": [ 2016, 2017, 2018, 2019, - 2020, - 2023, - 2024 + 2020 ] }, { - "slug": "mozilla", - "name": "Mozilla", + "slug": "gnu-project", + "name": "GNU Project", "first_year": 2016, - "last_year": 2020, - "total_projects": 75, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 59, + "is_currently_active": true, "active_years": [ 2016, 2017, 2018, 2019, - 2020 + 2020, + 2023, + 2024, + 2026 ] } ], @@ -75,10 +77,14 @@ "2024": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.044Z" + "generated_at": "2026-02-19T13:36:01.678Z" } } \ No newline at end of file diff --git a/new-api-details/topics/free-speech.json b/new-api-details/topics/free-speech.json index e4edc178..b12b9c05 100644 --- a/new-api-details/topics/free-speech.json +++ b/new-api-details/topics/free-speech.json @@ -1,7 +1,7 @@ { "slug": "free-speech", "name": "free-speech", - "published_at": "2026-01-25T16:06:29.727Z", + "published_at": "2026-02-19T13:36:02.989Z", "organizationCount": 1, "projectCount": 19, "years": [ @@ -18,7 +18,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 19, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -52,6 +52,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.727Z" + "generated_at": "2026-02-19T13:36:02.989Z" } } \ No newline at end of file diff --git a/new-api-details/topics/front-end.json b/new-api-details/topics/front-end.json index d5322688..ec2abc16 100644 --- a/new-api-details/topics/front-end.json +++ b/new-api-details/topics/front-end.json @@ -1,7 +1,7 @@ { "slug": "front-end", "name": "front-end", - "published_at": "2026-01-25T16:06:28.455Z", + "published_at": "2026-02-19T13:36:00.434Z", "organizationCount": 2, "projectCount": 40, "years": [ @@ -13,6 +13,19 @@ 2017 ], "organizations": [ + { + "slug": "casbin", + "name": "Casbin", + "first_year": 2020, + "last_year": 2022, + "total_projects": 22, + "is_currently_active": false, + "active_years": [ + 2020, + 2021, + 2022 + ] + }, { "slug": "amahi", "name": "Amahi", @@ -26,19 +39,6 @@ 2019, 2020 ] - }, - { - "slug": "casbin", - "name": "Casbin", - "first_year": 2020, - "last_year": 2022, - "total_projects": 22, - "is_currently_active": false, - "active_years": [ - 2020, - 2021, - 2022 - ] } ], "yearlyStats": { @@ -69,6 +69,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.455Z" + "generated_at": "2026-02-19T13:36:00.434Z" } } \ No newline at end of file diff --git a/new-api-details/topics/frontend.json b/new-api-details/topics/frontend.json index 6cb00492..24aab255 100644 --- a/new-api-details/topics/frontend.json +++ b/new-api-details/topics/frontend.json @@ -1,10 +1,11 @@ { "slug": "frontend", "name": "frontend", - "published_at": "2026-01-25T16:06:29.256Z", + "published_at": "2026-02-19T13:36:02.203Z", "organizationCount": 2, "projectCount": 216, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "llvm-compiler-infrastructure", "name": "LLVM Compiler Infrastructure", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 122, "is_currently_active": true, "active_years": [ @@ -34,14 +35,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "openmrs", "name": "OpenMRS", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 94, "is_currently_active": true, "active_years": [ @@ -54,7 +56,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -98,10 +101,14 @@ "2025": { "organizationCount": 2, "projectCount": 23 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.256Z" + "generated_at": "2026-02-19T13:36:02.203Z" } } \ No newline at end of file diff --git a/new-api-details/topics/full-stack-web-and-mobile.json b/new-api-details/topics/full-stack-web-and-mobile.json index 23a1288b..5b7d4393 100644 --- a/new-api-details/topics/full-stack-web-and-mobile.json +++ b/new-api-details/topics/full-stack-web-and-mobile.json @@ -1,10 +1,11 @@ { "slug": "full-stack-web-and-mobile", "name": "full stack web and mobile", - "published_at": "2026-01-25T16:06:29.809Z", + "published_at": "2026-02-19T13:36:01.745Z", "organizationCount": 2, "projectCount": 138, "years": [ + 2026, 2025, 2024, 2023, @@ -17,23 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "grpc", - "name": "gRPC", - "first_year": 2016, - "last_year": 2018, - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2016, - 2018 - ] - }, { "slug": "zulip", "name": "Zulip", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 135, "is_currently_active": true, "active_years": [ @@ -46,7 +35,20 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "grpc", + "name": "gRPC", + "first_year": 2016, + "last_year": 2018, + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2016, + 2018 ] } ], @@ -90,10 +92,14 @@ "2025": { "organizationCount": 1, "projectCount": 14 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.809Z" + "generated_at": "2026-02-19T13:36:01.745Z" } } \ No newline at end of file diff --git a/new-api-details/topics/full-stack.json b/new-api-details/topics/full-stack.json index 6b5fdde3..cc6f9ff1 100644 --- a/new-api-details/topics/full-stack.json +++ b/new-api-details/topics/full-stack.json @@ -1,10 +1,11 @@ { "slug": "full-stack", "name": "full stack", - "published_at": "2026-01-25T16:06:29.601Z", - "organizationCount": 1, + "published_at": "2026-02-19T13:36:02.158Z", + "organizationCount": 2, "projectCount": 4, "years": [ + 2026, 2018, 2017 ], @@ -20,6 +21,17 @@ 2017, 2018 ] + }, + { + "slug": "learning-unlimited", + "name": "Learning Unlimited", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] } ], "yearlyStats": { @@ -30,10 +42,14 @@ "2018": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.601Z" + "generated_at": "2026-02-19T13:36:02.158Z" } } \ No newline at end of file diff --git a/new-api-details/topics/function-programming-language.json b/new-api-details/topics/function-programming-language.json index 946d1946..b26fbe79 100644 --- a/new-api-details/topics/function-programming-language.json +++ b/new-api-details/topics/function-programming-language.json @@ -1,10 +1,11 @@ { "slug": "function-programming-language", "name": "function programming language", - "published_at": "2026-01-25T16:06:29.068Z", + "published_at": "2026-02-19T13:36:01.736Z", "organizationCount": 1, "projectCount": 10, "years": [ + 2026, 2025, 2024, 2023, @@ -15,14 +16,15 @@ "slug": "grame", "name": "GRAME", "first_year": 2022, - "last_year": 2025, + "last_year": 2026, "total_projects": 10, "is_currently_active": true, "active_years": [ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -42,10 +44,14 @@ "2025": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.068Z" + "generated_at": "2026-02-19T13:36:01.736Z" } } \ No newline at end of file diff --git a/new-api-details/topics/functional-programming.json b/new-api-details/topics/functional-programming.json index 04fef5ef..6fe45259 100644 --- a/new-api-details/topics/functional-programming.json +++ b/new-api-details/topics/functional-programming.json @@ -1,10 +1,11 @@ { "slug": "functional-programming", "name": "functional programming", - "published_at": "2026-01-25T16:06:28.780Z", + "published_at": "2026-02-19T13:36:01.041Z", "organizationCount": 9, "projectCount": 154, "years": [ + 2026, 2025, 2024, 2023, @@ -17,57 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "clojure", - "name": "Clojure", - "first_year": 2017, - "last_year": 2017, - "total_projects": 0, - "is_currently_active": false, - "active_years": [ - 2017 - ] - }, - { - "slug": "d-language-foundation", - "name": "D Language Foundation", - "first_year": 2016, - "last_year": 2025, - "total_projects": 11, - "is_currently_active": true, - "active_years": [ - 2016, - 2019, - 2025 - ] - }, - { - "slug": "elm-software-foundation", - "name": "Elm Software Foundation", - "first_year": 2017, - "last_year": 2017, - "total_projects": 1, - "is_currently_active": false, - "active_years": [ - 2017 - ] - }, - { - "slug": "eta", - "name": "Eta", - "first_year": 2018, - "last_year": 2018, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2018 - ] - }, { "slug": "haskellorg", "name": "Haskell.org", "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "total_projects": 70, "is_currently_active": true, "active_years": [ @@ -77,21 +32,8 @@ 2021, 2022, 2024, - 2025 - ] - }, - { - "slug": "hydra-ecosystem", - "name": "Hydra Ecosystem", - "first_year": 2018, - "last_year": 2021, - "total_projects": 8, - "is_currently_active": false, - "active_years": [ - 2018, - 2019, - 2020, - 2021 + 2025, + 2026 ] }, { @@ -100,7 +42,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 56, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -112,6 +54,34 @@ 2025 ] }, + { + "slug": "d-language-foundation", + "name": "D Language Foundation", + "first_year": 2016, + "last_year": 2026, + "total_projects": 11, + "is_currently_active": true, + "active_years": [ + 2016, + 2019, + 2025, + 2026 + ] + }, + { + "slug": "hydra-ecosystem", + "name": "Hydra Ecosystem", + "first_year": 2018, + "last_year": 2021, + "total_projects": 8, + "is_currently_active": false, + "active_years": [ + 2018, + 2019, + 2020, + 2021 + ] + }, { "slug": "the-perl-foundation", "name": "The Perl Foundation", @@ -123,15 +93,49 @@ 2019 ] }, + { + "slug": "eta", + "name": "Eta", + "first_year": 2018, + "last_year": 2018, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2018 + ] + }, { "slug": "typelevel", "name": "Typelevel", "first_year": 2025, - "last_year": 2025, + "last_year": 2026, "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 + ] + }, + { + "slug": "elm-software-foundation", + "name": "Elm Software Foundation", + "first_year": 2017, + "last_year": 2017, + "total_projects": 1, + "is_currently_active": false, + "active_years": [ + 2017 + ] + }, + { + "slug": "clojure", + "name": "Clojure", + "first_year": 2017, + "last_year": 2017, + "total_projects": 0, + "is_currently_active": false, + "active_years": [ + 2017 ] } ], @@ -175,10 +179,14 @@ "2025": { "organizationCount": 8, "projectCount": 58 + }, + "2026": { + "organizationCount": 5, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.780Z" + "generated_at": "2026-02-19T13:36:01.041Z" } } \ No newline at end of file diff --git a/new-api-details/topics/functional-safety.json b/new-api-details/topics/functional-safety.json index b7764b06..7e2aa300 100644 --- a/new-api-details/topics/functional-safety.json +++ b/new-api-details/topics/functional-safety.json @@ -1,7 +1,7 @@ { "slug": "functional-safety", "name": "functional safety", - "published_at": "2026-01-25T16:06:29.017Z", + "published_at": "2026-02-19T13:36:01.589Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.017Z" + "generated_at": "2026-02-19T13:36:01.589Z" } } \ No newline at end of file diff --git a/new-api-details/topics/functional-testing.json b/new-api-details/topics/functional-testing.json index b3f1fad4..9ad03c44 100644 --- a/new-api-details/topics/functional-testing.json +++ b/new-api-details/topics/functional-testing.json @@ -1,7 +1,7 @@ { "slug": "functional-testing", "name": "Functional Testing", - "published_at": "2026-01-25T16:06:29.236Z", + "published_at": "2026-02-19T13:36:02.097Z", "organizationCount": 2, "projectCount": 13, "years": [ @@ -16,7 +16,7 @@ "first_year": 2023, "last_year": 2025, "total_projects": 11, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2023, 2024, @@ -51,6 +51,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.236Z" + "generated_at": "2026-02-19T13:36:02.097Z" } } \ No newline at end of file diff --git a/new-api-details/topics/fundraising.json b/new-api-details/topics/fundraising.json index 6947fa18..79d3e282 100644 --- a/new-api-details/topics/fundraising.json +++ b/new-api-details/topics/fundraising.json @@ -1,7 +1,7 @@ { "slug": "fundraising", "name": "fundraising", - "published_at": "2026-01-25T16:06:28.772Z", + "published_at": "2026-02-19T13:36:01.025Z", "organizationCount": 1, "projectCount": 22, "years": [ @@ -52,6 +52,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.773Z" + "generated_at": "2026-02-19T13:36:01.025Z" } } \ No newline at end of file diff --git a/new-api-details/topics/future-internet-architecture.json b/new-api-details/topics/future-internet-architecture.json index fb96ef81..fdb7975b 100644 --- a/new-api-details/topics/future-internet-architecture.json +++ b/new-api-details/topics/future-internet-architecture.json @@ -1,7 +1,7 @@ { "slug": "future-internet-architecture", "name": "future internet architecture", - "published_at": "2026-01-25T16:06:28.623Z", + "published_at": "2026-02-19T13:36:00.858Z", "organizationCount": 1, "projectCount": 8, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.623Z" + "generated_at": "2026-02-19T13:36:00.858Z" } } \ No newline at end of file diff --git a/new-api-details/topics/fuzzing.json b/new-api-details/topics/fuzzing.json index 6b4922f1..75bbf6c7 100644 --- a/new-api-details/topics/fuzzing.json +++ b/new-api-details/topics/fuzzing.json @@ -1,10 +1,11 @@ { "slug": "fuzzing", "name": "fuzzing", - "published_at": "2026-01-25T16:06:28.372Z", + "published_at": "2026-02-19T13:36:00.401Z", "organizationCount": 4, "projectCount": 125, "years": [ + 2026, 2025, 2024, 2023, @@ -17,11 +18,32 @@ 2016 ], "organizations": [ + { + "slug": "the-honeynet-project", + "name": "The Honeynet Project", + "first_year": 2016, + "last_year": 2026, + "total_projects": 101, + "is_currently_active": true, + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ] + }, { "slug": "aflplusplus", "name": "AFLplusplus", "first_year": 2020, - "last_year": 2025, + "last_year": 2026, "total_projects": 10, "is_currently_active": true, "active_years": [ @@ -30,7 +52,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -52,29 +75,9 @@ "first_year": 2023, "last_year": 2025, "total_projects": 6, - "is_currently_active": true, - "active_years": [ - 2023, - 2025 - ] - }, - { - "slug": "the-honeynet-project", - "name": "The Honeynet Project", - "first_year": 2016, - "last_year": 2025, - "total_projects": 101, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, 2023, - 2024, 2025 ] } @@ -119,10 +122,14 @@ "2025": { "organizationCount": 3, "projectCount": 14 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.372Z" + "generated_at": "2026-02-19T13:36:00.401Z" } } \ No newline at end of file diff --git a/new-api-details/topics/game-design.json b/new-api-details/topics/game-design.json index e2692909..0b2cbeb5 100644 --- a/new-api-details/topics/game-design.json +++ b/new-api-details/topics/game-design.json @@ -1,7 +1,7 @@ { "slug": "game-design", "name": "game design", - "published_at": "2026-01-25T16:06:29.676Z", + "published_at": "2026-02-19T13:36:02.905Z", "organizationCount": 1, "projectCount": 9, "years": [ @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.676Z" + "generated_at": "2026-02-19T13:36:02.905Z" } } \ No newline at end of file diff --git a/new-api-details/topics/game-development.json b/new-api-details/topics/game-development.json index ed2780f3..3f931259 100644 --- a/new-api-details/topics/game-development.json +++ b/new-api-details/topics/game-development.json @@ -1,10 +1,11 @@ { "slug": "game-development", "name": "game development", - "published_at": "2026-01-25T16:06:29.100Z", + "published_at": "2026-02-19T13:36:01.710Z", "organizationCount": 3, "projectCount": 39, "years": [ + 2026, 2024, 2023, 2022, @@ -48,11 +49,12 @@ "slug": "tiled", "name": "Tiled", "first_year": 2017, - "last_year": 2017, + "last_year": 2026, "total_projects": 3, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ - 2017 + 2017, + 2026 ] } ], @@ -88,10 +90,14 @@ "2024": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.100Z" + "generated_at": "2026-02-19T13:36:01.710Z" } } \ No newline at end of file diff --git a/new-api-details/topics/game-engine.json b/new-api-details/topics/game-engine.json index 3b7531b0..b6d8bd41 100644 --- a/new-api-details/topics/game-engine.json +++ b/new-api-details/topics/game-engine.json @@ -1,7 +1,7 @@ { "slug": "game-engine", "name": "game engine", - "published_at": "2026-01-25T16:06:29.099Z", + "published_at": "2026-02-19T13:36:01.708Z", "organizationCount": 1, "projectCount": 27, "years": [ @@ -52,6 +52,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.099Z" + "generated_at": "2026-02-19T13:36:01.708Z" } } \ No newline at end of file diff --git a/new-api-details/topics/game-engines.json b/new-api-details/topics/game-engines.json index 10d70455..0e91d17c 100644 --- a/new-api-details/topics/game-engines.json +++ b/new-api-details/topics/game-engines.json @@ -1,10 +1,11 @@ { "slug": "game-engines", "name": "game engines", - "published_at": "2026-01-25T16:06:29.101Z", + "published_at": "2026-02-19T13:36:01.713Z", "organizationCount": 4, "projectCount": 188, "years": [ + 2026, 2025, 2024, 2023, @@ -17,26 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "godot-engine", - "name": "Godot Engine", - "first_year": 2018, - "last_year": 2022, - "total_projects": 27, - "is_currently_active": false, - "active_years": [ - 2018, - 2019, - 2020, - 2021, - 2022 - ] - }, { "slug": "international-catrobat-association", "name": "International Catrobat Association", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 84, "is_currently_active": true, "active_years": [ @@ -49,14 +35,31 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "the-terasology-foundation", + "name": "The Terasology Foundation", + "first_year": 2016, + "last_year": 2021, + "total_projects": 43, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021 ] }, { "slug": "scummvm", "name": "ScummVM", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 34, "is_currently_active": true, "active_years": [ @@ -69,23 +72,23 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "the-terasology-foundation", - "name": "The Terasology Foundation", - "first_year": 2016, - "last_year": 2021, - "total_projects": 43, + "slug": "godot-engine", + "name": "Godot Engine", + "first_year": 2018, + "last_year": 2022, + "total_projects": 27, "is_currently_active": false, "active_years": [ - 2016, - 2017, 2018, 2019, 2020, - 2021 + 2021, + 2022 ] } ], @@ -129,10 +132,14 @@ "2025": { "organizationCount": 2, "projectCount": 12 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.101Z" + "generated_at": "2026-02-19T13:36:01.713Z" } } \ No newline at end of file diff --git a/new-api-details/topics/game-theory.json b/new-api-details/topics/game-theory.json index a10626bb..5c5d9880 100644 --- a/new-api-details/topics/game-theory.json +++ b/new-api-details/topics/game-theory.json @@ -1,10 +1,11 @@ { "slug": "game-theory", "name": "game theory", - "published_at": "2026-01-25T16:06:29.071Z", - "organizationCount": 1, + "published_at": "2026-02-19T13:36:01.573Z", + "organizationCount": 2, "projectCount": 3, "years": [ + 2026, 2016 ], "organizations": [ @@ -18,16 +19,31 @@ "active_years": [ 2016 ] + }, + { + "slug": "gambit-the-package-for-computation-in-game-theory", + "name": "Gambit: The package for computation in game theory", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] } ], "yearlyStats": { "2016": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.071Z" + "generated_at": "2026-02-19T13:36:01.573Z" } } \ No newline at end of file diff --git a/new-api-details/topics/game.json b/new-api-details/topics/game.json index caac5b14..a76edeae 100644 --- a/new-api-details/topics/game.json +++ b/new-api-details/topics/game.json @@ -1,10 +1,11 @@ { "slug": "game", "name": "game", - "published_at": "2026-01-25T16:06:29.617Z", + "published_at": "2026-02-19T13:36:02.820Z", "organizationCount": 3, "projectCount": 80, "years": [ + 2026, 2025, 2024, 2023, @@ -18,50 +19,52 @@ ], "organizations": [ { - "slug": "scummvm", - "name": "ScummVM", + "slug": "the-terasology-foundation", + "name": "The Terasology Foundation", "first_year": 2016, - "last_year": 2025, - "total_projects": 34, - "is_currently_active": true, + "last_year": 2021, + "total_projects": 43, + "is_currently_active": false, "active_years": [ 2016, 2017, 2018, 2019, 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2021 ] }, { - "slug": "the-terasology-foundation", - "name": "The Terasology Foundation", + "slug": "scummvm", + "name": "ScummVM", "first_year": 2016, - "last_year": 2021, - "total_projects": 43, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 34, + "is_currently_active": true, "active_years": [ 2016, 2017, 2018, 2019, 2020, - 2021 + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { "slug": "tiled", "name": "Tiled", "first_year": 2017, - "last_year": 2017, + "last_year": 2026, "total_projects": 3, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ - 2017 + 2017, + 2026 ] } ], @@ -105,10 +108,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.617Z" + "generated_at": "2026-02-19T13:36:02.820Z" } } \ No newline at end of file diff --git a/new-api-details/topics/games.json b/new-api-details/topics/games.json index 706900be..4edae9b4 100644 --- a/new-api-details/topics/games.json +++ b/new-api-details/topics/games.json @@ -1,10 +1,11 @@ { "slug": "games", "name": "games", - "published_at": "2026-01-25T16:06:28.605Z", - "organizationCount": 9, - "projectCount": 392, + "published_at": "2026-02-19T13:36:00.771Z", + "organizationCount": 10, + "projectCount": 395, "years": [ + 2026, 2025, 2024, 2023, @@ -18,11 +19,11 @@ ], "organizations": [ { - "slug": "blender-foundation", - "name": "Blender Foundation", + "slug": "gnome-foundation", + "name": "GNOME Foundation", "first_year": 2016, - "last_year": 2025, - "total_projects": 64, + "last_year": 2026, + "total_projects": 115, "is_currently_active": true, "active_years": [ 2016, @@ -34,15 +35,16 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "gnome-foundation", - "name": "GNOME Foundation", + "slug": "sugar-labs", + "name": "Sugar Labs", "first_year": 2016, - "last_year": 2025, - "total_projects": 115, + "last_year": 2026, + "total_projects": 89, "is_currently_active": true, "active_years": [ 2016, @@ -54,75 +56,53 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "kodi", - "name": "Kodi", - "first_year": 2017, - "last_year": 2022, - "total_projects": 12, - "is_currently_active": false, + "slug": "blender-foundation", + "name": "Blender Foundation", + "first_year": 2016, + "last_year": 2026, + "total_projects": 64, + "is_currently_active": true, "active_years": [ + 2016, 2017, 2018, 2019, 2020, 2021, - 2022 - ] - }, - { - "slug": "luarocks", - "name": "LuaRocks", - "first_year": 2017, - "last_year": 2019, - "total_projects": 5, - "is_currently_active": false, - "active_years": [ - 2017, - 2018, - 2019 + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "peragro", - "name": "Peragro", + "slug": "the-terasology-foundation", + "name": "The Terasology Foundation", "first_year": 2016, - "last_year": 2016, - "total_projects": 0, + "last_year": 2021, + "total_projects": 43, "is_currently_active": false, - "active_years": [ - 2016 - ] - }, - { - "slug": "scummvm", - "name": "ScummVM", - "first_year": 2016, - "last_year": 2025, - "total_projects": 34, - "is_currently_active": true, "active_years": [ 2016, 2017, 2018, 2019, 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2021 ] }, { - "slug": "sugar-labs", - "name": "Sugar Labs", + "slug": "scummvm", + "name": "ScummVM", "first_year": 2016, - "last_year": 2025, - "total_projects": 89, + "last_year": 2026, + "total_projects": 34, "is_currently_active": true, "active_years": [ 2016, @@ -134,7 +114,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -150,19 +131,55 @@ ] }, { - "slug": "the-terasology-foundation", - "name": "The Terasology Foundation", - "first_year": 2016, - "last_year": 2021, - "total_projects": 43, + "slug": "kodi", + "name": "Kodi", + "first_year": 2017, + "last_year": 2022, + "total_projects": 12, "is_currently_active": false, "active_years": [ - 2016, 2017, 2018, 2019, 2020, - 2021 + 2021, + 2022 + ] + }, + { + "slug": "luarocks", + "name": "LuaRocks", + "first_year": 2017, + "last_year": 2019, + "total_projects": 5, + "is_currently_active": false, + "active_years": [ + 2017, + 2018, + 2019 + ] + }, + { + "slug": "tiled", + "name": "Tiled", + "first_year": 2017, + "last_year": 2026, + "total_projects": 3, + "is_currently_active": true, + "active_years": [ + 2017, + 2026 + ] + }, + { + "slug": "peragro", + "name": "Peragro", + "first_year": 2016, + "last_year": 2016, + "total_projects": 0, + "is_currently_active": false, + "active_years": [ + 2016 ] } ], @@ -172,8 +189,8 @@ "projectCount": 56 }, "2017": { - "organizationCount": 8, - "projectCount": 60 + "organizationCount": 9, + "projectCount": 63 }, "2018": { "organizationCount": 7, @@ -206,10 +223,14 @@ "2025": { "organizationCount": 4, "projectCount": 29 + }, + "2026": { + "organizationCount": 5, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.605Z" + "generated_at": "2026-02-19T13:36:00.771Z" } } \ No newline at end of file diff --git a/new-api-details/topics/gaming.json b/new-api-details/topics/gaming.json index f513456c..bf7762fb 100644 --- a/new-api-details/topics/gaming.json +++ b/new-api-details/topics/gaming.json @@ -1,10 +1,11 @@ { "slug": "gaming", "name": "gaming", - "published_at": "2026-01-25T16:06:29.012Z", + "published_at": "2026-02-19T13:36:01.582Z", "organizationCount": 4, "projectCount": 123, "years": [ + 2026, 2025, 2024, 2023, @@ -18,14 +19,24 @@ ], "organizations": [ { - "slug": "gdevelop", - "name": "GDevelop", - "first_year": 2020, - "last_year": 2020, - "total_projects": 2, - "is_currently_active": false, + "slug": "international-catrobat-association", + "name": "International Catrobat Association", + "first_year": 2016, + "last_year": 2026, + "total_projects": 84, + "is_currently_active": true, "active_years": [ - 2020 + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { @@ -43,37 +54,28 @@ 2022 ] }, - { - "slug": "international-catrobat-association", - "name": "International Catrobat Association", - "first_year": 2016, - "last_year": 2025, - "total_projects": 84, - "is_currently_active": true, - "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 - ] - }, { "slug": "zendalona", "name": "Zendalona", "first_year": 2024, "last_year": 2025, "total_projects": 10, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2024, 2025 ] + }, + { + "slug": "gdevelop", + "name": "GDevelop", + "first_year": 2020, + "last_year": 2020, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2020 + ] } ], "yearlyStats": { @@ -116,10 +118,14 @@ "2025": { "organizationCount": 2, "projectCount": 13 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.012Z" + "generated_at": "2026-02-19T13:36:01.582Z" } } \ No newline at end of file diff --git a/new-api-details/topics/gemma.json b/new-api-details/topics/gemma.json index 10435ea9..5f25a035 100644 --- a/new-api-details/topics/gemma.json +++ b/new-api-details/topics/gemma.json @@ -1,7 +1,7 @@ { "slug": "gemma", "name": "Gemma", - "published_at": "2026-01-25T16:06:29.102Z", + "published_at": "2026-02-19T13:36:01.719Z", "organizationCount": 1, "projectCount": 45, "years": [ @@ -14,7 +14,7 @@ "first_year": 2025, "last_year": 2025, "total_projects": 45, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2025 ] @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.102Z" + "generated_at": "2026-02-19T13:36:01.719Z" } } \ No newline at end of file diff --git a/new-api-details/topics/gen-ai.json b/new-api-details/topics/gen-ai.json index 90fe9787..e9a2dc21 100644 --- a/new-api-details/topics/gen-ai.json +++ b/new-api-details/topics/gen-ai.json @@ -1,10 +1,11 @@ { "slug": "gen-ai", "name": "gen ai", - "published_at": "2026-01-25T16:06:29.500Z", + "published_at": "2026-02-19T13:36:02.638Z", "organizationCount": 1, "projectCount": 32, "years": [ + 2026, 2025, 2024, 2023, @@ -15,14 +16,15 @@ "slug": "openvino-toolkit", "name": "OpenVINO Toolkit", "first_year": 2022, - "last_year": 2025, + "last_year": 2026, "total_projects": 32, "is_currently_active": true, "active_years": [ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -42,10 +44,14 @@ "2025": { "organizationCount": 1, "projectCount": 16 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.500Z" + "generated_at": "2026-02-19T13:36:02.638Z" } } \ No newline at end of file diff --git a/new-api-details/topics/genai.json b/new-api-details/topics/genai.json index 07b57155..7d098f0c 100644 --- a/new-api-details/topics/genai.json +++ b/new-api-details/topics/genai.json @@ -1,10 +1,11 @@ { "slug": "genai", "name": "GenAI", - "published_at": "2026-01-25T16:06:28.402Z", - "organizationCount": 1, + "published_at": "2026-02-19T13:36:00.558Z", + "organizationCount": 2, "projectCount": 3, "years": [ + 2026, 2025, 2024 ], @@ -13,12 +14,24 @@ "slug": "api-dash", "name": "API Dash", "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "total_projects": 3, "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "gemini-cli", + "name": "Gemini CLI", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 ] } ], @@ -30,10 +43,14 @@ "2025": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.402Z" + "generated_at": "2026-02-19T13:36:00.558Z" } } \ No newline at end of file diff --git a/new-api-details/topics/general-purpose-os.json b/new-api-details/topics/general-purpose-os.json index 59ed9410..a815dd3f 100644 --- a/new-api-details/topics/general-purpose-os.json +++ b/new-api-details/topics/general-purpose-os.json @@ -1,10 +1,11 @@ { "slug": "general-purpose-os", "name": "general purpose os", - "published_at": "2026-01-25T16:06:29.712Z", + "published_at": "2026-02-19T13:36:02.950Z", "organizationCount": 1, "projectCount": 38, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "the-netbsd-foundation", "name": "The NetBSD Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 38, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.712Z" + "generated_at": "2026-02-19T13:36:02.950Z" } } \ No newline at end of file diff --git a/new-api-details/topics/generative-ai.json b/new-api-details/topics/generative-ai.json index 3646a9bc..e2dca341 100644 --- a/new-api-details/topics/generative-ai.json +++ b/new-api-details/topics/generative-ai.json @@ -1,10 +1,11 @@ { "slug": "generative-ai", "name": "generative AI", - "published_at": "2026-01-25T16:06:29.217Z", + "published_at": "2026-02-19T13:36:02.041Z", "organizationCount": 3, "projectCount": 111, "years": [ + 2026, 2025, 2024, 2023, @@ -18,47 +19,49 @@ ], "organizations": [ { - "slug": "jina-ai", - "name": "Jina AI", - "first_year": 2023, - "last_year": 2023, - "total_projects": 1, - "is_currently_active": false, + "slug": "sugar-labs", + "name": "Sugar Labs", + "first_year": 2016, + "last_year": 2026, + "total_projects": 89, + "is_currently_active": true, "active_years": [ - 2023 + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { "slug": "kubeflow", "name": "Kubeflow", "first_year": 2020, - "last_year": 2025, + "last_year": 2026, "total_projects": 21, "is_currently_active": true, "active_years": [ 2020, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "sugar-labs", - "name": "Sugar Labs", - "first_year": 2016, - "last_year": 2025, - "total_projects": 89, - "is_currently_active": true, + "slug": "jina-ai", + "name": "Jina AI", + "first_year": 2023, + "last_year": 2023, + "total_projects": 1, + "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2023 ] } ], @@ -102,10 +105,14 @@ "2025": { "organizationCount": 2, "projectCount": 22 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.217Z" + "generated_at": "2026-02-19T13:36:02.041Z" } } \ No newline at end of file diff --git a/new-api-details/topics/generative-science.json b/new-api-details/topics/generative-science.json index af6677a4..9e43f03f 100644 --- a/new-api-details/topics/generative-science.json +++ b/new-api-details/topics/generative-science.json @@ -1,10 +1,11 @@ { "slug": "generative-science", "name": "Generative Science", - "published_at": "2026-01-25T16:06:29.564Z", + "published_at": "2026-02-19T13:36:02.752Z", "organizationCount": 1, "projectCount": 7, "years": [ + 2026, 2025, 2024 ], @@ -13,12 +14,13 @@ "slug": "project-mesa", "name": "Project Mesa", "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "total_projects": 7, "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -30,10 +32,14 @@ "2025": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.564Z" + "generated_at": "2026-02-19T13:36:02.752Z" } } \ No newline at end of file diff --git a/new-api-details/topics/generative-text.json b/new-api-details/topics/generative-text.json index 92e56eef..dbb2379a 100644 --- a/new-api-details/topics/generative-text.json +++ b/new-api-details/topics/generative-text.json @@ -1,7 +1,7 @@ { "slug": "generative-text", "name": "generative text", - "published_at": "2026-01-25T16:06:28.707Z", + "published_at": "2026-02-19T13:36:00.959Z", "organizationCount": 1, "projectCount": 20, "years": [ @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.707Z" + "generated_at": "2026-02-19T13:36:00.960Z" } } \ No newline at end of file diff --git a/new-api-details/topics/genetics.json b/new-api-details/topics/genetics.json index 1c6a8ad9..ece24fe5 100644 --- a/new-api-details/topics/genetics.json +++ b/new-api-details/topics/genetics.json @@ -1,10 +1,11 @@ { "slug": "genetics", "name": "genetics", - "published_at": "2026-01-25T16:06:29.090Z", + "published_at": "2026-02-19T13:36:01.635Z", "organizationCount": 1, "projectCount": 45, "years": [ + 2026, 2024, 2023, 2022, @@ -20,9 +21,9 @@ "slug": "global-alliance-for-genomics-and-health", "name": "Global Alliance for Genomics and Health", "first_year": 2016, - "last_year": 2024, + "last_year": 2026, "total_projects": 45, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -32,7 +33,8 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] } ], @@ -72,10 +74,14 @@ "2024": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.090Z" + "generated_at": "2026-02-19T13:36:01.635Z" } } \ No newline at end of file diff --git a/new-api-details/topics/genome-analysis.json b/new-api-details/topics/genome-analysis.json index f526b7cc..34e9470a 100644 --- a/new-api-details/topics/genome-analysis.json +++ b/new-api-details/topics/genome-analysis.json @@ -1,7 +1,7 @@ { "slug": "genome-analysis", "name": "genome analysis", - "published_at": "2026-01-25T16:06:29.776Z", + "published_at": "2026-02-19T13:36:03.135Z", "organizationCount": 1, "projectCount": 8, "years": [ @@ -16,7 +16,7 @@ "first_year": 2022, "last_year": 2025, "total_projects": 8, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2024, @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.776Z" + "generated_at": "2026-02-19T13:36:03.135Z" } } \ No newline at end of file diff --git a/new-api-details/topics/genome-assembly.json b/new-api-details/topics/genome-assembly.json index 52192b69..bd01f044 100644 --- a/new-api-details/topics/genome-assembly.json +++ b/new-api-details/topics/genome-assembly.json @@ -1,7 +1,7 @@ { "slug": "genome-assembly", "name": "genome assembly", - "published_at": "2026-01-25T16:06:29.775Z", + "published_at": "2026-02-19T13:36:03.134Z", "organizationCount": 1, "projectCount": 8, "years": [ @@ -16,7 +16,7 @@ "first_year": 2022, "last_year": 2025, "total_projects": 8, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2024, @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.775Z" + "generated_at": "2026-02-19T13:36:03.134Z" } } \ No newline at end of file diff --git a/new-api-details/topics/genome.json b/new-api-details/topics/genome.json index 5f453482..9ca62001 100644 --- a/new-api-details/topics/genome.json +++ b/new-api-details/topics/genome.json @@ -1,10 +1,11 @@ { "slug": "genome", "name": "genome", - "published_at": "2026-01-25T16:06:29.437Z", + "published_at": "2026-02-19T13:36:02.495Z", "organizationCount": 1, "projectCount": 28, "years": [ + 2026, 2023, 2022, 2021, @@ -17,16 +18,17 @@ "slug": "open-genome-informatics", "name": "Open Genome Informatics", "first_year": 2016, - "last_year": 2023, + "last_year": 2026, "total_projects": 28, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, 2020, 2021, 2022, - 2023 + 2023, + 2026 ] } ], @@ -54,10 +56,14 @@ "2023": { "organizationCount": 1, "projectCount": 1 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.437Z" + "generated_at": "2026-02-19T13:36:02.495Z" } } \ No newline at end of file diff --git a/new-api-details/topics/genomics.json b/new-api-details/topics/genomics.json index 9d9a1f58..2af92de7 100644 --- a/new-api-details/topics/genomics.json +++ b/new-api-details/topics/genomics.json @@ -1,10 +1,11 @@ { "slug": "genomics", "name": "genomics", - "published_at": "2026-01-25T16:06:28.690Z", - "organizationCount": 13, + "published_at": "2026-02-19T13:36:00.907Z", + "organizationCount": 14, "projectCount": 234, "years": [ + 2026, 2025, 2024, 2023, @@ -18,24 +19,47 @@ ], "organizations": [ { - "slug": "canadian-centre-for-computational-genomics", - "name": "Canadian Centre for Computational Genomics", + "slug": "global-alliance-for-genomics-and-health", + "name": "Global Alliance for Genomics and Health", "first_year": 2016, - "last_year": 2020, - "total_projects": 15, + "last_year": 2026, + "total_projects": 45, + "is_currently_active": true, + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2026 + ] + }, + { + "slug": "open-bioinformatics-foundation-obf", + "name": "Open Bioinformatics Foundation (OBF)", + "first_year": 2016, + "last_year": 2022, + "total_projects": 45, "is_currently_active": false, "active_years": [ 2016, + 2017, 2018, 2019, - 2020 + 2020, + 2021, + 2022 ] }, { "slug": "cbioportal-for-cancer-genomics", "name": "cBioPortal for Cancer Genomics", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 38, "is_currently_active": true, "active_years": [ @@ -45,53 +69,67 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "genes-genomes-and-variation", - "name": "Genes, Genomes and Variation", + "slug": "open-genome-informatics", + "name": "Open Genome Informatics", "first_year": 2016, - "last_year": 2019, - "total_projects": 12, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 28, + "is_currently_active": true, "active_years": [ 2016, 2017, + 2020, + 2021, + 2022, + 2023, + 2026 + ] + }, + { + "slug": "canadian-centre-for-computational-genomics", + "name": "Canadian Centre for Computational Genomics", + "first_year": 2016, + "last_year": 2020, + "total_projects": 15, + "is_currently_active": false, + "active_years": [ + 2016, 2018, - 2019 + 2019, + 2020 ] }, { "slug": "genome-assembly-and-annotation", "name": "Genome Assembly and Annotation", "first_year": 2021, - "last_year": 2023, + "last_year": 2026, "total_projects": 14, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2021, 2022, - 2023 + 2023, + 2026 ] }, { - "slug": "global-alliance-for-genomics-and-health", - "name": "Global Alliance for Genomics and Health", + "slug": "genes-genomes-and-variation", + "name": "Genes, Genomes and Variation", "first_year": 2016, - "last_year": 2024, - "total_projects": 45, + "last_year": 2019, + "total_projects": 12, "is_currently_active": false, "active_years": [ 2016, 2017, 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024 + 2019 ] }, { @@ -107,20 +145,29 @@ ] }, { - "slug": "open-bioinformatics-foundation-obf", - "name": "Open Bioinformatics Foundation (OBF)", + "slug": "stony-brook-university-biomedical-informatics", + "name": "Stony Brook University Biomedical Informatics", "first_year": 2016, - "last_year": 2022, - "total_projects": 45, + "last_year": 2018, + "total_projects": 9, "is_currently_active": false, "active_years": [ 2016, 2017, - 2018, - 2019, - 2020, - 2021, - 2022 + 2018 + ] + }, + { + "slug": "wellcome-sanger-tree-of-life", + "name": "Wellcome Sanger Tree of Life", + "first_year": 2022, + "last_year": 2025, + "total_projects": 8, + "is_currently_active": false, + "active_years": [ + 2022, + 2024, + 2025 ] }, { @@ -135,69 +182,39 @@ ] }, { - "slug": "open-genome-informatics", - "name": "Open Genome Informatics", - "first_year": 2016, - "last_year": 2023, - "total_projects": 28, + "slug": "ucsc-xena", + "name": "UCSC Xena", + "first_year": 2017, + "last_year": 2019, + "total_projects": 3, "is_currently_active": false, "active_years": [ - 2016, 2017, - 2020, - 2021, - 2022, - 2023 + 2018, + 2019 ] }, { "slug": "st-jude-childrens-research-hospital", "name": "St. Jude Children's Research Hospital", "first_year": 2025, - "last_year": 2025, + "last_year": 2026, "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 - ] - }, - { - "slug": "stony-brook-university-biomedical-informatics", - "name": "Stony Brook University Biomedical Informatics", - "first_year": 2016, - "last_year": 2018, - "total_projects": 9, - "is_currently_active": false, - "active_years": [ - 2016, - 2017, - 2018 + 2025, + 2026 ] }, { - "slug": "ucsc-xena", - "name": "UCSC Xena", - "first_year": 2017, - "last_year": 2019, - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2017, - 2018, - 2019 - ] - }, - { - "slug": "wellcome-sanger-tree-of-life", - "name": "Wellcome Sanger Tree of Life", - "first_year": 2022, - "last_year": 2025, - "total_projects": 8, + "slug": "malariagen", + "name": "MalariaGEN", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, "is_currently_active": true, "active_years": [ - 2022, - 2024, - 2025 + 2026 ] } ], @@ -241,10 +258,14 @@ "2025": { "organizationCount": 3, "projectCount": 10 + }, + "2026": { + "organizationCount": 6, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.690Z" + "generated_at": "2026-02-19T13:36:00.907Z" } } \ No newline at end of file diff --git a/new-api-details/topics/geo.json b/new-api-details/topics/geo.json index 65c66652..11f4cb37 100644 --- a/new-api-details/topics/geo.json +++ b/new-api-details/topics/geo.json @@ -1,10 +1,11 @@ { "slug": "geo", "name": "geo", - "published_at": "2026-01-25T16:06:28.689Z", + "published_at": "2026-02-19T13:36:00.900Z", "organizationCount": 2, "projectCount": 76, "years": [ + 2026, 2025, 2024, 2023, @@ -16,22 +17,11 @@ 2016 ], "organizations": [ - { - "slug": "cadasta", - "name": "Cadasta", - "first_year": 2017, - "last_year": 2017, - "total_projects": 1, - "is_currently_active": false, - "active_years": [ - 2017 - ] - }, { "slug": "liquid-galaxy-project", "name": "Liquid Galaxy project", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 75, "is_currently_active": true, "active_years": [ @@ -43,7 +33,19 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "cadasta", + "name": "Cadasta", + "first_year": 2017, + "last_year": 2017, + "total_projects": 1, + "is_currently_active": false, + "active_years": [ + 2017 ] } ], @@ -83,10 +85,14 @@ "2025": { "organizationCount": 1, "projectCount": 11 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.689Z" + "generated_at": "2026-02-19T13:36:00.900Z" } } \ No newline at end of file diff --git a/new-api-details/topics/geocoding.json b/new-api-details/topics/geocoding.json index 1b0b8803..d92432bf 100644 --- a/new-api-details/topics/geocoding.json +++ b/new-api-details/topics/geocoding.json @@ -1,10 +1,11 @@ { "slug": "geocoding", "name": "geocoding", - "published_at": "2026-01-25T16:06:29.492Z", + "published_at": "2026-02-19T13:36:02.596Z", "organizationCount": 1, "projectCount": 45, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "openstreetmap", "name": "OpenStreetMap", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 45, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.492Z" + "generated_at": "2026-02-19T13:36:02.596Z" } } \ No newline at end of file diff --git a/new-api-details/topics/geodata.json b/new-api-details/topics/geodata.json index a208c71a..9468025e 100644 --- a/new-api-details/topics/geodata.json +++ b/new-api-details/topics/geodata.json @@ -1,10 +1,11 @@ { "slug": "geodata", "name": "geodata", - "published_at": "2026-01-25T16:06:29.493Z", + "published_at": "2026-02-19T13:36:02.600Z", "organizationCount": 1, "projectCount": 45, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "openstreetmap", "name": "OpenStreetMap", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 45, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.493Z" + "generated_at": "2026-02-19T13:36:02.600Z" } } \ No newline at end of file diff --git a/new-api-details/topics/geoinformatics.json b/new-api-details/topics/geoinformatics.json index 01314564..047a9b76 100644 --- a/new-api-details/topics/geoinformatics.json +++ b/new-api-details/topics/geoinformatics.json @@ -1,10 +1,11 @@ { "slug": "geoinformatics", "name": "geoinformatics", - "published_at": "2026-01-25T16:06:28.346Z", + "published_at": "2026-02-19T13:36:00.251Z", "organizationCount": 3, "projectCount": 171, "years": [ + 2026, 2025, 2024, 2023, @@ -18,11 +19,11 @@ ], "organizations": [ { - "slug": "52north-spatial-information-research-gmbh", - "name": "52°North Spatial Information Research GmbH", + "slug": "osgeo-open-source-geospatial-foundation", + "name": "OSGeo (Open Source Geospatial Foundation)", "first_year": 2016, - "last_year": 2025, - "total_projects": 25, + "last_year": 2026, + "total_projects": 101, "is_currently_active": true, "active_years": [ 2016, @@ -34,14 +35,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "openstreetmap", "name": "OpenStreetMap", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 45, "is_currently_active": true, "active_years": [ @@ -54,15 +56,16 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "osgeo-open-source-geospatial-foundation", - "name": "OSGeo (Open Source Geospatial Foundation)", + "slug": "52north-spatial-information-research-gmbh", + "name": "52°North Spatial Information Research GmbH", "first_year": 2016, - "last_year": 2025, - "total_projects": 101, + "last_year": 2026, + "total_projects": 25, "is_currently_active": true, "active_years": [ 2016, @@ -74,7 +77,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -118,10 +122,14 @@ "2025": { "organizationCount": 3, "projectCount": 17 + }, + "2026": { + "organizationCount": 3, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.346Z" + "generated_at": "2026-02-19T13:36:00.251Z" } } \ No newline at end of file diff --git a/new-api-details/topics/geoinformation-systems.json b/new-api-details/topics/geoinformation-systems.json index a2c197a0..ab266e33 100644 --- a/new-api-details/topics/geoinformation-systems.json +++ b/new-api-details/topics/geoinformation-systems.json @@ -1,10 +1,11 @@ { "slug": "geoinformation-systems", "name": "geoinformation systems", - "published_at": "2026-01-25T16:06:28.367Z", + "published_at": "2026-02-19T13:36:00.290Z", "organizationCount": 1, "projectCount": 25, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "52north-spatial-information-research-gmbh", "name": "52°North Spatial Information Research GmbH", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 25, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.367Z" + "generated_at": "2026-02-19T13:36:00.290Z" } } \ No newline at end of file diff --git a/new-api-details/topics/geoinformation.json b/new-api-details/topics/geoinformation.json index f4fac8e6..dbb96e81 100644 --- a/new-api-details/topics/geoinformation.json +++ b/new-api-details/topics/geoinformation.json @@ -1,10 +1,11 @@ { "slug": "geoinformation", "name": "Geoinformation", - "published_at": "2026-01-25T16:06:28.369Z", + "published_at": "2026-02-19T13:36:00.297Z", "organizationCount": 1, "projectCount": 25, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "52north-spatial-information-research-gmbh", "name": "52°North Spatial Information Research GmbH", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 25, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.369Z" + "generated_at": "2026-02-19T13:36:00.298Z" } } \ No newline at end of file diff --git a/new-api-details/topics/geolocation.json b/new-api-details/topics/geolocation.json index 92ca6de5..024db9d0 100644 --- a/new-api-details/topics/geolocation.json +++ b/new-api-details/topics/geolocation.json @@ -1,10 +1,11 @@ { "slug": "geolocation", "name": "geolocation", - "published_at": "2026-01-25T16:06:29.027Z", + "published_at": "2026-02-19T13:36:01.653Z", "organizationCount": 2, "projectCount": 129, "years": [ + 2026, 2025, 2024, 2023, @@ -18,11 +19,11 @@ ], "organizations": [ { - "slug": "gnss-sdr", - "name": "GNSS-SDR", + "slug": "osgeo-open-source-geospatial-foundation", + "name": "OSGeo (Open Source Geospatial Foundation)", "first_year": 2016, - "last_year": 2025, - "total_projects": 28, + "last_year": 2026, + "total_projects": 101, "is_currently_active": true, "active_years": [ 2016, @@ -32,17 +33,19 @@ 2020, 2021, 2022, + 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "osgeo-open-source-geospatial-foundation", - "name": "OSGeo (Open Source Geospatial Foundation)", + "slug": "gnss-sdr", + "name": "GNSS-SDR", "first_year": 2016, "last_year": 2025, - "total_projects": 101, - "is_currently_active": true, + "total_projects": 28, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -51,7 +54,6 @@ 2020, 2021, 2022, - 2023, 2024, 2025 ] @@ -97,10 +99,14 @@ "2025": { "organizationCount": 2, "projectCount": 12 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.027Z" + "generated_at": "2026-02-19T13:36:01.653Z" } } \ No newline at end of file diff --git a/new-api-details/topics/geometry-processing.json b/new-api-details/topics/geometry-processing.json index 8e66a95d..43a9a960 100644 --- a/new-api-details/topics/geometry-processing.json +++ b/new-api-details/topics/geometry-processing.json @@ -1,10 +1,11 @@ { "slug": "geometry-processing", "name": "geometry processing", - "published_at": "2026-01-25T16:06:28.652Z", + "published_at": "2026-02-19T13:36:00.983Z", "organizationCount": 1, "projectCount": 58, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "cgal-project", "name": "CGAL Project", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 58, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.652Z" + "generated_at": "2026-02-19T13:36:00.983Z" } } \ No newline at end of file diff --git a/new-api-details/topics/geometry.json b/new-api-details/topics/geometry.json index 9c53b8f7..c1fa7dde 100644 --- a/new-api-details/topics/geometry.json +++ b/new-api-details/topics/geometry.json @@ -1,10 +1,11 @@ { "slug": "geometry", "name": "geometry", - "published_at": "2026-01-25T16:06:28.545Z", + "published_at": "2026-02-19T13:36:00.861Z", "organizationCount": 3, "projectCount": 158, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "brl-cad", "name": "BRL-CAD", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 73, "is_currently_active": true, "active_years": [ @@ -34,14 +35,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "cgal-project", "name": "CGAL Project", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 58, "is_currently_active": true, "active_years": [ @@ -53,7 +55,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -62,7 +65,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -117,10 +120,14 @@ "2025": { "organizationCount": 3, "projectCount": 16 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.545Z" + "generated_at": "2026-02-19T13:36:00.861Z" } } \ No newline at end of file diff --git a/new-api-details/topics/geophysics.json b/new-api-details/topics/geophysics.json index 57cfff3c..c0183aaf 100644 --- a/new-api-details/topics/geophysics.json +++ b/new-api-details/topics/geophysics.json @@ -1,10 +1,11 @@ { "slug": "geophysics", "name": "geophysics", - "published_at": "2026-01-25T16:06:29.837Z", + "published_at": "2026-02-19T13:36:01.725Z", "organizationCount": 1, "projectCount": 18, "years": [ + 2026, 2025, 2024, 2023, @@ -16,7 +17,7 @@ "slug": "gprmax", "name": "gprMax", "first_year": 2019, - "last_year": 2025, + "last_year": 2026, "total_projects": 18, "is_currently_active": true, "active_years": [ @@ -24,7 +25,8 @@ 2021, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -48,10 +50,14 @@ "2025": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.837Z" + "generated_at": "2026-02-19T13:36:01.726Z" } } \ No newline at end of file diff --git a/new-api-details/topics/geoprocessing.json b/new-api-details/topics/geoprocessing.json index be8a7383..780875f5 100644 --- a/new-api-details/topics/geoprocessing.json +++ b/new-api-details/topics/geoprocessing.json @@ -1,10 +1,11 @@ { "slug": "geoprocessing", "name": "geoprocessing", - "published_at": "2026-01-25T16:06:28.354Z", + "published_at": "2026-02-19T13:36:00.265Z", "organizationCount": 1, "projectCount": 25, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "52north-spatial-information-research-gmbh", "name": "52°North Spatial Information Research GmbH", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 25, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.354Z" + "generated_at": "2026-02-19T13:36:00.265Z" } } \ No newline at end of file diff --git a/new-api-details/topics/geospatial.json b/new-api-details/topics/geospatial.json index d35489f8..27211d46 100644 --- a/new-api-details/topics/geospatial.json +++ b/new-api-details/topics/geospatial.json @@ -1,10 +1,11 @@ { "slug": "geospatial", "name": "geospatial", - "published_at": "2026-01-25T16:06:28.688Z", + "published_at": "2026-02-19T13:36:00.898Z", "organizationCount": 5, "projectCount": 206, "years": [ + 2026, 2025, 2024, 2023, @@ -18,22 +19,11 @@ ], "organizations": [ { - "slug": "cadasta", - "name": "Cadasta", - "first_year": 2017, - "last_year": 2017, - "total_projects": 1, - "is_currently_active": false, - "active_years": [ - 2017 - ] - }, - { - "slug": "gnss-sdr", - "name": "GNSS-SDR", + "slug": "osgeo-open-source-geospatial-foundation", + "name": "OSGeo (Open Source Geospatial Foundation)", "first_year": 2016, - "last_year": 2025, - "total_projects": 28, + "last_year": 2026, + "total_projects": 101, "is_currently_active": true, "active_years": [ 2016, @@ -43,15 +33,17 @@ 2020, 2021, 2022, + 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "liquid-galaxy-project", "name": "Liquid Galaxy project", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 75, "is_currently_active": true, "active_years": [ @@ -63,27 +55,17 @@ 2022, 2023, 2024, - 2025 - ] - }, - { - "slug": "mapaction", - "name": "MapAction", - "first_year": 2021, - "last_year": 2021, - "total_projects": 1, - "is_currently_active": false, - "active_years": [ - 2021 + 2025, + 2026 ] }, { - "slug": "osgeo-open-source-geospatial-foundation", - "name": "OSGeo (Open Source Geospatial Foundation)", + "slug": "gnss-sdr", + "name": "GNSS-SDR", "first_year": 2016, "last_year": 2025, - "total_projects": 101, - "is_currently_active": true, + "total_projects": 28, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -92,10 +74,31 @@ 2020, 2021, 2022, - 2023, 2024, 2025 ] + }, + { + "slug": "cadasta", + "name": "Cadasta", + "first_year": 2017, + "last_year": 2017, + "total_projects": 1, + "is_currently_active": false, + "active_years": [ + 2017 + ] + }, + { + "slug": "mapaction", + "name": "MapAction", + "first_year": 2021, + "last_year": 2021, + "total_projects": 1, + "is_currently_active": false, + "active_years": [ + 2021 + ] } ], "yearlyStats": { @@ -138,10 +141,14 @@ "2025": { "organizationCount": 3, "projectCount": 23 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.688Z" + "generated_at": "2026-02-19T13:36:00.898Z" } } \ No newline at end of file diff --git a/new-api-details/topics/geostatistics.json b/new-api-details/topics/geostatistics.json index 605f6fec..bb1cc746 100644 --- a/new-api-details/topics/geostatistics.json +++ b/new-api-details/topics/geostatistics.json @@ -1,10 +1,11 @@ { "slug": "geostatistics", "name": "geostatistics", - "published_at": "2026-01-25T16:06:28.356Z", + "published_at": "2026-02-19T13:36:00.267Z", "organizationCount": 1, "projectCount": 25, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "52north-spatial-information-research-gmbh", "name": "52°North Spatial Information Research GmbH", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 25, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.356Z" + "generated_at": "2026-02-19T13:36:00.267Z" } } \ No newline at end of file diff --git a/new-api-details/topics/gesture.json b/new-api-details/topics/gesture.json index 6315dc03..acf96fba 100644 --- a/new-api-details/topics/gesture.json +++ b/new-api-details/topics/gesture.json @@ -1,7 +1,7 @@ { "slug": "gesture", "name": "gesture", - "published_at": "2026-01-25T16:06:29.589Z", + "published_at": "2026-02-19T13:36:02.785Z", "organizationCount": 1, "projectCount": 88, "years": [ @@ -76,6 +76,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.589Z" + "generated_at": "2026-02-19T13:36:02.785Z" } } \ No newline at end of file diff --git a/new-api-details/topics/gis.json b/new-api-details/topics/gis.json index 2b478d92..cc8e0be2 100644 --- a/new-api-details/topics/gis.json +++ b/new-api-details/topics/gis.json @@ -1,10 +1,11 @@ { "slug": "gis", "name": "gis", - "published_at": "2026-01-25T16:06:28.764Z", + "published_at": "2026-02-19T13:36:01.022Z", "organizationCount": 8, "projectCount": 172, "years": [ + 2026, 2025, 2024, 2023, @@ -18,25 +19,58 @@ ], "organizations": [ { - "slug": "city-of-boston", - "name": "City of Boston", - "first_year": 2024, - "last_year": 2024, - "total_projects": 4, - "is_currently_active": false, + "slug": "osgeo-open-source-geospatial-foundation", + "name": "OSGeo (Open Source Geospatial Foundation)", + "first_year": 2016, + "last_year": 2026, + "total_projects": 101, + "is_currently_active": true, "active_years": [ - 2024 + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "google-fhir-sdk", - "name": "Google FHIR SDK", + "slug": "openstreetmap", + "name": "OpenStreetMap", + "first_year": 2016, + "last_year": 2026, + "total_projects": 45, + "is_currently_active": true, + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ] + }, + { + "slug": "mayors-office-of-new-urban-mechanics", + "name": "Mayor's Office of New Urban Mechanics", "first_year": 2021, - "last_year": 2021, - "total_projects": 5, + "last_year": 2023, + "total_projects": 9, "is_currently_active": false, "active_years": [ - 2021 + 2021, + 2022, + 2023 ] }, { @@ -51,67 +85,36 @@ ] }, { - "slug": "kart-project", - "name": "Kart Project", - "first_year": 2022, - "last_year": 2022, - "total_projects": 1, - "is_currently_active": false, - "active_years": [ - 2022 - ] - }, - { - "slug": "mayors-office-of-new-urban-mechanics", - "name": "Mayor's Office of New Urban Mechanics", + "slug": "google-fhir-sdk", + "name": "Google FHIR SDK", "first_year": 2021, - "last_year": 2023, - "total_projects": 9, + "last_year": 2021, + "total_projects": 5, "is_currently_active": false, "active_years": [ - 2021, - 2022, - 2023 + 2021 ] }, { - "slug": "openstreetmap", - "name": "OpenStreetMap", - "first_year": 2016, - "last_year": 2025, - "total_projects": 45, - "is_currently_active": true, + "slug": "city-of-boston", + "name": "City of Boston", + "first_year": 2024, + "last_year": 2024, + "total_projects": 4, + "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2024 ] }, { - "slug": "osgeo-open-source-geospatial-foundation", - "name": "OSGeo (Open Source Geospatial Foundation)", - "first_year": 2016, - "last_year": 2025, - "total_projects": 101, - "is_currently_active": true, + "slug": "kart-project", + "name": "Kart Project", + "first_year": 2022, + "last_year": 2022, + "total_projects": 1, + "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2022 ] }, { @@ -166,10 +169,14 @@ "2025": { "organizationCount": 2, "projectCount": 15 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.764Z" + "generated_at": "2026-02-19T13:36:01.022Z" } } \ No newline at end of file diff --git a/new-api-details/topics/git.json b/new-api-details/topics/git.json index 2906571c..4a0aa2df 100644 --- a/new-api-details/topics/git.json +++ b/new-api-details/topics/git.json @@ -1,7 +1,7 @@ { "slug": "git", "name": "git", - "published_at": "2026-01-25T16:06:29.086Z", + "published_at": "2026-02-19T13:36:01.624Z", "organizationCount": 3, "projectCount": 34, "years": [ @@ -16,24 +16,13 @@ 2016 ], "organizations": [ - { - "slug": "github", - "name": "GitHub", - "first_year": 2016, - "last_year": 2016, - "total_projects": 4, - "is_currently_active": false, - "active_years": [ - 2016 - ] - }, { "slug": "gitlab", "name": "GitLab", "first_year": 2021, "last_year": 2025, "total_projects": 15, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2021, 2022, @@ -57,6 +46,17 @@ 2021, 2022 ] + }, + { + "slug": "github", + "name": "GitHub", + "first_year": 2016, + "last_year": 2016, + "total_projects": 4, + "is_currently_active": false, + "active_years": [ + 2016 + ] } ], "yearlyStats": { @@ -99,6 +99,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.086Z" + "generated_at": "2026-02-19T13:36:01.624Z" } } \ No newline at end of file diff --git a/new-api-details/topics/github.json b/new-api-details/topics/github.json index 87b87eb5..7a0db348 100644 --- a/new-api-details/topics/github.json +++ b/new-api-details/topics/github.json @@ -1,7 +1,7 @@ { "slug": "github", "name": "github", - "published_at": "2026-01-25T16:06:29.123Z", + "published_at": "2026-02-19T13:36:01.776Z", "organizationCount": 1, "projectCount": 11, "years": [ @@ -52,6 +52,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.123Z" + "generated_at": "2026-02-19T13:36:01.776Z" } } \ No newline at end of file diff --git a/new-api-details/topics/global-development.json b/new-api-details/topics/global-development.json index 8f583087..533ade9f 100644 --- a/new-api-details/topics/global-development.json +++ b/new-api-details/topics/global-development.json @@ -1,7 +1,7 @@ { "slug": "global-development", "name": "global development", - "published_at": "2026-01-25T16:06:29.433Z", + "published_at": "2026-02-19T13:36:02.488Z", "organizationCount": 1, "projectCount": 5, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.433Z" + "generated_at": "2026-02-19T13:36:02.488Z" } } \ No newline at end of file diff --git a/new-api-details/topics/global-health-and-development.json b/new-api-details/topics/global-health-and-development.json index 829b5f66..5757512c 100644 --- a/new-api-details/topics/global-health-and-development.json +++ b/new-api-details/topics/global-health-and-development.json @@ -1,7 +1,7 @@ { "slug": "global-health-and-development", "name": "global health and development", - "published_at": "2026-01-25T16:06:29.119Z", + "published_at": "2026-02-19T13:36:01.769Z", "organizationCount": 1, "projectCount": 6, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.120Z" + "generated_at": "2026-02-19T13:36:01.769Z" } } \ No newline at end of file diff --git a/new-api-details/topics/global-health.json b/new-api-details/topics/global-health.json index 67236008..f0536505 100644 --- a/new-api-details/topics/global-health.json +++ b/new-api-details/topics/global-health.json @@ -1,10 +1,11 @@ { "slug": "global-health", "name": "global health", - "published_at": "2026-01-25T16:06:29.103Z", + "published_at": "2026-02-19T13:36:01.720Z", "organizationCount": 3, "projectCount": 41, "years": [ + 2026, 2023, 2022, 2021, @@ -14,24 +15,13 @@ 2017 ], "organizations": [ - { - "slug": "google-fhir-sdk", - "name": "Google FHIR SDK", - "first_year": 2021, - "last_year": 2021, - "total_projects": 5, - "is_currently_active": false, - "active_years": [ - 2021 - ] - }, { "slug": "librehealth", "name": "LibreHealth", "first_year": 2017, - "last_year": 2023, + "last_year": 2026, "total_projects": 31, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, @@ -39,7 +29,19 @@ 2020, 2021, 2022, - 2023 + 2023, + 2026 + ] + }, + { + "slug": "google-fhir-sdk", + "name": "Google FHIR SDK", + "first_year": 2021, + "last_year": 2021, + "total_projects": 5, + "is_currently_active": false, + "active_years": [ + 2021 ] }, { @@ -84,10 +86,14 @@ "2023": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.103Z" + "generated_at": "2026-02-19T13:36:01.720Z" } } \ No newline at end of file diff --git a/new-api-details/topics/global-optimization.json b/new-api-details/topics/global-optimization.json index 27208fd0..b4276811 100644 --- a/new-api-details/topics/global-optimization.json +++ b/new-api-details/topics/global-optimization.json @@ -1,7 +1,7 @@ { "slug": "global-optimization", "name": "global optimization", - "published_at": "2026-01-25T16:06:29.664Z", + "published_at": "2026-02-19T13:36:02.896Z", "organizationCount": 1, "projectCount": 9, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.664Z" + "generated_at": "2026-02-19T13:36:02.896Z" } } \ No newline at end of file diff --git a/new-api-details/topics/global.json b/new-api-details/topics/global.json index 4e5b0b77..0370362c 100644 --- a/new-api-details/topics/global.json +++ b/new-api-details/topics/global.json @@ -1,7 +1,7 @@ { "slug": "global", "name": "global", - "published_at": "2026-01-25T16:06:28.853Z", + "published_at": "2026-02-19T13:36:01.198Z", "organizationCount": 1, "projectCount": 31, "years": [ @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.853Z" + "generated_at": "2026-02-19T13:36:01.198Z" } } \ No newline at end of file diff --git a/new-api-details/topics/gnss.json b/new-api-details/topics/gnss.json index 7cbc988e..96279949 100644 --- a/new-api-details/topics/gnss.json +++ b/new-api-details/topics/gnss.json @@ -1,7 +1,7 @@ { "slug": "gnss", "name": "gnss", - "published_at": "2026-01-25T16:06:29.030Z", + "published_at": "2026-02-19T13:36:01.655Z", "organizationCount": 1, "projectCount": 28, "years": [ @@ -22,7 +22,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 28, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -76,6 +76,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.030Z" + "generated_at": "2026-02-19T13:36:01.655Z" } } \ No newline at end of file diff --git a/new-api-details/topics/gnu.json b/new-api-details/topics/gnu.json index 98509594..5dbd29f9 100644 --- a/new-api-details/topics/gnu.json +++ b/new-api-details/topics/gnu.json @@ -1,10 +1,11 @@ { "slug": "gnu", "name": "gnu", - "published_at": "2026-01-25T16:06:29.047Z", + "published_at": "2026-02-19T13:36:01.682Z", "organizationCount": 1, "projectCount": 59, "years": [ + 2026, 2024, 2023, 2020, @@ -18,9 +19,9 @@ "slug": "gnu-project", "name": "GNU Project", "first_year": 2016, - "last_year": 2024, + "last_year": 2026, "total_projects": 59, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -28,7 +29,8 @@ 2019, 2020, 2023, - 2024 + 2024, + 2026 ] } ], @@ -60,10 +62,14 @@ "2024": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.047Z" + "generated_at": "2026-02-19T13:36:01.682Z" } } \ No newline at end of file diff --git a/new-api-details/topics/google-cloud.json b/new-api-details/topics/google-cloud.json index 21033b2d..7615fe83 100644 --- a/new-api-details/topics/google-cloud.json +++ b/new-api-details/topics/google-cloud.json @@ -1,7 +1,7 @@ { "slug": "google-cloud", "name": "google cloud", - "published_at": "2026-01-25T16:06:29.009Z", + "published_at": "2026-02-19T13:36:01.580Z", "organizationCount": 2, "projectCount": 4, "years": [ @@ -44,6 +44,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.009Z" + "generated_at": "2026-02-19T13:36:01.580Z" } } \ No newline at end of file diff --git a/new-api-details/topics/google-earth.json b/new-api-details/topics/google-earth.json index 73c0db07..7ac9fe0c 100644 --- a/new-api-details/topics/google-earth.json +++ b/new-api-details/topics/google-earth.json @@ -1,10 +1,11 @@ { "slug": "google-earth", "name": "google earth", - "published_at": "2026-01-25T16:06:29.288Z", + "published_at": "2026-02-19T13:36:02.201Z", "organizationCount": 1, "projectCount": 75, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "liquid-galaxy-project", "name": "Liquid Galaxy project", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 75, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 11 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.288Z" + "generated_at": "2026-02-19T13:36:02.201Z" } } \ No newline at end of file diff --git a/new-api-details/topics/government.json b/new-api-details/topics/government.json index ff70aa49..3ee89868 100644 --- a/new-api-details/topics/government.json +++ b/new-api-details/topics/government.json @@ -1,7 +1,7 @@ { "slug": "government", "name": "government", - "published_at": "2026-01-25T16:06:28.845Z", + "published_at": "2026-02-19T13:36:01.184Z", "organizationCount": 2, "projectCount": 6, "years": [ @@ -51,6 +51,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.845Z" + "generated_at": "2026-02-19T13:36:01.184Z" } } \ No newline at end of file diff --git a/new-api-details/topics/gpu-computing.json b/new-api-details/topics/gpu-computing.json index bb3138d4..17ac03fa 100644 --- a/new-api-details/topics/gpu-computing.json +++ b/new-api-details/topics/gpu-computing.json @@ -1,7 +1,7 @@ { "slug": "gpu-computing", "name": "gpu computing", - "published_at": "2026-01-25T16:06:29.546Z", + "published_at": "2026-02-19T13:36:02.722Z", "organizationCount": 1, "projectCount": 5, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.546Z" + "generated_at": "2026-02-19T13:36:02.722Z" } } \ No newline at end of file diff --git a/new-api-details/topics/gpu.json b/new-api-details/topics/gpu.json index bd3cb748..a779c42c 100644 --- a/new-api-details/topics/gpu.json +++ b/new-api-details/topics/gpu.json @@ -1,10 +1,11 @@ { "slug": "gpu", "name": "gpu", - "published_at": "2026-01-25T16:06:29.615Z", + "published_at": "2026-02-19T13:36:02.812Z", "organizationCount": 3, "projectCount": 113, "years": [ + 2026, 2025, 2024, 2023, @@ -23,7 +24,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 56, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -39,7 +40,7 @@ "slug": "stear-group", "name": "Ste||ar group", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 38, "is_currently_active": true, "active_years": [ @@ -51,7 +52,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -112,10 +114,14 @@ "2025": { "organizationCount": 2, "projectCount": 20 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.615Z" + "generated_at": "2026-02-19T13:36:02.812Z" } } \ No newline at end of file diff --git a/new-api-details/topics/grammar.json b/new-api-details/topics/grammar.json index c132adc2..dd5b3430 100644 --- a/new-api-details/topics/grammar.json +++ b/new-api-details/topics/grammar.json @@ -1,7 +1,7 @@ { "slug": "grammar", "name": "grammar", - "published_at": "2026-01-25T16:06:28.506Z", + "published_at": "2026-02-19T13:36:00.498Z", "organizationCount": 1, "projectCount": 67, "years": [ @@ -70,6 +70,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.506Z" + "generated_at": "2026-02-19T13:36:00.498Z" } } \ No newline at end of file diff --git a/new-api-details/topics/graph-algorithms.json b/new-api-details/topics/graph-algorithms.json index 5b97b0b6..58f27458 100644 --- a/new-api-details/topics/graph-algorithms.json +++ b/new-api-details/topics/graph-algorithms.json @@ -1,7 +1,7 @@ { "slug": "graph-algorithms", "name": "graph algorithms", - "published_at": "2026-01-25T16:06:29.307Z", + "published_at": "2026-02-19T13:36:02.300Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.307Z" + "generated_at": "2026-02-19T13:36:02.300Z" } } \ No newline at end of file diff --git a/new-api-details/topics/graphic-stack.json b/new-api-details/topics/graphic-stack.json index eb783b54..bfd7af9c 100644 --- a/new-api-details/topics/graphic-stack.json +++ b/new-api-details/topics/graphic-stack.json @@ -1,7 +1,7 @@ { "slug": "graphic-stack", "name": "graphic stack", - "published_at": "2026-01-25T16:06:29.790Z", + "published_at": "2026-02-19T13:36:03.162Z", "organizationCount": 1, "projectCount": 19, "years": [ @@ -64,6 +64,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.790Z" + "generated_at": "2026-02-19T13:36:03.162Z" } } \ No newline at end of file diff --git a/new-api-details/topics/graphics-stack.json b/new-api-details/topics/graphics-stack.json index 667f547a..9bcecd89 100644 --- a/new-api-details/topics/graphics-stack.json +++ b/new-api-details/topics/graphics-stack.json @@ -1,7 +1,7 @@ { "slug": "graphics-stack", "name": "graphics stack", - "published_at": "2026-01-25T16:06:29.786Z", + "published_at": "2026-02-19T13:36:03.156Z", "organizationCount": 1, "projectCount": 19, "years": [ @@ -64,6 +64,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.786Z" + "generated_at": "2026-02-19T13:36:03.156Z" } } \ No newline at end of file diff --git a/new-api-details/topics/graphics-user-interface.json b/new-api-details/topics/graphics-user-interface.json index 3e35216b..d631d962 100644 --- a/new-api-details/topics/graphics-user-interface.json +++ b/new-api-details/topics/graphics-user-interface.json @@ -1,10 +1,11 @@ { "slug": "graphics-user-interface", "name": "graphics user interface", - "published_at": "2026-01-25T16:06:28.547Z", + "published_at": "2026-02-19T13:36:00.872Z", "organizationCount": 1, "projectCount": 73, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "brl-cad", "name": "BRL-CAD", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 73, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.547Z" + "generated_at": "2026-02-19T13:36:00.872Z" } } \ No newline at end of file diff --git a/new-api-details/topics/graphics-video-audio-virtual-reality.json b/new-api-details/topics/graphics-video-audio-virtual-reality.json index 0a0eb016..361c198a 100644 --- a/new-api-details/topics/graphics-video-audio-virtual-reality.json +++ b/new-api-details/topics/graphics-video-audio-virtual-reality.json @@ -1,7 +1,7 @@ { "slug": "graphics-video-audio-virtual-reality", "name": "graphics / video / audio / virtual reality", - "published_at": "2026-01-25T16:06:29.170Z", + "published_at": "2026-02-19T13:36:01.856Z", "organizationCount": 3, "projectCount": 70, "years": [ @@ -17,19 +17,19 @@ ], "organizations": [ { - "slug": "intel-video-and-audio-for-linux", - "name": "Intel Video and Audio for Linux", - "first_year": 2017, - "last_year": 2022, - "total_projects": 12, + "slug": "the-terasology-foundation", + "name": "The Terasology Foundation", + "first_year": 2016, + "last_year": 2021, + "total_projects": 43, "is_currently_active": false, "active_years": [ + 2016, 2017, 2018, 2019, 2020, - 2021, - 2022 + 2021 ] }, { @@ -50,19 +50,19 @@ ] }, { - "slug": "the-terasology-foundation", - "name": "The Terasology Foundation", - "first_year": 2016, - "last_year": 2021, - "total_projects": 43, + "slug": "intel-video-and-audio-for-linux", + "name": "Intel Video and Audio for Linux", + "first_year": 2017, + "last_year": 2022, + "total_projects": 12, "is_currently_active": false, "active_years": [ - 2016, 2017, 2018, 2019, 2020, - 2021 + 2021, + 2022 ] } ], @@ -106,6 +106,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.170Z" + "generated_at": "2026-02-19T13:36:01.856Z" } } \ No newline at end of file diff --git a/new-api-details/topics/graphics.json b/new-api-details/topics/graphics.json index 846d81bc..d5e94619 100644 --- a/new-api-details/topics/graphics.json +++ b/new-api-details/topics/graphics.json @@ -1,10 +1,11 @@ { "slug": "graphics", "name": "graphics", - "published_at": "2026-01-25T16:06:28.429Z", + "published_at": "2026-02-19T13:36:00.366Z", "organizationCount": 41, "projectCount": 1994, "years": [ + 2026, 2025, 2024, 2023, @@ -18,50 +19,32 @@ ], "organizations": [ { - "slug": "academy-software-foundation", - "name": "Academy Software Foundation", - "first_year": 2020, - "last_year": 2022, - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2020, - 2022 - ] - }, - { - "slug": "android-graphics-tools-team", - "name": "Android Graphics Tools Team", - "first_year": 2019, - "last_year": 2021, - "total_projects": 8, - "is_currently_active": false, - "active_years": [ - 2019, - 2020, - 2021 - ] - }, - { - "slug": "appleseed", - "name": "appleseed", - "first_year": 2017, - "last_year": 2020, - "total_projects": 11, - "is_currently_active": false, + "slug": "numfocus", + "name": "NumFOCUS", + "first_year": 2016, + "last_year": 2026, + "total_projects": 277, + "is_currently_active": true, "active_years": [ + 2016, 2017, 2018, 2019, - 2020 + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "blender-foundation", - "name": "Blender Foundation", + "slug": "r-project-for-statistical-computing", + "name": "R project for statistical computing", "first_year": 2016, - "last_year": 2025, - "total_projects": 64, + "last_year": 2026, + "total_projects": 212, "is_currently_active": true, "active_years": [ 2016, @@ -73,44 +56,36 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "copyleft-games", - "name": "Copyleft Games", - "first_year": 2016, - "last_year": 2017, - "total_projects": 4, - "is_currently_active": false, - "active_years": [ - 2016, - 2017 - ] - }, - { - "slug": "debian", - "name": "Debian", + "slug": "kde-community", + "name": "KDE Community", "first_year": 2016, - "last_year": 2025, - "total_projects": 78, + "last_year": 2026, + "total_projects": 167, "is_currently_active": true, "active_years": [ 2016, + 2017, 2018, 2019, 2020, 2021, 2022, + 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "fossasia", "name": "FOSSASIA", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 140, "is_currently_active": true, "active_years": [ @@ -119,80 +94,56 @@ 2018, 2019, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "freecad", - "name": "FreeCAD", - "first_year": 2023, - "last_year": 2025, - "total_projects": 8, + "slug": "the-julia-language", + "name": "The Julia Language", + "first_year": 2016, + "last_year": 2026, + "total_projects": 140, "is_currently_active": true, "active_years": [ - 2023, - 2024, - 2025 - ] - }, - { - "slug": "freetype", - "name": "FreeType", - "first_year": 2017, - "last_year": 2024, - "total_projects": 17, - "is_currently_active": false, - "active_years": [ + 2016, 2017, - 2018, 2019, 2020, 2021, 2022, 2023, - 2024 + 2024, + 2025, + 2026 ] }, { - "slug": "gambit-software-tools-for-game-theory", - "name": "Gambit - Software Tools for Game Theory", + "slug": "national-resource-for-network-biology-nrnb", + "name": "National Resource for Network Biology (NRNB)", "first_year": 2016, - "last_year": 2016, - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2016 - ] - }, - { - "slug": "gdevelop", - "name": "GDevelop", - "first_year": 2020, - "last_year": 2020, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2020 - ] - }, - { - "slug": "genivi-alliance", - "name": "GENIVI Alliance", - "first_year": 2017, - "last_year": 2019, - "total_projects": 3, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 119, + "is_currently_active": true, "active_years": [ + 2016, 2017, 2018, - 2019 + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { "slug": "gnome-foundation", "name": "GNOME Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 115, "is_currently_active": true, "active_years": [ @@ -205,17 +156,23 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "gnu-image-manipulation-program", - "name": "GNU Image Manipulation Program", - "first_year": 2022, + "slug": "opencv", + "name": "OpenCV", + "first_year": 2016, "last_year": 2025, - "total_projects": 10, - "is_currently_active": true, + "total_projects": 93, + "is_currently_active": false, "active_years": [ + 2016, + 2017, + 2019, + 2020, + 2021, 2022, 2023, 2024, @@ -223,39 +180,33 @@ ] }, { - "slug": "godot-engine", - "name": "Godot Engine", - "first_year": 2018, - "last_year": 2022, - "total_projects": 27, - "is_currently_active": false, + "slug": "videolan", + "name": "VideoLAN", + "first_year": 2016, + "last_year": 2026, + "total_projects": 92, + "is_currently_active": true, "active_years": [ + 2016, + 2017, 2018, 2019, 2020, 2021, - 2022 - ] - }, - { - "slug": "graphite", - "name": "Graphite", - "first_year": 2024, - "last_year": 2025, - "total_projects": 8, - "is_currently_active": true, - "active_years": [ + 2022, + 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "haiku", - "name": "Haiku", + "slug": "processing-foundation", + "name": "Processing Foundation", "first_year": 2017, - "last_year": 2024, - "total_projects": 26, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 87, + "is_currently_active": true, "active_years": [ 2017, 2018, @@ -264,46 +215,55 @@ 2021, 2022, 2023, - 2024 + 2025, + 2026 ] }, { - "slug": "halide", - "name": "Halide", - "first_year": 2021, - "last_year": 2021, - "total_projects": 2, - "is_currently_active": false, + "slug": "debian", + "name": "Debian", + "first_year": 2016, + "last_year": 2026, + "total_projects": 78, + "is_currently_active": true, "active_years": [ - 2021 + 2016, + 2018, + 2019, + 2020, + 2021, + 2022, + 2024, + 2025, + 2026 ] }, { - "slug": "inkscape", - "name": "Inkscape", + "slug": "liquid-galaxy-project", + "name": "Liquid Galaxy project", "first_year": 2016, - "last_year": 2025, - "total_projects": 27, + "last_year": 2026, + "total_projects": 75, "is_currently_active": true, "active_years": [ 2016, 2017, - 2018, 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "kde-community", - "name": "KDE Community", + "slug": "blender-foundation", + "name": "Blender Foundation", "first_year": 2016, - "last_year": 2025, - "total_projects": 167, + "last_year": 2026, + "total_projects": 64, "is_currently_active": true, "active_years": [ 2016, @@ -315,66 +275,67 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "liquid-galaxy-project", - "name": "Liquid Galaxy project", + "slug": "open-chemistry", + "name": "Open Chemistry", "first_year": 2016, - "last_year": 2025, - "total_projects": 75, - "is_currently_active": true, + "last_year": 2024, + "total_projects": 51, + "is_currently_active": false, "active_years": [ 2016, 2017, + 2018, 2019, 2020, 2021, 2022, 2023, - 2024, - 2025 + 2024 ] }, { - "slug": "mzmine-and-ms-dial", - "name": "MZmine and MS-DIAL", - "first_year": 2023, - "last_year": 2023, - "total_projects": 2, + "slug": "the-terasology-foundation", + "name": "The Terasology Foundation", + "first_year": 2016, + "last_year": 2021, + "total_projects": 43, "is_currently_active": false, "active_years": [ - 2023 + 2016, + 2017, + 2018, + 2019, + 2020, + 2021 ] }, { - "slug": "national-resource-for-network-biology-nrnb", - "name": "National Resource for Network Biology (NRNB)", - "first_year": 2016, - "last_year": 2025, - "total_projects": 119, - "is_currently_active": true, + "slug": "godot-engine", + "name": "Godot Engine", + "first_year": 2018, + "last_year": 2022, + "total_projects": 27, + "is_currently_active": false, "active_years": [ - 2016, - 2017, 2018, 2019, 2020, 2021, - 2022, - 2023, - 2024, - 2025 + 2022 ] }, { - "slug": "numfocus", - "name": "NumFOCUS", + "slug": "inkscape", + "name": "Inkscape", "first_year": 2016, "last_year": 2025, - "total_projects": 277, - "is_currently_active": true, + "total_projects": 27, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -389,14 +350,13 @@ ] }, { - "slug": "open-chemistry", - "name": "Open Chemistry", - "first_year": 2016, - "last_year": 2024, - "total_projects": 51, - "is_currently_active": false, + "slug": "haiku", + "name": "Haiku", + "first_year": 2017, + "last_year": 2026, + "total_projects": 26, + "is_currently_active": true, "active_years": [ - 2016, 2017, 2018, 2019, @@ -404,35 +364,34 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { - "slug": "opencv", - "name": "OpenCV", + "slug": "xorg-foundation", + "name": "X.Org Foundation", "first_year": 2016, - "last_year": 2025, - "total_projects": 93, - "is_currently_active": true, + "last_year": 2023, + "total_projects": 19, + "is_currently_active": false, "active_years": [ 2016, 2017, + 2018, 2019, 2020, - 2021, 2022, - 2023, - 2024, - 2025 + 2023 ] }, { - "slug": "processing-foundation", - "name": "Processing Foundation", + "slug": "freetype", + "name": "FreeType", "first_year": 2017, - "last_year": 2025, - "total_projects": 87, - "is_currently_active": true, + "last_year": 2024, + "total_projects": 17, + "is_currently_active": false, "active_years": [ 2017, 2018, @@ -441,7 +400,7 @@ 2021, 2022, 2023, - 2025 + 2024 ] }, { @@ -461,26 +420,6 @@ 2024 ] }, - { - "slug": "r-project-for-statistical-computing", - "name": "R project for statistical computing", - "first_year": 2016, - "last_year": 2025, - "total_projects": 212, - "is_currently_active": true, - "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 - ] - }, { "slug": "scilab", "name": "Scilab", @@ -500,7 +439,7 @@ "first_year": 2022, "last_year": 2025, "total_projects": 12, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2023, @@ -508,83 +447,86 @@ ] }, { - "slug": "the-enigma-team", - "name": "The ENIGMA Team", - "first_year": 2021, - "last_year": 2024, - "total_projects": 9, + "slug": "appleseed", + "name": "appleseed", + "first_year": 2017, + "last_year": 2020, + "total_projects": 11, "is_currently_active": false, "active_years": [ - 2021, - 2022, - 2023, - 2024 + 2017, + 2018, + 2019, + 2020 ] }, { - "slug": "the-julia-language", - "name": "The Julia Language", - "first_year": 2016, - "last_year": 2025, - "total_projects": 140, + "slug": "gnu-image-manipulation-program", + "name": "GNU Image Manipulation Program", + "first_year": 2022, + "last_year": 2026, + "total_projects": 10, "is_currently_active": true, "active_years": [ - 2016, - 2017, - 2019, - 2020, - 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "the-qt-project", - "name": "The Qt Project", - "first_year": 2018, - "last_year": 2018, - "total_projects": 1, + "slug": "the-enigma-team", + "name": "The ENIGMA Team", + "first_year": 2021, + "last_year": 2024, + "total_projects": 9, "is_currently_active": false, "active_years": [ - 2018 + 2021, + 2022, + 2023, + 2024 ] }, { - "slug": "the-terasology-foundation", - "name": "The Terasology Foundation", - "first_year": 2016, + "slug": "android-graphics-tools-team", + "name": "Android Graphics Tools Team", + "first_year": 2019, "last_year": 2021, - "total_projects": 43, + "total_projects": 8, "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, 2019, 2020, 2021 ] }, { - "slug": "videolan", - "name": "VideoLAN", - "first_year": 2016, - "last_year": 2025, - "total_projects": 92, + "slug": "freecad", + "name": "FreeCAD", + "first_year": 2023, + "last_year": 2026, + "total_projects": 8, "is_currently_active": true, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "graphite", + "name": "Graphite", + "first_year": 2024, + "last_year": 2026, + "total_projects": 8, + "is_currently_active": true, + "active_years": [ + 2024, + 2025, + 2026 ] }, { @@ -593,52 +535,93 @@ "first_year": 2024, "last_year": 2025, "total_projects": 7, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2024, 2025 ] }, { - "slug": "wayland", - "name": "Wayland", + "slug": "copyleft-games", + "name": "Copyleft Games", "first_year": 2016, - "last_year": 2016, - "total_projects": 1, + "last_year": 2017, + "total_projects": 4, "is_currently_active": false, "active_years": [ - 2016 + 2016, + 2017 ] }, { - "slug": "xorg-foundation", - "name": "X.Org Foundation", - "first_year": 2016, - "last_year": 2023, - "total_projects": 19, + "slug": "academy-software-foundation", + "name": "Academy Software Foundation", + "first_year": 2020, + "last_year": 2022, + "total_projects": 3, "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2019, 2020, - 2022, - 2023 + 2022 ] }, { - "slug": "xpra", - "name": "xpra", - "first_year": 2018, + "slug": "gambit-software-tools-for-game-theory", + "name": "Gambit - Software Tools for Game Theory", + "first_year": 2016, + "last_year": 2016, + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2016 + ] + }, + { + "slug": "genivi-alliance", + "name": "GENIVI Alliance", + "first_year": 2017, "last_year": 2019, - "total_projects": 0, + "total_projects": 3, "is_currently_active": false, "active_years": [ + 2017, 2018, 2019 ] }, + { + "slug": "gdevelop", + "name": "GDevelop", + "first_year": 2020, + "last_year": 2020, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2020 + ] + }, + { + "slug": "halide", + "name": "Halide", + "first_year": 2021, + "last_year": 2021, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2021 + ] + }, + { + "slug": "mzmine-and-ms-dial", + "name": "MZmine and MS-DIAL", + "first_year": 2023, + "last_year": 2023, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2023 + ] + }, { "slug": "xrdesktop", "name": "xrdesktop", @@ -649,6 +632,40 @@ "active_years": [ 2021 ] + }, + { + "slug": "the-qt-project", + "name": "The Qt Project", + "first_year": 2018, + "last_year": 2018, + "total_projects": 1, + "is_currently_active": false, + "active_years": [ + 2018 + ] + }, + { + "slug": "wayland", + "name": "Wayland", + "first_year": 2016, + "last_year": 2016, + "total_projects": 1, + "is_currently_active": false, + "active_years": [ + 2016 + ] + }, + { + "slug": "xpra", + "name": "xpra", + "first_year": 2018, + "last_year": 2019, + "total_projects": 0, + "is_currently_active": false, + "active_years": [ + 2018, + 2019 + ] } ], "yearlyStats": { @@ -691,10 +708,14 @@ "2025": { "organizationCount": 19, "projectCount": 197 + }, + "2026": { + "organizationCount": 16, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.429Z" + "generated_at": "2026-02-19T13:36:00.366Z" } } \ No newline at end of file diff --git a/new-api-details/topics/graphql.json b/new-api-details/topics/graphql.json index 8300e2bd..53913aef 100644 --- a/new-api-details/topics/graphql.json +++ b/new-api-details/topics/graphql.json @@ -1,7 +1,7 @@ { "slug": "graphql", "name": "graphql", - "published_at": "2026-01-25T16:06:29.106Z", + "published_at": "2026-02-19T13:36:01.739Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.106Z" + "generated_at": "2026-02-19T13:36:01.739Z" } } \ No newline at end of file diff --git a/new-api-details/topics/graphs.json b/new-api-details/topics/graphs.json index fceaa58a..afb3f4f5 100644 --- a/new-api-details/topics/graphs.json +++ b/new-api-details/topics/graphs.json @@ -1,10 +1,11 @@ { "slug": "graphs", "name": "graphs", - "published_at": "2026-01-25T16:06:29.206Z", + "published_at": "2026-02-19T13:36:02.039Z", "organizationCount": 2, "projectCount": 142, "years": [ + 2026, 2025, 2024, 2023, @@ -17,22 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "jgrapht", - "name": "JGraphT", - "first_year": 2018, - "last_year": 2018, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2018 - ] - }, { "slug": "the-julia-language", "name": "The Julia Language", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 140, "is_currently_active": true, "active_years": [ @@ -44,7 +34,19 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "jgrapht", + "name": "JGraphT", + "first_year": 2018, + "last_year": 2018, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2018 ] } ], @@ -88,10 +90,14 @@ "2025": { "organizationCount": 1, "projectCount": 14 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.206Z" + "generated_at": "2026-02-19T13:36:02.039Z" } } \ No newline at end of file diff --git a/new-api-details/topics/great-developer-tooling.json b/new-api-details/topics/great-developer-tooling.json index efcd3ad2..6645ae65 100644 --- a/new-api-details/topics/great-developer-tooling.json +++ b/new-api-details/topics/great-developer-tooling.json @@ -1,10 +1,11 @@ { "slug": "great-developer-tooling", "name": "great developer tooling", - "published_at": "2026-01-25T16:06:28.797Z", + "published_at": "2026-02-19T13:36:01.081Z", "organizationCount": 3, "projectCount": 146, "years": [ + 2026, 2025, 2024, 2023, @@ -17,6 +18,27 @@ 2016 ], "organizations": [ + { + "slug": "zulip", + "name": "Zulip", + "first_year": 2016, + "last_year": 2026, + "total_projects": 135, + "is_currently_active": true, + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ] + }, { "slug": "continuous-delivery-foundation", "name": "Continuous Delivery Foundation", @@ -40,26 +62,6 @@ 2019, 2020 ] - }, - { - "slug": "zulip", - "name": "Zulip", - "first_year": 2016, - "last_year": 2025, - "total_projects": 135, - "is_currently_active": true, - "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 - ] } ], "yearlyStats": { @@ -102,10 +104,14 @@ "2025": { "organizationCount": 1, "projectCount": 14 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.797Z" + "generated_at": "2026-02-19T13:36:01.081Z" } } \ No newline at end of file diff --git a/new-api-details/topics/ground-penetrating-radar.json b/new-api-details/topics/ground-penetrating-radar.json index 5f2b2caf..27aed79e 100644 --- a/new-api-details/topics/ground-penetrating-radar.json +++ b/new-api-details/topics/ground-penetrating-radar.json @@ -1,10 +1,11 @@ { "slug": "ground-penetrating-radar", "name": "ground penetrating radar", - "published_at": "2026-01-25T16:06:29.839Z", + "published_at": "2026-02-19T13:36:01.731Z", "organizationCount": 1, "projectCount": 18, "years": [ + 2026, 2025, 2024, 2023, @@ -16,7 +17,7 @@ "slug": "gprmax", "name": "gprMax", "first_year": 2019, - "last_year": 2025, + "last_year": 2026, "total_projects": 18, "is_currently_active": true, "active_years": [ @@ -24,7 +25,8 @@ 2021, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -48,10 +50,14 @@ "2025": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.839Z" + "generated_at": "2026-02-19T13:36:01.731Z" } } \ No newline at end of file diff --git a/new-api-details/topics/group-chat.json b/new-api-details/topics/group-chat.json index 4584bb6f..38d5b0c6 100644 --- a/new-api-details/topics/group-chat.json +++ b/new-api-details/topics/group-chat.json @@ -1,10 +1,11 @@ { "slug": "group-chat", "name": "group chat", - "published_at": "2026-01-25T16:06:29.810Z", + "published_at": "2026-02-19T13:36:02.796Z", "organizationCount": 2, "projectCount": 238, "years": [ + 2026, 2025, 2024, 2023, @@ -18,13 +19,14 @@ ], "organizations": [ { - "slug": "rocketchat", - "name": "rocket.chat", - "first_year": 2017, - "last_year": 2025, - "total_projects": 103, + "slug": "zulip", + "name": "Zulip", + "first_year": 2016, + "last_year": 2026, + "total_projects": 135, "is_currently_active": true, "active_years": [ + 2016, 2017, 2018, 2019, @@ -33,18 +35,18 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "zulip", - "name": "Zulip", - "first_year": 2016, - "last_year": 2025, - "total_projects": 135, + "slug": "rocketchat", + "name": "rocket.chat", + "first_year": 2017, + "last_year": 2026, + "total_projects": 103, "is_currently_active": true, "active_years": [ - 2016, 2017, 2018, 2019, @@ -53,7 +55,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -97,10 +100,14 @@ "2025": { "organizationCount": 2, "projectCount": 33 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.810Z" + "generated_at": "2026-02-19T13:36:02.796Z" } } \ No newline at end of file diff --git a/new-api-details/topics/gtk.json b/new-api-details/topics/gtk.json index 2732b823..496a5cee 100644 --- a/new-api-details/topics/gtk.json +++ b/new-api-details/topics/gtk.json @@ -1,10 +1,11 @@ { "slug": "gtk", "name": "gtk", - "published_at": "2026-01-25T16:06:29.453Z", + "published_at": "2026-02-19T13:36:02.520Z", "organizationCount": 1, "projectCount": 70, "years": [ + 2026, 2025, 2024, 2023, @@ -19,7 +20,7 @@ "slug": "open-technologies-alliance-gfoss", "name": "Open Technologies Alliance - GFOSS", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 70, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.453Z" + "generated_at": "2026-02-19T13:36:02.520Z" } } \ No newline at end of file diff --git a/new-api-details/topics/gui-toolkit.json b/new-api-details/topics/gui-toolkit.json index 66d6bb67..aa0c1f8e 100644 --- a/new-api-details/topics/gui-toolkit.json +++ b/new-api-details/topics/gui-toolkit.json @@ -1,7 +1,7 @@ { "slug": "gui-toolkit", "name": "gui toolkit", - "published_at": "2026-01-25T16:06:29.516Z", + "published_at": "2026-02-19T13:36:02.657Z", "organizationCount": 1, "projectCount": 5, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.516Z" + "generated_at": "2026-02-19T13:36:02.657Z" } } \ No newline at end of file diff --git a/new-api-details/topics/gui.json b/new-api-details/topics/gui.json index f1b8996d..1c595399 100644 --- a/new-api-details/topics/gui.json +++ b/new-api-details/topics/gui.json @@ -1,10 +1,11 @@ { "slug": "gui", "name": "gui", - "published_at": "2026-01-25T16:06:29.057Z", + "published_at": "2026-02-19T13:36:01.694Z", "organizationCount": 4, "projectCount": 51, "years": [ + 2026, 2025, 2024, 2023, @@ -18,14 +19,13 @@ ], "organizations": [ { - "slug": "gnu-radio", - "name": "GNU Radio", - "first_year": 2016, - "last_year": 2025, - "total_projects": 18, + "slug": "haiku", + "name": "Haiku", + "first_year": 2017, + "last_year": 2026, + "total_projects": 26, "is_currently_active": true, "active_years": [ - 2016, 2017, 2018, 2019, @@ -34,17 +34,18 @@ 2022, 2023, 2024, - 2025 + 2026 ] }, { - "slug": "haiku", - "name": "Haiku", - "first_year": 2017, - "last_year": 2024, - "total_projects": 26, - "is_currently_active": false, + "slug": "gnu-radio", + "name": "GNU Radio", + "first_year": 2016, + "last_year": 2026, + "total_projects": 18, + "is_currently_active": true, "active_years": [ + 2016, 2017, 2018, 2019, @@ -52,18 +53,9 @@ 2021, 2022, 2023, - 2024 - ] - }, - { - "slug": "wxwidgets", - "name": "wxWidgets", - "first_year": 2017, - "last_year": 2017, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2017 + 2024, + 2025, + 2026 ] }, { @@ -77,6 +69,17 @@ 2021, 2022 ] + }, + { + "slug": "wxwidgets", + "name": "wxWidgets", + "first_year": 2017, + "last_year": 2017, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2017 + ] } ], "yearlyStats": { @@ -119,10 +122,14 @@ "2025": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.057Z" + "generated_at": "2026-02-19T13:36:01.694Z" } } \ No newline at end of file diff --git a/new-api-details/topics/guitar.json b/new-api-details/topics/guitar.json index 8e5f029c..e5a8ce58 100644 --- a/new-api-details/topics/guitar.json +++ b/new-api-details/topics/guitar.json @@ -1,7 +1,7 @@ { "slug": "guitar", "name": "guitar", - "published_at": "2026-01-25T16:06:29.388Z", + "published_at": "2026-02-19T13:36:02.379Z", "organizationCount": 1, "projectCount": 24, "years": [ @@ -76,6 +76,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.388Z" + "generated_at": "2026-02-19T13:36:02.379Z" } } \ No newline at end of file diff --git a/new-api-details/topics/hardware-accelerated-media-processing.json b/new-api-details/topics/hardware-accelerated-media-processing.json index 21859cc0..17b6a187 100644 --- a/new-api-details/topics/hardware-accelerated-media-processing.json +++ b/new-api-details/topics/hardware-accelerated-media-processing.json @@ -1,7 +1,7 @@ { "slug": "hardware-accelerated-media-processing", "name": "hardware accelerated media processing", - "published_at": "2026-01-25T16:06:29.160Z", + "published_at": "2026-02-19T13:36:01.833Z", "organizationCount": 1, "projectCount": 12, "years": [ @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.160Z" + "generated_at": "2026-02-19T13:36:01.833Z" } } \ No newline at end of file diff --git a/new-api-details/topics/hardware-control.json b/new-api-details/topics/hardware-control.json new file mode 100644 index 00000000..07ba965f --- /dev/null +++ b/new-api-details/topics/hardware-control.json @@ -0,0 +1,87 @@ +{ + "slug": "hardware-control", + "name": "Hardware Control", + "published_at": "2026-02-19T13:36:02.508Z", + "organizationCount": 1, + "projectCount": 46, + "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2019, + 2018, + 2016 + ], + "organizations": [ + { + "slug": "open-robotics", + "name": "Open Robotics", + "first_year": 2016, + "last_year": 2026, + "total_projects": 46, + "is_currently_active": true, + "active_years": [ + 2016, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ] + } + ], + "yearlyStats": { + "2016": { + "organizationCount": 1, + "projectCount": 7 + }, + "2018": { + "organizationCount": 1, + "projectCount": 4 + }, + "2019": { + "organizationCount": 1, + "projectCount": 7 + }, + "2020": { + "organizationCount": 1, + "projectCount": 7 + }, + "2021": { + "organizationCount": 1, + "projectCount": 2 + }, + "2022": { + "organizationCount": 1, + "projectCount": 2 + }, + "2023": { + "organizationCount": 1, + "projectCount": 3 + }, + "2024": { + "organizationCount": 1, + "projectCount": 5 + }, + "2025": { + "organizationCount": 1, + "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 + } + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:36:02.508Z" + } +} \ No newline at end of file diff --git a/new-api-details/topics/hardware.json b/new-api-details/topics/hardware.json index 630f714e..491d07a0 100644 --- a/new-api-details/topics/hardware.json +++ b/new-api-details/topics/hardware.json @@ -1,10 +1,11 @@ { "slug": "hardware", "name": "hardware", - "published_at": "2026-01-25T16:06:28.566Z", + "published_at": "2026-02-19T13:36:00.656Z", "organizationCount": 14, "projectCount": 737, "years": [ + 2026, 2025, 2024, 2023, @@ -18,11 +19,11 @@ ], "organizations": [ { - "slug": "beagleboardorg", - "name": "BeagleBoard.org", + "slug": "python-software-foundation", + "name": "Python Software Foundation", "first_year": 2016, - "last_year": 2025, - "total_projects": 44, + "last_year": 2026, + "total_projects": 277, "is_currently_active": true, "active_years": [ 2016, @@ -34,108 +35,144 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "center-for-research-in-open-source-software-cross", - "name": "Center for Research in Open Source Software (CROSS)", - "first_year": 2018, - "last_year": 2022, - "total_projects": 20, - "is_currently_active": false, + "slug": "fossasia", + "name": "FOSSASIA", + "first_year": 2016, + "last_year": 2026, + "total_projects": 140, + "is_currently_active": true, + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2024, + 2025, + 2026 + ] + }, + { + "slug": "open-technologies-alliance-gfoss", + "name": "Open Technologies Alliance - GFOSS", + "first_year": 2017, + "last_year": 2026, + "total_projects": 70, + "is_currently_active": true, "active_years": [ + 2017, 2018, 2019, 2021, - 2022 + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "coreboot", - "name": "coreboot", + "slug": "free-and-open-source-silicon-foundation", + "name": "Free and Open Source Silicon Foundation", "first_year": 2016, - "last_year": 2023, - "total_projects": 11, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 60, + "is_currently_active": true, "active_years": [ 2016, + 2017, + 2018, 2019, 2020, + 2021, 2022, - 2023 + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "flashrom", - "name": "Flashrom", - "first_year": 2022, - "last_year": 2022, - "total_projects": 1, - "is_currently_active": false, + "slug": "uc-ospo", + "name": "UC OSPO", + "first_year": 2023, + "last_year": 2026, + "total_projects": 47, + "is_currently_active": true, "active_years": [ - 2022 + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "fossasia", - "name": "FOSSASIA", + "slug": "beagleboardorg", + "name": "BeagleBoard.org", "first_year": 2016, "last_year": 2025, - "total_projects": 140, - "is_currently_active": true, + "total_projects": 44, + "is_currently_active": false, "active_years": [ 2016, 2017, 2018, 2019, + 2020, + 2021, + 2022, + 2023, 2024, 2025 ] }, { - "slug": "free-and-open-source-silicon-foundation", - "name": "Free and Open Source Silicon Foundation", + "slug": "public-lab", + "name": "Public Lab", "first_year": 2016, - "last_year": 2025, - "total_projects": 60, - "is_currently_active": true, + "last_year": 2022, + "total_projects": 38, + "is_currently_active": false, "active_years": [ 2016, 2017, 2018, 2019, - 2020, 2021, - 2022, - 2023, - 2024, - 2025 + 2022 ] }, { - "slug": "kolibrios-project-team", - "name": "KolibriOS Project Team", - "first_year": 2016, - "last_year": 2024, - "total_projects": 6, + "slug": "center-for-research-in-open-source-software-cross", + "name": "Center for Research in Open Source Software (CROSS)", + "first_year": 2018, + "last_year": 2022, + "total_projects": 20, "is_currently_active": false, "active_years": [ - 2016, - 2024 + 2018, + 2019, + 2021, + 2022 ] }, { - "slug": "libre-space-foundation", - "name": "Libre Space Foundation", - "first_year": 2019, - "last_year": 2021, - "total_projects": 7, + "slug": "coreboot", + "name": "coreboot", + "first_year": 2016, + "last_year": 2023, + "total_projects": 11, "is_currently_active": false, "active_years": [ + 2016, 2019, 2020, - 2021 + 2022, + 2023 ] }, { @@ -152,57 +189,29 @@ ] }, { - "slug": "open-technologies-alliance-gfoss", - "name": "Open Technologies Alliance - GFOSS", - "first_year": 2017, - "last_year": 2025, - "total_projects": 70, - "is_currently_active": true, - "active_years": [ - 2017, - 2018, - 2019, - 2021, - 2022, - 2023, - 2024, - 2025 - ] - }, - { - "slug": "public-lab", - "name": "Public Lab", - "first_year": 2016, - "last_year": 2022, - "total_projects": 38, + "slug": "libre-space-foundation", + "name": "Libre Space Foundation", + "first_year": 2019, + "last_year": 2021, + "total_projects": 7, "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, 2019, - 2021, - 2022 + 2020, + 2021 ] }, { - "slug": "python-software-foundation", - "name": "Python Software Foundation", + "slug": "kolibrios-project-team", + "name": "KolibriOS Project Team", "first_year": 2016, - "last_year": 2025, - "total_projects": 277, + "last_year": 2026, + "total_projects": 6, "is_currently_active": true, "active_years": [ 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, 2024, - 2025 + 2026 ] }, { @@ -220,16 +229,14 @@ ] }, { - "slug": "uc-ospo", - "name": "UC OSPO", - "first_year": 2023, - "last_year": 2025, - "total_projects": 47, - "is_currently_active": true, + "slug": "flashrom", + "name": "Flashrom", + "first_year": 2022, + "last_year": 2022, + "total_projects": 1, + "is_currently_active": false, "active_years": [ - 2023, - 2024, - 2025 + 2022 ] } ], @@ -273,10 +280,14 @@ "2025": { "organizationCount": 6, "projectCount": 74 + }, + "2026": { + "organizationCount": 6, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.566Z" + "generated_at": "2026-02-19T13:36:00.656Z" } } \ No newline at end of file diff --git a/new-api-details/topics/haskell.json b/new-api-details/topics/haskell.json index 61674973..f34d7da1 100644 --- a/new-api-details/topics/haskell.json +++ b/new-api-details/topics/haskell.json @@ -1,10 +1,11 @@ { "slug": "haskell", "name": "haskell", - "published_at": "2026-01-25T16:06:29.115Z", + "published_at": "2026-02-19T13:36:01.757Z", "organizationCount": 1, "projectCount": 70, "years": [ + 2026, 2025, 2024, 2022, @@ -18,7 +19,7 @@ "slug": "haskellorg", "name": "Haskell.org", "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "total_projects": 70, "is_currently_active": true, "active_years": [ @@ -28,7 +29,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] } ], @@ -60,10 +62,14 @@ "2025": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.115Z" + "generated_at": "2026-02-19T13:36:01.757Z" } } \ No newline at end of file diff --git a/new-api-details/topics/hdl.json b/new-api-details/topics/hdl.json index 165f6373..d6c8ab87 100644 --- a/new-api-details/topics/hdl.json +++ b/new-api-details/topics/hdl.json @@ -1,7 +1,7 @@ { "slug": "hdl", "name": "HDL", - "published_at": "2026-01-25T16:06:28.667Z", + "published_at": "2026-02-19T13:36:01.013Z", "organizationCount": 1, "projectCount": 12, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.667Z" + "generated_at": "2026-02-19T13:36:01.014Z" } } \ No newline at end of file diff --git a/new-api-details/topics/health-care.json b/new-api-details/topics/health-care.json index f8177a53..a51f6685 100644 --- a/new-api-details/topics/health-care.json +++ b/new-api-details/topics/health-care.json @@ -1,10 +1,11 @@ { "slug": "health-care", "name": "Health Care", - "published_at": "2026-01-25T16:06:29.470Z", + "published_at": "2026-02-19T13:36:02.557Z", "organizationCount": 1, "projectCount": 9, "years": [ + 2026, 2025, 2024 ], @@ -13,12 +14,13 @@ "slug": "openelis-global", "name": "OpenELIS Global", "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "total_projects": 9, "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -30,10 +32,14 @@ "2025": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.470Z" + "generated_at": "2026-02-19T13:36:02.557Z" } } \ No newline at end of file diff --git a/new-api-details/topics/health.json b/new-api-details/topics/health.json index 70b1e5a9..864bc4f3 100644 --- a/new-api-details/topics/health.json +++ b/new-api-details/topics/health.json @@ -1,10 +1,11 @@ { "slug": "health", "name": "health", - "published_at": "2026-01-25T16:06:28.393Z", + "published_at": "2026-02-19T13:36:00.465Z", "organizationCount": 8, "projectCount": 212, "years": [ + 2026, 2025, 2024, 2023, @@ -18,42 +19,24 @@ ], "organizations": [ { - "slug": "aossie-the-australian-national-universitys-open-source-software-innovation-and-education", - "name": "AOSSIE - The Australian National University's Open-Source Software Innovation and Education", + "slug": "openmrs", + "name": "OpenMRS", "first_year": 2016, - "last_year": 2016, - "total_projects": 6, - "is_currently_active": false, - "active_years": [ - 2016 - ] - }, - { - "slug": "chaoss", - "name": "CHAOSS", - "first_year": 2018, - "last_year": 2025, - "total_projects": 29, + "last_year": 2026, + "total_projects": 94, "is_currently_active": true, "active_years": [ + 2016, + 2017, 2018, 2019, 2020, 2021, 2022, - 2025 - ] - }, - { - "slug": "data-for-the-common-good", - "name": "Data for the Common Good", - "first_year": 2024, - "last_year": 2025, - "total_projects": 8, - "is_currently_active": true, - "active_years": [ + 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -74,9 +57,9 @@ "slug": "librehealth", "name": "LibreHealth", "first_year": 2017, - "last_year": 2023, + "last_year": 2026, "total_projects": 31, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, @@ -84,20 +67,62 @@ 2020, 2021, 2022, - 2023 + 2023, + 2026 + ] + }, + { + "slug": "chaoss", + "name": "CHAOSS", + "first_year": 2018, + "last_year": 2025, + "total_projects": 29, + "is_currently_active": false, + "active_years": [ + 2018, + 2019, + 2020, + 2021, + 2022, + 2025 ] }, { "slug": "open-food-facts", "name": "Open Food Facts", "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "total_projects": 10, "is_currently_active": true, "active_years": [ 2018, 2022, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "data-for-the-common-good", + "name": "Data for the Common Good", + "first_year": 2024, + "last_year": 2026, + "total_projects": 8, + "is_currently_active": true, + "active_years": [ + 2024, + 2025, + 2026 + ] + }, + { + "slug": "aossie-the-australian-national-universitys-open-source-software-innovation-and-education", + "name": "AOSSIE - The Australian National University's Open-Source Software Innovation and Education", + "first_year": 2016, + "last_year": 2016, + "total_projects": 6, + "is_currently_active": false, + "active_years": [ + 2016 ] }, { @@ -110,26 +135,6 @@ "active_years": [ 2020 ] - }, - { - "slug": "openmrs", - "name": "OpenMRS", - "first_year": 2016, - "last_year": 2025, - "total_projects": 94, - "is_currently_active": true, - "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 - ] } ], "yearlyStats": { @@ -172,10 +177,14 @@ "2025": { "organizationCount": 4, "projectCount": 19 + }, + "2026": { + "organizationCount": 4, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.393Z" + "generated_at": "2026-02-19T13:36:00.465Z" } } \ No newline at end of file diff --git a/new-api-details/topics/healthcare.json b/new-api-details/topics/healthcare.json index c09dbc65..5522671a 100644 --- a/new-api-details/topics/healthcare.json +++ b/new-api-details/topics/healthcare.json @@ -1,10 +1,11 @@ { "slug": "healthcare", "name": "healthcare", - "published_at": "2026-01-25T16:06:29.094Z", + "published_at": "2026-02-19T13:36:01.638Z", "organizationCount": 1, "projectCount": 45, "years": [ + 2026, 2024, 2023, 2022, @@ -20,9 +21,9 @@ "slug": "global-alliance-for-genomics-and-health", "name": "Global Alliance for Genomics and Health", "first_year": 2016, - "last_year": 2024, + "last_year": 2026, "total_projects": 45, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -32,7 +33,8 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] } ], @@ -72,10 +74,14 @@ "2024": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.094Z" + "generated_at": "2026-02-19T13:36:01.638Z" } } \ No newline at end of file diff --git a/new-api-details/topics/heathcare.json b/new-api-details/topics/heathcare.json index a6efd906..1c8a1afa 100644 --- a/new-api-details/topics/heathcare.json +++ b/new-api-details/topics/heathcare.json @@ -1,10 +1,11 @@ { "slug": "heathcare", "name": "heathcare", - "published_at": "2026-01-25T16:06:28.447Z", + "published_at": "2026-02-19T13:36:00.417Z", "organizationCount": 1, "projectCount": 12, "years": [ + 2026, 2025, 2024 ], @@ -13,12 +14,13 @@ "slug": "alaska", "name": "Alaska", "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "total_projects": 12, "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -30,10 +32,14 @@ "2025": { "organizationCount": 1, "projectCount": 8 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.447Z" + "generated_at": "2026-02-19T13:36:00.417Z" } } \ No newline at end of file diff --git a/new-api-details/topics/hfoss.json b/new-api-details/topics/hfoss.json index e84b675c..696bb47a 100644 --- a/new-api-details/topics/hfoss.json +++ b/new-api-details/topics/hfoss.json @@ -1,10 +1,11 @@ { "slug": "hfoss", "name": "hfoss", - "published_at": "2026-01-25T16:06:29.280Z", + "published_at": "2026-02-19T13:36:02.187Z", "organizationCount": 2, "projectCount": 34, "years": [ + 2026, 2023, 2022, 2021, @@ -19,9 +20,9 @@ "slug": "librehealth", "name": "LibreHealth", "first_year": 2017, - "last_year": 2023, + "last_year": 2026, "total_projects": 31, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, @@ -29,7 +30,8 @@ 2020, 2021, 2022, - 2023 + 2023, + 2026 ] }, { @@ -77,10 +79,14 @@ "2023": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.280Z" + "generated_at": "2026-02-19T13:36:02.187Z" } } \ No newline at end of file diff --git a/new-api-details/topics/high-energy-astrophysics.json b/new-api-details/topics/high-energy-astrophysics.json index 4e00a401..36649e79 100644 --- a/new-api-details/topics/high-energy-astrophysics.json +++ b/new-api-details/topics/high-energy-astrophysics.json @@ -1,10 +1,11 @@ { "slug": "high-energy-astrophysics", "name": "high-energy astrophysics", - "published_at": "2026-01-25T16:06:29.469Z", + "published_at": "2026-02-19T13:36:02.555Z", "organizationCount": 1, "projectCount": 77, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "openastronomy", "name": "OpenAstronomy", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 77, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 2, "projectCount": 10 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.469Z" + "generated_at": "2026-02-19T13:36:02.555Z" } } \ No newline at end of file diff --git a/new-api-details/topics/high-energy-physics.json b/new-api-details/topics/high-energy-physics.json index 1e4a5795..6cbe7e51 100644 --- a/new-api-details/topics/high-energy-physics.json +++ b/new-api-details/topics/high-energy-physics.json @@ -1,10 +1,11 @@ { "slug": "high-energy-physics", "name": "high-energy physics", - "published_at": "2026-01-25T16:06:28.646Z", + "published_at": "2026-02-19T13:36:00.971Z", "organizationCount": 1, "projectCount": 214, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "cern-hsf", "name": "CERN-HSF", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 214, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 26 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.646Z" + "generated_at": "2026-02-19T13:36:00.971Z" } } \ No newline at end of file diff --git a/new-api-details/topics/high-performance-computing.json b/new-api-details/topics/high-performance-computing.json index 8a6ee8be..0f76f648 100644 --- a/new-api-details/topics/high-performance-computing.json +++ b/new-api-details/topics/high-performance-computing.json @@ -1,10 +1,11 @@ { "slug": "high-performance-computing", "name": "high performance computing", - "published_at": "2026-01-25T16:06:28.555Z", + "published_at": "2026-02-19T13:36:00.889Z", "organizationCount": 13, "projectCount": 619, "years": [ + 2026, 2025, 2024, 2023, @@ -18,11 +19,11 @@ ], "organizations": [ { - "slug": "brl-cad", - "name": "BRL-CAD", + "slug": "numfocus", + "name": "NumFOCUS", "first_year": 2016, - "last_year": 2025, - "total_projects": 73, + "last_year": 2026, + "total_projects": 277, "is_currently_active": true, "active_years": [ 2016, @@ -34,52 +35,76 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "chapel", - "name": "Chapel", + "slug": "the-julia-language", + "name": "The Julia Language", "first_year": 2016, - "last_year": 2021, - "total_projects": 16, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 140, + "is_currently_active": true, "active_years": [ 2016, 2017, 2019, 2020, - 2021 + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "distributed-and-unified-numerics-environment-dune", - "name": "Distributed and Unified Numerics Environment (DUNE)", + "slug": "brl-cad", + "name": "BRL-CAD", "first_year": 2016, - "last_year": 2016, - "total_projects": 2, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 73, + "is_currently_active": true, "active_years": [ - 2016 + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "eclipse-vertx", - "name": "Eclipse Vert.x", + "slug": "stear-group", + "name": "Ste||ar group", "first_year": 2016, - "last_year": 2017, - "total_projects": 6, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 38, + "is_currently_active": true, "active_years": [ 2016, - 2017 + 2017, + 2018, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { "slug": "fortran-lang", "name": "Fortran-lang", "first_year": 2021, - "last_year": 2025, + "last_year": 2026, "total_projects": 21, "is_currently_active": true, "active_years": [ @@ -87,83 +112,68 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "halide", - "name": "Halide", - "first_year": 2021, - "last_year": 2021, - "total_projects": 2, + "slug": "performance-co-pilot", + "name": "Performance Co-Pilot", + "first_year": 2016, + "last_year": 2022, + "total_projects": 19, "is_currently_active": false, "active_years": [ - 2021 + 2016, + 2017, + 2018, + 2019, + 2020, + 2022 ] }, { - "slug": "mdanalysis", - "name": "MDAnalysis", - "first_year": 2020, - "last_year": 2025, + "slug": "chapel", + "name": "Chapel", + "first_year": 2016, + "last_year": 2021, "total_projects": 16, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ + 2016, + 2017, + 2019, 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2021 ] }, { - "slug": "numfocus", - "name": "NumFOCUS", - "first_year": 2016, - "last_year": 2025, - "total_projects": 277, + "slug": "mdanalysis", + "name": "MDAnalysis", + "first_year": 2020, + "last_year": 2026, + "total_projects": 16, "is_currently_active": true, "active_years": [ - 2016, - 2017, - 2018, - 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "performance-co-pilot", - "name": "Performance Co-Pilot", + "slug": "eclipse-vertx", + "name": "Eclipse Vert.x", "first_year": 2016, - "last_year": 2022, - "total_projects": 19, + "last_year": 2017, + "total_projects": 6, "is_currently_active": false, "active_years": [ 2016, - 2017, - 2018, - 2019, - 2020, - 2022 - ] - }, - { - "slug": "rspamd", - "name": "Rspamd", - "first_year": 2017, - "last_year": 2025, - "total_projects": 3, - "is_currently_active": true, - "active_years": [ - 2017, - 2018, - 2025 + 2017 ] }, { @@ -179,41 +189,38 @@ ] }, { - "slug": "stear-group", - "name": "Ste||ar group", - "first_year": 2016, + "slug": "rspamd", + "name": "Rspamd", + "first_year": 2017, "last_year": 2025, - "total_projects": 38, - "is_currently_active": true, + "total_projects": 3, + "is_currently_active": false, "active_years": [ - 2016, 2017, 2018, - 2020, - 2021, - 2022, - 2023, - 2024, 2025 ] }, { - "slug": "the-julia-language", - "name": "The Julia Language", + "slug": "distributed-and-unified-numerics-environment-dune", + "name": "Distributed and Unified Numerics Environment (DUNE)", "first_year": 2016, - "last_year": 2025, - "total_projects": 140, - "is_currently_active": true, + "last_year": 2016, + "total_projects": 2, + "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2016 + ] + }, + { + "slug": "halide", + "name": "Halide", + "first_year": 2021, + "last_year": 2021, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2021 ] } ], @@ -257,10 +264,14 @@ "2025": { "organizationCount": 9, "projectCount": 81 + }, + "2026": { + "organizationCount": 8, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.555Z" + "generated_at": "2026-02-19T13:36:00.889Z" } } \ No newline at end of file diff --git a/new-api-details/topics/high-performance-data-processing.json b/new-api-details/topics/high-performance-data-processing.json index 1b7903e6..cc9b83cd 100644 --- a/new-api-details/topics/high-performance-data-processing.json +++ b/new-api-details/topics/high-performance-data-processing.json @@ -1,7 +1,7 @@ { "slug": "high-performance-data-processing", "name": "high performance data processing", - "published_at": "2026-01-25T16:06:29.669Z", + "published_at": "2026-02-19T13:36:02.883Z", "organizationCount": 2, "projectCount": 15, "years": [ @@ -70,6 +70,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.669Z" + "generated_at": "2026-02-19T13:36:02.883Z" } } \ No newline at end of file diff --git a/new-api-details/topics/high-performance.json b/new-api-details/topics/high-performance.json index 7603bd62..584f7185 100644 --- a/new-api-details/topics/high-performance.json +++ b/new-api-details/topics/high-performance.json @@ -1,7 +1,7 @@ { "slug": "high-performance", "name": "high performance", - "published_at": "2026-01-25T16:06:29.619Z", + "published_at": "2026-02-19T13:36:00.572Z", "organizationCount": 2, "projectCount": 12, "years": [ @@ -57,6 +57,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.619Z" + "generated_at": "2026-02-19T13:36:00.572Z" } } \ No newline at end of file diff --git a/new-api-details/topics/high-quality-codebase.json b/new-api-details/topics/high-quality-codebase.json index eb0e24ec..163a8314 100644 --- a/new-api-details/topics/high-quality-codebase.json +++ b/new-api-details/topics/high-quality-codebase.json @@ -1,10 +1,11 @@ { "slug": "high-quality-codebase", "name": "high quality codebase", - "published_at": "2026-01-25T16:06:29.812Z", + "published_at": "2026-02-19T13:36:03.175Z", "organizationCount": 1, "projectCount": 135, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "zulip", "name": "Zulip", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 135, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 14 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.812Z" + "generated_at": "2026-02-19T13:36:03.175Z" } } \ No newline at end of file diff --git a/new-api-details/topics/history.json b/new-api-details/topics/history.json index 1a89c68d..37371f24 100644 --- a/new-api-details/topics/history.json +++ b/new-api-details/topics/history.json @@ -1,10 +1,11 @@ { "slug": "history", "name": "History", - "published_at": "2026-01-25T16:06:28.810Z", + "published_at": "2026-02-19T13:36:01.124Z", "organizationCount": 1, "projectCount": 30, "years": [ + 2026, 2022, 2021, 2020, @@ -16,15 +17,16 @@ "slug": "cuneiform-digital-library-initiative-cdli", "name": "Cuneiform Digital Library Initiative (CDLI)", "first_year": 2018, - "last_year": 2022, + "last_year": 2026, "total_projects": 30, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2018, 2019, 2020, 2021, - 2022 + 2022, + 2026 ] } ], @@ -48,10 +50,14 @@ "2022": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.810Z" + "generated_at": "2026-02-19T13:36:01.124Z" } } \ No newline at end of file diff --git a/new-api-details/topics/hmis.json b/new-api-details/topics/hmis.json index 501aa4d5..f41810ea 100644 --- a/new-api-details/topics/hmis.json +++ b/new-api-details/topics/hmis.json @@ -1,10 +1,11 @@ { "slug": "hmis", "name": "HMIS", - "published_at": "2026-01-25T16:06:29.444Z", + "published_at": "2026-02-19T13:36:02.504Z", "organizationCount": 1, "projectCount": 9, "years": [ + 2026, 2025, 2024 ], @@ -13,12 +14,13 @@ "slug": "open-healthcare-network", "name": "Open HealthCare Network", "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "total_projects": 9, "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -30,10 +32,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.444Z" + "generated_at": "2026-02-19T13:36:02.504Z" } } \ No newline at end of file diff --git a/new-api-details/topics/home-servers.json b/new-api-details/topics/home-servers.json index ce1f3a55..0bf3f27f 100644 --- a/new-api-details/topics/home-servers.json +++ b/new-api-details/topics/home-servers.json @@ -1,7 +1,7 @@ { "slug": "home-servers", "name": "home servers", - "published_at": "2026-01-25T16:06:28.450Z", + "published_at": "2026-02-19T13:36:00.423Z", "organizationCount": 1, "projectCount": 18, "years": [ @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.450Z" + "generated_at": "2026-02-19T13:36:00.423Z" } } \ No newline at end of file diff --git a/new-api-details/topics/home-theater.json b/new-api-details/topics/home-theater.json index b9d52e76..bf37a762 100644 --- a/new-api-details/topics/home-theater.json +++ b/new-api-details/topics/home-theater.json @@ -1,7 +1,7 @@ { "slug": "home-theater", "name": "home theater", - "published_at": "2026-01-25T16:06:29.247Z", + "published_at": "2026-02-19T13:36:02.119Z", "organizationCount": 1, "projectCount": 12, "years": [ @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.247Z" + "generated_at": "2026-02-19T13:36:02.119Z" } } \ No newline at end of file diff --git a/new-api-details/topics/homebrew.json b/new-api-details/topics/homebrew.json index c4eeebee..9b18f9e7 100644 --- a/new-api-details/topics/homebrew.json +++ b/new-api-details/topics/homebrew.json @@ -1,7 +1,7 @@ { "slug": "homebrew", "name": "homebrew", - "published_at": "2026-01-25T16:06:29.121Z", + "published_at": "2026-02-19T13:36:01.772Z", "organizationCount": 1, "projectCount": 11, "years": [ @@ -52,6 +52,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.121Z" + "generated_at": "2026-02-19T13:36:01.772Z" } } \ No newline at end of file diff --git a/new-api-details/topics/honeynet.json b/new-api-details/topics/honeynet.json index 3575b5eb..394a0a61 100644 --- a/new-api-details/topics/honeynet.json +++ b/new-api-details/topics/honeynet.json @@ -1,10 +1,11 @@ { "slug": "honeynet", "name": "honeynet", - "published_at": "2026-01-25T16:06:29.680Z", + "published_at": "2026-02-19T13:36:02.907Z", "organizationCount": 1, "projectCount": 101, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "the-honeynet-project", "name": "The Honeynet Project", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 101, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.680Z" + "generated_at": "2026-02-19T13:36:02.907Z" } } \ No newline at end of file diff --git a/new-api-details/topics/honeynets.json b/new-api-details/topics/honeynets.json index 73d353b4..274d467c 100644 --- a/new-api-details/topics/honeynets.json +++ b/new-api-details/topics/honeynets.json @@ -1,10 +1,11 @@ { "slug": "honeynets", "name": "honeynets", - "published_at": "2026-01-25T16:06:29.683Z", + "published_at": "2026-02-19T13:36:02.912Z", "organizationCount": 1, "projectCount": 101, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "the-honeynet-project", "name": "The Honeynet Project", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 101, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.683Z" + "generated_at": "2026-02-19T13:36:02.912Z" } } \ No newline at end of file diff --git a/new-api-details/topics/honeypot.json b/new-api-details/topics/honeypot.json index 15702710..f3444e6b 100644 --- a/new-api-details/topics/honeypot.json +++ b/new-api-details/topics/honeypot.json @@ -1,10 +1,11 @@ { "slug": "honeypot", "name": "honeypot", - "published_at": "2026-01-25T16:06:29.679Z", + "published_at": "2026-02-19T13:36:02.906Z", "organizationCount": 1, "projectCount": 101, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "the-honeynet-project", "name": "The Honeynet Project", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 101, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.679Z" + "generated_at": "2026-02-19T13:36:02.906Z" } } \ No newline at end of file diff --git a/new-api-details/topics/honeypots.json b/new-api-details/topics/honeypots.json index 868563fb..97322605 100644 --- a/new-api-details/topics/honeypots.json +++ b/new-api-details/topics/honeypots.json @@ -1,10 +1,11 @@ { "slug": "honeypots", "name": "honeypots", - "published_at": "2026-01-25T16:06:29.680Z", + "published_at": "2026-02-19T13:36:02.908Z", "organizationCount": 1, "projectCount": 101, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "the-honeynet-project", "name": "The Honeynet Project", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 101, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.680Z" + "generated_at": "2026-02-19T13:36:02.908Z" } } \ No newline at end of file diff --git a/new-api-details/topics/hospitals.json b/new-api-details/topics/hospitals.json index 553e54a1..496bc9da 100644 --- a/new-api-details/topics/hospitals.json +++ b/new-api-details/topics/hospitals.json @@ -1,10 +1,11 @@ { "slug": "hospitals", "name": "hospitals", - "published_at": "2026-01-25T16:06:29.477Z", + "published_at": "2026-02-19T13:36:02.574Z", "organizationCount": 1, "projectCount": 94, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "openmrs", "name": "OpenMRS", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 94, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 8 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.477Z" + "generated_at": "2026-02-19T13:36:02.574Z" } } \ No newline at end of file diff --git a/new-api-details/topics/hosting.json b/new-api-details/topics/hosting.json index 926017fd..546be58f 100644 --- a/new-api-details/topics/hosting.json +++ b/new-api-details/topics/hosting.json @@ -1,10 +1,11 @@ { "slug": "hosting", "name": "hosting", - "published_at": "2026-01-25T16:06:29.343Z", + "published_at": "2026-02-19T13:36:02.283Z", "organizationCount": 1, "projectCount": 60, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "metabrainz-foundation-inc", "name": "MetaBrainz Foundation Inc", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 60, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.343Z" + "generated_at": "2026-02-19T13:36:02.283Z" } } \ No newline at end of file diff --git a/new-api-details/topics/hotspot.json b/new-api-details/topics/hotspot.json index 0bc0dec8..e8661b8e 100644 --- a/new-api-details/topics/hotspot.json +++ b/new-api-details/topics/hotspot.json @@ -1,10 +1,11 @@ { "slug": "hotspot", "name": "hotspot", - "published_at": "2026-01-25T16:06:29.512Z", + "published_at": "2026-02-19T13:36:02.652Z", "organizationCount": 1, "projectCount": 26, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "openwisp", "name": "OpenWISP", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 26, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.512Z" + "generated_at": "2026-02-19T13:36:02.652Z" } } \ No newline at end of file diff --git a/new-api-details/topics/hpc.json b/new-api-details/topics/hpc.json index 8821b294..d0e19145 100644 --- a/new-api-details/topics/hpc.json +++ b/new-api-details/topics/hpc.json @@ -1,10 +1,11 @@ { "slug": "hpc", "name": "hpc", - "published_at": "2026-01-25T16:06:29.073Z", + "published_at": "2026-02-19T13:36:01.594Z", "organizationCount": 3, "projectCount": 65, "years": [ + 2026, 2025, 2024, 2023, @@ -17,17 +18,38 @@ 2016 ], "organizations": [ + { + "slug": "stear-group", + "name": "Ste||ar group", + "first_year": 2016, + "last_year": 2026, + "total_projects": 38, + "is_currently_active": true, + "active_years": [ + 2016, + 2017, + 2018, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ] + }, { "slug": "genome-assembly-and-annotation", "name": "Genome Assembly and Annotation", "first_year": 2021, - "last_year": 2023, + "last_year": 2026, "total_projects": 14, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2021, 2022, - 2023 + 2023, + 2026 ] }, { @@ -43,25 +65,6 @@ 2018, 2019 ] - }, - { - "slug": "stear-group", - "name": "Ste||ar group", - "first_year": 2016, - "last_year": 2025, - "total_projects": 38, - "is_currently_active": true, - "active_years": [ - 2016, - 2017, - 2018, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 - ] } ], "yearlyStats": { @@ -104,10 +107,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.073Z" + "generated_at": "2026-02-19T13:36:01.594Z" } } \ No newline at end of file diff --git a/new-api-details/topics/hpx.json b/new-api-details/topics/hpx.json index f7e208c6..944c27bd 100644 --- a/new-api-details/topics/hpx.json +++ b/new-api-details/topics/hpx.json @@ -1,10 +1,11 @@ { "slug": "hpx", "name": "hpx", - "published_at": "2026-01-25T16:06:29.639Z", + "published_at": "2026-02-19T13:36:02.851Z", "organizationCount": 1, "projectCount": 38, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "stear-group", "name": "Ste||ar group", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 38, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.639Z" + "generated_at": "2026-02-19T13:36:02.851Z" } } \ No newline at end of file diff --git a/new-api-details/topics/http.json b/new-api-details/topics/http.json index 631eb6e4..ea469b8e 100644 --- a/new-api-details/topics/http.json +++ b/new-api-details/topics/http.json @@ -1,10 +1,11 @@ { "slug": "http", "name": "http", - "published_at": "2026-01-25T16:06:29.050Z", + "published_at": "2026-02-19T13:36:01.686Z", "organizationCount": 2, "projectCount": 67, "years": [ + 2026, 2024, 2023, 2021, @@ -19,9 +20,9 @@ "slug": "gnu-project", "name": "GNU Project", "first_year": 2016, - "last_year": 2024, + "last_year": 2026, "total_projects": 59, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -29,7 +30,8 @@ 2019, 2020, 2023, - 2024 + 2024, + 2026 ] }, { @@ -79,10 +81,14 @@ "2024": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.050Z" + "generated_at": "2026-02-19T13:36:01.686Z" } } \ No newline at end of file diff --git a/new-api-details/topics/human-language-technologies.json b/new-api-details/topics/human-language-technologies.json index 4a92fdf8..5d9f354c 100644 --- a/new-api-details/topics/human-language-technologies.json +++ b/new-api-details/topics/human-language-technologies.json @@ -1,7 +1,7 @@ { "slug": "human-language-technologies", "name": "human language technologies", - "published_at": "2026-01-25T16:06:28.502Z", + "published_at": "2026-02-19T13:36:00.494Z", "organizationCount": 2, "projectCount": 74, "years": [ @@ -83,6 +83,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.502Z" + "generated_at": "2026-02-19T13:36:00.494Z" } } \ No newline at end of file diff --git a/new-api-details/topics/human-rights.json b/new-api-details/topics/human-rights.json index 34a61c74..b7ca278f 100644 --- a/new-api-details/topics/human-rights.json +++ b/new-api-details/topics/human-rights.json @@ -1,7 +1,7 @@ { "slug": "human-rights", "name": "Human Rights", - "published_at": "2026-01-25T16:06:29.728Z", + "published_at": "2026-02-19T13:36:02.990Z", "organizationCount": 1, "projectCount": 19, "years": [ @@ -18,7 +18,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 19, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -52,6 +52,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.728Z" + "generated_at": "2026-02-19T13:36:02.990Z" } } \ No newline at end of file diff --git a/new-api-details/topics/humanitarian.json b/new-api-details/topics/humanitarian.json index 1e295ba3..5fc8e4ea 100644 --- a/new-api-details/topics/humanitarian.json +++ b/new-api-details/topics/humanitarian.json @@ -1,7 +1,7 @@ { "slug": "humanitarian", "name": "humanitarian", - "published_at": "2026-01-25T16:06:28.848Z", + "published_at": "2026-02-19T13:36:01.189Z", "organizationCount": 3, "projectCount": 35, "years": [ @@ -27,17 +27,6 @@ 2021 ] }, - { - "slug": "mapaction", - "name": "MapAction", - "first_year": 2021, - "last_year": 2021, - "total_projects": 1, - "is_currently_active": false, - "active_years": [ - 2021 - ] - }, { "slug": "sigmah", "name": "Sigmah", @@ -49,6 +38,17 @@ 2016, 2017 ] + }, + { + "slug": "mapaction", + "name": "MapAction", + "first_year": 2021, + "last_year": 2021, + "total_projects": 1, + "is_currently_active": false, + "active_years": [ + 2021 + ] } ], "yearlyStats": { @@ -79,6 +79,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.848Z" + "generated_at": "2026-02-19T13:36:01.189Z" } } \ No newline at end of file diff --git a/new-api-details/topics/humanities.json b/new-api-details/topics/humanities.json index 0f9c61da..78bfd03d 100644 --- a/new-api-details/topics/humanities.json +++ b/new-api-details/topics/humanities.json @@ -1,10 +1,11 @@ { "slug": "humanities", "name": "Humanities", - "published_at": "2026-01-25T16:06:29.127Z", + "published_at": "2026-02-19T13:36:01.782Z", "organizationCount": 1, "projectCount": 26, "years": [ + 2026, 2025, 2024 ], @@ -13,12 +14,13 @@ "slug": "humanai", "name": "HumanAI", "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "total_projects": 26, "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -30,10 +32,14 @@ "2025": { "organizationCount": 1, "projectCount": 15 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.127Z" + "generated_at": "2026-02-19T13:36:01.782Z" } } \ No newline at end of file diff --git a/new-api-details/topics/humanrights.json b/new-api-details/topics/humanrights.json index 141a3675..b480d59e 100644 --- a/new-api-details/topics/humanrights.json +++ b/new-api-details/topics/humanrights.json @@ -1,7 +1,7 @@ { "slug": "humanrights", "name": "humanrights", - "published_at": "2026-01-25T16:06:28.852Z", + "published_at": "2026-02-19T13:36:01.196Z", "organizationCount": 1, "projectCount": 31, "years": [ @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.852Z" + "generated_at": "2026-02-19T13:36:01.196Z" } } \ No newline at end of file diff --git a/new-api-details/topics/hydra.json b/new-api-details/topics/hydra.json index 104ae79e..d87655f8 100644 --- a/new-api-details/topics/hydra.json +++ b/new-api-details/topics/hydra.json @@ -1,7 +1,7 @@ { "slug": "hydra", "name": "hydra", - "published_at": "2026-01-25T16:06:29.129Z", + "published_at": "2026-02-19T13:36:01.783Z", "organizationCount": 1, "projectCount": 8, "years": [ @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.129Z" + "generated_at": "2026-02-19T13:36:01.783Z" } } \ No newline at end of file diff --git a/new-api-details/topics/hypervisor-introspection.json b/new-api-details/topics/hypervisor-introspection.json index ac82d8b7..b512fba2 100644 --- a/new-api-details/topics/hypervisor-introspection.json +++ b/new-api-details/topics/hypervisor-introspection.json @@ -1,10 +1,11 @@ { "slug": "hypervisor-introspection", "name": "hypervisor introspection", - "published_at": "2026-01-25T16:06:29.683Z", + "published_at": "2026-02-19T13:36:02.913Z", "organizationCount": 1, "projectCount": 101, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "the-honeynet-project", "name": "The Honeynet Project", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 101, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.683Z" + "generated_at": "2026-02-19T13:36:02.913Z" } } \ No newline at end of file diff --git a/new-api-details/topics/hypervisor.json b/new-api-details/topics/hypervisor.json index b04c497f..3eb46c2e 100644 --- a/new-api-details/topics/hypervisor.json +++ b/new-api-details/topics/hypervisor.json @@ -1,10 +1,11 @@ { "slug": "hypervisor", "name": "hypervisor", - "published_at": "2026-01-25T16:06:29.573Z", + "published_at": "2026-02-19T13:36:02.770Z", "organizationCount": 1, "projectCount": 41, "years": [ + 2026, 2025, 2023, 2022, @@ -20,7 +21,7 @@ "slug": "qemu", "name": "QEMU", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 41, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2021, 2022, 2023, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.573Z" + "generated_at": "2026-02-19T13:36:02.770Z" } } \ No newline at end of file diff --git a/new-api-details/topics/i18n.json b/new-api-details/topics/i18n.json index d58168bb..d6867840 100644 --- a/new-api-details/topics/i18n.json +++ b/new-api-details/topics/i18n.json @@ -1,10 +1,11 @@ { "slug": "i18n", "name": "i18n", - "published_at": "2026-01-25T16:06:29.778Z", + "published_at": "2026-02-19T13:36:03.137Z", "organizationCount": 1, "projectCount": 85, "years": [ + 2026, 2024, 2023, 2022, @@ -20,9 +21,9 @@ "slug": "wikimedia-foundation", "name": "Wikimedia Foundation", "first_year": 2016, - "last_year": 2024, + "last_year": 2026, "total_projects": 85, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -32,7 +33,8 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] } ], @@ -72,10 +74,14 @@ "2024": { "organizationCount": 1, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.778Z" + "generated_at": "2026-02-19T13:36:03.137Z" } } \ No newline at end of file diff --git a/new-api-details/topics/iam.json b/new-api-details/topics/iam.json index 541de380..42de042c 100644 --- a/new-api-details/topics/iam.json +++ b/new-api-details/topics/iam.json @@ -1,7 +1,7 @@ { "slug": "iam", "name": "IAM", - "published_at": "2026-01-25T16:06:28.697Z", + "published_at": "2026-02-19T13:36:00.921Z", "organizationCount": 1, "projectCount": 22, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.697Z" + "generated_at": "2026-02-19T13:36:00.921Z" } } \ No newline at end of file diff --git a/new-api-details/topics/ictd.json b/new-api-details/topics/ictd.json index 648f0029..87cff018 100644 --- a/new-api-details/topics/ictd.json +++ b/new-api-details/topics/ictd.json @@ -1,10 +1,11 @@ { "slug": "ictd", "name": "ictd", - "published_at": "2026-01-25T16:06:29.276Z", + "published_at": "2026-02-19T13:36:02.184Z", "organizationCount": 1, "projectCount": 31, "years": [ + 2026, 2023, 2022, 2021, @@ -18,9 +19,9 @@ "slug": "librehealth", "name": "LibreHealth", "first_year": 2017, - "last_year": 2023, + "last_year": 2026, "total_projects": 31, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, @@ -28,7 +29,8 @@ 2020, 2021, 2022, - 2023 + 2023, + 2026 ] } ], @@ -60,10 +62,14 @@ "2023": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.277Z" + "generated_at": "2026-02-19T13:36:02.184Z" } } \ No newline at end of file diff --git a/new-api-details/topics/ide.json b/new-api-details/topics/ide.json index 9ef6d830..6268f020 100644 --- a/new-api-details/topics/ide.json +++ b/new-api-details/topics/ide.json @@ -1,10 +1,11 @@ { "slug": "ide", "name": "ide", - "published_at": "2026-01-25T16:06:28.580Z", + "published_at": "2026-02-19T13:36:00.676Z", "organizationCount": 5, "projectCount": 118, "years": [ + 2026, 2025, 2024, 2023, @@ -17,23 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "beeware-project", - "name": "BeeWare Project", - "first_year": 2017, - "last_year": 2018, - "total_projects": 5, - "is_currently_active": false, - "active_years": [ - 2017, - 2018 - ] - }, { "slug": "eclipse-foundation", "name": "Eclipse Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 68, "is_currently_active": true, "active_years": [ @@ -45,7 +34,24 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "pharo-consortium", + "name": "Pharo Consortium", + "first_year": 2017, + "last_year": 2026, + "total_projects": 32, + "is_currently_active": true, + "active_years": [ + 2017, + 2019, + 2021, + 2023, + 2025, + 2026 ] }, { @@ -60,18 +66,15 @@ ] }, { - "slug": "pharo-consortium", - "name": "Pharo Consortium", + "slug": "beeware-project", + "name": "BeeWare Project", "first_year": 2017, - "last_year": 2025, - "total_projects": 32, - "is_currently_active": true, + "last_year": 2018, + "total_projects": 5, + "is_currently_active": false, "active_years": [ 2017, - 2019, - 2021, - 2023, - 2025 + 2018 ] }, { @@ -127,10 +130,14 @@ "2025": { "organizationCount": 2, "projectCount": 15 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.580Z" + "generated_at": "2026-02-19T13:36:00.676Z" } } \ No newline at end of file diff --git a/new-api-details/topics/identity.json b/new-api-details/topics/identity.json index 0731280c..6283b57f 100644 --- a/new-api-details/topics/identity.json +++ b/new-api-details/topics/identity.json @@ -1,7 +1,7 @@ { "slug": "identity", "name": "identity", - "published_at": "2026-01-25T16:06:28.846Z", + "published_at": "2026-02-19T13:36:01.186Z", "organizationCount": 1, "projectCount": 5, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.846Z" + "generated_at": "2026-02-19T13:36:01.186Z" } } \ No newline at end of file diff --git a/new-api-details/topics/iio.json b/new-api-details/topics/iio.json index 755f2189..07f8c2e4 100644 --- a/new-api-details/topics/iio.json +++ b/new-api-details/topics/iio.json @@ -1,10 +1,11 @@ { "slug": "iio", "name": "iio", - "published_at": "2026-01-25T16:06:29.700Z", + "published_at": "2026-02-19T13:36:02.937Z", "organizationCount": 1, "projectCount": 137, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "the-linux-foundation", "name": "The Linux Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 137, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 21 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.700Z" + "generated_at": "2026-02-19T13:36:02.937Z" } } \ No newline at end of file diff --git a/new-api-details/topics/ike.json b/new-api-details/topics/ike.json index 66b14dbb..07b989d7 100644 --- a/new-api-details/topics/ike.json +++ b/new-api-details/topics/ike.json @@ -1,10 +1,11 @@ { "slug": "ike", "name": "ike", - "published_at": "2026-01-25T16:06:29.695Z", + "published_at": "2026-02-19T13:36:02.930Z", "organizationCount": 1, "projectCount": 10, "years": [ + 2026, 2022, 2021, 2020, @@ -17,16 +18,17 @@ "slug": "the-libreswan-project", "name": "The Libreswan Project", "first_year": 2017, - "last_year": 2022, + "last_year": 2026, "total_projects": 10, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, 2019, 2020, 2021, - 2022 + 2022, + 2026 ] } ], @@ -54,10 +56,14 @@ "2022": { "organizationCount": 1, "projectCount": 0 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.695Z" + "generated_at": "2026-02-19T13:36:02.930Z" } } \ No newline at end of file diff --git a/new-api-details/topics/ikev2.json b/new-api-details/topics/ikev2.json index 01e8b5ef..fb295f5b 100644 --- a/new-api-details/topics/ikev2.json +++ b/new-api-details/topics/ikev2.json @@ -1,10 +1,11 @@ { "slug": "ikev2", "name": "ikev2", - "published_at": "2026-01-25T16:06:29.697Z", + "published_at": "2026-02-19T13:36:02.933Z", "organizationCount": 1, "projectCount": 10, "years": [ + 2026, 2022, 2021, 2020, @@ -17,16 +18,17 @@ "slug": "the-libreswan-project", "name": "The Libreswan Project", "first_year": 2017, - "last_year": 2022, + "last_year": 2026, "total_projects": 10, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, 2019, 2020, 2021, - 2022 + 2022, + 2026 ] } ], @@ -54,10 +56,14 @@ "2022": { "organizationCount": 1, "projectCount": 0 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.697Z" + "generated_at": "2026-02-19T13:36:02.933Z" } } \ No newline at end of file diff --git a/new-api-details/topics/illustration.json b/new-api-details/topics/illustration.json index 5b4d8883..01962a3f 100644 --- a/new-api-details/topics/illustration.json +++ b/new-api-details/topics/illustration.json @@ -1,10 +1,11 @@ { "slug": "illustration", "name": "illustration", - "published_at": "2026-01-25T16:06:29.037Z", + "published_at": "2026-02-19T13:36:01.667Z", "organizationCount": 1, "projectCount": 10, "years": [ + 2026, 2025, 2024, 2023, @@ -15,14 +16,15 @@ "slug": "gnu-image-manipulation-program", "name": "GNU Image Manipulation Program", "first_year": 2022, - "last_year": 2025, + "last_year": 2026, "total_projects": 10, "is_currently_active": true, "active_years": [ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -42,10 +44,14 @@ "2025": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.037Z" + "generated_at": "2026-02-19T13:36:01.667Z" } } \ No newline at end of file diff --git a/new-api-details/topics/image-analysis.json b/new-api-details/topics/image-analysis.json index 5e3adf72..75e383a6 100644 --- a/new-api-details/topics/image-analysis.json +++ b/new-api-details/topics/image-analysis.json @@ -1,10 +1,11 @@ { "slug": "image-analysis", "name": "image analysis", - "published_at": "2026-01-25T16:06:28.787Z", + "published_at": "2026-02-19T13:36:00.901Z", "organizationCount": 3, "projectCount": 308, "years": [ + 2026, 2025, 2024, 2023, @@ -18,17 +19,24 @@ ], "organizations": [ { - "slug": "camicroscope", - "name": "caMicroscope", - "first_year": 2020, - "last_year": 2024, - "total_projects": 13, - "is_currently_active": false, + "slug": "python-software-foundation", + "name": "Python Software Foundation", + "first_year": 2016, + "last_year": 2026, + "total_projects": 277, + "is_currently_active": true, "active_years": [ + 2016, + 2017, + 2018, + 2019, 2020, 2021, + 2022, 2023, - 2024 + 2024, + 2025, + 2026 ] }, { @@ -46,23 +54,17 @@ ] }, { - "slug": "python-software-foundation", - "name": "Python Software Foundation", - "first_year": 2016, - "last_year": 2025, - "total_projects": 277, - "is_currently_active": true, + "slug": "camicroscope", + "name": "caMicroscope", + "first_year": 2020, + "last_year": 2024, + "total_projects": 13, + "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2019, 2020, 2021, - 2022, 2023, - 2024, - 2025 + 2024 ] } ], @@ -106,10 +108,14 @@ "2025": { "organizationCount": 1, "projectCount": 17 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.788Z" + "generated_at": "2026-02-19T13:36:00.901Z" } } \ No newline at end of file diff --git a/new-api-details/topics/image-prcessing.json b/new-api-details/topics/image-prcessing.json index 53090693..46f2a97b 100644 --- a/new-api-details/topics/image-prcessing.json +++ b/new-api-details/topics/image-prcessing.json @@ -1,7 +1,7 @@ { "slug": "image-prcessing", "name": "image prcessing", - "published_at": "2026-01-25T16:06:29.844Z", + "published_at": "2026-02-19T13:36:02.161Z", "organizationCount": 1, "projectCount": 7, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.844Z" + "generated_at": "2026-02-19T13:36:02.161Z" } } \ No newline at end of file diff --git a/new-api-details/topics/image-processing.json b/new-api-details/topics/image-processing.json index cfc31ec9..adfd1631 100644 --- a/new-api-details/topics/image-processing.json +++ b/new-api-details/topics/image-processing.json @@ -1,10 +1,11 @@ { "slug": "image-processing", "name": "image processing", - "published_at": "2026-01-25T16:06:28.517Z", + "published_at": "2026-02-19T13:36:00.518Z", "organizationCount": 8, "projectCount": 201, "years": [ + 2026, 2025, 2024, 2023, @@ -18,41 +19,31 @@ ], "organizations": [ { - "slug": "apertus-association", - "name": "Apertus Association", - "first_year": 2017, - "last_year": 2022, - "total_projects": 18, - "is_currently_active": false, + "slug": "openastronomy", + "name": "OpenAstronomy", + "first_year": 2016, + "last_year": 2026, + "total_projects": 77, + "is_currently_active": true, "active_years": [ + 2016, 2017, 2018, 2019, 2020, 2021, - 2022 - ] - }, - { - "slug": "boost-c-libraries", - "name": "Boost C++ Libraries", - "first_year": 2017, - "last_year": 2021, - "total_projects": 41, - "is_currently_active": false, - "active_years": [ - 2017, - 2018, - 2019, - 2020, - 2021 + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { "slug": "ffmpeg", "name": "FFmpeg", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 49, "is_currently_active": true, "active_years": [ @@ -65,31 +56,39 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "framenet-brasil-ufjf", - "name": "FrameNet Brasil (UFJF)", - "first_year": 2019, + "slug": "boost-c-libraries", + "name": "Boost C++ Libraries", + "first_year": 2017, "last_year": 2021, - "total_projects": 5, + "total_projects": 41, "is_currently_active": false, "active_years": [ + 2017, + 2018, 2019, 2020, 2021 ] }, { - "slug": "knime", - "name": "KNIME", - "first_year": 2019, - "last_year": 2019, - "total_projects": 2, + "slug": "apertus-association", + "name": "Apertus Association", + "first_year": 2017, + "last_year": 2022, + "total_projects": 18, "is_currently_active": false, "active_years": [ - 2019 + 2017, + 2018, + 2019, + 2020, + 2021, + 2022 ] }, { @@ -106,23 +105,27 @@ ] }, { - "slug": "openastronomy", - "name": "OpenAstronomy", - "first_year": 2016, - "last_year": 2025, - "total_projects": 77, - "is_currently_active": true, + "slug": "framenet-brasil-ufjf", + "name": "FrameNet Brasil (UFJF)", + "first_year": 2019, + "last_year": 2021, + "total_projects": 5, + "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, 2019, 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2021 + ] + }, + { + "slug": "knime", + "name": "KNIME", + "first_year": 2019, + "last_year": 2019, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2019 ] }, { @@ -177,10 +180,14 @@ "2025": { "organizationCount": 2, "projectCount": 8 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.517Z" + "generated_at": "2026-02-19T13:36:00.518Z" } } \ No newline at end of file diff --git a/new-api-details/topics/image-synthesis.json b/new-api-details/topics/image-synthesis.json index a34a5293..bfd8f865 100644 --- a/new-api-details/topics/image-synthesis.json +++ b/new-api-details/topics/image-synthesis.json @@ -1,7 +1,7 @@ { "slug": "image-synthesis", "name": "image synthesis", - "published_at": "2026-01-25T16:06:29.820Z", + "published_at": "2026-02-19T13:36:00.575Z", "organizationCount": 1, "projectCount": 11, "years": [ @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.820Z" + "generated_at": "2026-02-19T13:36:00.575Z" } } \ No newline at end of file diff --git a/new-api-details/topics/image.json b/new-api-details/topics/image.json index b7b661ea..267a7272 100644 --- a/new-api-details/topics/image.json +++ b/new-api-details/topics/image.json @@ -1,10 +1,11 @@ { "slug": "image", "name": "image", - "published_at": "2026-01-25T16:06:28.913Z", + "published_at": "2026-02-19T13:36:01.343Z", "organizationCount": 1, "projectCount": 49, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "ffmpeg", "name": "FFmpeg", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 49, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.913Z" + "generated_at": "2026-02-19T13:36:01.343Z" } } \ No newline at end of file diff --git a/new-api-details/topics/images.json b/new-api-details/topics/images.json index 3439297d..6c0a5f13 100644 --- a/new-api-details/topics/images.json +++ b/new-api-details/topics/images.json @@ -1,10 +1,11 @@ { "slug": "images", "name": "images", - "published_at": "2026-01-25T16:06:28.917Z", + "published_at": "2026-02-19T13:36:01.362Z", "organizationCount": 1, "projectCount": 49, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "ffmpeg", "name": "FFmpeg", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 49, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.917Z" + "generated_at": "2026-02-19T13:36:01.362Z" } } \ No newline at end of file diff --git a/new-api-details/topics/imaging.json b/new-api-details/topics/imaging.json index 8f917c9b..a63c08f7 100644 --- a/new-api-details/topics/imaging.json +++ b/new-api-details/topics/imaging.json @@ -1,7 +1,7 @@ { "slug": "imaging", "name": "imaging", - "published_at": "2026-01-25T16:06:29.170Z", + "published_at": "2026-02-19T13:36:01.861Z", "organizationCount": 2, "projectCount": 21, "years": [ @@ -76,6 +76,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.171Z" + "generated_at": "2026-02-19T13:36:01.861Z" } } \ No newline at end of file diff --git a/new-api-details/topics/imdg.json b/new-api-details/topics/imdg.json index 60d99ed7..9436d39a 100644 --- a/new-api-details/topics/imdg.json +++ b/new-api-details/topics/imdg.json @@ -1,7 +1,7 @@ { "slug": "imdg", "name": "IMDG", - "published_at": "2026-01-25T16:06:29.671Z", + "published_at": "2026-02-19T13:36:02.891Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.671Z" + "generated_at": "2026-02-19T13:36:02.891Z" } } \ No newline at end of file diff --git a/new-api-details/topics/in-memory-data-grid.json b/new-api-details/topics/in-memory-data-grid.json index 0d261c3b..651b4bae 100644 --- a/new-api-details/topics/in-memory-data-grid.json +++ b/new-api-details/topics/in-memory-data-grid.json @@ -1,7 +1,7 @@ { "slug": "in-memory-data-grid", "name": "in memory data grid", - "published_at": "2026-01-25T16:06:29.116Z", + "published_at": "2026-02-19T13:36:01.758Z", "organizationCount": 2, "projectCount": 5, "years": [ @@ -10,17 +10,6 @@ 2020 ], "organizations": [ - { - "slug": "hazelcast", - "name": "Hazelcast", - "first_year": 2020, - "last_year": 2020, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2020 - ] - }, { "slug": "tarantool", "name": "Tarantool", @@ -32,6 +21,17 @@ 2021, 2022 ] + }, + { + "slug": "hazelcast", + "name": "Hazelcast", + "first_year": 2020, + "last_year": 2020, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2020 + ] } ], "yearlyStats": { @@ -50,6 +50,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.116Z" + "generated_at": "2026-02-19T13:36:01.758Z" } } \ No newline at end of file diff --git a/new-api-details/topics/in-memory.json b/new-api-details/topics/in-memory.json index d5a54008..d5d46882 100644 --- a/new-api-details/topics/in-memory.json +++ b/new-api-details/topics/in-memory.json @@ -1,7 +1,7 @@ { "slug": "in-memory", "name": "In-memory", - "published_at": "2026-01-25T16:06:29.670Z", + "published_at": "2026-02-19T13:36:02.889Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.670Z" + "generated_at": "2026-02-19T13:36:02.889Z" } } \ No newline at end of file diff --git a/new-api-details/topics/inclusion.json b/new-api-details/topics/inclusion.json index f3f4d472..ac52665e 100644 --- a/new-api-details/topics/inclusion.json +++ b/new-api-details/topics/inclusion.json @@ -1,7 +1,7 @@ { "slug": "inclusion", "name": "inclusion", - "published_at": "2026-01-25T16:06:29.142Z", + "published_at": "2026-02-19T13:36:01.800Z", "organizationCount": 1, "projectCount": 11, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.142Z" + "generated_at": "2026-02-19T13:36:01.800Z" } } \ No newline at end of file diff --git a/new-api-details/topics/inclusive.json b/new-api-details/topics/inclusive.json index db1a0ab0..769d6704 100644 --- a/new-api-details/topics/inclusive.json +++ b/new-api-details/topics/inclusive.json @@ -1,10 +1,11 @@ { "slug": "inclusive", "name": "Inclusive", - "published_at": "2026-01-25T16:06:28.879Z", + "published_at": "2026-02-19T13:36:01.222Z", "organizationCount": 1, "projectCount": 39, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "drupal-association", "name": "Drupal Association", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 39, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.879Z" + "generated_at": "2026-02-19T13:36:01.222Z" } } \ No newline at end of file diff --git a/new-api-details/topics/inclusivity.json b/new-api-details/topics/inclusivity.json index 53bff76b..9474364c 100644 --- a/new-api-details/topics/inclusivity.json +++ b/new-api-details/topics/inclusivity.json @@ -1,7 +1,7 @@ { "slug": "inclusivity", "name": "inclusivity", - "published_at": "2026-01-25T16:06:29.141Z", + "published_at": "2026-02-19T13:36:01.798Z", "organizationCount": 1, "projectCount": 11, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.141Z" + "generated_at": "2026-02-19T13:36:01.798Z" } } \ No newline at end of file diff --git a/new-api-details/topics/index.json b/new-api-details/topics/index.json index a503b676..98d3a639 100644 --- a/new-api-details/topics/index.json +++ b/new-api-details/topics/index.json @@ -1,14 +1,15 @@ { "slug": "topics-index", - "published_at": "2026-01-25T16:06:29.893Z", - "total": 1531, + "published_at": "2026-02-19T13:36:03.184Z", + "total": 1566, "topics": [ { "slug": "web", "name": "web", - "organizationCount": 90, - "projectCount": 2958, + "organizationCount": 93, + "projectCount": 2962, "years": [ + 2026, 2025, 2024, 2023, @@ -24,9 +25,10 @@ { "slug": "machine-learning", "name": "machine learning", - "organizationCount": 66, + "organizationCount": 70, "projectCount": 3160, "years": [ + 2026, 2025, 2024, 2023, @@ -42,9 +44,10 @@ { "slug": "cloud", "name": "cloud", - "organizationCount": 60, + "organizationCount": 62, "projectCount": 1961, "years": [ + 2026, 2025, 2024, 2023, @@ -63,6 +66,7 @@ "organizationCount": 41, "projectCount": 1994, "years": [ + 2026, 2025, 2024, 2023, @@ -76,11 +80,12 @@ ] }, { - "slug": "data-science", - "name": "data science", - "organizationCount": 34, - "projectCount": 1692, + "slug": "ai", + "name": "ai", + "organizationCount": 36, + "projectCount": 1279, "years": [ + 2026, 2025, 2024, 2023, @@ -94,11 +99,12 @@ ] }, { - "slug": "ai", - "name": "ai", - "organizationCount": 33, - "projectCount": 1272, + "slug": "data-science", + "name": "data science", + "organizationCount": 35, + "projectCount": 1692, "years": [ + 2026, 2025, 2024, 2023, @@ -114,9 +120,10 @@ { "slug": "education", "name": "education", - "organizationCount": 32, + "organizationCount": 33, "projectCount": 1263, "years": [ + 2026, 2025, 2024, 2023, @@ -135,6 +142,7 @@ "organizationCount": 31, "projectCount": 1098, "years": [ + 2026, 2025, 2024, 2023, @@ -148,11 +156,12 @@ ] }, { - "slug": "programming-languages", - "name": "programming languages", - "organizationCount": 29, - "projectCount": 928, + "slug": "compilers", + "name": "compilers", + "organizationCount": 30, + "projectCount": 714, "years": [ + 2026, 2025, 2024, 2023, @@ -166,11 +175,12 @@ ] }, { - "slug": "compilers", - "name": "compilers", - "organizationCount": 28, - "projectCount": 655, + "slug": "programming-languages", + "name": "programming languages", + "organizationCount": 29, + "projectCount": 928, "years": [ + 2026, 2025, 2024, 2023, @@ -189,6 +199,7 @@ "organizationCount": 28, "projectCount": 1072, "years": [ + 2026, 2025, 2024, 2023, @@ -207,6 +218,7 @@ "organizationCount": 27, "projectCount": 486, "years": [ + 2026, 2025, 2024, 2023, @@ -225,6 +237,26 @@ "organizationCount": 25, "projectCount": 708, "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2019, + 2018, + 2017, + 2016 + ] + }, + { + "slug": "artificial-intelligence", + "name": "artificial intelligence", + "organizationCount": 24, + "projectCount": 944, + "years": [ + 2026, 2025, 2024, 2023, @@ -243,6 +275,7 @@ "organizationCount": 24, "projectCount": 1167, "years": [ + 2026, 2025, 2024, 2023, @@ -261,6 +294,7 @@ "organizationCount": 24, "projectCount": 1158, "years": [ + 2026, 2025, 2024, 2023, @@ -274,11 +308,12 @@ ] }, { - "slug": "computer-vision", - "name": "computer vision", + "slug": "networking", + "name": "networking", "organizationCount": 22, - "projectCount": 522, + "projectCount": 403, "years": [ + 2026, 2025, 2024, 2023, @@ -292,11 +327,12 @@ ] }, { - "slug": "data-visualization", - "name": "data visualization", + "slug": "computer-vision", + "name": "computer vision", "organizationCount": 22, - "projectCount": 1156, + "projectCount": 522, "years": [ + 2026, 2025, 2024, 2023, @@ -310,11 +346,12 @@ ] }, { - "slug": "networking", - "name": "networking", + "slug": "data-visualization", + "name": "data visualization", "organizationCount": 22, - "projectCount": 403, + "projectCount": 1156, "years": [ + 2026, 2025, 2024, 2023, @@ -333,6 +370,7 @@ "organizationCount": 22, "projectCount": 1322, "years": [ + 2026, 2025, 2024, 2023, @@ -346,11 +384,12 @@ ] }, { - "slug": "artificial-intelligence", - "name": "artificial intelligence", + "slug": "big-data", + "name": "big data", "organizationCount": 21, - "projectCount": 767, + "projectCount": 1479, "years": [ + 2026, 2025, 2024, 2023, @@ -369,6 +408,7 @@ "organizationCount": 21, "projectCount": 434, "years": [ + 2026, 2025, 2024, 2023, @@ -382,11 +422,12 @@ ] }, { - "slug": "big-data", - "name": "big data", + "slug": "operating-systems", + "name": "operating systems", "organizationCount": 19, - "projectCount": 1479, + "projectCount": 611, "years": [ + 2026, 2025, 2024, 2023, @@ -400,11 +441,12 @@ ] }, { - "slug": "operating-systems", - "name": "operating systems", + "slug": "simulation", + "name": "simulation", "organizationCount": 19, - "projectCount": 611, + "projectCount": 610, "years": [ + 2026, 2025, 2024, 2023, @@ -423,6 +465,7 @@ "organizationCount": 18, "projectCount": 419, "years": [ + 2026, 2025, 2024, 2023, @@ -436,11 +479,12 @@ ] }, { - "slug": "database", - "name": "database", + "slug": "deep-learning", + "name": "deep learning", "organizationCount": 17, - "projectCount": 993, + "projectCount": 501, "years": [ + 2026, 2025, 2024, 2023, @@ -454,11 +498,12 @@ ] }, { - "slug": "simulation", - "name": "simulation", + "slug": "video", + "name": "video", "organizationCount": 17, - "projectCount": 603, + "projectCount": 342, "years": [ + 2026, 2025, 2024, 2023, @@ -472,11 +517,12 @@ ] }, { - "slug": "video", - "name": "video", + "slug": "database", + "name": "database", "organizationCount": 17, - "projectCount": 342, + "projectCount": 993, "years": [ + 2026, 2025, 2024, 2023, @@ -490,11 +536,12 @@ ] }, { - "slug": "deep-learning", - "name": "deep learning", + "slug": "developer-tools", + "name": "developer tools", "organizationCount": 16, - "projectCount": 501, + "projectCount": 354, "years": [ + 2026, 2025, 2024, 2023, @@ -513,6 +560,7 @@ "organizationCount": 16, "projectCount": 273, "years": [ + 2026, 2025, 2024, 2023, @@ -531,24 +579,7 @@ "organizationCount": 15, "projectCount": 337, "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, - 2020, - 2019, - 2018, - 2017, - 2016 - ] - }, - { - "slug": "developer-tools", - "name": "developer tools", - "organizationCount": 15, - "projectCount": 354, - "years": [ + 2026, 2025, 2024, 2023, @@ -567,6 +598,7 @@ "organizationCount": 15, "projectCount": 509, "years": [ + 2026, 2025, 2024, 2023, @@ -580,11 +612,12 @@ ] }, { - "slug": "desktop", - "name": "desktop", + "slug": "hardware", + "name": "hardware", "organizationCount": 14, - "projectCount": 467, + "projectCount": 737, "years": [ + 2026, 2025, 2024, 2023, @@ -598,11 +631,12 @@ ] }, { - "slug": "hardware", - "name": "hardware", + "slug": "genomics", + "name": "genomics", "organizationCount": 14, - "projectCount": 737, + "projectCount": 234, "years": [ + 2026, 2025, 2024, 2023, @@ -616,11 +650,12 @@ ] }, { - "slug": "automation", - "name": "automation", - "organizationCount": 13, - "projectCount": 143, + "slug": "desktop", + "name": "desktop", + "organizationCount": 14, + "projectCount": 467, "years": [ + 2026, 2025, 2024, 2023, @@ -634,11 +669,12 @@ ] }, { - "slug": "devops", - "name": "devops", + "slug": "natural-language-processing", + "name": "natural language processing", "organizationCount": 13, - "projectCount": 283, + "projectCount": 490, "years": [ + 2026, 2025, 2024, 2023, @@ -652,11 +688,12 @@ ] }, { - "slug": "genomics", - "name": "genomics", + "slug": "communication", + "name": "communication", "organizationCount": 13, - "projectCount": 234, + "projectCount": 575, "years": [ + 2026, 2025, 2024, 2023, @@ -670,11 +707,12 @@ ] }, { - "slug": "high-performance-computing", - "name": "high performance computing", + "slug": "automation", + "name": "automation", "organizationCount": 13, - "projectCount": 619, + "projectCount": 143, "years": [ + 2026, 2025, 2024, 2023, @@ -688,11 +726,12 @@ ] }, { - "slug": "natural-language-processing", - "name": "natural language processing", + "slug": "devops", + "name": "devops", "organizationCount": 13, - "projectCount": 490, + "projectCount": 283, "years": [ + 2026, 2025, 2024, 2023, @@ -706,11 +745,12 @@ ] }, { - "slug": "audio", - "name": "audio", - "organizationCount": 12, - "projectCount": 282, + "slug": "high-performance-computing", + "name": "high performance computing", + "organizationCount": 13, + "projectCount": 619, "years": [ + 2026, 2025, 2024, 2023, @@ -724,11 +764,12 @@ ] }, { - "slug": "communication", - "name": "communication", - "organizationCount": 12, - "projectCount": 458, + "slug": "operating-system", + "name": "operating-system", + "organizationCount": 13, + "projectCount": 552, "years": [ + 2026, 2025, 2024, 2023, @@ -744,9 +785,10 @@ { "slug": "data", "name": "data", - "organizationCount": 12, - "projectCount": 414, + "organizationCount": 13, + "projectCount": 444, "years": [ + 2026, 2025, 2024, 2023, @@ -765,6 +807,7 @@ "organizationCount": 12, "projectCount": 503, "years": [ + 2026, 2025, 2024, 2023, @@ -783,6 +826,7 @@ "organizationCount": 12, "projectCount": 318, "years": [ + 2026, 2025, 2024, 2023, @@ -796,11 +840,12 @@ ] }, { - "slug": "operating-system", - "name": "operating-system", + "slug": "audio", + "name": "audio", "organizationCount": 12, - "projectCount": 552, + "projectCount": 282, "years": [ + 2026, 2025, 2024, 2023, @@ -816,9 +861,10 @@ { "slug": "algorithms", "name": "algorithms", - "organizationCount": 11, + "organizationCount": 12, "projectCount": 340, "years": [ + 2026, 2025, 2024, 2023, @@ -832,11 +878,12 @@ ] }, { - "slug": "distributed-systems", - "name": "distributed systems", - "organizationCount": 11, - "projectCount": 175, + "slug": "scientific-computing", + "name": "scientific computing", + "organizationCount": 12, + "projectCount": 659, "years": [ + 2026, 2025, 2024, 2023, @@ -850,11 +897,12 @@ ] }, { - "slug": "iot", - "name": "iot", + "slug": "mathematics", + "name": "mathematics", "organizationCount": 11, - "projectCount": 510, + "projectCount": 489, "years": [ + 2026, 2025, 2024, 2023, @@ -868,11 +916,12 @@ ] }, { - "slug": "mathematics", - "name": "mathematics", + "slug": "iot", + "name": "iot", "organizationCount": 11, - "projectCount": 489, + "projectCount": 510, "years": [ + 2026, 2025, 2024, 2023, @@ -891,6 +940,7 @@ "organizationCount": 11, "projectCount": 392, "years": [ + 2026, 2025, 2024, 2023, @@ -904,11 +954,12 @@ ] }, { - "slug": "scientific-computing", - "name": "scientific computing", + "slug": "distributed-systems", + "name": "distributed systems", "organizationCount": 11, - "projectCount": 659, + "projectCount": 175, "years": [ + 2026, 2025, 2024, 2023, @@ -922,11 +973,12 @@ ] }, { - "slug": "community", - "name": "community", + "slug": "monitoring", + "name": "monitoring", "organizationCount": 10, - "projectCount": 433, + "projectCount": 276, "years": [ + 2026, 2025, 2024, 2023, @@ -940,11 +992,12 @@ ] }, { - "slug": "monitoring", - "name": "monitoring", + "slug": "games", + "name": "games", "organizationCount": 10, - "projectCount": 276, + "projectCount": 395, "years": [ + 2026, 2025, 2024, 2023, @@ -958,11 +1011,12 @@ ] }, { - "slug": "3d", - "name": "3d", - "organizationCount": 9, - "projectCount": 279, + "slug": "community", + "name": "community", + "organizationCount": 10, + "projectCount": 433, "years": [ + 2026, 2025, 2024, 2023, @@ -976,11 +1030,12 @@ ] }, { - "slug": "compiler", - "name": "compiler", + "slug": "3d", + "name": "3d", "organizationCount": 9, - "projectCount": 536, + "projectCount": 279, "years": [ + 2026, 2025, 2024, 2023, @@ -994,11 +1049,12 @@ ] }, { - "slug": "cross-platform", - "name": "cross-platform", + "slug": "media", + "name": "media", "organizationCount": 9, - "projectCount": 243, + "projectCount": 336, "years": [ + 2026, 2025, 2024, 2023, @@ -1012,11 +1068,12 @@ ] }, { - "slug": "development-tools", - "name": "development tools", + "slug": "testing", + "name": "testing", "organizationCount": 9, - "projectCount": 239, + "projectCount": 142, "years": [ + 2026, 2025, 2024, 2023, @@ -1030,11 +1087,12 @@ ] }, { - "slug": "functional-programming", - "name": "functional programming", + "slug": "data-analysis", + "name": "data analysis", "organizationCount": 9, - "projectCount": 154, + "projectCount": 157, "years": [ + 2026, 2025, 2024, 2023, @@ -1048,11 +1106,12 @@ ] }, { - "slug": "games", - "name": "games", + "slug": "development-tools", + "name": "development tools", "organizationCount": 9, - "projectCount": 392, + "projectCount": 239, "years": [ + 2026, 2025, 2024, 2023, @@ -1066,11 +1125,12 @@ ] }, { - "slug": "media", - "name": "media", + "slug": "cross-platform", + "name": "cross-platform", "organizationCount": 9, - "projectCount": 336, + "projectCount": 243, "years": [ + 2026, 2025, 2024, 2023, @@ -1084,11 +1144,12 @@ ] }, { - "slug": "multimedia", - "name": "multimedia", + "slug": "functional-programming", + "name": "functional programming", "organizationCount": 9, - "projectCount": 277, + "projectCount": 154, "years": [ + 2026, 2025, 2024, 2023, @@ -1102,11 +1163,12 @@ ] }, { - "slug": "testing", - "name": "testing", + "slug": "user-interface", + "name": "user interface", "organizationCount": 9, - "projectCount": 142, + "projectCount": 273, "years": [ + 2026, 2025, 2024, 2023, @@ -1120,11 +1182,12 @@ ] }, { - "slug": "user-interface", - "name": "user interface", + "slug": "web-application", + "name": "web application", "organizationCount": 9, - "projectCount": 273, + "projectCount": 244, "years": [ + 2026, 2025, 2024, 2023, @@ -1138,11 +1201,12 @@ ] }, { - "slug": "web-application", - "name": "web application", + "slug": "open-science", + "name": "open science", "organizationCount": 9, - "projectCount": 244, + "projectCount": 330, "years": [ + 2026, 2025, 2024, 2023, @@ -1156,11 +1220,12 @@ ] }, { - "slug": "ai-ml", - "name": "AI/ML", - "organizationCount": 8, - "projectCount": 147, + "slug": "multimedia", + "name": "multimedia", + "organizationCount": 9, + "projectCount": 277, "years": [ + 2026, 2025, 2024, 2023, @@ -1174,11 +1239,12 @@ ] }, { - "slug": "api", - "name": "api", - "organizationCount": 8, - "projectCount": 130, + "slug": "compiler", + "name": "compiler", + "organizationCount": 9, + "projectCount": 536, "years": [ + 2026, 2025, 2024, 2023, @@ -1192,11 +1258,12 @@ ] }, { - "slug": "collaboration", - "name": "collaboration", + "slug": "health", + "name": "health", "organizationCount": 8, - "projectCount": 295, + "projectCount": 212, "years": [ + 2026, 2025, 2024, 2023, @@ -1210,11 +1277,12 @@ ] }, { - "slug": "communications", - "name": "communications", + "slug": "image-processing", + "name": "image processing", "organizationCount": 8, - "projectCount": 281, + "projectCount": 201, "years": [ + 2026, 2025, 2024, 2023, @@ -1228,11 +1296,12 @@ ] }, { - "slug": "data-analysis", - "name": "data analysis", + "slug": "api", + "name": "api", "organizationCount": 8, - "projectCount": 157, + "projectCount": 130, "years": [ + 2026, 2025, 2024, 2023, @@ -1246,11 +1315,13 @@ ] }, { - "slug": "drivers", - "name": "drivers", + "slug": "physics", + "name": "physics", "organizationCount": 8, - "projectCount": 78, + "projectCount": 701, "years": [ + 2026, + 2025, 2024, 2023, 2022, @@ -1268,6 +1339,7 @@ "organizationCount": 8, "projectCount": 272, "years": [ + 2026, 2025, 2024, 2023, @@ -1281,11 +1353,12 @@ ] }, { - "slug": "gis", - "name": "gis", + "slug": "ai-ml", + "name": "AI/ML", "organizationCount": 8, - "projectCount": 172, + "projectCount": 147, "years": [ + 2026, 2025, 2024, 2023, @@ -1299,11 +1372,12 @@ ] }, { - "slug": "health", - "name": "health", + "slug": "gis", + "name": "gis", "organizationCount": 8, - "projectCount": 212, + "projectCount": 172, "years": [ + 2026, 2025, 2024, 2023, @@ -1317,11 +1391,12 @@ ] }, { - "slug": "image-processing", - "name": "image processing", + "slug": "programming-language", + "name": "programming language", "organizationCount": 8, - "projectCount": 201, + "projectCount": 211, "years": [ + 2026, 2025, 2024, 2023, @@ -1335,11 +1410,12 @@ ] }, { - "slug": "open-data", - "name": "open data", + "slug": "containers", + "name": "containers", "organizationCount": 8, - "projectCount": 148, + "projectCount": 219, "years": [ + 2026, 2025, 2024, 2023, @@ -1353,12 +1429,12 @@ ] }, { - "slug": "open-science", - "name": "open science", + "slug": "drivers", + "name": "drivers", "organizationCount": 8, - "projectCount": 328, + "projectCount": 78, "years": [ - 2025, + 2026, 2024, 2023, 2022, @@ -1376,6 +1452,7 @@ "organizationCount": 8, "projectCount": 450, "years": [ + 2026, 2025, 2024, 2023, @@ -1389,11 +1466,12 @@ ] }, { - "slug": "physics", - "name": "physics", + "slug": "communications", + "name": "communications", "organizationCount": 8, - "projectCount": 701, + "projectCount": 281, "years": [ + 2026, 2025, 2024, 2023, @@ -1407,11 +1485,12 @@ ] }, { - "slug": "programming-language", - "name": "programming language", + "slug": "open-data", + "name": "open data", "organizationCount": 8, - "projectCount": 211, + "projectCount": 148, "years": [ + 2026, 2025, 2024, 2023, @@ -1425,11 +1504,12 @@ ] }, { - "slug": "programming-languages-and-development-tools", - "name": "programming languages and development tools", + "slug": "programming-tools", + "name": "programming-tools", "organizationCount": 8, - "projectCount": 283, + "projectCount": 231, "years": [ + 2026, 2025, 2024, 2023, @@ -1443,11 +1523,12 @@ ] }, { - "slug": "programming-tools", - "name": "programming-tools", + "slug": "scientific-visualization", + "name": "scientific visualization", "organizationCount": 8, - "projectCount": 231, + "projectCount": 140, "years": [ + 2026, 2025, 2024, 2023, @@ -1461,11 +1542,12 @@ ] }, { - "slug": "scientific-visualization", - "name": "scientific visualization", + "slug": "collaboration", + "name": "collaboration", "organizationCount": 8, - "projectCount": 140, + "projectCount": 295, "years": [ + 2026, 2025, 2024, 2023, @@ -1479,11 +1561,12 @@ ] }, { - "slug": "2d-3d-graphics", - "name": "2d/3d graphics", - "organizationCount": 7, - "projectCount": 135, + "slug": "programming-languages-and-development-tools", + "name": "programming languages and development tools", + "organizationCount": 8, + "projectCount": 283, "years": [ + 2026, 2025, 2024, 2023, @@ -1497,11 +1580,12 @@ ] }, { - "slug": "astronomy", - "name": "astronomy", + "slug": "data-analytics", + "name": "data analytics", "organizationCount": 7, - "projectCount": 272, + "projectCount": 113, "years": [ + 2026, 2025, 2024, 2023, @@ -1515,11 +1599,12 @@ ] }, { - "slug": "biology", - "name": "biology", + "slug": "2d-3d-graphics", + "name": "2d/3d graphics", "organizationCount": 7, - "projectCount": 518, + "projectCount": 135, "years": [ + 2026, 2025, 2024, 2023, @@ -1533,11 +1618,12 @@ ] }, { - "slug": "containers", - "name": "containers", + "slug": "web-apps", + "name": "web apps", "organizationCount": 7, - "projectCount": 219, + "projectCount": 148, "years": [ + 2026, 2025, 2024, 2023, @@ -1551,11 +1637,12 @@ ] }, { - "slug": "data-analytics", - "name": "data analytics", + "slug": "streaming", + "name": "streaming", "organizationCount": 7, - "projectCount": 113, + "projectCount": 135, "years": [ + 2026, 2025, 2024, 2023, @@ -1569,11 +1656,12 @@ ] }, { - "slug": "kubernetes", - "name": "kubernetes", + "slug": "privacy", + "name": "privacy", "organizationCount": 7, - "projectCount": 198, + "projectCount": 217, "years": [ + 2026, 2025, 2024, 2023, @@ -1587,11 +1675,12 @@ ] }, { - "slug": "library", - "name": "library", + "slug": "libraries", + "name": "libraries", "organizationCount": 7, - "projectCount": 152, + "projectCount": 433, "years": [ + 2026, 2025, 2024, 2023, @@ -1605,11 +1694,12 @@ ] }, { - "slug": "nlp", - "name": "nlp", + "slug": "vision", + "name": "vision", "organizationCount": 7, - "projectCount": 117, + "projectCount": 254, "years": [ + 2026, 2025, 2024, 2023, @@ -1623,11 +1713,12 @@ ] }, { - "slug": "optimization", - "name": "optimization", + "slug": "virtual-reality", + "name": "virtual reality", "organizationCount": 7, - "projectCount": 257, + "projectCount": 262, "years": [ + 2026, 2025, 2024, 2023, @@ -1641,11 +1732,12 @@ ] }, { - "slug": "package-management", - "name": "package management", + "slug": "library", + "name": "library", "organizationCount": 7, - "projectCount": 125, + "projectCount": 152, "years": [ + 2026, 2025, 2024, 2023, @@ -1659,11 +1751,12 @@ ] }, { - "slug": "privacy", - "name": "privacy", + "slug": "statistics", + "name": "statistics", "organizationCount": 7, - "projectCount": 217, + "projectCount": 419, "years": [ + 2026, 2025, 2024, 2023, @@ -1677,11 +1770,12 @@ ] }, { - "slug": "programming", - "name": "programming", + "slug": "optimization", + "name": "optimization", "organizationCount": 7, - "projectCount": 171, + "projectCount": 257, "years": [ + 2026, 2025, 2024, 2023, @@ -1695,11 +1789,12 @@ ] }, { - "slug": "python", - "name": "python", + "slug": "biology", + "name": "biology", "organizationCount": 7, - "projectCount": 258, + "projectCount": 518, "years": [ + 2026, 2025, 2024, 2023, @@ -1713,11 +1808,12 @@ ] }, { - "slug": "routing", - "name": "routing", + "slug": "cloud-native", + "name": "cloud-native", "organizationCount": 7, - "projectCount": 247, + "projectCount": 124, "years": [ + 2026, 2025, 2024, 2023, @@ -1726,16 +1822,16 @@ 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "statistics", - "name": "statistics", + "slug": "nlp", + "name": "nlp", "organizationCount": 7, - "projectCount": 419, + "projectCount": 117, "years": [ + 2026, 2025, 2024, 2023, @@ -1749,11 +1845,12 @@ ] }, { - "slug": "streaming", - "name": "streaming", + "slug": "python", + "name": "python", "organizationCount": 7, - "projectCount": 135, + "projectCount": 258, "years": [ + 2026, 2025, 2024, 2023, @@ -1767,11 +1864,12 @@ ] }, { - "slug": "virtual-reality", - "name": "virtual reality", + "slug": "kubernetes", + "name": "kubernetes", "organizationCount": 7, - "projectCount": 262, + "projectCount": 198, "years": [ + 2026, 2025, 2024, 2023, @@ -1785,11 +1883,12 @@ ] }, { - "slug": "vision", - "name": "vision", + "slug": "programming", + "name": "programming", "organizationCount": 7, - "projectCount": 254, + "projectCount": 171, "years": [ + 2026, 2025, 2024, 2023, @@ -1803,11 +1902,12 @@ ] }, { - "slug": "web-apps", - "name": "web apps", + "slug": "routing", + "name": "routing", "organizationCount": 7, - "projectCount": 148, + "projectCount": 247, "years": [ + 2026, 2025, 2024, 2023, @@ -1821,11 +1921,12 @@ ] }, { - "slug": "accessibility", - "name": "accessibility", - "organizationCount": 6, - "projectCount": 126, + "slug": "package-management", + "name": "package management", + "organizationCount": 7, + "projectCount": 125, "years": [ + 2026, 2025, 2024, 2023, @@ -1839,11 +1940,12 @@ ] }, { - "slug": "apis", - "name": "apis", - "organizationCount": 6, - "projectCount": 90, + "slug": "astronomy", + "name": "astronomy", + "organizationCount": 7, + "projectCount": 272, "years": [ + 2026, 2025, 2024, 2023, @@ -1857,11 +1959,12 @@ ] }, { - "slug": "build-tools", - "name": "build tools", + "slug": "cloud-computing", + "name": "cloud computing", "organizationCount": 6, - "projectCount": 144, + "projectCount": 263, "years": [ + 2026, 2025, 2024, 2023, @@ -1875,11 +1978,12 @@ ] }, { - "slug": "chat", - "name": "chat", + "slug": "storage", + "name": "storage", "organizationCount": 6, - "projectCount": 316, + "projectCount": 74, "years": [ + 2026, 2025, 2024, 2023, @@ -1893,26 +1997,31 @@ ] }, { - "slug": "civic-tech", - "name": "civic tech", + "slug": "mobile-apps", + "name": "mobile-apps", "organizationCount": 6, - "projectCount": 18, + "projectCount": 191, "years": [ + 2026, + 2025, 2024, 2023, 2022, 2021, 2020, + 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "cloud-computing", - "name": "cloud computing", + "slug": "debugging", + "name": "debugging", "organizationCount": 6, - "projectCount": 263, + "projectCount": 134, "years": [ + 2026, 2025, 2024, 2023, @@ -1926,11 +2035,12 @@ ] }, { - "slug": "cloud-native", - "name": "cloud native", + "slug": "android", + "name": "android", "organizationCount": 6, - "projectCount": 124, + "projectCount": 278, "years": [ + 2026, 2025, 2024, 2023, @@ -1939,15 +2049,17 @@ 2020, 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "debugging", - "name": "debugging", + "slug": "fpga", + "name": "fpga", "organizationCount": 6, - "projectCount": 134, + "projectCount": 103, "years": [ + 2026, 2025, 2024, 2023, @@ -1961,11 +2073,12 @@ ] }, { - "slug": "engineering", - "name": "engineering", + "slug": "apis", + "name": "apis", "organizationCount": 6, - "projectCount": 77, + "projectCount": 90, "years": [ + 2026, 2025, 2024, 2023, @@ -1979,11 +2092,12 @@ ] }, { - "slug": "fpga", - "name": "fpga", + "slug": "engineering", + "name": "engineering", "organizationCount": 6, - "projectCount": 103, + "projectCount": 77, "years": [ + 2026, 2025, 2024, 2023, @@ -1997,11 +2111,12 @@ ] }, { - "slug": "instant-messaging", - "name": "instant messaging", + "slug": "build-tools", + "name": "build tools", "organizationCount": 6, - "projectCount": 169, + "projectCount": 144, "years": [ + 2026, 2025, 2024, 2023, @@ -2015,11 +2130,12 @@ ] }, { - "slug": "libraries", - "name": "libraries", + "slug": "open-hardware", + "name": "open hardware", "organizationCount": 6, - "projectCount": 433, + "projectCount": 263, "years": [ + 2026, 2025, 2024, 2023, @@ -2033,11 +2149,12 @@ ] }, { - "slug": "maps", - "name": "maps", + "slug": "instant-messaging", + "name": "instant messaging", "organizationCount": 6, - "projectCount": 233, + "projectCount": 169, "years": [ + 2026, 2025, 2024, 2023, @@ -2051,11 +2168,12 @@ ] }, { - "slug": "mobile-apps", - "name": "mobile-apps", + "slug": "ui", + "name": "ui", "organizationCount": 6, - "projectCount": 191, + "projectCount": 116, "years": [ + 2026, 2025, 2024, 2023, @@ -2069,11 +2187,12 @@ ] }, { - "slug": "music", - "name": "music", + "slug": "science-and-medicine", + "name": "science and medicine", "organizationCount": 6, - "projectCount": 117, + "projectCount": 539, "years": [ + 2026, 2025, 2024, 2023, @@ -2087,11 +2206,12 @@ ] }, { - "slug": "open-hardware", - "name": "open hardware", + "slug": "tools", + "name": "tools", "organizationCount": 6, - "projectCount": 263, + "projectCount": 328, "years": [ + 2026, 2025, 2024, 2023, @@ -2105,11 +2225,12 @@ ] }, { - "slug": "science-and-medicine", - "name": "science and medicine", + "slug": "accessibility", + "name": "accessibility", "organizationCount": 6, - "projectCount": 539, + "projectCount": 126, "years": [ + 2026, 2025, 2024, 2023, @@ -2123,29 +2244,27 @@ ] }, { - "slug": "storage", - "name": "storage", + "slug": "civic-tech", + "name": "civic tech", "organizationCount": 6, - "projectCount": 74, + "projectCount": 18, "years": [ - 2025, 2024, 2023, 2022, 2021, 2020, - 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "tools", - "name": "tools", + "slug": "chat", + "name": "chat", "organizationCount": 6, - "projectCount": 328, + "projectCount": 316, "years": [ + 2026, 2025, 2024, 2023, @@ -2159,11 +2278,12 @@ ] }, { - "slug": "ui", - "name": "ui", + "slug": "video-processing", + "name": "video processing", "organizationCount": 6, - "projectCount": 116, + "projectCount": 211, "years": [ + 2026, 2025, 2024, 2023, @@ -2177,11 +2297,12 @@ ] }, { - "slug": "video-processing", - "name": "video processing", + "slug": "maps", + "name": "maps", "organizationCount": 6, - "projectCount": 211, + "projectCount": 233, "years": [ + 2026, 2025, 2024, 2023, @@ -2195,11 +2316,12 @@ ] }, { - "slug": "android", - "name": "android", - "organizationCount": 5, - "projectCount": 278, + "slug": "music", + "name": "music", + "organizationCount": 6, + "projectCount": 117, "years": [ + 2026, 2025, 2024, 2023, @@ -2213,11 +2335,12 @@ ] }, { - "slug": "c", - "name": "c++", + "slug": "web-services", + "name": "web services", "organizationCount": 5, - "projectCount": 129, + "projectCount": 112, "years": [ + 2026, 2025, 2024, 2023, @@ -2231,11 +2354,12 @@ ] }, { - "slug": "computational-biology", - "name": "computational biology", + "slug": "package-managers", + "name": "package managers", "organizationCount": 5, - "projectCount": 123, + "projectCount": 185, "years": [ + 2026, 2025, 2024, 2023, @@ -2249,11 +2373,12 @@ ] }, { - "slug": "concurrency", - "name": "concurrency", + "slug": "software-defined-radio", + "name": "software defined radio", "organizationCount": 5, - "projectCount": 92, + "projectCount": 127, "years": [ + 2026, 2025, 2024, 2023, @@ -2267,11 +2392,13 @@ ] }, { - "slug": "data-mining", - "name": "data mining", + "slug": "neuroscience", + "name": "neuroscience", "organizationCount": 5, - "projectCount": 106, + "projectCount": 231, "years": [ + 2026, + 2025, 2024, 2023, 2022, @@ -2284,11 +2411,12 @@ ] }, { - "slug": "data-processing", - "name": "data processing", + "slug": "rendering", + "name": "rendering", "organizationCount": 5, - "projectCount": 63, + "projectCount": 120, "years": [ + 2026, 2025, 2024, 2023, @@ -2302,11 +2430,14 @@ ] }, { - "slug": "data-visualisation", - "name": "data visualisation", + "slug": "messaging", + "name": "messaging", "organizationCount": 5, - "projectCount": 58, + "projectCount": 188, "years": [ + 2026, + 2025, + 2024, 2023, 2022, 2021, @@ -2318,11 +2449,12 @@ ] }, { - "slug": "design", - "name": "design", + "slug": "ide", + "name": "ide", "organizationCount": 5, - "projectCount": 516, + "projectCount": 118, "years": [ + 2026, 2025, 2024, 2023, @@ -2336,11 +2468,12 @@ ] }, { - "slug": "digital-signal-processing", - "name": "digital signal processing", + "slug": "computational-biology", + "name": "computational biology", "organizationCount": 5, - "projectCount": 72, + "projectCount": 123, "years": [ + 2026, 2025, 2024, 2023, @@ -2354,12 +2487,15 @@ ] }, { - "slug": "encryption", - "name": "encryption", + "slug": "javascript", + "name": "javascript", "organizationCount": 5, - "projectCount": 60, + "projectCount": 126, "years": [ + 2026, + 2025, 2024, + 2023, 2022, 2021, 2020, @@ -2370,11 +2506,12 @@ ] }, { - "slug": "firmware", - "name": "firmware", + "slug": "performance", + "name": "performance", "organizationCount": 5, - "projectCount": 162, + "projectCount": 134, "years": [ + 2026, 2025, 2024, 2023, @@ -2388,13 +2525,15 @@ ] }, { - "slug": "framework", - "name": "framework", + "slug": "c", + "name": "c++", "organizationCount": 5, - "projectCount": 66, + "projectCount": 129, "years": [ + 2026, 2025, 2024, + 2023, 2022, 2021, 2020, @@ -2410,6 +2549,7 @@ "organizationCount": 5, "projectCount": 206, "years": [ + 2026, 2025, 2024, 2023, @@ -2423,11 +2563,12 @@ ] }, { - "slug": "ide", - "name": "ide", + "slug": "concurrency", + "name": "concurrency", "organizationCount": 5, - "projectCount": 118, + "projectCount": 92, "years": [ + 2026, 2025, 2024, 2023, @@ -2441,29 +2582,35 @@ ] }, { - "slug": "infrastructure", - "name": "infrastructure", + "slug": "nonprofit", + "name": "nonprofit", "organizationCount": 5, - "projectCount": 36, + "projectCount": 149, "years": [ + 2026, 2025, 2024, + 2023, + 2022, + 2021, 2020, 2019, 2018, + 2017, 2016 ] }, { - "slug": "internet-of-things", - "name": "internet of things", + "slug": "data-mining", + "name": "data mining", "organizationCount": 5, - "projectCount": 100, + "projectCount": 106, "years": [ - 2025, + 2026, 2024, 2023, 2022, + 2021, 2020, 2019, 2018, @@ -2472,16 +2619,16 @@ ] }, { - "slug": "javascript", - "name": "javascript", + "slug": "internet-of-things", + "name": "internet of things", "organizationCount": 5, - "projectCount": 126, + "projectCount": 100, "years": [ + 2026, 2025, 2024, 2023, 2022, - 2021, 2020, 2019, 2018, @@ -2490,11 +2637,12 @@ ] }, { - "slug": "messaging", - "name": "messaging", + "slug": "firmware", + "name": "firmware", "organizationCount": 5, - "projectCount": 188, + "projectCount": 162, "years": [ + 2026, 2025, 2024, 2023, @@ -2508,11 +2656,12 @@ ] }, { - "slug": "middleware", - "name": "middleware", + "slug": "semantic-web", + "name": "semantic web", "organizationCount": 5, - "projectCount": 54, + "projectCount": 188, "years": [ + 2026, 2025, 2024, 2023, @@ -2526,11 +2675,12 @@ ] }, { - "slug": "network", - "name": "network", + "slug": "data-processing", + "name": "data processing", "organizationCount": 5, - "projectCount": 106, + "projectCount": 63, "years": [ + 2026, 2025, 2024, 2023, @@ -2544,35 +2694,29 @@ ] }, { - "slug": "neuroscience", - "name": "neuroscience", + "slug": "infrastructure", + "name": "infrastructure", "organizationCount": 5, - "projectCount": 231, + "projectCount": 36, "years": [ + 2026, 2025, 2024, - 2023, - 2022, - 2021, 2020, 2019, 2018, - 2017, 2016 ] }, { - "slug": "nonprofit", - "name": "nonprofit", + "slug": "email", + "name": "email", "organizationCount": 5, - "projectCount": 149, + "projectCount": 15, "years": [ + 2026, 2025, - 2024, - 2023, - 2022, 2021, - 2020, 2019, 2018, 2017, @@ -2580,11 +2724,12 @@ ] }, { - "slug": "numerical-computing", - "name": "numerical computing", + "slug": "middleware", + "name": "middleware", "organizationCount": 5, - "projectCount": 461, + "projectCount": 54, "years": [ + 2026, 2025, 2024, 2023, @@ -2598,11 +2743,12 @@ ] }, { - "slug": "package-managers", - "name": "package managers", + "slug": "sql", + "name": "sql", "organizationCount": 5, - "projectCount": 185, + "projectCount": 132, "years": [ + 2026, 2025, 2024, 2023, @@ -2616,13 +2762,12 @@ ] }, { - "slug": "rendering", - "name": "rendering", + "slug": "data-visualisation", + "name": "data visualisation", "organizationCount": 5, - "projectCount": 120, + "projectCount": 58, "years": [ - 2025, - 2024, + 2026, 2023, 2022, 2021, @@ -2634,14 +2779,14 @@ ] }, { - "slug": "reverse-engineering", - "name": "reverse-engineering", + "slug": "search", + "name": "search", "organizationCount": 5, - "projectCount": 91, + "projectCount": 180, "years": [ + 2026, 2025, 2024, - 2023, 2022, 2021, 2020, @@ -2652,11 +2797,12 @@ ] }, { - "slug": "search", - "name": "search", + "slug": "framework", + "name": "framework", "organizationCount": 5, - "projectCount": 180, + "projectCount": 66, "years": [ + 2026, 2025, 2024, 2022, @@ -2669,11 +2815,12 @@ ] }, { - "slug": "semantic-web", - "name": "semantic web", + "slug": "reverse-engineering", + "name": "reverse-engineering", "organizationCount": 5, - "projectCount": 188, + "projectCount": 91, "years": [ + 2026, 2025, 2024, 2023, @@ -2687,11 +2834,12 @@ ] }, { - "slug": "software-defined-radio", - "name": "software defined radio", + "slug": "numerical-computing", + "name": "numerical computing", "organizationCount": 5, - "projectCount": 127, + "projectCount": 461, "years": [ + 2026, 2025, 2024, 2023, @@ -2705,11 +2853,12 @@ ] }, { - "slug": "sql", - "name": "sql", + "slug": "network", + "name": "network", "organizationCount": 5, - "projectCount": 132, + "projectCount": 106, "years": [ + 2026, 2025, 2024, 2023, @@ -2723,11 +2872,12 @@ ] }, { - "slug": "web-services", - "name": "web services", + "slug": "design", + "name": "design", "organizationCount": 5, - "projectCount": 112, + "projectCount": 516, "years": [ + 2026, 2025, 2024, 2023, @@ -2741,11 +2891,12 @@ ] }, { - "slug": "animation", - "name": "animation", - "organizationCount": 4, - "projectCount": 90, + "slug": "digital-signal-processing", + "name": "digital signal processing", + "organizationCount": 5, + "projectCount": 72, "years": [ + 2026, 2025, 2024, 2023, @@ -2759,14 +2910,13 @@ ] }, { - "slug": "applications", - "name": "applications", - "organizationCount": 4, - "projectCount": 375, + "slug": "encryption", + "name": "encryption", + "organizationCount": 5, + "projectCount": 60, "years": [ - 2025, + 2026, 2024, - 2023, 2022, 2021, 2020, @@ -2777,11 +2927,12 @@ ] }, { - "slug": "apps", - "name": "apps", + "slug": "mapping", + "name": "mapping", "organizationCount": 4, - "projectCount": 209, + "projectCount": 107, "years": [ + 2026, 2025, 2024, 2023, @@ -2795,11 +2946,12 @@ ] }, { - "slug": "astrophysics", - "name": "astrophysics", + "slug": "animation", + "name": "animation", "organizationCount": 4, - "projectCount": 105, + "projectCount": 90, "years": [ + 2026, 2025, 2024, 2023, @@ -2813,11 +2965,12 @@ ] }, { - "slug": "automotive", - "name": "automotive", + "slug": "signal-processing", + "name": "signal processing", "organizationCount": 4, - "projectCount": 221, + "projectCount": 78, "years": [ + 2026, 2025, 2024, 2023, @@ -2831,11 +2984,12 @@ ] }, { - "slug": "cms", - "name": "cms", + "slug": "fuzzing", + "name": "fuzzing", "organizationCount": 4, - "projectCount": 112, + "projectCount": 125, "years": [ + 2026, 2025, 2024, 2023, @@ -2849,27 +3003,30 @@ ] }, { - "slug": "data-integration", - "name": "data integration", + "slug": "machine-translation", + "name": "machine translation", "organizationCount": 4, - "projectCount": 52, + "projectCount": 109, "years": [ - 2025, + 2026, 2024, 2023, 2022, 2021, 2020, 2019, + 2018, + 2017, 2016 ] }, { - "slug": "data-management", - "name": "data management", + "slug": "mathematical-software", + "name": "mathematical software", "organizationCount": 4, - "projectCount": 140, + "projectCount": 90, "years": [ + 2026, 2025, 2024, 2023, @@ -2878,44 +3035,17 @@ 2020, 2019, 2018, - 2017 - ] - }, - { - "slug": "data-structures", - "name": "data structures", - "organizationCount": 4, - "projectCount": 59, - "years": [ - 2025, - 2021, - 2020, - 2019, - 2018, 2017, 2016 ] }, { - "slug": "email", - "name": "email", - "organizationCount": 4, - "projectCount": 15, - "years": [ - 2025, - 2021, - 2019, - 2018, - 2017, - 2016 - ] - }, - { - "slug": "emulation", - "name": "emulation", + "slug": "realtime", + "name": "realtime", "organizationCount": 4, - "projectCount": 92, + "projectCount": 189, "years": [ + 2026, 2025, 2024, 2023, @@ -2929,11 +3059,12 @@ ] }, { - "slug": "end-user-application", - "name": "end user application", + "slug": "app-development", + "name": "app development", "organizationCount": 4, - "projectCount": 215, + "projectCount": 94, "years": [ + 2026, 2025, 2024, 2023, @@ -2947,31 +3078,24 @@ ] }, { - "slug": "fuzzing", - "name": "fuzzing", + "slug": "time-series", + "name": "time-series", "organizationCount": 4, - "projectCount": 125, + "projectCount": 13, "years": [ - 2025, + 2026, 2024, - 2023, 2022, 2021, - 2020, - 2019, - 2018, - 2017, 2016 ] }, { - "slug": "game-engines", - "name": "game engines", + "slug": "web-platform-and-services", + "name": "web platform and services", "organizationCount": 4, - "projectCount": 188, + "projectCount": 108, "years": [ - 2025, - 2024, 2023, 2022, 2021, @@ -2983,10 +3107,10 @@ ] }, { - "slug": "gaming", - "name": "gaming", + "slug": "data-integration", + "name": "data integration", "organizationCount": 4, - "projectCount": 123, + "projectCount": 52, "years": [ 2025, 2024, @@ -2995,21 +3119,16 @@ 2021, 2020, 2019, - 2018, - 2017, 2016 ] }, { - "slug": "gui", - "name": "gui", + "slug": "software-engineering", + "name": "software engineering", "organizationCount": 4, - "projectCount": 51, + "projectCount": 69, "years": [ 2025, - 2024, - 2023, - 2022, 2021, 2020, 2019, @@ -3019,15 +3138,13 @@ ] }, { - "slug": "information-security", - "name": "information security", + "slug": "data-structures", + "name": "data structures", "organizationCount": 4, - "projectCount": 357, + "projectCount": 59, "years": [ + 2026, 2025, - 2024, - 2023, - 2022, 2021, 2020, 2019, @@ -3042,6 +3159,7 @@ "organizationCount": 4, "projectCount": 173, "years": [ + 2026, 2025, 2024, 2023, @@ -3055,11 +3173,12 @@ ] }, { - "slug": "linear-algebra", - "name": "linear algebra", + "slug": "vr", + "name": "vr", "organizationCount": 4, - "projectCount": 226, + "projectCount": 341, "years": [ + 2026, 2025, 2024, 2023, @@ -3073,11 +3192,13 @@ ] }, { - "slug": "machine-translation", - "name": "machine translation", + "slug": "data-management", + "name": "data management", "organizationCount": 4, - "projectCount": 109, + "projectCount": 140, "years": [ + 2026, + 2025, 2024, 2023, 2022, @@ -3085,19 +3206,16 @@ 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "mapping", - "name": "mapping", + "slug": "metrics", + "name": "metrics", "organizationCount": 4, - "projectCount": 107, + "projectCount": 78, "years": [ 2025, - 2024, - 2023, 2022, 2021, 2020, @@ -3108,11 +3226,29 @@ ] }, { - "slug": "math", - "name": "math", + "slug": "analytics", + "name": "analytics", "organizationCount": 4, - "projectCount": 271, + "projectCount": 42, + "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2019, + 2018 + ] + }, + { + "slug": "static-code-analysis", + "name": "static code analysis", + "organizationCount": 4, + "projectCount": 183, "years": [ + 2026, 2025, 2024, 2023, @@ -3126,11 +3262,12 @@ ] }, { - "slug": "mathematical-software", - "name": "mathematical software", + "slug": "observability", + "name": "observability", "organizationCount": 4, - "projectCount": 90, + "projectCount": 141, "years": [ + 2026, 2025, 2024, 2023, @@ -3144,12 +3281,15 @@ ] }, { - "slug": "metrics", - "name": "metrics", + "slug": "applications", + "name": "applications", "organizationCount": 4, - "projectCount": 78, + "projectCount": 375, "years": [ + 2026, 2025, + 2024, + 2023, 2022, 2021, 2020, @@ -3160,23 +3300,31 @@ ] }, { - "slug": "micro-services", - "name": "micro services", + "slug": "packaging", + "name": "packaging", "organizationCount": 4, - "projectCount": 32, + "projectCount": 169, "years": [ + 2026, + 2025, + 2024, + 2023, 2022, + 2021, + 2020, + 2019, 2018, 2017, 2016 ] }, { - "slug": "network-analysis", - "name": "network analysis", + "slug": "end-user-application", + "name": "end user application", "organizationCount": 4, - "projectCount": 256, + "projectCount": 215, "years": [ + 2026, 2025, 2024, 2023, @@ -3190,11 +3338,12 @@ ] }, { - "slug": "numerical-computation", - "name": "numerical computation", + "slug": "cms", + "name": "cms", "organizationCount": 4, - "projectCount": 454, + "projectCount": 112, "years": [ + 2026, 2025, 2024, 2023, @@ -3208,11 +3357,12 @@ ] }, { - "slug": "observability", - "name": "observability", + "slug": "apps", + "name": "apps", "organizationCount": 4, - "projectCount": 141, + "projectCount": 209, "years": [ + 2026, 2025, 2024, 2023, @@ -3226,11 +3376,12 @@ ] }, { - "slug": "packaging", - "name": "packaging", + "slug": "runtime-systems", + "name": "runtime systems", "organizationCount": 4, - "projectCount": 169, + "projectCount": 109, "years": [ + 2026, 2025, 2024, 2023, @@ -3244,11 +3395,12 @@ ] }, { - "slug": "performance", - "name": "performance", + "slug": "automotive", + "name": "automotive", "organizationCount": 4, - "projectCount": 134, + "projectCount": 221, "years": [ + 2026, 2025, 2024, 2023, @@ -3262,15 +3414,26 @@ ] }, { - "slug": "realtime", - "name": "realtime", + "slug": "micro-services", + "name": "micro services", "organizationCount": 4, - "projectCount": 189, + "projectCount": 32, "years": [ - 2025, + 2022, + 2018, + 2017, + 2016 + ] + }, + { + "slug": "os", + "name": "OS", + "organizationCount": 4, + "projectCount": 71, + "years": [ + 2026, 2024, 2023, - 2022, 2021, 2020, 2019, @@ -3280,11 +3443,12 @@ ] }, { - "slug": "runtime-systems", - "name": "runtime systems", + "slug": "emulation", + "name": "emulation", "organizationCount": 4, - "projectCount": 109, + "projectCount": 92, "years": [ + 2026, 2025, 2024, 2023, @@ -3298,11 +3462,12 @@ ] }, { - "slug": "signal-processing", - "name": "signal processing", + "slug": "astrophysics", + "name": "astrophysics", "organizationCount": 4, - "projectCount": 78, + "projectCount": 105, "years": [ + 2026, 2025, 2024, 2023, @@ -3317,7 +3482,7 @@ }, { "slug": "software-defined-networking", - "name": "software defined networking", + "name": "software-defined networking", "organizationCount": 4, "projectCount": 89, "years": [ @@ -3334,12 +3499,16 @@ ] }, { - "slug": "software-engineering", - "name": "software engineering", + "slug": "gaming", + "name": "gaming", "organizationCount": 4, - "projectCount": 69, + "projectCount": 123, "years": [ + 2026, 2025, + 2024, + 2023, + 2022, 2021, 2020, 2019, @@ -3349,11 +3518,12 @@ ] }, { - "slug": "standards", - "name": "standards", + "slug": "editor", + "name": "editor", "organizationCount": 4, - "projectCount": 115, + "projectCount": 104, "years": [ + 2026, 2025, 2024, 2023, @@ -3367,11 +3537,12 @@ ] }, { - "slug": "static-code-analysis", - "name": "static code analysis", + "slug": "standards", + "name": "standards", "organizationCount": 4, - "projectCount": 183, + "projectCount": 115, "years": [ + 2026, 2025, 2024, 2023, @@ -3385,11 +3556,12 @@ ] }, { - "slug": "vr", - "name": "vr", + "slug": "numerical-computation", + "name": "numerical computation", "organizationCount": 4, - "projectCount": 341, + "projectCount": 454, "years": [ + 2026, 2025, 2024, 2023, @@ -3403,11 +3575,14 @@ ] }, { - "slug": "web-platform-and-services", - "name": "web platform and services", + "slug": "gui", + "name": "gui", "organizationCount": 4, - "projectCount": 108, + "projectCount": 51, "years": [ + 2026, + 2025, + 2024, 2023, 2022, 2021, @@ -3419,11 +3594,12 @@ ] }, { - "slug": "analytics", - "name": "analytics", - "organizationCount": 3, - "projectCount": 42, + "slug": "game-engines", + "name": "game engines", + "organizationCount": 4, + "projectCount": 188, "years": [ + 2026, 2025, 2024, 2023, @@ -3431,15 +3607,18 @@ 2021, 2020, 2019, - 2018 + 2018, + 2017, + 2016 ] }, { - "slug": "app-development", - "name": "app development", - "organizationCount": 3, - "projectCount": 90, + "slug": "network-analysis", + "name": "network analysis", + "organizationCount": 4, + "projectCount": 256, "years": [ + 2026, 2025, 2024, 2023, @@ -3453,11 +3632,12 @@ ] }, { - "slug": "application", - "name": "application", - "organizationCount": 3, - "projectCount": 191, + "slug": "information-security", + "name": "information security", + "organizationCount": 4, + "projectCount": 357, "years": [ + 2026, 2025, 2024, 2023, @@ -3471,11 +3651,12 @@ ] }, { - "slug": "application-security", - "name": "application security", - "organizationCount": 3, - "projectCount": 159, + "slug": "linear-algebra", + "name": "linear algebra", + "organizationCount": 4, + "projectCount": 226, "years": [ + 2026, 2025, 2024, 2023, @@ -3489,11 +3670,12 @@ ] }, { - "slug": "backend", - "name": "backend", - "organizationCount": 3, - "projectCount": 278, + "slug": "math", + "name": "math", + "organizationCount": 4, + "projectCount": 271, "years": [ + 2026, 2025, 2024, 2023, @@ -3507,11 +3689,12 @@ ] }, { - "slug": "browser", - "name": "browser", + "slug": "geoinformatics", + "name": "geoinformatics", "organizationCount": 3, - "projectCount": 164, + "projectCount": 171, "years": [ + 2026, 2025, 2024, 2023, @@ -3525,11 +3708,12 @@ ] }, { - "slug": "bug-finding", - "name": "bug finding", + "slug": "citizen-science", + "name": "citizen science", "organizationCount": 3, - "projectCount": 35, + "projectCount": 136, "years": [ + 2026, 2025, 2024, 2023, @@ -3538,30 +3722,37 @@ 2020, 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "build-systems", - "name": "build systems", + "slug": "license-compliance", + "name": "license compliance", "organizationCount": 3, - "projectCount": 23, + "projectCount": 76, "years": [ + 2026, 2025, 2024, 2023, 2022, 2021, + 2020, 2019, + 2018, 2017 ] }, { - "slug": "camera", - "name": "camera", + "slug": "software-analysis", + "name": "software analysis", "organizationCount": 3, - "projectCount": 37, + "projectCount": 48, "years": [ + 2026, + 2025, + 2024, 2023, 2022, 2021, @@ -3572,11 +3763,12 @@ ] }, { - "slug": "cheminformatics", - "name": "cheminformatics", + "slug": "application-security", + "name": "application security", "organizationCount": 3, - "projectCount": 69, + "projectCount": 159, "years": [ + 2026, 2025, 2024, 2023, @@ -3590,11 +3782,12 @@ ] }, { - "slug": "citizen-science", - "name": "citizen science", + "slug": "blockchain", + "name": "blockchain", "organizationCount": 3, - "projectCount": 136, + "projectCount": 175, "years": [ + 2026, 2025, 2024, 2023, @@ -3608,23 +3801,26 @@ ] }, { - "slug": "cloud-databases", - "name": "cloud databases", + "slug": "distributed-computing", + "name": "distributed computing", "organizationCount": 3, - "projectCount": 25, + "projectCount": 65, "years": [ - 2022, 2021, + 2020, 2019, - 2018 + 2018, + 2017, + 2016 ] }, { - "slug": "code-analysis", - "name": "code analysis", + "slug": "bug-finding", + "name": "bug finding", "organizationCount": 3, - "projectCount": 162, + "projectCount": 35, "years": [ + 2026, 2025, 2024, 2023, @@ -3633,21 +3829,33 @@ 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "compression", - "name": "compression", - "organizationCount": 3, + "slug": "radiology", + "name": "radiology", + "organizationCount": 3, "projectCount": 70, "years": [ + 2026, 2025, 2024, 2023, 2022, 2021, + 2020, + 2019, + 2018, + 2017 + ] + }, + { + "slug": "webapps", + "name": "webapps", + "organizationCount": 3, + "projectCount": 46, + "years": [ 2020, 2019, 2018, @@ -3656,11 +3864,12 @@ ] }, { - "slug": "computational-geometry", - "name": "computational geometry", + "slug": "environment", + "name": "environment", "organizationCount": 3, - "projectCount": 96, + "projectCount": 165, "years": [ + 2026, 2025, 2024, 2023, @@ -3669,15 +3878,17 @@ 2020, 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "computer-networking", - "name": "computer networking", + "slug": "backend", + "name": "backend", "organizationCount": 3, - "projectCount": 53, + "projectCount": 278, "years": [ + 2026, 2025, 2024, 2023, @@ -3691,11 +3902,27 @@ ] }, { - "slug": "configuration-management", - "name": "configuration management", + "slug": "camera", + "name": "camera", "organizationCount": 3, - "projectCount": 80, + "projectCount": 37, + "years": [ + 2023, + 2022, + 2021, + 2020, + 2019, + 2018, + 2017 + ] + }, + { + "slug": "editing", + "name": "editing", + "organizationCount": 3, + "projectCount": 98, "years": [ + 2026, 2025, 2024, 2023, @@ -3709,15 +3936,17 @@ ] }, { - "slug": "content-management", - "name": "content management", + "slug": "compression", + "name": "compression", "organizationCount": 3, - "projectCount": 67, + "projectCount": 70, "years": [ + 2026, 2025, 2024, 2023, 2022, + 2021, 2020, 2019, 2018, @@ -3726,11 +3955,28 @@ ] }, { - "slug": "continuous-delivery", - "name": "continuous delivery", + "slug": "build-systems", + "name": "build systems", "organizationCount": 3, - "projectCount": 54, + "projectCount": 23, "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2019, + 2017 + ] + }, + { + "slug": "privacy-security", + "name": "privacy/security", + "organizationCount": 3, + "projectCount": 138, + "years": [ + 2026, 2025, 2024, 2023, @@ -3739,15 +3985,17 @@ 2020, 2019, 2018, + 2017, 2016 ] }, { - "slug": "continuous-integration", - "name": "continuous integration", + "slug": "teaching", + "name": "teaching", "organizationCount": 3, - "projectCount": 120, + "projectCount": 112, "years": [ + 2026, 2025, 2024, 2023, @@ -3756,15 +4004,17 @@ 2020, 2019, 2018, + 2017, 2016 ] }, { - "slug": "data-discovery", - "name": "data discovery", + "slug": "precision-medicine", + "name": "precision medicine", "organizationCount": 3, - "projectCount": 95, + "projectCount": 60, "years": [ + 2026, 2025, 2024, 2023, @@ -3772,17 +4022,17 @@ 2021, 2020, 2019, - 2018, 2017, 2016 ] }, { - "slug": "desktop-environment", - "name": "desktop environment", + "slug": "computer-networking", + "name": "computer networking", "organizationCount": 3, - "projectCount": 287, + "projectCount": 53, "years": [ + 2026, 2025, 2024, 2023, @@ -3796,11 +4046,12 @@ ] }, { - "slug": "development", - "name": "development", + "slug": "geometry", + "name": "geometry", "organizationCount": 3, - "projectCount": 80, + "projectCount": 158, "years": [ + 2026, 2025, 2024, 2023, @@ -3814,12 +4065,17 @@ ] }, { - "slug": "devtools", - "name": "devtools", + "slug": "software", + "name": "software", "organizationCount": 3, - "projectCount": 82, + "projectCount": 109, "years": [ + 2026, 2025, + 2024, + 2023, + 2022, + 2021, 2020, 2019, 2018, @@ -3828,29 +4084,36 @@ ] }, { - "slug": "disassembly", - "name": "disassembly", + "slug": "image-analysis", + "name": "image analysis", "organizationCount": 3, - "projectCount": 32, + "projectCount": 308, "years": [ + 2026, 2025, 2024, 2023, 2022, 2021, 2020, + 2019, 2018, 2017, 2016 ] }, { - "slug": "distributed", - "name": "distributed", + "slug": "development", + "name": "development", "organizationCount": 3, - "projectCount": 28, + "projectCount": 80, "years": [ + 2026, + 2025, + 2024, + 2023, 2022, + 2021, 2020, 2019, 2018, @@ -3859,12 +4122,12 @@ ] }, { - "slug": "distributed-computing", - "name": "distributed computing", + "slug": "distributed", + "name": "distributed", "organizationCount": 3, - "projectCount": 65, + "projectCount": 28, "years": [ - 2021, + 2022, 2020, 2019, 2018, @@ -3887,28 +4150,24 @@ ] }, { - "slug": "documentation", - "name": "documentation", + "slug": "cloud-databases", + "name": "cloud databases", "organizationCount": 3, - "projectCount": 60, + "projectCount": 25, "years": [ - 2024, - 2023, 2022, 2021, - 2020, 2019, - 2018, - 2017, - 2016 + 2018 ] }, { - "slug": "dsp", - "name": "dsp", + "slug": "computational-geometry", + "name": "computational geometry", "organizationCount": 3, - "projectCount": 49, + "projectCount": 96, "years": [ + 2026, 2025, 2024, 2023, @@ -3917,16 +4176,16 @@ 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "editing", - "name": "editing", + "slug": "parallel-computing", + "name": "parallel computing", "organizationCount": 3, - "projectCount": 98, + "projectCount": 60, "years": [ + 2026, 2025, 2024, 2023, @@ -3940,11 +4199,12 @@ ] }, { - "slug": "editor", - "name": "editor", + "slug": "verification", + "name": "verification", "organizationCount": 3, - "projectCount": 104, + "projectCount": 68, "years": [ + 2026, 2025, 2024, 2023, @@ -3958,23 +4218,29 @@ ] }, { - "slug": "edtech", - "name": "edtech", + "slug": "browser", + "name": "browser", "organizationCount": 3, - "projectCount": 13, + "projectCount": 164, "years": [ + 2026, 2025, 2024, 2023, 2022, - 2018 + 2021, + 2020, + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "end-user-applications", - "name": "end user applications", + "slug": "reinforcement-learning", + "name": "reinforcement learning", "organizationCount": 3, - "projectCount": 204, + "projectCount": 90, "years": [ 2025, 2024, @@ -3989,11 +4255,12 @@ ] }, { - "slug": "environment", - "name": "environment", + "slug": "tracing", + "name": "tracing", "organizationCount": 3, - "projectCount": 165, + "projectCount": 129, "years": [ + 2026, 2025, 2024, 2023, @@ -4007,11 +4274,12 @@ ] }, { - "slug": "formal-methods", - "name": "formal methods", + "slug": "logging", + "name": "logging", "organizationCount": 3, - "projectCount": 61, + "projectCount": 129, "years": [ + 2026, 2025, 2024, 2023, @@ -4025,13 +4293,18 @@ ] }, { - "slug": "forum", - "name": "forum", + "slug": "code-analysis", + "name": "code analysis", "organizationCount": 3, - "projectCount": 48, + "projectCount": 162, "years": [ + 2026, + 2025, + 2024, + 2023, 2022, 2021, + 2020, 2019, 2018, 2017, @@ -4039,11 +4312,12 @@ ] }, { - "slug": "game", - "name": "game", + "slug": "continuous-integration", + "name": "continuous integration", "organizationCount": 3, - "projectCount": 80, + "projectCount": 120, "years": [ + 2026, 2025, 2024, 2023, @@ -4052,16 +4326,17 @@ 2020, 2019, 2018, - 2017, 2016 ] }, { - "slug": "game-development", - "name": "game development", + "slug": "continuous-delivery", + "name": "continuous delivery", "organizationCount": 3, - "projectCount": 39, + "projectCount": 54, "years": [ + 2026, + 2025, 2024, 2023, 2022, @@ -4069,15 +4344,16 @@ 2020, 2019, 2018, - 2017 + 2016 ] }, { - "slug": "generative-ai", - "name": "generative AI", + "slug": "great-developer-tooling", + "name": "great developer tooling", "organizationCount": 3, - "projectCount": 111, + "projectCount": 146, "years": [ + 2026, 2025, 2024, 2023, @@ -4091,14 +4367,14 @@ ] }, { - "slug": "geoinformatics", - "name": "geoinformatics", + "slug": "linguistics", + "name": "linguistics", "organizationCount": 3, - "projectCount": 171, + "projectCount": 54, "years": [ + 2026, 2025, 2024, - 2023, 2022, 2021, 2020, @@ -4109,11 +4385,12 @@ ] }, { - "slug": "geometry", - "name": "geometry", + "slug": "object-oriented-programming", + "name": "object-oriented programming", "organizationCount": 3, - "projectCount": 158, + "projectCount": 82, "years": [ + 2026, 2025, 2024, 2023, @@ -4127,13 +4404,13 @@ ] }, { - "slug": "git", - "name": "git", + "slug": "system-programming", + "name": "system programming", "organizationCount": 3, "projectCount": 34, "years": [ + 2026, 2025, - 2023, 2022, 2021, 2020, @@ -4144,26 +4421,12 @@ ] }, { - "slug": "global-health", - "name": "global health", - "organizationCount": 3, - "projectCount": 41, - "years": [ - 2023, - 2022, - 2021, - 2020, - 2019, - 2018, - 2017 - ] - }, - { - "slug": "gpu", - "name": "gpu", + "slug": "knowledge-graphs", + "name": "knowledge graphs", "organizationCount": 3, - "projectCount": 113, + "projectCount": 72, "years": [ + 2026, 2025, 2024, 2023, @@ -4177,28 +4440,29 @@ ] }, { - "slug": "graphics-video-audio-virtual-reality", - "name": "graphics / video / audio / virtual reality", + "slug": "ci-cd", + "name": "CI/CD", "organizationCount": 3, - "projectCount": 70, + "projectCount": 80, "years": [ + 2026, + 2025, 2024, - 2023, 2022, 2021, 2020, 2019, 2018, - 2017, 2016 ] }, { - "slug": "great-developer-tooling", - "name": "great developer tooling", + "slug": "workflows", + "name": "workflows", "organizationCount": 3, - "projectCount": 146, + "projectCount": 86, "years": [ + 2026, 2025, 2024, 2023, @@ -4212,15 +4476,11 @@ ] }, { - "slug": "hpc", - "name": "hpc", + "slug": "humanitarian", + "name": "humanitarian", "organizationCount": 3, - "projectCount": 65, + "projectCount": 35, "years": [ - 2025, - 2024, - 2023, - 2022, 2021, 2020, 2019, @@ -4230,31 +4490,30 @@ ] }, { - "slug": "humanitarian", - "name": "humanitarian", + "slug": "social-good", + "name": "social good", "organizationCount": 3, - "projectCount": 35, + "projectCount": 72, "years": [ + 2025, + 2024, + 2023, + 2022, 2021, 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "image-analysis", - "name": "image analysis", + "slug": "forum", + "name": "forum", "organizationCount": 3, - "projectCount": 308, + "projectCount": 48, "years": [ - 2025, - 2024, - 2023, 2022, 2021, - 2020, 2019, 2018, 2017, @@ -4262,11 +4521,12 @@ ] }, { - "slug": "internet", - "name": "internet", + "slug": "content-management", + "name": "content management", "organizationCount": 3, - "projectCount": 93, + "projectCount": 67, "years": [ + 2026, 2025, 2024, 2023, @@ -4284,6 +4544,7 @@ "organizationCount": 3, "projectCount": 171, "years": [ + 2026, 2025, 2024, 2023, @@ -4297,11 +4558,12 @@ ] }, { - "slug": "knowledge-graphs", - "name": "knowledge graphs", + "slug": "tooling", + "name": "tooling", "organizationCount": 3, - "projectCount": 72, + "projectCount": 68, "years": [ + 2026, 2025, 2024, 2023, @@ -4315,11 +4577,12 @@ ] }, { - "slug": "license-compliance", - "name": "license compliance", + "slug": "filesystems", + "name": "filesystems", "organizationCount": 3, - "projectCount": 76, + "projectCount": 30, "years": [ + 2026, 2025, 2024, 2023, @@ -4332,13 +4595,15 @@ ] }, { - "slug": "linguistics", - "name": "linguistics", + "slug": "platform", + "name": "platform", "organizationCount": 3, - "projectCount": 54, + "projectCount": 133, "years": [ + 2026, 2025, 2024, + 2023, 2022, 2021, 2020, @@ -4349,43 +4614,49 @@ ] }, { - "slug": "logging", - "name": "logging", + "slug": "disassembly", + "name": "disassembly", "organizationCount": 3, - "projectCount": 129, + "projectCount": 32, "years": [ + 2026, 2025, 2024, 2023, 2022, 2021, 2020, - 2019, 2018, 2017, 2016 ] }, { - "slug": "medical-imaging", - "name": "medical imaging", + "slug": "ui-ux", + "name": "ui/ux", "organizationCount": 3, - "projectCount": 31, + "projectCount": 173, "years": [ + 2026, 2025, 2024, 2023, + 2022, + 2021, + 2020, + 2019, 2018, 2017, 2016 ] }, { - "slug": "metadata", - "name": "metadata", + "slug": "wireless", + "name": "wireless", "organizationCount": 3, - "projectCount": 164, + "projectCount": 237, "years": [ + 2026, 2025, 2024, 2023, @@ -4399,11 +4670,15 @@ ] }, { - "slug": "microservices", - "name": "microservices", + "slug": "hpc", + "name": "hpc", "organizationCount": 3, - "projectCount": 59, + "projectCount": 65, "years": [ + 2026, + 2025, + 2024, + 2023, 2022, 2021, 2020, @@ -4414,11 +4689,12 @@ ] }, { - "slug": "mobile-applications", - "name": "mobile applications", + "slug": "version-control", + "name": "version control", "organizationCount": 3, - "projectCount": 295, + "projectCount": 27, "years": [ + 2026, 2025, 2024, 2023, @@ -4432,13 +4708,15 @@ ] }, { - "slug": "network-security", - "name": "network security", + "slug": "git", + "name": "git", "organizationCount": 3, - "projectCount": 14, + "projectCount": 34, "years": [ - 2024, + 2025, 2023, + 2022, + 2021, 2020, 2019, 2018, @@ -4447,11 +4725,12 @@ ] }, { - "slug": "object-oriented-programming", - "name": "object-oriented programming", + "slug": "data-discovery", + "name": "data discovery", "organizationCount": 3, - "projectCount": 82, + "projectCount": 95, "years": [ + 2026, 2025, 2024, 2023, @@ -4465,11 +4744,12 @@ ] }, { - "slug": "offline", - "name": "offline", + "slug": "desktop-environment", + "name": "desktop environment", "organizationCount": 3, - "projectCount": 44, + "projectCount": 287, "years": [ + 2026, 2025, 2024, 2023, @@ -4477,17 +4757,23 @@ 2021, 2020, 2019, - 2018 + 2018, + 2017, + 2016 ] }, { - "slug": "os", - "name": "OS", + "slug": "end-user-applications", + "name": "end user applications", "organizationCount": 3, - "projectCount": 67, + "projectCount": 204, "years": [ + 2026, + 2025, 2024, 2023, + 2022, + 2021, 2020, 2019, 2018, @@ -4496,12 +4782,17 @@ ] }, { - "slug": "package-manager", - "name": "package manager", + "slug": "application", + "name": "application", "organizationCount": 3, - "projectCount": 23, + "projectCount": 191, "years": [ + 2026, + 2025, + 2024, + 2023, 2022, + 2021, 2020, 2019, 2018, @@ -4510,11 +4801,12 @@ ] }, { - "slug": "parallel-computing", - "name": "parallel computing", + "slug": "rust", + "name": "rust", "organizationCount": 3, - "projectCount": 60, + "projectCount": 35, "years": [ + 2026, 2025, 2024, 2023, @@ -4522,17 +4814,16 @@ 2021, 2020, 2019, - 2018, - 2017, - 2016 + 2018 ] }, { - "slug": "platform", - "name": "platform", + "slug": "dsp", + "name": "dsp", "organizationCount": 3, - "projectCount": 133, + "projectCount": 49, "years": [ + 2026, 2025, 2024, 2023, @@ -4546,49 +4837,45 @@ ] }, { - "slug": "precision-medicine", - "name": "precision medicine", + "slug": "game-development", + "name": "game development", "organizationCount": 3, - "projectCount": 60, + "projectCount": 39, "years": [ - 2025, + 2026, 2024, 2023, 2022, 2021, 2020, 2019, - 2017, - 2016 + 2018, + 2017 ] }, { - "slug": "privacy-security", - "name": "privacy/security", + "slug": "global-health", + "name": "global health", "organizationCount": 3, - "projectCount": 138, + "projectCount": 41, "years": [ - 2025, - 2024, + 2026, 2023, 2022, 2021, 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "program-analysis", - "name": "program analysis", + "slug": "microservices", + "name": "microservices", "organizationCount": 3, - "projectCount": 75, + "projectCount": 59, "years": [ - 2025, - 2024, - 2023, + 2026, 2022, 2021, 2020, @@ -4599,11 +4886,12 @@ ] }, { - "slug": "radiology", - "name": "radiology", + "slug": "sandbox", + "name": "sandbox", "organizationCount": 3, - "projectCount": 70, + "projectCount": 145, "years": [ + 2026, 2025, 2024, 2023, @@ -4612,19 +4900,17 @@ 2020, 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "real-time-communications", - "name": "real time communications", + "slug": "package-manager", + "name": "package manager", "organizationCount": 3, - "projectCount": 50, + "projectCount": 23, "years": [ - 2025, - 2024, 2022, - 2021, 2020, 2019, 2018, @@ -4633,11 +4919,12 @@ ] }, { - "slug": "realtime-communications", - "name": "realtime communications", + "slug": "video-decode", + "name": "video decode", "organizationCount": 3, - "projectCount": 143, + "projectCount": 107, "years": [ + 2026, 2025, 2024, 2023, @@ -4651,12 +4938,11 @@ ] }, { - "slug": "reinforcement-learning", - "name": "reinforcement learning", + "slug": "graphics-video-audio-virtual-reality", + "name": "graphics / video / audio / virtual reality", "organizationCount": 3, - "projectCount": 90, + "projectCount": 70, "years": [ - 2025, 2024, 2023, 2022, @@ -4669,11 +4955,12 @@ ] }, { - "slug": "rust", - "name": "rust", + "slug": "visual-programming", + "name": "visual programming", "organizationCount": 3, - "projectCount": 35, + "projectCount": 107, "years": [ + 2026, 2025, 2024, 2023, @@ -4681,20 +4968,21 @@ 2021, 2020, 2019, - 2018 + 2018, + 2017, + 2016 ] }, { - "slug": "sandbox", - "name": "sandbox", + "slug": "internet", + "name": "internet", "organizationCount": 3, - "projectCount": 145, + "projectCount": 93, "years": [ 2025, 2024, 2023, 2022, - 2021, 2020, 2019, 2018, @@ -4703,28 +4991,27 @@ ] }, { - "slug": "social-good", - "name": "social good", + "slug": "medical-imaging", + "name": "medical imaging", "organizationCount": 3, - "projectCount": 72, + "projectCount": 31, "years": [ + 2026, 2025, 2024, 2023, - 2022, - 2021, - 2020, - 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "software", - "name": "software", + "slug": "generative-ai", + "name": "generative AI", "organizationCount": 3, - "projectCount": 109, + "projectCount": 111, "years": [ + 2026, 2025, 2024, 2023, @@ -4738,31 +5025,36 @@ ] }, { - "slug": "software-analysis", - "name": "software analysis", + "slug": "real-time-communications", + "name": "real time communications", "organizationCount": 3, - "projectCount": 48, + "projectCount": 50, "years": [ + 2026, 2025, 2024, - 2023, 2022, 2021, 2020, 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "space", - "name": "space", + "slug": "wiki", + "name": "wiki", "organizationCount": 3, - "projectCount": 23, + "projectCount": 264, "years": [ + 2026, + 2025, 2024, + 2023, 2022, 2021, + 2020, 2019, 2018, 2017, @@ -4770,27 +5062,29 @@ ] }, { - "slug": "system-programming", - "name": "system programming", + "slug": "offline", + "name": "offline", "organizationCount": 3, - "projectCount": 34, + "projectCount": 44, "years": [ + 2026, 2025, + 2024, + 2023, 2022, 2021, 2020, 2019, - 2018, - 2017, - 2016 + 2018 ] }, { - "slug": "teaching", - "name": "teaching", + "slug": "configuration-management", + "name": "configuration management", "organizationCount": 3, - "projectCount": 112, + "projectCount": 80, "years": [ + 2026, 2025, 2024, 2023, @@ -4804,11 +5098,26 @@ ] }, { - "slug": "team-chat", - "name": "team chat", + "slug": "edtech", + "name": "edtech", "organizationCount": 3, - "projectCount": 267, + "projectCount": 13, + "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2018 + ] + }, + { + "slug": "vpn", + "name": "vpn", + "organizationCount": 3, + "projectCount": 38, "years": [ + 2026, 2025, 2024, 2023, @@ -4817,29 +5126,31 @@ 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "time-series", - "name": "time-series", + "slug": "space", + "name": "space", "organizationCount": 3, - "projectCount": 13, + "projectCount": 23, "years": [ + 2026, 2024, 2022, 2021, + 2019, + 2018, + 2017, 2016 ] }, { - "slug": "tooling", - "name": "tooling", + "slug": "voip", + "name": "voip", "organizationCount": 3, - "projectCount": 68, + "projectCount": 40, "years": [ - 2025, 2024, 2023, 2022, @@ -4852,11 +5163,12 @@ ] }, { - "slug": "tracing", - "name": "tracing", + "slug": "team-chat", + "name": "team chat", "organizationCount": 3, - "projectCount": 129, + "projectCount": 267, "years": [ + 2026, 2025, 2024, 2023, @@ -4870,11 +5182,12 @@ ] }, { - "slug": "ui-ux", - "name": "ui/ux", + "slug": "realtime-communications", + "name": "realtime communications", "organizationCount": 3, - "projectCount": 173, + "projectCount": 143, "years": [ + 2026, 2025, 2024, 2023, @@ -4888,25 +5201,31 @@ ] }, { - "slug": "user-experience", - "name": "user experience", + "slug": "cheminformatics", + "name": "cheminformatics", "organizationCount": 3, - "projectCount": 19, + "projectCount": 69, "years": [ + 2026, 2025, 2024, + 2023, + 2022, + 2021, 2020, 2019, + 2018, 2017, 2016 ] }, { - "slug": "verification", - "name": "verification", + "slug": "metadata", + "name": "metadata", "organizationCount": 3, - "projectCount": 68, + "projectCount": 164, "years": [ + 2026, 2025, 2024, 2023, @@ -4920,16 +5239,13 @@ ] }, { - "slug": "version-control", - "name": "version control", + "slug": "devtools", + "name": "devtools", "organizationCount": 3, - "projectCount": 27, + "projectCount": 82, "years": [ + 2026, 2025, - 2024, - 2023, - 2022, - 2021, 2020, 2019, 2018, @@ -4938,16 +5254,26 @@ ] }, { - "slug": "video-decode", - "name": "video decode", + "slug": "mass-spectrometry", + "name": "mass spectrometry", "organizationCount": 3, - "projectCount": 107, + "projectCount": 7, "years": [ + 2026, 2025, - 2024, 2023, 2022, - 2021, + 2020 + ] + }, + { + "slug": "network-security", + "name": "network security", + "organizationCount": 3, + "projectCount": 14, + "years": [ + 2024, + 2023, 2020, 2019, 2018, @@ -4956,12 +5282,11 @@ ] }, { - "slug": "visual-programming", - "name": "visual programming", + "slug": "documentation", + "name": "documentation", "organizationCount": 3, - "projectCount": 107, + "projectCount": 60, "years": [ - 2025, 2024, 2023, 2022, @@ -4974,11 +5299,13 @@ ] }, { - "slug": "voip", - "name": "voip", + "slug": "program-analysis", + "name": "program analysis", "organizationCount": 3, - "projectCount": 40, + "projectCount": 75, "years": [ + 2026, + 2025, 2024, 2023, 2022, @@ -4991,11 +5318,12 @@ ] }, { - "slug": "vpn", - "name": "vpn", + "slug": "gpu", + "name": "gpu", "organizationCount": 3, - "projectCount": 38, + "projectCount": 113, "years": [ + 2026, 2025, 2024, 2023, @@ -5004,15 +5332,22 @@ 2020, 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "webapps", - "name": "webapps", + "slug": "mobile-applications", + "name": "mobile applications", "organizationCount": 3, - "projectCount": 46, + "projectCount": 295, "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, 2020, 2019, 2018, @@ -5021,11 +5356,12 @@ ] }, { - "slug": "wiki", - "name": "wiki", + "slug": "game", + "name": "game", "organizationCount": 3, - "projectCount": 264, + "projectCount": 80, "years": [ + 2026, 2025, 2024, 2023, @@ -5039,29 +5375,27 @@ ] }, { - "slug": "wireless", - "name": "wireless", + "slug": "user-experience", + "name": "user experience", "organizationCount": 3, - "projectCount": 237, + "projectCount": 19, "years": [ + 2026, 2025, 2024, - 2023, - 2022, - 2021, 2020, 2019, - 2018, 2017, 2016 ] }, { - "slug": "workflows", - "name": "workflows", + "slug": "formal-methods", + "name": "formal methods", "organizationCount": 3, - "projectCount": 86, + "projectCount": 61, "years": [ + 2026, 2025, 2024, 2023, @@ -5075,76 +5409,88 @@ ] }, { - "slug": "academic-projects", - "name": "academic projects", + "slug": "slam", + "name": "slam", "organizationCount": 2, - "projectCount": 16, + "projectCount": 10, "years": [ + 2018, 2017, 2016 ] }, { - "slug": "aerodynamics", - "name": "aerodynamics", + "slug": "point-clouds", + "name": "point clouds", "organizationCount": 2, - "projectCount": 20, + "projectCount": 3, + "years": [ + 2022, + 2018 + ] + }, + { + "slug": "earth-observation", + "name": "earth observation", + "organizationCount": 2, + "projectCount": 29, "years": [ + 2026, 2025, 2024, + 2023, 2022, 2021, 2020, 2019, + 2018, 2017, 2016 ] }, { - "slug": "algorithm-prototyping-visualization", - "name": "algorithm prototyping/visualization", + "slug": "license-scan", + "name": "license-scan", "organizationCount": 2, - "projectCount": 11, - "years": [ - 2017, - 2016 - ] - }, - { - "slug": "api-management", - "name": "api management", - "organizationCount": 2, - "projectCount": 39, + "projectCount": 74, "years": [ + 2026, + 2025, 2024, 2023, + 2022, 2021, 2020, - 2017, - 2016 + 2019, + 2018, + 2017 ] }, { - "slug": "architecture", - "name": "architecture", + "slug": "oss-licensing", + "name": "oss licensing", "organizationCount": 2, - "projectCount": 28, + "projectCount": 74, "years": [ + 2026, 2025, 2024, 2023, 2022, 2021, + 2020, 2019, - 2018 + 2018, + 2017 ] }, { - "slug": "art", - "name": "art", + "slug": "dependencies", + "name": "dependencies", "organizationCount": 2, - "projectCount": 183, + "projectCount": 61, "years": [ + 2026, 2025, 2024, 2023, @@ -5153,44 +5499,34 @@ 2020, 2019, 2018, - 2017, - 2016 - ] - }, - { - "slug": "audio-analysis", - "name": "audio analysis", - "organizationCount": 2, - "projectCount": 13, - "years": [ - 2022, - 2021, - 2020 + 2017 ] }, { - "slug": "audio-processing", - "name": "audio processing", + "slug": "scanning", + "name": "scanning", "organizationCount": 2, - "projectCount": 91, + "projectCount": 35, "years": [ + 2026, + 2025, 2024, 2023, 2022, 2021, 2020, 2019, - 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "big-data-visualization", - "name": "big data visualization", + "slug": "vulnerabilities", + "name": "vulnerabilities", "organizationCount": 2, - "projectCount": 97, + "projectCount": 61, "years": [ + 2026, + 2025, 2024, 2023, 2022, @@ -5198,61 +5534,61 @@ 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "biochemistry", - "name": "biochemistry", + "slug": "sbom", + "name": "SBOM", "organizationCount": 2, - "projectCount": 19, + "projectCount": 34, "years": [ + 2026, 2025, 2024, 2023, 2022, 2021, - 2020 + 2020, + 2019, + 2017 ] }, { - "slug": "bios", - "name": "BIOS", + "slug": "filmmaking", + "name": "filmmaking", "organizationCount": 2, - "projectCount": 19, + "projectCount": 13, "years": [ 2023, 2022, 2021, 2020, - 2019, - 2016 + 2019 ] }, { - "slug": "blockchain", - "name": "blockchain", + "slug": "legal", + "name": "legal", "organizationCount": 2, - "projectCount": 58, + "projectCount": 27, "years": [ + 2026, 2025, 2024, 2023, - 2022, 2021, 2020, - 2019, - 2017, - 2016 + 2019 ] }, { - "slug": "books", - "name": "books", + "slug": "data-modeling", + "name": "data modeling", "organizationCount": 2, - "projectCount": 86, + "projectCount": 132, "years": [ + 2026, 2025, 2024, 2023, @@ -5266,15 +5602,11 @@ ] }, { - "slug": "bot", - "name": "bot", + "slug": "space-applications", + "name": "space applications", "organizationCount": 2, - "projectCount": 105, + "projectCount": 37, "years": [ - 2025, - 2024, - 2023, - 2022, 2021, 2020, 2019, @@ -5283,23 +5615,25 @@ ] }, { - "slug": "braille", - "name": "braille", + "slug": "cubesats", + "name": "cubesats", "organizationCount": 2, - "projectCount": 12, + "projectCount": 37, "years": [ - 2025, - 2024, + 2021, 2020, - 2019 + 2019, + 2018, + 2017 ] }, { - "slug": "c-tools", - "name": "c++ tools", + "slug": "simulations", + "name": "simulations", "organizationCount": 2, - "projectCount": 111, + "projectCount": 62, "years": [ + 2026, 2025, 2024, 2023, @@ -5312,49 +5646,51 @@ ] }, { - "slug": "cad", - "name": "cad", + "slug": "software-testing", + "name": "software testing", "organizationCount": 2, - "projectCount": 81, + "projectCount": 17, "years": [ + 2026, 2025, 2024, 2023, 2022, 2021, 2020, - 2019, - 2018, - 2017, 2016 ] }, { - "slug": "cancer", - "name": "cancer", + "slug": "secure-development", + "name": "secure development", "organizationCount": 2, - "projectCount": 41, + "projectCount": 112, "years": [ + 2026, 2025, 2024, 2023, 2022, + 2021, + 2020, 2019, 2018, - 2017, 2016 ] }, { - "slug": "cancer-research", - "name": "cancer research", + "slug": "open-education", + "name": "open education", "organizationCount": 2, - "projectCount": 41, + "projectCount": 86, "years": [ + 2026, 2025, 2024, 2023, 2022, + 2021, 2019, 2018, 2017, @@ -5362,14 +5698,11 @@ ] }, { - "slug": "chatops", - "name": "chatops", + "slug": "front-end", + "name": "front-end", "organizationCount": 2, - "projectCount": 140, + "projectCount": 40, "years": [ - 2025, - 2024, - 2023, 2022, 2021, 2020, @@ -5379,13 +5712,12 @@ ] }, { - "slug": "chemistry", - "name": "chemistry", + "slug": "web-servers", + "name": "web servers", "organizationCount": 2, - "projectCount": 65, + "projectCount": 56, "years": [ - 2025, - 2024, + 2026, 2023, 2022, 2021, @@ -5397,55 +5729,44 @@ ] }, { - "slug": "ci-cd", - "name": "CI/CD", + "slug": "mobile-programming", + "name": "mobile programming", "organizationCount": 2, - "projectCount": 80, + "projectCount": 88, "years": [ + 2026, 2025, 2024, + 2023, 2022, 2021, 2020, 2019, 2018, + 2017, 2016 ] }, { - "slug": "civil-society", - "name": "civil society", + "slug": "web-programming", + "name": "web programming", "organizationCount": 2, - "projectCount": 24, + "projectCount": 15, "years": [ - 2024, - 2023, - 2021, + 2026, + 2025, 2020, 2019, - 2018, 2016 ] }, { - "slug": "cli", - "name": "cli", - "organizationCount": 2, - "projectCount": 34, - "years": [ - 2025, - 2023, - 2021, - 2019, - 2017 - ] - }, - { - "slug": "cloud-infrastructure", - "name": "cloud infrastructure", + "slug": "logic", + "name": "logic", "organizationCount": 2, - "projectCount": 81, + "projectCount": 123, "years": [ + 2026, 2025, 2024, 2023, @@ -5459,12 +5780,14 @@ ] }, { - "slug": "code-generation", - "name": "code generation", + "slug": "other", + "name": "other", "organizationCount": 2, - "projectCount": 42, + "projectCount": 248, "years": [ + 2026, 2025, + 2024, 2023, 2022, 2021, @@ -5476,44 +5799,47 @@ ] }, { - "slug": "coding-standards", - "name": "coding standards", + "slug": "human-language-technologies", + "name": "human language technologies", "organizationCount": 2, - "projectCount": 24, + "projectCount": 74, "years": [ - 2025, 2024, 2023, - 2022, 2021, 2020, + 2019, + 2018, 2017, 2016 ] }, { - "slug": "command-line", - "name": "command line", + "slug": "photography", + "name": "photography", "organizationCount": 2, - "projectCount": 66, + "projectCount": 28, "years": [ + 2026, + 2025, 2024, 2023, + 2022, + 2021, 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "communications-engineering", - "name": "communications engineering", + "slug": "code-generation", + "name": "code generation", "organizationCount": 2, - "projectCount": 46, + "projectCount": 42, "years": [ + 2026, 2025, - 2024, 2023, 2022, 2021, @@ -5525,28 +5851,23 @@ ] }, { - "slug": "compliance", - "name": "compliance", + "slug": "genai", + "name": "GenAI", "organizationCount": 2, - "projectCount": 71, + "projectCount": 3, "years": [ + 2026, 2025, - 2024, - 2023, - 2022, - 2021, - 2020, - 2019, - 2018, - 2017 + 2024 ] }, { - "slug": "compliance-automation", - "name": "compliance automation", + "slug": "vfx", + "name": "vfx", "organizationCount": 2, - "projectCount": 44, + "projectCount": 75, "years": [ + 2026, 2025, 2024, 2023, @@ -5554,20 +5875,17 @@ 2021, 2020, 2019, - 2018 + 2018, + 2017, + 2016 ] }, { - "slug": "computation-geometry", - "name": "computation geometry", + "slug": "high-performance", + "name": "high performance", "organizationCount": 2, - "projectCount": 88, + "projectCount": 12, "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, 2020, 2019, 2018, @@ -5575,57 +5893,51 @@ ] }, { - "slug": "computational-chemistry", - "name": "computational chemistry", + "slug": "interactivity", + "name": "interactivity", "organizationCount": 2, - "projectCount": 67, + "projectCount": 3, "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, 2020, - 2019, - 2018, - 2017, 2016 ] }, { - "slug": "computational-linguistics", - "name": "computational linguistics", + "slug": "drones", + "name": "drones", "organizationCount": 2, - "projectCount": 40, + "projectCount": 41, "years": [ + 2026, + 2025, + 2024, + 2023, 2022, 2021, 2020, 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "computer-security", - "name": "computer security", + "slug": "audio-analysis", + "name": "audio analysis", "organizationCount": 2, - "projectCount": 10, + "projectCount": 13, "years": [ - 2025, - 2024, - 2023, 2022, - 2021 + 2021, + 2020 ] }, { - "slug": "container", - "name": "container", + "slug": "audio-processing", + "name": "audio processing", "organizationCount": 2, - "projectCount": 132, + "projectCount": 91, "years": [ - 2025, 2024, 2023, 2022, @@ -5638,10 +5950,10 @@ ] }, { - "slug": "crowdsourcing", - "name": "crowdsourcing", + "slug": "ros", + "name": "ros", "organizationCount": 2, - "projectCount": 55, + "projectCount": 48, "years": [ 2025, 2024, @@ -5656,50 +5968,58 @@ ] }, { - "slug": "cryptography", - "name": "cryptography", + "slug": "distributed-databases", + "name": "distributed databases", "organizationCount": 2, - "projectCount": 8, + "projectCount": 35, "years": [ + 2026, 2025, 2024, 2023, - 2022 + 2022, + 2021, + 2018, + 2017, + 2016 ] }, { - "slug": "cubesats", - "name": "cubesats", + "slug": "internet-freedom", + "name": "internet freedom", "organizationCount": 2, - "projectCount": 37, + "projectCount": 95, "years": [ - 2021, 2020, 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "cultural-heritage", - "name": "cultural heritage", + "slug": "coding-standards", + "name": "coding standards", "organizationCount": 2, - "projectCount": 33, + "projectCount": 24, "years": [ + 2026, + 2025, + 2024, + 2023, 2022, 2021, 2020, - 2019, - 2018 + 2017, + 2016 ] }, { - "slug": "cybersecurity", - "name": "cybersecurity", + "slug": "big-data-visualization", + "name": "big data visualization", "organizationCount": 2, - "projectCount": 120, + "projectCount": 97, "years": [ - 2025, 2024, 2023, 2022, @@ -5712,25 +6032,31 @@ ] }, { - "slug": "data-and-databases", - "name": "data and databases", + "slug": "modeling", + "name": "modeling", "organizationCount": 2, - "projectCount": 30, + "projectCount": 341, "years": [ + 2026, + 2025, + 2024, 2023, 2022, 2021, 2020, + 2019, + 2018, 2017, 2016 ] }, { - "slug": "data-extraction", - "name": "data extraction", + "slug": "c-tools", + "name": "c++ tools", "organizationCount": 2, - "projectCount": 73, + "projectCount": 111, "years": [ + 2026, 2025, 2024, 2023, @@ -5739,16 +6065,16 @@ 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "data-modeling", - "name": "data modeling", + "slug": "programming-libraries", + "name": "programming libraries", "organizationCount": 2, - "projectCount": 132, + "projectCount": 67, "years": [ + 2026, 2025, 2024, 2023, @@ -5757,30 +6083,35 @@ 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "data-processing-pipeline", - "name": "data processing pipeline", + "slug": "cad", + "name": "cad", "organizationCount": 2, - "projectCount": 42, + "projectCount": 81, "years": [ + 2026, + 2025, + 2024, + 2023, 2022, 2021, 2020, 2019, 2018, + 2017, 2016 ] }, { - "slug": "data-security", - "name": "data security", + "slug": "geo", + "name": "geo", "organizationCount": 2, - "projectCount": 72, + "projectCount": 76, "years": [ + 2026, 2025, 2024, 2023, @@ -5788,22 +6119,21 @@ 2021, 2020, 2019, - 2018, 2017, 2016 ] }, { - "slug": "data-sharing", - "name": "data sharing", + "slug": "cancer", + "name": "cancer", "organizationCount": 2, - "projectCount": 50, + "projectCount": 41, "years": [ + 2026, + 2025, 2024, 2023, 2022, - 2021, - 2020, 2019, 2018, 2017, @@ -5811,17 +6141,16 @@ ] }, { - "slug": "debug", - "name": "debug", + "slug": "cancer-research", + "name": "cancer research", "organizationCount": 2, - "projectCount": 70, + "projectCount": 41, "years": [ + 2026, 2025, 2024, 2023, 2022, - 2021, - 2020, 2019, 2018, 2017, @@ -5829,11 +6158,15 @@ ] }, { - "slug": "decentralization", - "name": "decentralization", + "slug": "subtitles", + "name": "subtitles", "organizationCount": 2, - "projectCount": 33, + "projectCount": 129, "years": [ + 2026, + 2025, + 2024, + 2023, 2022, 2021, 2020, @@ -5844,11 +6177,12 @@ ] }, { - "slug": "decentralized", - "name": "decentralized", + "slug": "tv", + "name": "tv", "organizationCount": 2, - "projectCount": 103, + "projectCount": 92, "years": [ + 2026, 2025, 2024, 2023, @@ -5862,53 +6196,73 @@ ] }, { - "slug": "declarative-language", - "name": "declarative language", + "slug": "reproducibility", + "name": "reproducibility", "organizationCount": 2, - "projectCount": 5, + "projectCount": 67, "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, 2019, 2018 ] }, { - "slug": "decompilation", - "name": "decompilation", + "slug": "storage-systems", + "name": "storage systems", "organizationCount": 2, - "projectCount": 22, + "projectCount": 67, "years": [ + 2026, 2025, 2024, 2023, - 2020, - 2018, - 2017, - 2016 + 2022, + 2021, + 2019, + 2018 ] }, { - "slug": "dependencies", - "name": "dependencies", + "slug": "architecture", + "name": "architecture", "organizationCount": 2, - "projectCount": 61, + "projectCount": 28, "years": [ + 2026, 2025, 2024, 2023, + 2022, + 2021, + 2019, + 2018 + ] + }, + { + "slug": "systems", + "name": "systems", + "organizationCount": 2, + "projectCount": 23, + "years": [ 2022, 2021, 2020, 2019, - 2018, - 2017 + 2018 ] }, { - "slug": "desktop-application", - "name": "desktop application", + "slug": "performance-optimization", + "name": "performance optimization", "organizationCount": 2, - "projectCount": 232, + "projectCount": 252, "years": [ + 2026, 2025, 2024, 2023, @@ -5922,11 +6276,12 @@ ] }, { - "slug": "desktop-applications", - "name": "desktop applications", + "slug": "numerical-and-data-analysis-software", + "name": "numerical and data analysis software", "organizationCount": 2, - "projectCount": 282, + "projectCount": 33, "years": [ + 2026, 2025, 2024, 2023, @@ -5940,11 +6295,13 @@ ] }, { - "slug": "desktop-integration", - "name": "desktop integration", + "slug": "computation-geometry", + "name": "computation geometry", "organizationCount": 2, - "projectCount": 30, + "projectCount": 88, "years": [ + 2026, + 2025, 2024, 2023, 2022, @@ -5952,104 +6309,108 @@ 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "devsecops", - "name": "DevSecOps", + "slug": "programmer-productivity", + "name": "programmer productivity", "organizationCount": 2, - "projectCount": 117, + "projectCount": 36, "years": [ 2025, 2024, 2023, - 2022, 2021, 2020, 2019, 2018, - 2016 + 2017 ] }, { - "slug": "distributed-databases", - "name": "distributed databases", + "slug": "soc", + "name": "soc", "organizationCount": 2, - "projectCount": 35, + "projectCount": 22, "years": [ - 2025, 2024, 2023, 2022, - 2021, - 2018, + 2020, 2017, 2016 ] }, { - "slug": "distribution", - "name": "distribution", + "slug": "asic-design", + "name": "ASIC design", "organizationCount": 2, - "projectCount": 38, + "projectCount": 12, "years": [ - 2025, - 2022, + 2026, + 2024, + 2023, + 2022 + ] + }, + { + "slug": "civil-society", + "name": "civil society", + "organizationCount": 2, + "projectCount": 24, + "years": [ + 2024, + 2023, + 2021, 2020, 2019, 2018, - 2017, 2016 ] }, { - "slug": "drones", - "name": "drones", + "slug": "nonprofits", + "name": "nonprofits", "organizationCount": 2, - "projectCount": 41, + "projectCount": 36, "years": [ - 2025, 2024, 2023, - 2022, 2021, 2020, 2019, 2018, - 2017, 2016 ] }, { - "slug": "dsl", - "name": "dsl", + "slug": "computational-linguistics", + "name": "computational linguistics", "organizationCount": 2, - "projectCount": 249, + "projectCount": 40, "years": [ - 2025, - 2024, - 2023, + 2026, 2022, 2021, 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "dxp", - "name": "DXP", + "slug": "container", + "name": "container", "organizationCount": 2, - "projectCount": 41, + "projectCount": 132, "years": [ + 2026, 2025, 2024, 2023, 2022, + 2021, 2020, 2019, 2018, @@ -6058,11 +6419,12 @@ ] }, { - "slug": "earth-observation", - "name": "earth observation", + "slug": "service-mesh", + "name": "service mesh", "organizationCount": 2, - "projectCount": 29, + "projectCount": 117, "years": [ + 2026, 2025, 2024, 2023, @@ -6071,16 +6433,16 @@ 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "eclipse", - "name": "eclipse", + "slug": "chatops", + "name": "chatops", "organizationCount": 2, - "projectCount": 120, + "projectCount": 140, "years": [ + 2026, 2025, 2024, 2023, @@ -6089,20 +6451,15 @@ 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "educational-technology", - "name": "educational technology", + "slug": "networks", + "name": "networks", "organizationCount": 2, - "projectCount": 122, + "projectCount": 21, "years": [ - 2025, - 2024, - 2023, - 2022, 2021, 2020, 2019, @@ -6112,11 +6469,12 @@ ] }, { - "slug": "ehealth", - "name": "ehealth", + "slug": "systems-biology", + "name": "systems biology", "organizationCount": 2, - "projectCount": 107, + "projectCount": 137, "years": [ + 2026, 2025, 2024, 2023, @@ -6130,11 +6488,12 @@ ] }, { - "slug": "electronic-design-tools", - "name": "electronic design tools", + "slug": "network-biology", + "name": "network biology", "organizationCount": 2, - "projectCount": 65, + "projectCount": 137, "years": [ + 2026, 2025, 2024, 2023, @@ -6148,11 +6507,12 @@ ] }, { - "slug": "electronic-medical-records", - "name": "electronic medical records", + "slug": "network-simulation", + "name": "network simulation", "organizationCount": 2, - "projectCount": 103, + "projectCount": 52, "years": [ + 2026, 2025, 2024, 2023, @@ -6166,11 +6526,12 @@ ] }, { - "slug": "embeddded", - "name": "embeddded", + "slug": "ux", + "name": "ux", "organizationCount": 2, - "projectCount": 101, + "projectCount": 79, "years": [ + 2026, 2025, 2024, 2023, @@ -6184,27 +6545,26 @@ ] }, { - "slug": "embedded-hardware", - "name": "embedded hardware", + "slug": "bios", + "name": "BIOS", "organizationCount": 2, - "projectCount": 16, + "projectCount": 19, "years": [ + 2023, + 2022, + 2021, 2020, 2019, - 2018, - 2017, 2016 ] }, { - "slug": "enterprise", - "name": "enterprise", + "slug": "information-retrieval", + "name": "information retrieval", "organizationCount": 2, - "projectCount": 138, + "projectCount": 45, "years": [ - 2025, - 2024, - 2023, + 2026, 2022, 2021, 2020, @@ -6215,46 +6575,46 @@ ] }, { - "slug": "enterprise-application", - "name": "enterprise application", + "slug": "data-processing-pipeline", + "name": "data processing pipeline", "organizationCount": 2, - "projectCount": 54, + "projectCount": 42, "years": [ + 2026, 2022, 2021, 2020, 2019, 2018, - 2017, 2016 ] }, { - "slug": "enterprise-applications", - "name": "enterprise applications", + "slug": "cultural-heritage", + "name": "cultural heritage", "organizationCount": 2, - "projectCount": 78, + "projectCount": 33, "years": [ - 2025, - 2024, - 2023, + 2026, 2022, 2021, 2020, 2019, - 2018, - 2017, - 2016 + 2018 ] }, { - "slug": "event-solutions", - "name": "event solutions", + "slug": "dsl", + "name": "dsl", "organizationCount": 2, - "projectCount": 142, + "projectCount": 249, "years": [ 2025, 2024, + 2023, + 2022, + 2021, + 2020, 2019, 2018, 2017, @@ -6262,23 +6622,32 @@ ] }, { - "slug": "faas", - "name": "faas", + "slug": "knowledge-graph", + "name": "knowledge graph", "organizationCount": 2, - "projectCount": 25, + "projectCount": 69, "years": [ + 2026, + 2025, 2024, 2023, 2022, - 2021 + 2021, + 2020, + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "fast-algorithms", - "name": "fast algorithms", + "slug": "data-extraction", + "name": "data extraction", "organizationCount": 2, - "projectCount": 70, + "projectCount": 73, "years": [ + 2026, + 2025, 2024, 2023, 2022, @@ -6291,22 +6660,12 @@ ] }, { - "slug": "feature-detection", - "name": "feature detection", - "organizationCount": 2, - "projectCount": 5, - "years": [ - 2023, - 2022, - 2020 - ] - }, - { - "slug": "filesystems", - "name": "filesystems", + "slug": "linked-data", + "name": "linked data", "organizationCount": 2, - "projectCount": 30, + "projectCount": 69, "years": [ + 2026, 2025, 2024, 2023, @@ -6315,28 +6674,36 @@ 2020, 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "filmmaking", - "name": "filmmaking", + "slug": "wikipedia", + "name": "wikipedia", "organizationCount": 2, - "projectCount": 13, + "projectCount": 146, "years": [ + 2026, + 2025, + 2024, 2023, 2022, 2021, 2020, - 2019 + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "fonts", - "name": "fonts", + "slug": "chemistry", + "name": "chemistry", "organizationCount": 2, - "projectCount": 25, + "projectCount": 65, "years": [ + 2026, 2025, 2024, 2023, @@ -6345,15 +6712,17 @@ 2020, 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "frameworks", - "name": "frameworks", + "slug": "materials-science", + "name": "materials science", "organizationCount": 2, - "projectCount": 94, + "projectCount": 65, "years": [ + 2026, 2025, 2024, 2023, @@ -6367,11 +6736,12 @@ ] }, { - "slug": "free-and-open-source-software", - "name": "free and open source software", + "slug": "data-security", + "name": "data security", "organizationCount": 2, - "projectCount": 44, + "projectCount": 72, "years": [ + 2026, 2025, 2024, 2023, @@ -6385,45 +6755,46 @@ ] }, { - "slug": "free-software", - "name": "free software", + "slug": "government", + "name": "government", "organizationCount": 2, - "projectCount": 134, + "projectCount": 6, "years": [ - 2024, - 2023, - 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "front-end", - "name": "front-end", + "slug": "object-oriented", + "name": "object-oriented", "organizationCount": 2, - "projectCount": 40, + "projectCount": 75, "years": [ + 2026, + 2025, + 2024, + 2023, 2022, 2021, 2020, 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "frontend", - "name": "frontend", + "slug": "php", + "name": "php", "organizationCount": 2, - "projectCount": 216, + "projectCount": 40, "years": [ + 2026, 2025, 2024, 2023, 2022, - 2021, 2020, 2019, 2018, @@ -6432,16 +6803,16 @@ ] }, { - "slug": "full-stack-web-and-mobile", - "name": "full stack web and mobile", + "slug": "dxp", + "name": "DXP", "organizationCount": 2, - "projectCount": 138, + "projectCount": 41, "years": [ + 2026, 2025, 2024, 2023, 2022, - 2021, 2020, 2019, 2018, @@ -6450,22 +6821,23 @@ ] }, { - "slug": "functional-testing", - "name": "Functional Testing", + "slug": "earth-science", + "name": "earth science", "organizationCount": 2, - "projectCount": 13, + "projectCount": 4, "years": [ - 2025, - 2024, - 2023 + 2026, + 2019, + 2018 ] }, { - "slug": "geo", - "name": "geo", + "slug": "eclipse", + "name": "eclipse", "organizationCount": 2, - "projectCount": 76, + "projectCount": 120, "years": [ + 2026, 2025, 2024, 2023, @@ -6473,16 +6845,18 @@ 2021, 2020, 2019, + 2018, 2017, 2016 ] }, { - "slug": "geolocation", - "name": "geolocation", + "slug": "frameworks", + "name": "frameworks", "organizationCount": 2, - "projectCount": 129, + "projectCount": 94, "years": [ + 2026, 2025, 2024, 2023, @@ -6496,37 +6870,16 @@ ] }, { - "slug": "google-cloud", - "name": "google cloud", - "organizationCount": 2, - "projectCount": 4, - "years": [ - 2023, - 2021 - ] - }, - { - "slug": "government", - "name": "government", - "organizationCount": 2, - "projectCount": 6, - "years": [ - 2019, - 2018, - 2017 - ] - }, - { - "slug": "graphs", - "name": "graphs", + "slug": "industry", + "name": "industry", "organizationCount": 2, - "projectCount": 142, + "projectCount": 69, "years": [ + 2026, 2025, 2024, 2023, 2022, - 2021, 2020, 2019, 2018, @@ -6535,74 +6888,73 @@ ] }, { - "slug": "group-chat", - "name": "group chat", + "slug": "polyglot", + "name": "polyglot", "organizationCount": 2, - "projectCount": 238, + "projectCount": 25, "years": [ - 2025, + 2026, 2024, 2023, 2022, 2021, - 2020, - 2019, - 2018, 2017, 2016 ] }, { - "slug": "hfoss", - "name": "hfoss", + "slug": "linter", + "name": "linter", "organizationCount": 2, - "projectCount": 34, + "projectCount": 5, "years": [ - 2023, - 2022, 2021, - 2020, - 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "high-performance", - "name": "high performance", + "slug": "parser", + "name": "parser", "organizationCount": 2, "projectCount": 12, "years": [ + 2026, + 2025, + 2024, + 2021, 2020, 2019, - 2018, - 2017 + 2018 ] }, { - "slug": "high-performance-data-processing", - "name": "high performance data processing", + "slug": "rtos", + "name": "rtos", "organizationCount": 2, - "projectCount": 15, + "projectCount": 48, "years": [ + 2026, + 2025, + 2024, + 2023, 2022, 2021, 2020, 2019, 2018, + 2017, 2016 ] }, { - "slug": "http", - "name": "http", + "slug": "realtime-messaging", + "name": "realtime messaging", "organizationCount": 2, - "projectCount": 67, + "projectCount": 46, "years": [ - 2024, - 2023, - 2021, + 2025, + 2022, 2020, 2019, 2018, @@ -6611,13 +6963,16 @@ ] }, { - "slug": "human-language-technologies", - "name": "human language technologies", + "slug": "linux-distribution", + "name": "linux distribution", "organizationCount": 2, - "projectCount": 74, + "projectCount": 79, "years": [ + 2026, + 2025, 2024, 2023, + 2022, 2021, 2020, 2019, @@ -6627,11 +6982,14 @@ ] }, { - "slug": "imaging", - "name": "imaging", + "slug": "server", + "name": "server", "organizationCount": 2, - "projectCount": 21, + "projectCount": 65, "years": [ + 2026, + 2025, + 2023, 2022, 2021, 2020, @@ -6642,39 +7000,46 @@ ] }, { - "slug": "in-memory-data-grid", - "name": "in memory data grid", + "slug": "distribution", + "name": "distribution", "organizationCount": 2, - "projectCount": 5, + "projectCount": 38, "years": [ + 2025, 2022, - 2021, - 2020 + 2020, + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "industry", - "name": "industry", + "slug": "decompilation", + "name": "decompilation", "organizationCount": 2, - "projectCount": 69, + "projectCount": 22, "years": [ + 2026, 2025, 2024, 2023, - 2022, 2020, - 2019, 2018, 2017, 2016 ] }, { - "slug": "information-retrieval", - "name": "information retrieval", + "slug": "malware-analysis", + "name": "malware-analysis", "organizationCount": 2, - "projectCount": 45, + "projectCount": 108, "years": [ + 2026, + 2025, + 2024, + 2023, 2022, 2021, 2020, @@ -6685,13 +7050,14 @@ ] }, { - "slug": "input-methods", - "name": "input methods", + "slug": "json", + "name": "json", "organizationCount": 2, - "projectCount": 92, + "projectCount": 169, "years": [ + 2026, + 2025, 2024, - 2023, 2022, 2021, 2020, @@ -6702,49 +7068,69 @@ ] }, { - "slug": "interactivity", - "name": "interactivity", + "slug": "event-solutions", + "name": "event solutions", "organizationCount": 2, - "projectCount": 3, + "projectCount": 142, "years": [ - 2020, + 2026, + 2025, + 2024, + 2019, + 2018, + 2017, 2016 ] }, { - "slug": "internet-freedom", - "name": "internet freedom", + "slug": "compliance", + "name": "compliance", "organizationCount": 2, - "projectCount": 95, + "projectCount": 71, "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "interoperability", - "name": "interoperability", + "slug": "licensing", + "name": "licensing", "organizationCount": 2, - "projectCount": 32, + "projectCount": 71, "years": [ + 2026, + 2025, + 2024, + 2023, 2022, 2021, 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "ipv6", - "name": "ipv6", + "slug": "spdx", + "name": "spdx", "organizationCount": 2, - "projectCount": 12, + "projectCount": 179, "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, 2019, 2018, 2017, @@ -6752,68 +7138,57 @@ ] }, { - "slug": "jax", - "name": "Jax", + "slug": "compliance-automation", + "name": "compliance automation", "organizationCount": 2, - "projectCount": 49, - "years": [ - 2025 - ] - }, - { - "slug": "json", - "name": "json", - "organizationCount": 2, - "projectCount": 169, + "projectCount": 44, "years": [ + 2026, 2025, 2024, + 2023, 2022, 2021, 2020, 2019, - 2018, - 2017, - 2016 + 2018 ] }, { - "slug": "knowledge-graph", - "name": "knowledge graph", + "slug": "natural-language-understanding", + "name": "natural language understanding", "organizationCount": 2, - "projectCount": 69, + "projectCount": 9, "years": [ - 2025, - 2024, - 2023, - 2022, 2021, 2020, - 2019, - 2018, - 2017, - 2016 + 2019 ] }, { - "slug": "languages", - "name": "languages", + "slug": "multimodal-communication", + "name": "multimodal communication", "organizationCount": 2, - "projectCount": 28, + "projectCount": 93, "years": [ - 2025, 2024, 2023, 2022, - 2021 + 2021, + 2020, + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "learning", - "name": "learning", + "slug": "debug", + "name": "debug", "organizationCount": 2, - "projectCount": 105, + "projectCount": 70, "years": [ + 2026, 2025, 2024, 2023, @@ -6827,11 +7202,18 @@ ] }, { - "slug": "learning-management", - "name": "learning management", + "slug": "web-community", + "name": "web community", "organizationCount": 2, - "projectCount": 27, + "projectCount": 70, "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, 2019, 2018, 2017, @@ -6839,25 +7221,31 @@ ] }, { - "slug": "legal", - "name": "legal", + "slug": "electronic-design-tools", + "name": "electronic design tools", "organizationCount": 2, - "projectCount": 27, + "projectCount": 65, "years": [ + 2026, 2025, 2024, 2023, + 2022, 2021, 2020, - 2019 + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "license-scan", - "name": "license-scan", + "slug": "fonts", + "name": "fonts", "organizationCount": 2, - "projectCount": 74, + "projectCount": 25, "years": [ + 2026, 2025, 2024, 2023, @@ -6870,11 +7258,12 @@ ] }, { - "slug": "licensing", - "name": "licensing", + "slug": "wifi", + "name": "wifi", "organizationCount": 2, - "projectCount": 71, + "projectCount": 100, "years": [ + 2026, 2025, 2024, 2023, @@ -6883,15 +7272,17 @@ 2020, 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "linked-data", - "name": "linked data", + "slug": "mesh", + "name": "mesh", "organizationCount": 2, - "projectCount": 69, + "projectCount": 100, "years": [ + 2026, 2025, 2024, 2023, @@ -6905,22 +7296,12 @@ ] }, { - "slug": "linter", - "name": "linter", - "organizationCount": 2, - "projectCount": 5, - "years": [ - 2021, - 2018, - 2017 - ] - }, - { - "slug": "linux-distribution", - "name": "linux distribution", + "slug": "wireless-communications", + "name": "wireless communications", "organizationCount": 2, - "projectCount": 79, + "projectCount": 92, "years": [ + 2026, 2025, 2024, 2023, @@ -6934,11 +7315,18 @@ ] }, { - "slug": "live-streaming", - "name": "live streaming", + "slug": "wireless-networks", + "name": "wireless networks", "organizationCount": 2, - "projectCount": 11, + "projectCount": 100, "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, 2019, 2018, 2017, @@ -6946,10 +7334,10 @@ ] }, { - "slug": "logic", - "name": "logic", + "slug": "decentralized", + "name": "decentralized", "organizationCount": 2, - "projectCount": 123, + "projectCount": 103, "years": [ 2025, 2024, @@ -6964,12 +7352,11 @@ ] }, { - "slug": "lowlevel", - "name": "lowlevel", + "slug": "music-engraving", + "name": "music engraving", "organizationCount": 2, - "projectCount": 47, + "projectCount": 26, "years": [ - 2025, 2024, 2023, 2022, @@ -6982,12 +7369,16 @@ ] }, { - "slug": "macos", - "name": "macos", + "slug": "systems-programming", + "name": "systems programming", "organizationCount": 2, - "projectCount": 18, + "projectCount": 44, "years": [ + 2026, + 2025, + 2023, 2022, + 2021, 2020, 2019, 2018, @@ -6996,53 +7387,42 @@ ] }, { - "slug": "mail", - "name": "mail", + "slug": "academic-projects", + "name": "academic projects", "organizationCount": 2, - "projectCount": 6, + "projectCount": 16, "years": [ - 2022, - 2021, - 2019, - 2018, + 2017, 2016 ] }, { - "slug": "malware-analysis", - "name": "malware-analysis", + "slug": "game-theory", + "name": "game theory", "organizationCount": 2, - "projectCount": 108, + "projectCount": 3, "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, - 2020, - 2019, - 2018, - 2017, + 2026, 2016 ] }, { - "slug": "mass-spectrometry", - "name": "mass spectrometry", + "slug": "google-cloud", + "name": "google cloud", "organizationCount": 2, - "projectCount": 5, + "projectCount": 4, "years": [ 2023, - 2022, - 2020 + 2021 ] }, { - "slug": "materials-science", - "name": "materials science", + "slug": "embeddded", + "name": "embeddded", "organizationCount": 2, - "projectCount": 65, + "projectCount": 101, "years": [ + 2026, 2025, 2024, 2023, @@ -7056,29 +7436,30 @@ ] }, { - "slug": "mechanics", - "name": "mechanics", + "slug": "devsecops", + "name": "DevSecOps", "organizationCount": 2, - "projectCount": 27, + "projectCount": 117, "years": [ + 2026, 2025, 2024, + 2023, 2022, 2021, 2020, 2019, 2018, - 2017, 2016 ] }, { - "slug": "medical-records", - "name": "medical records", + "slug": "data-sharing", + "name": "data sharing", "organizationCount": 2, - "projectCount": 97, + "projectCount": 50, "years": [ - 2025, + 2026, 2024, 2023, 2022, @@ -7091,26 +7472,31 @@ ] }, { - "slug": "medicine", - "name": "medicine", + "slug": "desktop-applications", + "name": "desktop applications", "organizationCount": 2, - "projectCount": 34, + "projectCount": 282, "years": [ + 2026, + 2025, + 2024, 2023, 2022, 2021, 2020, 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "mesh", - "name": "mesh", + "slug": "productivity", + "name": "productivity", "organizationCount": 2, - "projectCount": 100, + "projectCount": 134, "years": [ + 2026, 2025, 2024, 2023, @@ -7124,11 +7510,15 @@ ] }, { - "slug": "mobile-development", - "name": "mobile development", + "slug": "geolocation", + "name": "geolocation", "organizationCount": 2, - "projectCount": 61, + "projectCount": 129, "years": [ + 2026, + 2025, + 2024, + 2023, 2022, 2021, 2020, @@ -7139,10 +7529,10 @@ ] }, { - "slug": "mobile-programming", - "name": "mobile programming", + "slug": "navigation", + "name": "navigation", "organizationCount": 2, - "projectCount": 88, + "projectCount": 38, "years": [ 2025, 2024, @@ -7157,11 +7547,12 @@ ] }, { - "slug": "modeling", - "name": "modeling", + "slug": "communications-engineering", + "name": "communications engineering", "organizationCount": 2, - "projectCount": 341, + "projectCount": 46, "years": [ + 2026, 2025, 2024, 2023, @@ -7175,11 +7566,13 @@ ] }, { - "slug": "multimodal-communication", - "name": "multimodal communication", + "slug": "toolchain", + "name": "toolchain", "organizationCount": 2, "projectCount": 93, "years": [ + 2026, + 2025, 2024, 2023, 2022, @@ -7192,39 +7585,25 @@ ] }, { - "slug": "music-engraving", - "name": "music engraving", + "slug": "mail", + "name": "mail", "organizationCount": 2, - "projectCount": 26, + "projectCount": 6, "years": [ - 2024, - 2023, 2022, 2021, - 2020, 2019, 2018, - 2017, 2016 ] }, { - "slug": "natural-language-understanding", - "name": "natural language understanding", - "organizationCount": 2, - "projectCount": 9, - "years": [ - 2021, - 2020, - 2019 - ] - }, - { - "slug": "navigation", - "name": "navigation", + "slug": "numerical-methods", + "name": "numerical methods", "organizationCount": 2, - "projectCount": 38, + "projectCount": 36, "years": [ + 2026, 2025, 2024, 2023, @@ -7238,16 +7617,14 @@ ] }, { - "slug": "network-biology", - "name": "network biology", + "slug": "free-software", + "name": "free software", "organizationCount": 2, - "projectCount": 137, + "projectCount": 134, "years": [ - 2025, + 2026, 2024, 2023, - 2022, - 2021, 2020, 2019, 2018, @@ -7256,11 +7633,15 @@ ] }, { - "slug": "network-monitoring", - "name": "network monitoring", + "slug": "http", + "name": "http", "organizationCount": 2, - "projectCount": 12, + "projectCount": 67, "years": [ + 2026, + 2024, + 2023, + 2021, 2020, 2019, 2018, @@ -7269,16 +7650,14 @@ ] }, { - "slug": "network-programming", - "name": "network programming", + "slug": "command-line", + "name": "command line", "organizationCount": 2, - "projectCount": 94, + "projectCount": 66, "years": [ - 2025, + 2026, 2024, 2023, - 2022, - 2021, 2020, 2019, 2018, @@ -7287,11 +7666,12 @@ ] }, { - "slug": "network-simulation", - "name": "network simulation", + "slug": "cybersecurity", + "name": "cybersecurity", "organizationCount": 2, - "projectCount": 52, + "projectCount": 120, "years": [ + 2026, 2025, 2024, 2023, @@ -7305,58 +7685,59 @@ ] }, { - "slug": "networks", - "name": "networks", + "slug": "cryptography", + "name": "cryptography", "organizationCount": 2, - "projectCount": 21, + "projectCount": 8, "years": [ - 2021, - 2020, - 2019, - 2018, - 2017, - 2016 + 2026, + 2025, + 2024, + 2023, + 2022 ] }, { - "slug": "neural-networks", - "name": "Neural networks", + "slug": "jax", + "name": "Jax", "organizationCount": 2, - "projectCount": 92, + "projectCount": 49, "years": [ - 2025, - 2024, + 2025 + ] + }, + { + "slug": "data-and-databases", + "name": "data and databases", + "organizationCount": 2, + "projectCount": 30, + "years": [ + 2026, 2023, 2022, 2021, 2020, - 2019, - 2018, 2017, 2016 ] }, { - "slug": "nonprofits", - "name": "nonprofits", + "slug": "algorithm-prototyping-visualization", + "name": "algorithm prototyping/visualization", "organizationCount": 2, - "projectCount": 36, + "projectCount": 11, "years": [ - 2024, - 2023, - 2021, - 2020, - 2019, - 2018, + 2017, 2016 ] }, { - "slug": "numerical-and-data-analysis-software", - "name": "numerical and data analysis software", + "slug": "full-stack-web-and-mobile", + "name": "full stack web and mobile", "organizationCount": 2, - "projectCount": 33, + "projectCount": 138, "years": [ + 2026, 2025, 2024, 2023, @@ -7370,30 +7751,26 @@ ] }, { - "slug": "numerical-methods", - "name": "numerical methods", + "slug": "computer-security", + "name": "computer security", "organizationCount": 2, - "projectCount": 36, + "projectCount": 10, "years": [ + 2026, 2025, 2024, 2023, 2022, - 2021, - 2020, - 2019, - 2018, - 2017, - 2016 + 2021 ] }, { - "slug": "object-oriented", - "name": "object-oriented", + "slug": "desktop-integration", + "name": "desktop integration", "organizationCount": 2, - "projectCount": 75, + "projectCount": 30, "years": [ - 2025, + 2026, 2024, 2023, 2022, @@ -7406,16 +7783,29 @@ ] }, { - "slug": "open-education", - "name": "open education", + "slug": "in-memory-data-grid", + "name": "in memory data grid", "organizationCount": 2, - "projectCount": 86, + "projectCount": 5, + "years": [ + 2022, + 2021, + 2020 + ] + }, + { + "slug": "package-system", + "name": "package system", + "organizationCount": 2, + "projectCount": 49, "years": [ + 2026, 2025, 2024, 2023, 2022, 2021, + 2020, 2019, 2018, 2017, @@ -7423,29 +7813,26 @@ ] }, { - "slug": "oss-licensing", - "name": "oss licensing", + "slug": "macos", + "name": "macos", "organizationCount": 2, - "projectCount": 74, + "projectCount": 18, "years": [ - 2025, - 2024, - 2023, 2022, - 2021, 2020, 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "package-system", - "name": "package system", + "slug": "input-methods", + "name": "input methods", "organizationCount": 2, - "projectCount": 49, + "projectCount": 92, "years": [ - 2025, + 2026, 2024, 2023, 2022, @@ -7458,11 +7845,12 @@ ] }, { - "slug": "parallel-algorithms", - "name": "parallel algorithms", + "slug": "vector-graphics", + "name": "vector graphics", "organizationCount": 2, - "projectCount": 51, + "projectCount": 39, "years": [ + 2026, 2025, 2024, 2023, @@ -7476,17 +7864,22 @@ ] }, { - "slug": "parser", - "name": "parser", + "slug": "software-quality", + "name": "software quality", "organizationCount": 2, - "projectCount": 12, + "projectCount": 53, "years": [ + 2026, 2025, 2024, + 2023, + 2022, 2021, 2020, 2019, - 2018 + 2018, + 2017, + 2016 ] }, { @@ -7502,50 +7895,46 @@ ] }, { - "slug": "performance-optimization", - "name": "performance optimization", + "slug": "video-encode", + "name": "video encode", "organizationCount": 2, - "projectCount": 252, + "projectCount": 15, "years": [ - 2025, - 2024, - 2023, 2022, 2021, 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "photography", - "name": "photography", + "slug": "imaging", + "name": "imaging", "organizationCount": 2, - "projectCount": 28, + "projectCount": 21, "years": [ - 2025, - 2024, - 2023, 2022, 2021, 2020, 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "php", - "name": "php", + "slug": "books", + "name": "books", "organizationCount": 2, - "projectCount": 40, + "projectCount": 86, "years": [ + 2026, 2025, 2024, 2023, 2022, + 2021, 2020, 2019, 2018, @@ -7554,35 +7943,24 @@ ] }, { - "slug": "point-clouds", - "name": "point clouds", - "organizationCount": 2, - "projectCount": 3, - "years": [ - 2022, - 2018 - ] - }, - { - "slug": "polyglot", - "name": "polyglot", + "slug": "ipv6", + "name": "ipv6", "organizationCount": 2, - "projectCount": 25, + "projectCount": 12, "years": [ - 2024, - 2023, - 2022, - 2021, + 2019, + 2018, 2017, 2016 ] }, { - "slug": "productivity", - "name": "productivity", + "slug": "ehealth", + "name": "ehealth", "organizationCount": 2, - "projectCount": 134, + "projectCount": 107, "years": [ + 2026, 2025, 2024, 2023, @@ -7596,27 +7974,26 @@ ] }, { - "slug": "programmer-productivity", - "name": "programmer productivity", + "slug": "latex", + "name": "latex", "organizationCount": 2, - "projectCount": 36, + "projectCount": 11, "years": [ + 2026, 2025, 2024, - 2023, + 2022, 2021, - 2020, - 2019, - 2018, - 2017 + 2019 ] }, { - "slug": "programming-libraries", - "name": "programming libraries", + "slug": "enterprise-applications", + "name": "enterprise applications", "organizationCount": 2, - "projectCount": 67, + "projectCount": 78, "years": [ + 2026, 2025, 2024, 2023, @@ -7625,18 +8002,17 @@ 2020, 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "quantum-chemistry", - "name": "quantum chemistry", + "slug": "enterprise-application", + "name": "enterprise application", "organizationCount": 2, - "projectCount": 58, + "projectCount": 54, "years": [ - 2025, - 2024, - 2023, + 2026, 2022, 2021, 2020, @@ -7647,13 +8023,12 @@ ] }, { - "slug": "realtime-communication", - "name": "realtime communication", + "slug": "mobile-development", + "name": "mobile development", "organizationCount": 2, - "projectCount": 40, + "projectCount": 61, "years": [ - 2024, - 2023, + 2026, 2022, 2021, 2020, @@ -7664,13 +8039,17 @@ ] }, { - "slug": "realtime-messaging", - "name": "realtime messaging", + "slug": "graphs", + "name": "graphs", "organizationCount": 2, - "projectCount": 46, + "projectCount": 142, "years": [ + 2026, 2025, + 2024, + 2023, 2022, + 2021, 2020, 2019, 2018, @@ -7679,26 +8058,39 @@ ] }, { - "slug": "reproducibility", - "name": "reproducibility", + "slug": "webrtc", + "name": "WebRTC", "organizationCount": 2, - "projectCount": 67, + "projectCount": 32, "years": [ + 2026, 2025, 2024, 2023, 2022, - 2021, + 2020, 2019, - 2018 + 2018, + 2017 ] }, { - "slug": "ros", - "name": "ros", + "slug": "unit-testing", + "name": "unit testing", "organizationCount": 2, - "projectCount": 48, + "projectCount": 9, + "years": [ + 2024, + 2016 + ] + }, + { + "slug": "desktop-application", + "name": "desktop application", + "organizationCount": 2, + "projectCount": 232, "years": [ + 2026, 2025, 2024, 2023, @@ -7712,11 +8104,12 @@ ] }, { - "slug": "rtos", - "name": "rtos", + "slug": "art", + "name": "art", "organizationCount": 2, - "projectCount": 48, + "projectCount": 183, "years": [ + 2026, 2025, 2024, 2023, @@ -7730,27 +8123,34 @@ ] }, { - "slug": "sbom", - "name": "SBOM", + "slug": "functional-testing", + "name": "Functional Testing", "organizationCount": 2, - "projectCount": 34, + "projectCount": 13, "years": [ 2025, 2024, - 2023, + 2023 + ] + }, + { + "slug": "sre", + "name": "sre", + "organizationCount": 2, + "projectCount": 6, + "years": [ 2022, - 2021, 2020, - 2019, - 2017 + 2019 ] }, { - "slug": "scanning", - "name": "scanning", + "slug": "lowlevel", + "name": "lowlevel", "organizationCount": 2, - "projectCount": 35, + "projectCount": 47, "years": [ + 2026, 2025, 2024, 2023, @@ -7758,43 +8158,44 @@ 2021, 2020, 2019, - 2017 + 2018, + 2017, + 2016 ] }, { - "slug": "search-engines", - "name": "Search Engines", + "slug": "software-development", + "name": "software development", "organizationCount": 2, - "projectCount": 5, + "projectCount": 35, "years": [ + 2026, + 2025, + 2024, 2023, - 2022 + 2021, + 2020 ] }, { - "slug": "secure-development", - "name": "secure development", + "slug": "innovation", + "name": "innovation", "organizationCount": 2, - "projectCount": 112, + "projectCount": 4, "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, - 2020, - 2019, - 2018, - 2016 + 2026, + 2024 ] }, { - "slug": "server", - "name": "server", + "slug": "learning", + "name": "learning", "organizationCount": 2, - "projectCount": 65, + "projectCount": 105, "years": [ + 2026, 2025, + 2024, 2023, 2022, 2021, @@ -7806,30 +8207,23 @@ ] }, { - "slug": "service-mesh", - "name": "service mesh", + "slug": "full-stack", + "name": "full stack", "organizationCount": 2, - "projectCount": 117, + "projectCount": 4, "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, - 2020, - 2019, + 2026, 2018, 2017 ] }, { - "slug": "simulations", - "name": "simulations", + "slug": "medicine", + "name": "medicine", "organizationCount": 2, - "projectCount": 62, + "projectCount": 34, "years": [ - 2025, - 2024, + 2026, 2023, 2022, 2021, @@ -7840,51 +8234,67 @@ ] }, { - "slug": "slam", - "name": "slam", + "slug": "hfoss", + "name": "hfoss", "organizationCount": 2, - "projectCount": 10, + "projectCount": 34, "years": [ + 2026, + 2023, + 2022, + 2021, + 2020, + 2019, 2018, 2017, 2016 ] }, { - "slug": "soc", - "name": "soc", + "slug": "virtual-machine", + "name": "virtual machine", "organizationCount": 2, - "projectCount": 22, + "projectCount": 65, "years": [ + 2026, + 2025, 2024, 2023, 2022, + 2021, 2020, + 2019, + 2018, 2017, 2016 ] }, { - "slug": "social", - "name": "social", + "slug": "cloud-infrastructure", + "name": "cloud infrastructure", "organizationCount": 2, - "projectCount": 15, + "projectCount": 81, "years": [ + 2026, + 2025, 2024, 2023, 2022, + 2021, 2020, 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "social-impact", - "name": "social impact", + "slug": "visualisation", + "name": "visualisation", "organizationCount": 2, - "projectCount": 113, + "projectCount": 152, "years": [ + 2026, 2025, 2024, 2023, @@ -7898,29 +8308,30 @@ ] }, { - "slug": "software-development", - "name": "software development", + "slug": "frontend", + "name": "frontend", "organizationCount": 2, - "projectCount": 35, + "projectCount": 216, "years": [ + 2026, 2025, 2024, 2023, + 2022, 2021, - 2020 + 2020, + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "software-quality", - "name": "software quality", + "slug": "embedded-hardware", + "name": "embedded hardware", "organizationCount": 2, - "projectCount": 53, + "projectCount": 16, "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, 2020, 2019, 2018, @@ -7929,42 +8340,41 @@ ] }, { - "slug": "software-testing", - "name": "software testing", + "slug": "system-on-chip", + "name": "system-on-chip", "organizationCount": 2, - "projectCount": 17, + "projectCount": 22, "years": [ 2025, 2024, 2023, 2022, - 2021, 2020, + 2017, 2016 ] }, { - "slug": "space-applications", - "name": "space applications", + "slug": "interoperability", + "name": "interoperability", "organizationCount": 2, - "projectCount": 37, + "projectCount": 32, "years": [ + 2022, 2021, 2020, 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "spdx", - "name": "spdx", + "slug": "decentralization", + "name": "decentralization", "organizationCount": 2, - "projectCount": 179, + "projectCount": 33, "years": [ - 2025, - 2024, - 2023, 2022, 2021, 2020, @@ -7975,102 +8385,126 @@ ] }, { - "slug": "sre", - "name": "sre", + "slug": "realtime-communication", + "name": "realtime communication", "organizationCount": 2, - "projectCount": 6, + "projectCount": 40, "years": [ + 2024, + 2023, 2022, + 2021, 2020, - 2019 + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "storage-systems", - "name": "storage systems", + "slug": "mechanics", + "name": "mechanics", "organizationCount": 2, - "projectCount": 67, + "projectCount": 27, "years": [ 2025, 2024, - 2023, 2022, 2021, + 2020, 2019, - 2018 + 2018, + 2017, + 2016 ] }, { - "slug": "subtitles", - "name": "subtitles", + "slug": "aerodynamics", + "name": "aerodynamics", "organizationCount": 2, - "projectCount": 129, + "projectCount": 20, "years": [ + 2026, 2025, 2024, - 2023, 2022, 2021, 2020, 2019, - 2018, 2017, 2016 ] }, { - "slug": "system-on-chip", - "name": "System on Chip", + "slug": "computational-chemistry", + "name": "computational chemistry", "organizationCount": 2, - "projectCount": 22, + "projectCount": 67, "years": [ + 2026, 2025, 2024, 2023, 2022, + 2021, 2020, + 2019, + 2018, 2017, 2016 ] }, { - "slug": "systems", - "name": "systems", + "slug": "biochemistry", + "name": "biochemistry", "organizationCount": 2, - "projectCount": 23, + "projectCount": 19, "years": [ + 2026, + 2025, + 2024, + 2023, 2022, 2021, - 2020, - 2019, - 2018 + 2020 ] }, { - "slug": "systems-biology", - "name": "systems biology", + "slug": "faas", + "name": "faas", "organizationCount": 2, - "projectCount": 137, + "projectCount": 25, + "years": [ + 2026, + 2024, + 2023, + 2022, + 2021 + ] + }, + { + "slug": "languages", + "name": "languages", + "organizationCount": 2, + "projectCount": 28, "years": [ + 2026, 2025, 2024, 2023, 2022, - 2021, - 2020, - 2019, - 2018, - 2017, - 2016 + 2021 ] }, { - "slug": "systems-programming", - "name": "systems programming", + "slug": "educational-technology", + "name": "educational technology", "organizationCount": 2, - "projectCount": 44, + "projectCount": 122, "years": [ + 2026, 2025, + 2024, 2023, 2022, 2021, @@ -8082,23 +8516,29 @@ ] }, { - "slug": "text-editor", - "name": "text editor", + "slug": "fast-algorithms", + "name": "fast algorithms", "organizationCount": 2, - "projectCount": 12, + "projectCount": 70, "years": [ - 2025, + 2024, + 2023, + 2022, + 2021, 2020, 2019, - 2018 + 2018, + 2017, + 2016 ] }, { - "slug": "toolchain", - "name": "toolchain", + "slug": "neural-networks", + "name": "Neural networks", "organizationCount": 2, - "projectCount": 93, + "projectCount": 92, "years": [ + 2026, 2025, 2024, 2023, @@ -8112,11 +8552,12 @@ ] }, { - "slug": "tv", - "name": "tv", + "slug": "web-application-security", + "name": "web application security", "organizationCount": 2, - "projectCount": 92, + "projectCount": 105, "years": [ + 2026, 2025, 2024, 2023, @@ -8125,32 +8566,25 @@ 2020, 2019, 2018, - 2017, 2016 ] }, { - "slug": "unit-testing", - "name": "unit testing", + "slug": "xr", + "name": "xr", "organizationCount": 2, - "projectCount": 9, + "projectCount": 2, "years": [ - 2024, - 2016 + 2022, + 2020 ] }, { - "slug": "ux", - "name": "ux", + "slug": "learning-management", + "name": "learning management", "organizationCount": 2, - "projectCount": 79, + "projectCount": 27, "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, - 2020, 2019, 2018, 2017, @@ -8158,34 +8592,35 @@ ] }, { - "slug": "vector-graphics", - "name": "vector graphics", + "slug": "feature-detection", + "name": "feature detection", "organizationCount": 2, - "projectCount": 39, + "projectCount": 5, "years": [ - 2025, - 2024, 2023, 2022, - 2021, + 2020 + ] + }, + { + "slug": "text-editor", + "name": "text editor", + "organizationCount": 2, + "projectCount": 12, + "years": [ + 2026, + 2025, 2020, 2019, - 2018, - 2017, - 2016 + 2018 ] }, { - "slug": "vfx", - "name": "vfx", + "slug": "network-monitoring", + "name": "network monitoring", "organizationCount": 2, - "projectCount": 75, + "projectCount": 12, "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, 2020, 2019, 2018, @@ -8194,25 +8629,24 @@ ] }, { - "slug": "video-encode", - "name": "video encode", + "slug": "braille", + "name": "braille", "organizationCount": 2, - "projectCount": 15, + "projectCount": 12, "years": [ - 2022, - 2021, + 2025, + 2024, 2020, - 2019, - 2018, - 2017 + 2019 ] }, { - "slug": "virtual-machine", - "name": "virtual machine", + "slug": "quantum-chemistry", + "name": "quantum chemistry", "organizationCount": 2, - "projectCount": 65, + "projectCount": 58, "years": [ + 2026, 2025, 2024, 2023, @@ -8226,11 +8660,12 @@ ] }, { - "slug": "visualisation", - "name": "visualisation", + "slug": "crowdsourcing", + "name": "crowdsourcing", "organizationCount": 2, - "projectCount": 152, + "projectCount": 55, "years": [ + 2026, 2025, 2024, 2023, @@ -8244,11 +8679,12 @@ ] }, { - "slug": "vulnerabilities", - "name": "vulnerabilities", + "slug": "electronic-medical-records", + "name": "electronic medical records", "organizationCount": 2, - "projectCount": 61, + "projectCount": 103, "years": [ + 2026, 2025, 2024, 2023, @@ -8257,15 +8693,17 @@ 2020, 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "web-application-security", - "name": "web application security", + "slug": "medical-records", + "name": "medical records", "organizationCount": 2, - "projectCount": 105, + "projectCount": 97, "years": [ + 2026, 2025, 2024, 2023, @@ -8274,15 +8712,17 @@ 2020, 2019, 2018, + 2017, 2016 ] }, { - "slug": "web-community", - "name": "web community", + "slug": "social-impact", + "name": "social impact", "organizationCount": 2, - "projectCount": 70, + "projectCount": 113, "years": [ + 2026, 2025, 2024, 2023, @@ -8296,40 +8736,37 @@ ] }, { - "slug": "web-programming", - "name": "web programming", + "slug": "live-streaming", + "name": "live streaming", "organizationCount": 2, - "projectCount": 15, + "projectCount": 11, "years": [ - 2025, - 2020, 2019, + 2018, + 2017, 2016 ] }, { - "slug": "web-servers", - "name": "web servers", + "slug": "cli", + "name": "cli", "organizationCount": 2, - "projectCount": 56, + "projectCount": 34, "years": [ + 2026, + 2025, 2023, - 2022, 2021, - 2020, 2019, - 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "webrtc", - "name": "WebRTC", + "slug": "social", + "name": "social", "organizationCount": 2, - "projectCount": 32, + "projectCount": 15, "years": [ - 2025, 2024, 2023, 2022, @@ -8340,11 +8777,12 @@ ] }, { - "slug": "wifi", - "name": "wifi", + "slug": "network-programming", + "name": "network programming", "organizationCount": 2, - "projectCount": 100, + "projectCount": 94, "years": [ + 2026, 2025, 2024, 2023, @@ -8358,47 +8796,53 @@ ] }, { - "slug": "wikipedia", - "name": "wikipedia", + "slug": "api-management", + "name": "api management", "organizationCount": 2, - "projectCount": 146, + "projectCount": 39, "years": [ - 2025, 2024, 2023, - 2022, 2021, 2020, - 2019, - 2018, 2017, 2016 ] }, { - "slug": "windows", - "name": "windows", + "slug": "bot", + "name": "bot", "organizationCount": 2, - "projectCount": 16, + "projectCount": 105, "years": [ + 2026, + 2025, + 2024, + 2023, 2022, 2021, 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "wireless-communications", - "name": "wireless communications", + "slug": "search-engines", + "name": "Search Engines", "organizationCount": 2, - "projectCount": 92, + "projectCount": 5, "years": [ - 2025, - 2024, 2023, + 2022 + ] + }, + { + "slug": "windows", + "name": "windows", + "organizationCount": 2, + "projectCount": 16, + "years": [ 2022, 2021, 2020, @@ -8409,11 +8853,12 @@ ] }, { - "slug": "wireless-networks", - "name": "wireless networks", + "slug": "group-chat", + "name": "group chat", "organizationCount": 2, - "projectCount": 100, + "projectCount": 238, "years": [ + 2026, 2025, 2024, 2023, @@ -8427,23 +8872,36 @@ ] }, { - "slug": "xr", - "name": "xr", + "slug": "parallel-algorithms", + "name": "parallel algorithms", "organizationCount": 2, - "projectCount": 2, + "projectCount": 51, "years": [ + 2026, + 2025, + 2024, + 2023, 2022, - 2020 + 2021, + 2020, + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "2d-acceleration", - "name": "2d acceleration", - "organizationCount": 1, - "projectCount": 19, + "slug": "enterprise", + "name": "enterprise", + "organizationCount": 2, + "projectCount": 138, "years": [ + 2026, + 2025, + 2024, 2023, 2022, + 2021, 2020, 2019, 2018, @@ -8452,42 +8910,60 @@ ] }, { - "slug": "2d-animation", - "name": "2d animation", - "organizationCount": 1, - "projectCount": 12, + "slug": "free-and-open-source-software", + "name": "free and open source software", + "organizationCount": 2, + "projectCount": 44, "years": [ + 2026, 2025, 2024, 2023, 2022, 2021, 2020, - 2019 + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "360-stereo-video", - "name": "360 stereo video", - "organizationCount": 1, - "projectCount": 12, + "slug": "high-performance-data-processing", + "name": "high performance data processing", + "organizationCount": 2, + "projectCount": 15, "years": [ 2022, 2021, 2020, 2019, 2018, - 2017 + 2016 ] }, { - "slug": "3d-acceleration", - "name": "3d acceleration", + "slug": "declarative-language", + "name": "declarative language", + "organizationCount": 2, + "projectCount": 5, + "years": [ + 2019, + 2018 + ] + }, + { + "slug": "sensor-web", + "name": "sensor web", "organizationCount": 1, - "projectCount": 19, + "projectCount": 25, "years": [ + 2026, + 2025, + 2024, 2023, 2022, + 2021, 2020, 2019, 2018, @@ -8496,11 +8972,12 @@ ] }, { - "slug": "3d-animation", - "name": "3d animation", + "slug": "web-based-geoprocessing", + "name": "web-based geoprocessing", "organizationCount": 1, - "projectCount": 64, + "projectCount": 25, "years": [ + 2026, 2025, 2024, 2023, @@ -8514,11 +8991,12 @@ ] }, { - "slug": "3d-cad-geometry", - "name": "3d cad geometry", + "slug": "spatial-data", + "name": "spatial data", "organizationCount": 1, - "projectCount": 73, + "projectCount": 25, "years": [ + 2026, 2025, 2024, 2023, @@ -8532,70 +9010,69 @@ ] }, { - "slug": "3d-computer-vision", - "name": "3d computer vision", + "slug": "spatial-data-infrastructures", + "name": "spatial data infrastructures", "organizationCount": 1, - "projectCount": 5, + "projectCount": 25, "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, 2021, - 2020 - ] - }, - { - "slug": "3d-data-processing", - "name": "3D data processing", - "organizationCount": 1, - "projectCount": 3, - "years": [ - 2022 - ] - }, - { - "slug": "3d-geometry", - "name": "3D Geometry", - "organizationCount": 1, - "projectCount": 2, - "years": [ - 2025 - ] - }, - { - "slug": "3d-machine-learning", - "name": "3D machine learning", - "organizationCount": 1, - "projectCount": 3, - "years": [ - 2022 + 2020, + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "3d-printing", - "name": "3d printing", + "slug": "spatial-information", + "name": "spatial information", "organizationCount": 1, - "projectCount": 13, + "projectCount": 25, "years": [ + 2026, 2025, 2024, - 2023 + 2023, + 2022, + 2021, + 2020, + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "3d-reconstruction", - "name": "3D Reconstruction", + "slug": "geoprocessing", + "name": "geoprocessing", "organizationCount": 1, - "projectCount": 13, + "projectCount": 25, "years": [ + 2026, 2025, 2024, - 2023 + 2023, + 2022, + 2021, + 2020, + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "3d-tools", - "name": "3d tools", + "slug": "remote-sensing", + "name": "remote sensing", "organizationCount": 1, - "projectCount": 64, + "projectCount": 25, "years": [ + 2026, 2025, 2024, 2023, @@ -8609,42 +9086,56 @@ ] }, { - "slug": "3d-visualization", - "name": "3D visualization", - "organizationCount": 1, - "projectCount": 3, - "years": [ - 2022 - ] - }, - { - "slug": "3dui", - "name": "3dui", + "slug": "geostatistics", + "name": "geostatistics", "organizationCount": 1, - "projectCount": 2, + "projectCount": 25, "years": [ - 2021 + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "academia", - "name": "academia", + "slug": "floating-car-data", + "name": "floating car data", "organizationCount": 1, - "projectCount": 11, + "projectCount": 25, "years": [ + 2026, 2025, 2024, + 2023, 2022, 2021, - 2019 + 2020, + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "academic-research", - "name": "academic research", + "slug": "ogc", + "name": "ogc", "organizationCount": 1, - "projectCount": 5, + "projectCount": 25, "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, 2019, 2018, 2017, @@ -8652,25 +9143,31 @@ ] }, { - "slug": "accelerated-media", - "name": "accelerated media", + "slug": "web-processing", + "name": "web processing", "organizationCount": 1, - "projectCount": 12, + "projectCount": 25, "years": [ + 2026, + 2025, + 2024, + 2023, 2022, 2021, 2020, 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "accesibility", - "name": "accesibility", + "slug": "sensorweb", + "name": "sensorweb", "organizationCount": 1, - "projectCount": 80, + "projectCount": 25, "years": [ + 2026, 2025, 2024, 2023, @@ -8684,78 +9181,72 @@ ] }, { - "slug": "acoustics", - "name": "acoustics", + "slug": "ogc-standards", + "name": "ogc standards", "organizationCount": 1, - "projectCount": 10, + "projectCount": 25, "years": [ + 2026, + 2025, + 2024, + 2023, 2022, 2021, - 2020 - ] - }, - { - "slug": "acpi", - "name": "acpi", - "organizationCount": 1, - "projectCount": 8, - "years": [ - 2022, - 2021 - ] - }, - { - "slug": "actor-model", - "name": "actor model", - "organizationCount": 1, - "projectCount": 3, - "years": [ + 2020, + 2019, + 2018, + 2017, 2016 ] }, { - "slug": "adjoint-design-optimization", - "name": "Adjoint Design Optimization", + "slug": "trajectory-analytics", + "name": "trajectory analytics", "organizationCount": 1, - "projectCount": 7, + "projectCount": 25, "years": [ + 2026, 2025, - 2024 - ] - }, - { - "slug": "administrator", - "name": "administrator", - "organizationCount": 1, - "projectCount": 9, - "years": [ + 2024, + 2023, + 2022, + 2021, + 2020, 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "aeroelasticity", - "name": "aeroelasticity", + "slug": "spatial-information-infrastructures", + "name": "spatial information infrastructures", "organizationCount": 1, - "projectCount": 13, + "projectCount": 25, "years": [ + 2026, 2025, 2024, + 2023, 2022, 2021, 2020, 2019, + 2018, 2017, 2016 ] }, { - "slug": "aerogear", - "name": "aerogear", + "slug": "open-standards", + "name": "open standards", "organizationCount": 1, - "projectCount": 52, + "projectCount": 25, "years": [ + 2026, + 2025, + 2024, + 2023, 2022, 2021, 2020, @@ -8766,140 +9257,152 @@ ] }, { - "slug": "aeronautics", - "name": "aeronautics", + "slug": "geoinformation-systems", + "name": "geoinformation systems", "organizationCount": 1, - "projectCount": 13, + "projectCount": 25, "years": [ + 2026, 2025, 2024, + 2023, 2022, 2021, 2020, 2019, + 2018, 2017, 2016 ] }, { - "slug": "aerospace", - "name": "aerospace", + "slug": "geoinformation", + "name": "Geoinformation", "organizationCount": 1, - "projectCount": 13, + "projectCount": 25, "years": [ + 2026, 2025, 2024, + 2023, 2022, 2021, 2020, 2019, + 2018, 2017, 2016 ] }, { - "slug": "agent", - "name": "agent", - "organizationCount": 1, - "projectCount": 3, - "years": [ - 2021 - ] - }, - { - "slug": "agent-based-models", - "name": "Agent Based Models", - "organizationCount": 1, - "projectCount": 7, - "years": [ - 2025, - 2024 - ] - }, - { - "slug": "agi", - "name": "AGI", - "organizationCount": 1, - "projectCount": 10, - "years": [ - 2025, - 2024 - ] - }, - { - "slug": "ai-in-health", - "name": "AI in Health", + "slug": "free-and-open-source-software-license-and-origin", + "name": "free and open source software license and origin", "organizationCount": 1, - "projectCount": 9, + "projectCount": 32, "years": [ + 2026, 2025, - 2024 + 2024, + 2023, + 2022, + 2021, + 2020, + 2019, + 2017 ] }, { - "slug": "ai-testing-agent", - "name": "AI Testing Agent", + "slug": "package-and-dependencies-licensing-and-origin", + "name": "package and dependencies licensing and origin", "organizationCount": 1, - "projectCount": 11, + "projectCount": 32, "years": [ + 2026, 2025, 2024, - 2023 + 2023, + 2022, + 2021, + 2020, + 2019, + 2017 ] }, { - "slug": "ai-ml-networking", - "name": "AI/ML Networking", + "slug": "package-vulnerabilities-and-security", + "name": "package vulnerabilities and security", "organizationCount": 1, - "projectCount": 9, + "projectCount": 32, "years": [ + 2026, 2025, - 2024 + 2024, + 2023, + 2022, + 2021, + 2020, + 2019, + 2017 ] }, { - "slug": "aiml", - "name": "AIML", + "slug": "code-scan-and-matching", + "name": "code scan and matching", "organizationCount": 1, - "projectCount": 52, + "projectCount": 32, "years": [ + 2026, 2025, 2024, 2023, 2022, 2021, 2020, - 2018, - 2017, - 2016 + 2019, + 2017 ] }, { - "slug": "alerting", - "name": "alerting", + "slug": "code-analysis-and-spdx", + "name": "code analysis and spdx", "organizationCount": 1, - "projectCount": 3, + "projectCount": 32, "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, 2020, - 2019 + 2019, + 2017 ] }, { - "slug": "alerts", - "name": "alerts", + "slug": "copyright", + "name": "copyright", "organizationCount": 1, - "projectCount": 3, + "projectCount": 32, "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, 2020, - 2019 + 2019, + 2017 ] }, { - "slug": "algorithmics", - "name": "algorithmics", + "slug": "software-composition-analysis", + "name": "software composition analysis", "organizationCount": 1, - "projectCount": 214, + "projectCount": 32, "years": [ + 2026, 2025, 2024, 2023, @@ -8907,184 +9410,210 @@ 2021, 2020, 2019, - 2018, 2017 ] }, { - "slug": "analysis", - "name": "analysis", + "slug": "software-packages", + "name": "software packages", "organizationCount": 1, - "projectCount": 19, + "projectCount": 32, "years": [ + 2026, + 2025, + 2024, + 2023, 2022, + 2021, 2020, 2019, - 2018, - 2017, - 2016 - ] - }, - { - "slug": "analyzing", - "name": "analyzing", - "organizationCount": 1, - "projectCount": 0, - "years": [ - 2016 + 2017 ] }, { - "slug": "android-sdk", - "name": "android-sdk", + "slug": "softwarecompositionanalysis", + "name": "SoftwareCompositionAnalysis", "organizationCount": 1, - "projectCount": 78, + "projectCount": 32, "years": [ + 2026, 2025, 2024, + 2023, 2022, 2021, 2020, 2019, - 2018, - 2016 + 2017 ] }, { - "slug": "angularjs", - "name": "angularjs", + "slug": "license", + "name": "License", "organizationCount": 1, - "projectCount": 28, + "projectCount": 32, "years": [ + 2026, 2025, 2024, 2023, + 2022, 2021, 2020, 2019, - 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "anonymity", - "name": "anonymity", + "slug": "file-formats", + "name": "file formats", "organizationCount": 1, - "projectCount": 19, + "projectCount": 3, "years": [ - 2025, - 2023, 2022, - 2017, - 2016 + 2020 ] }, { - "slug": "anti-censorship", - "name": "anti-censorship", + "slug": "color-management", + "name": "color management", "organizationCount": 1, - "projectCount": 19, + "projectCount": 3, "years": [ - 2025, - 2023, 2022, - 2017, - 2016 + 2020 ] }, { - "slug": "api-description", - "name": "api description", + "slug": "visual-effects", + "name": "Visual Effects", "organizationCount": 1, - "projectCount": 1, + "projectCount": 3, "years": [ - 2019 + 2022, + 2020 ] }, { - "slug": "api-testing", - "name": "API Testing", + "slug": "film", + "name": "Film", "organizationCount": 1, - "projectCount": 11, + "projectCount": 3, "years": [ - 2025, - 2024, - 2023 + 2022, + 2020 ] }, { - "slug": "application-development", - "name": "Application Development", + "slug": "smart-contracts", + "name": "smart contracts", "organizationCount": 1, - "projectCount": 4, + "projectCount": 13, "years": [ + 2026, + 2025, 2024, - 2022 + 2021, + 2020 ] }, { - "slug": "appsec", - "name": "appsec", + "slug": "legal-technology", + "name": "legal technology", "organizationCount": 1, - "projectCount": 102, + "projectCount": 13, "years": [ + 2026, 2025, 2024, - 2023, - 2022, 2021, - 2020, - 2019, - 2018, - 2016 + 2020 ] }, { - "slug": "ar", - "name": "AR", + "slug": "contract-management", + "name": "contract management", "organizationCount": 1, - "projectCount": 2, + "projectCount": 13, "years": [ - 2022 + 2026, + 2025, + 2024, + 2021, + 2020 ] }, { - "slug": "architectures", - "name": "Architectures", + "slug": "document-assembly", + "name": "document assembly", "organizationCount": 1, - "projectCount": 15, + "projectCount": 13, "years": [ + 2026, 2025, - 2024 + 2024, + 2021, + 2020 ] }, { - "slug": "archive", - "name": "archive", + "slug": "instrumentation", + "name": "instrumentation", "organizationCount": 1, - "projectCount": 26, + "projectCount": 10, "years": [ + 2026, 2025, 2024, 2023, + 2022, 2021, - 2020, - 2019, - 2018, - 2017 + 2020 ] }, { - "slug": "archiving", - "name": "archiving", + "slug": "ci", + "name": "ci", "organizationCount": 1, - "projectCount": 26, + "projectCount": 10, "years": [ + 2026, 2025, 2024, 2023, + 2022, 2021, + 2020 + ] + }, + { + "slug": "heathcare", + "name": "heathcare", + "organizationCount": 1, + "projectCount": 12, + "years": [ + 2026, + 2025, + 2024 + ] + }, + { + "slug": "polar-science", + "name": "Polar Science", + "organizationCount": 1, + "projectCount": 12, + "years": [ + 2026, + 2025, + 2024 + ] + }, + { + "slug": "home-servers", + "name": "home servers", + "organizationCount": 1, + "projectCount": 18, + "years": [ 2020, 2019, 2018, @@ -9092,16 +9621,11 @@ ] }, { - "slug": "arrangement", - "name": "arrangement", + "slug": "mobile-streaming", + "name": "mobile streaming", "organizationCount": 1, - "projectCount": 58, + "projectCount": 18, "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, 2020, 2019, 2018, @@ -9109,140 +9633,143 @@ ] }, { - "slug": "artificial-inteligence", - "name": "Artificial Inteligence", + "slug": "media-server", + "name": "media server", "organizationCount": 1, - "projectCount": 70, + "projectCount": 18, "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, + 2020, 2019, 2018, 2017 ] }, { - "slug": "artist-tools", - "name": "artist tools", + "slug": "storage-server", + "name": "storage server", "organizationCount": 1, - "projectCount": 64, + "projectCount": 18, "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "arts", - "name": "Arts", + "slug": "backups", + "name": "backups", "organizationCount": 1, - "projectCount": 26, + "projectCount": 18, "years": [ - 2025, - 2024 + 2020, + 2019, + 2018, + 2017 ] }, { - "slug": "asic-design", - "name": "ASIC design", + "slug": "profiling", + "name": "profiling", "organizationCount": 1, - "projectCount": 12, + "projectCount": 8, "years": [ - 2024, - 2023, - 2022 + 2021, + 2020, + 2019 ] }, { - "slug": "assembly", - "name": "assembly", + "slug": "user-generated-content", + "name": "user generated content", "organizationCount": 1, - "projectCount": 15, + "projectCount": 10, "years": [ - 2020, - 2018, - 2017, - 2016 + 2026, + 2025, + 2024, + 2022, + 2021 ] }, { - "slug": "ast", - "name": "ast", + "slug": "flashcard", + "name": "flashcard", "organizationCount": 1, - "projectCount": 2, + "projectCount": 10, "years": [ - 2017 + 2026, + 2025, + 2024, + 2022, + 2021 ] }, { - "slug": "async", - "name": "async", + "slug": "flashcards", + "name": "Flashcards", "organizationCount": 1, - "projectCount": 1, + "projectCount": 10, "years": [ - 2020 + 2026, + 2025, + 2024, + 2022, + 2021 ] }, { - "slug": "asynchronous", - "name": "asynchronous", + "slug": "live-programming", + "name": "live programming", "organizationCount": 1, "projectCount": 6, "years": [ - 2017, 2016 ] }, { - "slug": "asynchronous-many-task-systems", - "name": "asynchronous many task systems", + "slug": "electronic-voting", + "name": "electronic voting", "organizationCount": 1, - "projectCount": 38, + "projectCount": 117, "years": [ + 2026, 2025, 2024, 2023, 2022, 2021, 2020, + 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "asynchronous-manytask-systems", - "name": "asynchronous manytask systems", + "slug": "philosophy", + "name": "philosophy", "organizationCount": 1, - "projectCount": 38, + "projectCount": 117, "years": [ + 2026, 2025, 2024, 2023, 2022, 2021, 2020, + 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "atomic-physics", - "name": "atomic physics", + "slug": "social-science", + "name": "social science", "organizationCount": 1, - "projectCount": 77, + "projectCount": 117, "years": [ + 2026, 2025, 2024, 2023, @@ -9251,130 +9778,136 @@ 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "audio-editor", - "name": "audio editor", + "slug": "olap", + "name": "OLAP", "organizationCount": 1, - "projectCount": 3, + "projectCount": 2, "years": [ - 2022, - 2021 + 2025 ] }, { - "slug": "audio-firmware", - "name": "audio firmware", + "slug": "computer-aided-translation", + "name": "computer-aided translation", "organizationCount": 1, - "projectCount": 12, + "projectCount": 67, "years": [ - 2022, + 2024, + 2023, 2021, 2020, 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "authentication", - "name": "Authentication", + "slug": "morphological-analysis", + "name": "morphological analysis", "organizationCount": 1, - "projectCount": 22, + "projectCount": 67, "years": [ - 2022, + 2024, + 2023, 2021, - 2020 - ] - }, - { - "slug": "authoritative-dns-software", - "name": "Authoritative DNS software", - "organizationCount": 1, - "projectCount": 1, - "years": [ - 2022 + 2020, + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "authorization", - "name": "authorization", + "slug": "lesser-resourced-languages", + "name": "lesser-resourced languages", "organizationCount": 1, - "projectCount": 22, + "projectCount": 67, "years": [ - 2022, + 2024, + 2023, 2021, - 2020 - ] - }, - { - "slug": "automated-program-repair", - "name": "automated program repair", - "organizationCount": 1, - "projectCount": 2, - "years": [ - 2021 + 2020, + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "automated-testing", - "name": "Automated Testing", + "slug": "language-technology", + "name": "language technology", "organizationCount": 1, - "projectCount": 6, + "projectCount": 67, "years": [ - 2025, - 2023 + 2024, + 2023, + 2021, + 2020, + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "automobile", - "name": "automobile", + "slug": "grammar", + "name": "grammar", "organizationCount": 1, - "projectCount": 3, + "projectCount": 67, "years": [ + 2024, + 2023, + 2021, + 2020, 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "autonomous-drive", - "name": "Autonomous Drive", + "slug": "less-resourced-languages", + "name": "less-resourced languages", "organizationCount": 1, - "projectCount": 2, + "projectCount": 67, "years": [ - 2025 + 2024, + 2023, + 2021, + 2020, + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "autonomous-vehicle", - "name": "autonomous vehicle", + "slug": "less-resources-languages", + "name": "less-resources languages", "organizationCount": 1, - "projectCount": 38, + "projectCount": 67, "years": [ - 2025, 2024, 2023, - 2022, 2021, 2020, 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "autopilot", - "name": "autopilot", + "slug": "digital-imaging", + "name": "digital imaging", "organizationCount": 1, - "projectCount": 38, + "projectCount": 18, "years": [ - 2025, - 2024, - 2023, 2022, 2021, 2020, @@ -9384,45 +9917,41 @@ ] }, { - "slug": "autopkgtest", - "name": "autopkgtest", + "slug": "cinematography", + "name": "cinematography", "organizationCount": 1, - "projectCount": 78, + "projectCount": 18, "years": [ - 2025, - 2024, 2022, 2021, 2020, 2019, 2018, - 2016 + 2017 ] }, { - "slug": "backup", - "name": "Backup", + "slug": "computational-photography", + "name": "computational photography", "organizationCount": 1, - "projectCount": 277, + "projectCount": 18, "years": [ - 2025, - 2024, - 2023, 2022, 2021, 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "backups", - "name": "backups", + "slug": "digital-hardware-design", + "name": "digital hardware design", "organizationCount": 1, "projectCount": 18, "years": [ + 2022, + 2021, 2020, 2019, 2018, @@ -9430,41 +9959,43 @@ ] }, { - "slug": "beacons", - "name": "beacons", + "slug": "api-description", + "name": "api description", "organizationCount": 1, - "projectCount": 8, + "projectCount": 1, "years": [ - 2017, - 2016 + 2019 ] }, { - "slug": "beatdetection", - "name": "beatdetection", + "slug": "agents", + "name": "Agents", "organizationCount": 1, - "projectCount": 16, + "projectCount": 3, "years": [ + 2026, 2025, - 2024, - 2022, + 2024 + ] + }, + { + "slug": "computer-graphics", + "name": "computer graphics", + "organizationCount": 1, + "projectCount": 11, + "years": [ 2020, + 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "benchmark", - "name": "Benchmark", + "slug": "image-synthesis", + "name": "image synthesis", "organizationCount": 1, - "projectCount": 51, + "projectCount": 11, "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, 2020, 2019, 2018, @@ -9472,61 +10003,48 @@ ] }, { - "slug": "benchmarking", - "name": "benchmarking", + "slug": "computer-architecture", + "name": "computer architecture", "organizationCount": 1, - "projectCount": 14, + "projectCount": 2, "years": [ - 2025, - 2024, - 2023, - 2019, - 2018 + 2016 ] }, { - "slug": "bibliography", - "name": "bibliography", + "slug": "processor-design", + "name": "processor design", "organizationCount": 1, - "projectCount": 11, + "projectCount": 2, "years": [ - 2025, - 2024, - 2022, - 2021, - 2019 + 2016 ] }, { - "slug": "bibtex", - "name": "bibtex", + "slug": "simulators", + "name": "simulators", "organizationCount": 1, - "projectCount": 11, + "projectCount": 2, "years": [ - 2025, - 2024, - 2022, - 2021, - 2019 + 2016 ] }, { - "slug": "big-code", - "name": "big code", + "slug": "electronics", + "name": "electronics", "organizationCount": 1, - "projectCount": 6, + "projectCount": 2, "years": [ - 2022, - 2021, - 2019 + 2020 ] }, { - "slug": "big-data-science", - "name": "big data science", + "slug": "autopilot", + "name": "autopilot", "organizationCount": 1, - "projectCount": 214, + "projectCount": 38, "years": [ + 2026, 2025, 2024, 2023, @@ -9539,11 +10057,12 @@ ] }, { - "slug": "big-project", - "name": "big project", + "slug": "uav", + "name": "uav", "organizationCount": 1, - "projectCount": 65, + "projectCount": 38, "years": [ + 2026, 2025, 2024, 2023, @@ -9552,53 +10071,70 @@ 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "bigdata", - "name": "bigdata", + "slug": "rovers", + "name": "rovers", "organizationCount": 1, - "projectCount": 3, + "projectCount": 38, "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, 2019, 2018, 2017 ] }, { - "slug": "bim", - "name": "BIM", + "slug": "real-time-os", + "name": "real-time os", "organizationCount": 1, - "projectCount": 8, + "projectCount": 38, "years": [ + 2026, 2025, 2024, - 2023 + 2023, + 2022, + 2021, + 2020, + 2019, + 2018, + 2017 ] }, { - "slug": "binary-tools", - "name": "binary tools", + "slug": "vison", + "name": "vison", "organizationCount": 1, - "projectCount": 59, + "projectCount": 38, "years": [ + 2026, + 2025, 2024, 2023, + 2022, + 2021, 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "bio-neuro-image-processing", - "name": "bio/neuro image processing", + "slug": "drone", + "name": "Drone", "organizationCount": 1, - "projectCount": 211, + "projectCount": 38, "years": [ + 2026, 2025, 2024, 2023, @@ -9607,135 +10143,153 @@ 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "bioinformtics", - "name": "bioinformtics", + "slug": "autonomous-vehicle", + "name": "autonomous vehicle", "organizationCount": 1, - "projectCount": 9, + "projectCount": 38, "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "biological-networks", - "name": "biological networks", + "slug": "ugv", + "name": "UGV", "organizationCount": 1, - "projectCount": 18, + "projectCount": 38, "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "biomedical-data-science", - "name": "biomedical data science", + "slug": "unmanned-vehicle", + "name": "unmanned vehicle", "organizationCount": 1, - "projectCount": 9, + "projectCount": 38, "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2019, 2018, - 2017, + 2017 + ] + }, + { + "slug": "system-modelling", + "name": "system modelling", + "organizationCount": 1, + "projectCount": 3, + "years": [ 2016 ] }, { - "slug": "biomedical-informatics", - "name": "biomedical informatics", + "slug": "solver", + "name": "solver", "organizationCount": 1, - "projectCount": 9, + "projectCount": 3, "years": [ - 2018, - 2017, 2016 ] }, { - "slug": "biophysics", - "name": "biophysics", + "slug": "architectures", + "name": "Architectures", "organizationCount": 1, - "projectCount": 16, + "projectCount": 15, "years": [ 2025, - 2024, - 2023, + 2024 + ] + }, + { + "slug": "audio-editor", + "name": "audio editor", + "organizationCount": 1, + "projectCount": 3, + "years": [ 2022, - 2021, - 2020 + 2021 ] }, { - "slug": "bittorrent", - "name": "bittorrent", + "slug": "sound", + "name": "Sound", "organizationCount": 1, - "projectCount": 80, + "projectCount": 3, "years": [ - 2025, - 2024, - 2023, 2022, - 2021, - 2020, - 2019, - 2018, - 2017, - 2016 + 2021 ] }, { - "slug": "blindness", - "name": "blindness", + "slug": "effects", + "name": "Effects", "organizationCount": 1, - "projectCount": 2, + "projectCount": 3, "years": [ - 2020, - 2019 + 2022, + 2021 ] }, { - "slug": "bookmarking", - "name": "bookmarking", + "slug": "ast", + "name": "ast", "organizationCount": 1, - "projectCount": 4, + "projectCount": 2, "years": [ - 2018, 2017 ] }, { - "slug": "boot-loader", - "name": "boot loader", + "slug": "minifier", + "name": "minifier", "organizationCount": 1, - "projectCount": 11, + "projectCount": 2, "years": [ - 2023, - 2022, - 2020, - 2019, - 2016 + 2017 ] }, { - "slug": "bootloader", - "name": "bootloader", + "slug": "tc39", + "name": "tc39", "organizationCount": 1, - "projectCount": 8, + "projectCount": 2, "years": [ - 2022, - 2021 + 2017 ] }, { - "slug": "bots", - "name": "bots", + "slug": "physical-computing", + "name": "physical computing", "organizationCount": 1, - "projectCount": 135, + "projectCount": 44, "years": [ 2025, 2024, @@ -9750,10 +10304,10 @@ ] }, { - "slug": "brain-imaging", - "name": "brain imaging", + "slug": "coprocessing", + "name": "coprocessing", "organizationCount": 1, - "projectCount": 211, + "projectCount": 44, "years": [ 2025, 2024, @@ -9768,10 +10322,10 @@ ] }, { - "slug": "brain-modeling", - "name": "brain modeling", + "slug": "interfaces", + "name": "interfaces", "organizationCount": 1, - "projectCount": 211, + "projectCount": 44, "years": [ 2025, 2024, @@ -9786,10 +10340,10 @@ ] }, { - "slug": "brain-modelling", - "name": "brain modelling", + "slug": "process-automation", + "name": "process automation", "organizationCount": 1, - "projectCount": 211, + "projectCount": 44, "years": [ 2025, 2024, @@ -9804,10 +10358,10 @@ ] }, { - "slug": "brain-simulation", - "name": "brain simulation", + "slug": "personal-server", + "name": "Personal Server", "organizationCount": 1, - "projectCount": 211, + "projectCount": 44, "years": [ 2025, 2024, @@ -9822,130 +10376,102 @@ ] }, { - "slug": "bsd", - "name": "bsd", + "slug": "scalability", + "name": "scalability", "organizationCount": 1, - "projectCount": 38, + "projectCount": 19, "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, - 2020, - 2019, 2018, 2017, 2016 ] }, { - "slug": "bus", - "name": "bus", + "slug": "communication-system", + "name": "communication system", "organizationCount": 1, - "projectCount": 10, + "projectCount": 19, "years": [ - 2025, - 2024 + 2018, + 2017, + 2016 ] }, { - "slug": "c-c", - "name": "c- c+", + "slug": "clustering", + "name": "clustering", "organizationCount": 1, - "projectCount": 70, + "projectCount": 19, "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, - 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "c-development", - "name": "c++ development", - "organizationCount": 1, - "projectCount": 41, + "slug": "cross-desktop", + "name": "cross desktop", + "organizationCount": 1, + "projectCount": 5, "years": [ - 2021, - 2020, - 2019, 2018, 2017 ] }, { - "slug": "c-libraries-c-standard", - "name": "c++ libraries c++ standard", + "slug": "digital-rights", + "name": "digital rights", "organizationCount": 1, - "projectCount": 41, + "projectCount": 20, "years": [ - 2021, - 2020, 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "c-standard", - "name": "c++ standard", + "slug": "censorship", + "name": "censorship", "organizationCount": 1, - "projectCount": 41, + "projectCount": 20, "years": [ - 2021, - 2020, 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "c-standardizaion", - "name": "c++ standardizaion", + "slug": "law-and-policy", + "name": "law and policy", "organizationCount": 1, - "projectCount": 38, + "projectCount": 20, "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, - 2020, + 2019, 2018, 2017, 2016 ] }, { - "slug": "c-standardization", - "name": "c++ standardization", + "slug": "internet-access", + "name": "internet access", "organizationCount": 1, - "projectCount": 41, + "projectCount": 20, "years": [ - 2021, - 2020, 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "cad-cam-cae", - "name": "cad/cam/cae", + "slug": "security-and-privacy", + "name": "security and privacy", "organizationCount": 1, - "projectCount": 73, + "projectCount": 20, "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, - 2020, 2019, 2018, 2017, @@ -9953,56 +10479,73 @@ ] }, { - "slug": "callibration", - "name": "callibration", + "slug": "law", + "name": "law", "organizationCount": 1, "projectCount": 20, "years": [ - 2022, - 2021, 2019, - 2018 + 2018, + 2017, + 2016 ] }, { - "slug": "cam", - "name": "CAM", + "slug": "internet-censorship", + "name": "internet censorship", "organizationCount": 1, - "projectCount": 8, + "projectCount": 20, "years": [ - 2025, - 2024, - 2023 + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "cancer-informatics", - "name": "cancer informatics", + "slug": "physiology", + "name": "physiology", "organizationCount": 1, - "projectCount": 9, + "projectCount": 2, "years": [ - 2018, - 2017, - 2016 + 2020 ] }, { - "slug": "cars", - "name": "cars", + "slug": "pharmacological-modeling", + "name": "pharmacological modeling", + "organizationCount": 1, + "projectCount": 2, + "years": [ + 2020 + ] + }, + { + "slug": "life-sciences", + "name": "life sciences", "organizationCount": 1, "projectCount": 3, + "years": [ + 2016 + ] + }, + { + "slug": "data-fusion", + "name": "data fusion", + "organizationCount": 1, + "projectCount": 9, "years": [ 2019, - 2018, - 2017 + 2016 ] }, { - "slug": "cartography", - "name": "cartography", + "slug": "artist-tools", + "name": "artist tools", "organizationCount": 1, - "projectCount": 101, + "projectCount": 64, "years": [ + 2026, 2025, 2024, 2023, @@ -10016,20 +10559,37 @@ ] }, { - "slug": "cats", - "name": "cats", + "slug": "3d-tools", + "name": "3d tools", "organizationCount": 1, - "projectCount": 2, + "projectCount": 64, "years": [ - 2025 + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "censorship", - "name": "censorship", + "slug": "3d-animation", + "name": "3d animation", "organizationCount": 1, - "projectCount": 20, + "projectCount": 64, "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, 2019, 2018, 2017, @@ -10037,54 +10597,46 @@ ] }, { - "slug": "ceph", - "name": "ceph", + "slug": "interpreters", + "name": "interpreters", "organizationCount": 1, - "projectCount": 20, + "projectCount": 0, "years": [ - 2022, - 2021, - 2019, - 2018 + 2026 ] }, { - "slug": "cfc", - "name": "cfc", + "slug": "c-development", + "name": "c++ development", "organizationCount": 1, - "projectCount": 52, + "projectCount": 41, "years": [ - 2022, 2021, 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "charity", - "name": "charity", + "slug": "c-standardization", + "name": "c++ standardization", "organizationCount": 1, - "projectCount": 31, + "projectCount": 41, "years": [ 2021, 2020, 2019, - 2018 + 2018, + 2017 ] }, { - "slug": "chat-platform", - "name": "Chat platform", + "slug": "c-libraries-c-standard", + "name": "c++ libraries c++ standard", "organizationCount": 1, - "projectCount": 103, + "projectCount": 41, "years": [ - 2025, - 2024, - 2023, - 2022, 2021, 2020, 2019, @@ -10093,15 +10645,11 @@ ] }, { - "slug": "chatbot", - "name": "chatbot", + "slug": "peer-reviewed-libraries", + "name": "peer-reviewed libraries", "organizationCount": 1, - "projectCount": 103, + "projectCount": 41, "years": [ - 2025, - 2024, - 2023, - 2022, 2021, 2020, 2019, @@ -10110,117 +10658,93 @@ ] }, { - "slug": "checkpoint-restore", - "name": "checkpoint-restore", + "slug": "c-standard", + "name": "c++ standard", "organizationCount": 1, - "projectCount": 18, + "projectCount": 41, "years": [ - 2025, - 2024, - 2023, - 2022, 2021, 2020, - 2019 + 2019, + 2018, + 2017 ] }, { - "slug": "chiplets", - "name": "chiplets", + "slug": "future-internet-architecture", + "name": "future internet architecture", "organizationCount": 1, - "projectCount": 12, + "projectCount": 8, "years": [ - 2024, - 2023, - 2022 + 2018, + 2017, + 2016 ] }, { - "slug": "ci", - "name": "ci", + "slug": "ray-tracing", + "name": "ray tracing", "organizationCount": 1, - "projectCount": 10, + "projectCount": 73, "years": [ + 2026, 2025, 2024, 2023, 2022, 2021, - 2020 + 2020, + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "cinematography", - "name": "cinematography", + "slug": "graphics-user-interface", + "name": "graphics user interface", "organizationCount": 1, - "projectCount": 18, + "projectCount": 73, "years": [ + 2026, + 2025, + 2024, + 2023, 2022, 2021, 2020, 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "circumvention", - "name": "Circumvention", + "slug": "software-visualization", + "name": "software visualization", "organizationCount": 1, - "projectCount": 2, + "projectCount": 73, "years": [ + 2026, + 2025, + 2024, + 2023, 2022, - 2018 - ] - }, - { - "slug": "civic", - "name": "civic", - "organizationCount": 1, - "projectCount": 1, - "years": [ - 2018, - 2017 - ] - }, - { - "slug": "civic-technology", - "name": "civic technology", - "organizationCount": 1, - "projectCount": 22, - "years": [ 2021, 2020, 2019, 2018, + 2017, 2016 ] }, { - "slug": "climate", - "name": "Climate", - "organizationCount": 1, - "projectCount": 10, - "years": [ - 2025, - 2024 - ] - }, - { - "slug": "climate-monitoring", - "name": "climate monitoring", - "organizationCount": 1, - "projectCount": 3, - "years": [ - 2022 - ] - }, - { - "slug": "climate-science", - "name": "climate science", + "slug": "solid-geometry", + "name": "solid geometry", "organizationCount": 1, - "projectCount": 30, + "projectCount": 73, "years": [ + 2026, 2025, 2024, 2023, @@ -10229,15 +10753,17 @@ 2020, 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "clinical", - "name": "clinical", + "slug": "cad-cam-cae", + "name": "cad/cam/cae", "organizationCount": 1, - "projectCount": 94, + "projectCount": 73, "years": [ + 2026, 2025, 2024, 2023, @@ -10251,11 +10777,12 @@ ] }, { - "slug": "clinics", - "name": "clinics", + "slug": "3d-cad-geometry", + "name": "3d cad geometry", "organizationCount": 1, - "projectCount": 94, + "projectCount": 73, "years": [ + 2026, 2025, 2024, 2023, @@ -10269,40 +10796,36 @@ ] }, { - "slug": "clojure", - "name": "clojure", + "slug": "solid-modeling", + "name": "solid modeling", "organizationCount": 1, - "projectCount": 78, + "projectCount": 73, "years": [ + 2026, 2025, 2024, + 2023, 2022, 2021, 2020, 2019, 2018, + 2017, 2016 ] }, { - "slug": "cloud-native-infrastructure", - "name": "cloud native infrastructure", - "organizationCount": 1, - "projectCount": 2, - "years": [ - 2025 - ] - }, - { - "slug": "cloud-native-java", - "name": "cloud native java", + "slug": "real-time-computer-graphics", + "name": "real-time computer graphics", "organizationCount": 1, - "projectCount": 68, + "projectCount": 73, "years": [ + 2026, 2025, 2024, 2023, 2022, + 2021, 2020, 2019, 2018, @@ -10311,11 +10834,12 @@ ] }, { - "slug": "cloud-security", - "name": "cloud security", + "slug": "conversion-standards", + "name": "conversion standards", "organizationCount": 1, - "projectCount": 102, + "projectCount": 73, "years": [ + 2026, 2025, 2024, 2023, @@ -10324,199 +10848,183 @@ 2020, 2019, 2018, + 2017, 2016 ] }, { - "slug": "cloud-storage", - "name": "cloud storage", + "slug": "deep-neural-net-rendering", + "name": "deep neural net rendering", "organizationCount": 1, - "projectCount": 31, + "projectCount": 73, "years": [ + 2026, 2025, 2024, 2023, 2022, 2021, 2020, + 2019, + 2018, 2017, 2016 ] }, { - "slug": "cloud-with-google-computer-engine", - "name": "cloud with google computer engine", + "slug": "mlearning", + "name": "mlearning", "organizationCount": 1, - "projectCount": 149, + "projectCount": 4, "years": [ - 2023, - 2022, - 2021, - 2020, - 2019, - 2018, - 2017, 2016 ] }, { - "slug": "cloudnative", - "name": "CloudNative", + "slug": "mobile-app", + "name": "mobile app", "organizationCount": 1, - "projectCount": 3, + "projectCount": 4, "years": [ - 2022 + 2016 ] }, { - "slug": "cluster", - "name": "cluster", + "slug": "compilation", + "name": "compilation", "organizationCount": 1, - "projectCount": 75, + "projectCount": 1, "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, - 2020, - 2019, - 2017, - 2016 + 2019 ] }, { - "slug": "clustering", - "name": "clustering", + "slug": "land-rights", + "name": "land rights", "organizationCount": 1, - "projectCount": 19, + "projectCount": 1, "years": [ - 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "co-speech-gesture", - "name": "co-speech gesture", + "slug": "microscopy", + "name": "microscopy", "organizationCount": 1, - "projectCount": 88, + "projectCount": 13, "years": [ 2024, 2023, - 2022, 2021, - 2020, - 2019, - 2018, - 2017, - 2016 + 2020 ] }, { - "slug": "code-analysis-and-spdx", - "name": "code analysis and spdx", + "slug": "dicom-pathology", + "name": "dicom pathology", "organizationCount": 1, - "projectCount": 32, + "projectCount": 13, "years": [ - 2025, 2024, 2023, - 2022, 2021, - 2020, - 2019, - 2017 + 2020 ] }, { - "slug": "code-conversion", - "name": "code conversion", + "slug": "population-genetics", + "name": "population genetics", "organizationCount": 1, - "projectCount": 3, + "projectCount": 15, "years": [ - 2023 + 2020, + 2019, + 2018, + 2016 ] }, { - "slug": "code-quality", - "name": "code quality", + "slug": "next-generation-sequencing", + "name": "next-generation sequencing", "organizationCount": 1, - "projectCount": 3, + "projectCount": 15, "years": [ + 2020, + 2019, 2018, - 2017 + 2016 ] }, { - "slug": "code-review-tool", - "name": "code review tool", + "slug": "authorization", + "name": "authorization", "organizationCount": 1, - "projectCount": 21, + "projectCount": 22, "years": [ - 2025, - 2024, - 2023, 2022, 2021, - 2020, - 2017 + 2020 ] }, { - "slug": "code-scan-and-matching", - "name": "code scan and matching", + "slug": "iam", + "name": "IAM", "organizationCount": 1, - "projectCount": 32, + "projectCount": 22, "years": [ - 2025, - 2024, - 2023, 2022, 2021, - 2020, - 2019, - 2017 + 2020 ] }, { - "slug": "codec", - "name": "Codec", + "slug": "authentication", + "name": "Authentication", "organizationCount": 1, - "projectCount": 12, + "projectCount": 22, "years": [ 2022, 2021, - 2020, - 2019, - 2018, - 2017 + 2020 ] }, { - "slug": "codecs", - "name": "codecs", + "slug": "automated-program-repair", + "name": "automated program repair", "organizationCount": 1, - "projectCount": 92, + "projectCount": 2, "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, - 2020, - 2019, - 2018, - 2017, - 2016 + 2021 ] }, { - "slug": "codeuino", - "name": "codeuino", + "slug": "sepsis-prediction", + "name": "sepsis prediction", "organizationCount": 1, - "projectCount": 52, + "projectCount": 3, + "years": [ + 2019 + ] + }, + { + "slug": "sepsis-detection", + "name": "sepsis detection", + "organizationCount": 1, + "projectCount": 3, + "years": [ + 2019 + ] + }, + { + "slug": "media-analysis", + "name": "media analysis", + "organizationCount": 1, + "projectCount": 80, "years": [ + 2026, + 2025, + 2024, + 2023, 2022, 2021, 2020, @@ -10527,26 +11035,31 @@ ] }, { - "slug": "coding-conventions", - "name": "coding conventions", + "slug": "decoder", + "name": "decoder", "organizationCount": 1, - "projectCount": 21, + "projectCount": 80, "years": [ + 2026, 2025, 2024, 2023, 2022, 2021, 2020, - 2017 + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "cognitive-radio", - "name": "cognitive radio", + "slug": "television", + "name": "television", "organizationCount": 1, - "projectCount": 18, + "projectCount": 80, "years": [ + 2026, 2025, 2024, 2023, @@ -10560,11 +11073,13 @@ ] }, { - "slug": "cognitive-science", - "name": "cognitive science", + "slug": "movies", + "name": "movies", "organizationCount": 1, - "projectCount": 88, + "projectCount": 80, "years": [ + 2026, + 2025, 2024, 2023, 2022, @@ -10577,21 +11092,31 @@ ] }, { - "slug": "color-management", - "name": "color management", + "slug": "accesibility", + "name": "accesibility", "organizationCount": 1, - "projectCount": 3, + "projectCount": 80, "years": [ + 2026, + 2025, + 2024, + 2023, 2022, - 2020 + 2021, + 2020, + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "combinatorics", - "name": "combinatorics", + "slug": "bittorrent", + "name": "bittorrent", "organizationCount": 1, - "projectCount": 55, + "projectCount": 80, "years": [ + 2026, 2025, 2024, 2023, @@ -10605,185 +11130,192 @@ ] }, { - "slug": "communication-protocols", - "name": "Communication Protocols", + "slug": "peer-to-peer", + "name": "peer to peer", "organizationCount": 1, - "projectCount": 7, + "projectCount": 80, "years": [ + 2026, + 2025, 2024, + 2023, 2022, - 2021 + 2021, + 2020, + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "communication-system", - "name": "communication system", + "slug": "parallel", + "name": "parallel", "organizationCount": 1, - "projectCount": 19, + "projectCount": 3, "years": [ - 2018, - 2017, 2016 ] }, { - "slug": "community-architecture", - "name": "community architecture", + "slug": "evented", + "name": "evented", "organizationCount": 1, - "projectCount": 27, + "projectCount": 3, "years": [ - 2025, - 2020, - 2019, - 2018, - 2017, 2016 ] }, { - "slug": "community-building", - "name": "community building", + "slug": "actor-model", + "name": "actor model", "organizationCount": 1, - "projectCount": 29, + "projectCount": 3, "years": [ - 2025, - 2022, - 2021, - 2020, - 2019, - 2018 + 2016 ] }, { - "slug": "community-health", - "name": "community health", + "slug": "opendata", + "name": "opendata", "organizationCount": 1, - "projectCount": 29, + "projectCount": 20, "years": [ - 2025, 2022, 2021, - 2020, 2019, 2018 ] }, { - "slug": "community-science", - "name": "community science", + "slug": "ceph", + "name": "ceph", "organizationCount": 1, - "projectCount": 10, + "projectCount": 20, "years": [ 2022, 2021, - 2020 + 2019, + 2018 ] }, { - "slug": "compatibility", - "name": "compatibility", + "slug": "generative-text", + "name": "generative text", "organizationCount": 1, - "projectCount": 4, + "projectCount": 20, "years": [ - 2020, + 2022, + 2021, 2019, - 2018, - 2017, - 2016 + 2018 ] }, { - "slug": "compilation", - "name": "compilation", + "slug": "sensors", + "name": "sensors", "organizationCount": 1, - "projectCount": 1, + "projectCount": 20, "years": [ - 2019 + 2022, + 2021, + 2019, + 2018 ] }, { - "slug": "compiler-api", - "name": "compiler api", + "slug": "callibration", + "name": "callibration", "organizationCount": 1, - "projectCount": 122, + "projectCount": 20, "years": [ - 2025, - 2024, - 2023, 2022, 2021, - 2020, 2019, - 2018, - 2017, - 2016 + 2018 ] }, { - "slug": "component-repository", - "name": "component repository", + "slug": "data-meshes", + "name": "Data Meshes", "organizationCount": 1, - "projectCount": 2, + "projectCount": 6, "years": [ - 2025 + 2025, + 2022 ] }, { - "slug": "component-testing", - "name": "Component testing", + "slug": "mlops", + "name": "MLOps", "organizationCount": 1, - "projectCount": 2, + "projectCount": 6, "years": [ - 2024 + 2025, + 2022 ] }, { - "slug": "component-based-development", - "name": "component-based development", + "slug": "network-storage", + "name": "network storage", "organizationCount": 1, - "projectCount": 57, + "projectCount": 31, "years": [ + 2026, + 2025, + 2024, + 2023, 2022, 2021, 2020, - 2019, - 2018, 2017, 2016 ] }, { - "slug": "components", - "name": "components", + "slug": "cloud-storage", + "name": "cloud storage", "organizationCount": 1, - "projectCount": 3, + "projectCount": 31, "years": [ - 2017 + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2017, + 2016 ] }, { - "slug": "composing", - "name": "composing", + "slug": "software-defined-storage", + "name": "software defined storage", "organizationCount": 1, - "projectCount": 24, + "projectCount": 31, "years": [ + 2026, + 2025, 2024, 2023, 2022, 2021, 2020, - 2019, - 2018, 2017, 2016 ] }, { - "slug": "compress", - "name": "compress", + "slug": "particle-physics", + "name": "particle physics", "organizationCount": 1, - "projectCount": 12, + "projectCount": 214, "years": [ + 2026, + 2025, + 2024, + 2023, 2022, 2021, 2020, @@ -10793,11 +11325,12 @@ ] }, { - "slug": "compressio", - "name": "compressio", + "slug": "high-energy-physics", + "name": "high-energy physics", "organizationCount": 1, - "projectCount": 49, + "projectCount": 214, "years": [ + 2026, 2025, 2024, 2023, @@ -10806,51 +11339,37 @@ 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "computation-graph", - "name": "computation graph", + "slug": "algorithmics", + "name": "algorithmics", "organizationCount": 1, - "projectCount": 3, - "years": [ - 2023 - ] - }, - { - "slug": "computational-fluid-dynamics", - "name": "Computational Fluid Dynamics", - "organizationCount": 1, - "projectCount": 7, - "years": [ - 2025, - 2024 - ] - }, - { - "slug": "computational-mechanics", - "name": "computational mechanics", - "organizationCount": 1, - "projectCount": 13, + "projectCount": 214, "years": [ + 2026, 2025, 2024, + 2023, 2022, 2021, 2020, 2019, - 2017, - 2016 + 2018, + 2017 ] }, { - "slug": "computational-photography", - "name": "computational photography", + "slug": "big-data-science", + "name": "big data science", "organizationCount": 1, - "projectCount": 18, + "projectCount": 214, "years": [ + 2026, + 2025, + 2024, + 2023, 2022, 2021, 2020, @@ -10860,21 +11379,12 @@ ] }, { - "slug": "computational-science", - "name": "Computational Science", - "organizationCount": 1, - "projectCount": 7, - "years": [ - 2025, - 2024 - ] - }, - { - "slug": "computer-algebra", - "name": "computer algebra", + "slug": "performance-optimisation", + "name": "Performance Optimisation", "organizationCount": 1, - "projectCount": 63, + "projectCount": 214, "years": [ + 2026, 2025, 2024, 2023, @@ -10883,25 +11393,30 @@ 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "computer-architecture", - "name": "computer architecture", + "slug": "simulation-software", + "name": "simulation software", "organizationCount": 1, - "projectCount": 2, + "projectCount": 10, "years": [ 2016 ] }, { - "slug": "computer-graphics", - "name": "computer graphics", + "slug": "mesh-processing", + "name": "mesh processing", "organizationCount": 1, - "projectCount": 11, + "projectCount": 58, "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, 2020, 2019, 2018, @@ -10909,64 +11424,66 @@ ] }, { - "slug": "computer-aided-translation", - "name": "computer-aided translation", + "slug": "arrangement", + "name": "arrangement", "organizationCount": 1, - "projectCount": 67, + "projectCount": 58, "years": [ + 2026, + 2025, 2024, 2023, + 2022, 2021, 2020, 2019, 2018, - 2017, - 2016 - ] - }, - { - "slug": "computer-assisted-translation", - "name": "computer-assisted translation", - "organizationCount": 1, - "projectCount": 3, - "years": [ - 2021 + 2017 ] }, { - "slug": "conference", - "name": "conference", + "slug": "geometry-processing", + "name": "geometry processing", "organizationCount": 1, - "projectCount": 4, + "projectCount": 58, "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, 2019, - 2017, - 2016 + 2018, + 2017 ] }, { - "slug": "conferences", - "name": "conferences", + "slug": "triangulaton", + "name": "triangulaton", "organizationCount": 1, - "projectCount": 52, + "projectCount": 58, "years": [ + 2026, 2025, 2024, 2023, 2022, 2021, 2020, + 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "configu", - "name": "configu", + "slug": "webhook", + "name": "webhook", "organizationCount": 1, - "projectCount": 26, + "projectCount": 58, "years": [ + 2026, 2025, 2024, 2023, @@ -10979,317 +11496,308 @@ ] }, { - "slug": "contacts-calendar-sync", - "name": "contacts&calendar sync", + "slug": "point-set-processing", + "name": "point set processing", "organizationCount": 1, - "projectCount": 22, + "projectCount": 58, "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, 2021, 2020, 2019, 2018, - 2016 + 2017 ] }, { - "slug": "containers-kubernetes", - "name": "containers kubernetes", + "slug": "triangulation", + "name": "triangulation", "organizationCount": 1, - "projectCount": 52, + "projectCount": 58, "years": [ + 2026, 2025, 2024, 2023, 2022, 2021, 2020, + 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "contract-management", - "name": "contract management", + "slug": "sustainability", + "name": "sustainability", "organizationCount": 1, - "projectCount": 13, + "projectCount": 29, "years": [ 2025, - 2024, + 2022, 2021, - 2020 + 2020, + 2019, + 2018 ] }, { - "slug": "contributor-activity", - "name": "contributor activity", + "slug": "community-health", + "name": "community health", "organizationCount": 1, - "projectCount": 27, + "projectCount": 29, "years": [ 2025, + 2022, + 2021, 2020, 2019, - 2018, - 2017, - 2016 + 2018 ] }, { - "slug": "control", - "name": "Control", + "slug": "diversity-and-inclusion", + "name": "diversity and inclusion", "organizationCount": 1, - "projectCount": 46, + "projectCount": 29, "years": [ 2025, - 2024, - 2023, 2022, 2021, 2020, 2019, - 2018, - 2016 + 2018 ] }, { - "slug": "conversational", - "name": "conversational", + "slug": "diversity-equity-and-inclusion", + "name": "Diversity Equity and Inclusion", "organizationCount": 1, - "projectCount": 3, + "projectCount": 29, "years": [ - 2021 + 2025, + 2022, + 2021, + 2020, + 2019, + 2018 ] }, { - "slug": "conversion-standards", - "name": "conversion standards", + "slug": "open-source-software-metrics", + "name": "open source software metrics", "organizationCount": 1, - "projectCount": 73, + "projectCount": 29, "years": [ 2025, - 2024, - 2023, 2022, 2021, 2020, 2019, - 2018, - 2017, - 2016 + 2018 ] }, { - "slug": "convex-optimization", - "name": "convex optimization", + "slug": "software-sustainability", + "name": "software sustainability", "organizationCount": 1, - "projectCount": 1, + "projectCount": 29, "years": [ - 2016 + 2025, + 2022, + 2021, + 2020, + 2019, + 2018 ] }, { - "slug": "coprocessing", - "name": "coprocessing", + "slug": "community-building", + "name": "community building", "organizationCount": 1, - "projectCount": 44, + "projectCount": 29, "years": [ 2025, - 2024, - 2023, 2022, 2021, 2020, 2019, - 2018, - 2017, - 2016 + 2018 ] }, { - "slug": "copyleft", - "name": "copyleft", + "slug": "security-and-software-bill-of-materials", + "name": "security and software bill of materials", "organizationCount": 1, - "projectCount": 14, + "projectCount": 29, "years": [ - 2024, - 2023, + 2025, + 2022, + 2021, 2020, - 2019 + 2019, + 2018 ] }, { - "slug": "copyright", - "name": "copyright", + "slug": "pragrammer-productivity", + "name": "pragrammer productivity", "organizationCount": 1, - "projectCount": 32, + "projectCount": 17, "years": [ 2025, - 2024, - 2023, - 2022, - 2021, 2020, 2019, + 2018, 2017 ] }, { - "slug": "corpus-annotation", - "name": "corpus annotation", + "slug": "type-systems", + "name": "type systems", "organizationCount": 1, - "projectCount": 2, - "years": [ - 2016 - ] - }, - { - "slug": "counter-censorship", - "name": "counter-censorship", - "organizationCount": 1, - "projectCount": 19, + "projectCount": 17, "years": [ 2025, - 2023, - 2022, - 2017, - 2016 - ] - }, - { - "slug": "crawling", - "name": "crawling", - "organizationCount": 1, - "projectCount": 2, - "years": [ + 2020, + 2019, + 2018, 2017 ] }, { - "slug": "creative-coding", - "name": "creative coding", + "slug": "code-review-tool", + "name": "code review tool", "organizationCount": 1, - "projectCount": 87, + "projectCount": 21, "years": [ + 2026, 2025, + 2024, 2023, 2022, 2021, 2020, - 2019, - 2018, 2017 ] }, { - "slug": "creative-commons", - "name": "creative commons", + "slug": "coding-conventions", + "name": "coding conventions", "organizationCount": 1, - "projectCount": 14, + "projectCount": 21, "years": [ + 2026, + 2025, 2024, 2023, + 2022, + 2021, 2020, - 2019 + 2017 ] }, { - "slug": "creativity-tools", - "name": "creativity tools", + "slug": "ip-cores", + "name": "IP cores", "organizationCount": 1, - "projectCount": 84, + "projectCount": 12, "years": [ - 2025, 2024, 2023, - 2022, - 2021, - 2020, - 2019, - 2018, - 2017, - 2016 + 2022 ] }, { - "slug": "crm", - "name": "crm", + "slug": "hdl", + "name": "HDL", "organizationCount": 1, - "projectCount": 22, + "projectCount": 12, "years": [ - 2021, - 2020, - 2019, - 2018, - 2016 + 2024, + 2023, + 2022 ] }, { - "slug": "cross-desktop", - "name": "cross desktop", + "slug": "chiplets", + "name": "chiplets", "organizationCount": 1, - "projectCount": 5, + "projectCount": 12, "years": [ - 2018, - 2017 + 2024, + 2023, + 2022 ] }, { - "slug": "cs-education", - "name": "cs education", + "slug": "pedagogy", + "name": "pedagogy", "organizationCount": 1, - "projectCount": 10, + "projectCount": 32, "years": [ + 2026, 2025, 2024, 2023, 2022, - 2018 + 2021, + 2020, + 2019 ] }, { - "slug": "cubesat", - "name": "cubesat", + "slug": "digital-logic-design", + "name": "digital logic design", "organizationCount": 1, - "projectCount": 7, + "projectCount": 32, "years": [ + 2026, + 2025, 2024, + 2023, 2022, - 2021 + 2021, + 2020, + 2019 ] }, { - "slug": "culture", - "name": "culture", + "slug": "crm", + "name": "crm", "organizationCount": 1, - "projectCount": 30, + "projectCount": 22, "years": [ - 2022, 2021, 2020, 2019, - 2018 + 2018, + 2016 ] }, { - "slug": "customization", - "name": "customization", + "slug": "civic-technology", + "name": "civic technology", "organizationCount": 1, - "projectCount": 5, + "projectCount": 22, "years": [ - 2022, - 2021 + 2021, + 2020, + 2019, + 2018, + 2016 ] }, { - "slug": "cyber-security", - "name": "cyber security", + "slug": "fundraising", + "name": "fundraising", "organizationCount": 1, - "projectCount": 102, + "projectCount": 22, "years": [ - 2025, - 2024, - 2023, - 2022, 2021, 2020, 2019, @@ -11298,138 +11806,148 @@ ] }, { - "slug": "data-cataloging", - "name": "Data cataloging", + "slug": "events-management", + "name": "events management", "organizationCount": 1, - "projectCount": 2, + "projectCount": 22, "years": [ - 2022 + 2021, + 2020, + 2019, + 2018, + 2016 ] }, { - "slug": "data-fusion", - "name": "data fusion", + "slug": "membership-management", + "name": "membership management", "organizationCount": 1, - "projectCount": 9, + "projectCount": 22, "years": [ + 2021, + 2020, 2019, + 2018, 2016 ] }, { - "slug": "data-infrastructure", - "name": "Data Infrastructure", + "slug": "contacts-calendar-sync", + "name": "contacts&calendar sync", "organizationCount": 1, - "projectCount": 1, + "projectCount": 22, "years": [ - 2024 + 2021, + 2020, + 2019, + 2018, + 2016 ] }, { - "slug": "data-meshes", - "name": "Data Meshes", + "slug": "machine", + "name": "machine", "organizationCount": 1, - "projectCount": 6, + "projectCount": 7, "years": [ - 2025, - 2022 + 2018, + 2017, + 2016 ] }, { - "slug": "data-portal", - "name": "data portal", + "slug": "machine-trans", + "name": "machine trans", "organizationCount": 1, - "projectCount": 6, + "projectCount": 7, "years": [ + 2018, 2017, 2016 ] }, { - "slug": "data-refinement", - "name": "data refinement", + "slug": "text-analytics", + "name": "text analytics", "organizationCount": 1, - "projectCount": 1, + "projectCount": 10, "years": [ - 2016 + 2019, + 2018, + 2017 ] }, { - "slug": "data-streaming", - "name": "data streaming", + "slug": "text-generation", + "name": "text generation", "organizationCount": 1, - "projectCount": 2, + "projectCount": 10, "years": [ - 2020 + 2019, + 2018, + 2017 ] }, { - "slug": "data-validation", - "name": "data validation", + "slug": "tensorflow", + "name": "tensorflow", "organizationCount": 1, - "projectCount": 14, + "projectCount": 28, "years": [ 2025, - 2024 + 2024, + 2023, + 2021, + 2020, + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "data-vizualisation", - "name": "data vizualisation", + "slug": "django", + "name": "django", "organizationCount": 1, - "projectCount": 15, + "projectCount": 28, "years": [ + 2025, 2024, 2023, - 2022, 2021, 2020, 2019, - 2018 + 2018, + 2017, + 2016 ] }, { - "slug": "data-collection", - "name": "data-collection", + "slug": "angularjs", + "name": "angularjs", "organizationCount": 1, - "projectCount": 30, + "projectCount": 28, "years": [ - 2022, + 2025, + 2024, + 2023, 2021, 2020, 2019, - 2018 + 2018, + 2017, + 2016 ] }, { - "slug": "data-intensive-science", - "name": "data-intensive science", + "slug": "react", + "name": "react", "organizationCount": 1, - "projectCount": 4, - "years": [ - 2022 - ] - }, - { - "slug": "data-wrangling", - "name": "data-wrangling", - "organizationCount": 1, - "projectCount": 3, - "years": [ - 2024, - 2020 - ] - }, - { - "slug": "database-engines", - "name": "Database Engines", - "organizationCount": 1, - "projectCount": 39, + "projectCount": 28, "years": [ 2025, 2024, 2023, - 2022, 2021, 2020, 2019, @@ -11439,64 +11957,53 @@ ] }, { - "slug": "database-optimization", - "name": "database optimization", + "slug": "speech-recognition", + "name": "speech recognition", "organizationCount": 1, - "projectCount": 3, + "projectCount": 11, "years": [ - 2020, - 2019 + 2017 ] }, { - "slug": "database-services", - "name": "database services", + "slug": "pronunciation", + "name": "pronunciation", "organizationCount": 1, - "projectCount": 1, + "projectCount": 11, "years": [ - 2019 + 2017 ] }, { - "slug": "database-systems", - "name": "Database systems", + "slug": "language-server", + "name": "language server", "organizationCount": 1, - "projectCount": 6, + "projectCount": 37, "years": [ - 2025, - 2023 + 2021, + 2019, + 2018, + 2017 ] }, { - "slug": "dataviz", - "name": "dataviz", + "slug": "dependency-management", + "name": "dependency management", "organizationCount": 1, - "projectCount": 119, + "projectCount": 37, "years": [ - 2025, - 2024, - 2023, - 2022, 2021, - 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "ddd", - "name": "ddd", + "slug": "biological-networks", + "name": "biological networks", "organizationCount": 1, - "projectCount": 248, + "projectCount": 18, "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, - 2020, 2019, 2018, 2017, @@ -11504,343 +12011,348 @@ ] }, { - "slug": "debian-ci", - "name": "debian-ci", + "slug": "omics-data", + "name": "omics data", "organizationCount": 1, - "projectCount": 78, + "projectCount": 18, "years": [ - 2025, - 2024, - 2022, - 2021, - 2020, 2019, 2018, + 2017, 2016 ] }, { - "slug": "debuggers", - "name": "debuggers", + "slug": "science-and-enineering", + "name": "science and enineering", "organizationCount": 1, - "projectCount": 122, + "projectCount": 10, "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, - 2020, - 2019, - 2018, - 2017, 2016 ] }, { - "slug": "decentralisation", - "name": "decentralisation", + "slug": "mesh-generation", + "name": "mesh generation", "organizationCount": 1, - "projectCount": 29, + "projectCount": 10, "years": [ - 2022, - 2021, - 2020, - 2019, - 2018, - 2017, 2016 ] }, { - "slug": "decentralised", - "name": "decentralised", + "slug": "usabilty", + "name": "usabilty", "organizationCount": 1, - "projectCount": 29, + "projectCount": 4, + "years": [ + 2018, + 2017 + ] + }, + { + "slug": "boot-loader", + "name": "boot loader", + "organizationCount": 1, + "projectCount": 11, "years": [ + 2023, 2022, - 2021, 2020, 2019, - 2018, - 2017, 2016 ] }, { - "slug": "deception", - "name": "deception", + "slug": "copyleft", + "name": "copyleft", "organizationCount": 1, - "projectCount": 101, + "projectCount": 14, "years": [ - 2025, 2024, 2023, - 2022, - 2021, 2020, - 2019, - 2018, - 2017, - 2016 + 2019 ] }, { - "slug": "declarative", - "name": "declarative", + "slug": "creative-commons", + "name": "creative commons", "organizationCount": 1, - "projectCount": 3, + "projectCount": 14, "years": [ - 2024 + 2024, + 2023, + 2020, + 2019 ] }, { - "slug": "decoder", - "name": "decoder", + "slug": "save-restore", + "name": "save/restore", "organizationCount": 1, - "projectCount": 80, + "projectCount": 18, "years": [ + 2026, 2025, 2024, 2023, 2022, 2021, 2020, - 2019, - 2018, - 2017, - 2016 + 2019 ] }, { - "slug": "deep-neural-net-rendering", - "name": "deep neural net rendering", + "slug": "load-balancing", + "name": "load-balancing", "organizationCount": 1, - "projectCount": 73, + "projectCount": 18, "years": [ + 2026, 2025, 2024, 2023, 2022, 2021, 2020, - 2019, - 2018, - 2017, - 2016 + 2019 ] }, { - "slug": "dependency-management", - "name": "dependency management", + "slug": "zero-downtime", + "name": "zero-downtime", "organizationCount": 1, - "projectCount": 37, + "projectCount": 18, "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, 2021, - 2019, - 2018, - 2017 + 2020, + 2019 ] }, { - "slug": "design-system", - "name": "design system", + "slug": "migration", + "name": "migration", "organizationCount": 1, - "projectCount": 2, + "projectCount": 18, "years": [ - 2021 + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2019 ] }, { - "slug": "deskstop", - "name": "deskstop", + "slug": "live-migration", + "name": "live migration", "organizationCount": 1, - "projectCount": 167, + "projectCount": 18, "years": [ + 2026, 2025, 2024, 2023, 2022, 2021, 2020, - 2019, - 2018, - 2017, - 2016 + 2019 ] }, { - "slug": "desktop-portals", - "name": "Desktop Portals", + "slug": "snapshots", + "name": "snapshots", "organizationCount": 1, - "projectCount": 7, + "projectCount": 18, "years": [ + 2026, 2025, - 2024 + 2024, + 2023, + 2022, + 2021, + 2020, + 2019 ] }, { - "slug": "dev-tool", - "name": "Dev Tool", + "slug": "checkpoint-restore", + "name": "checkpoint-restore", "organizationCount": 1, - "projectCount": 11, + "projectCount": 18, "years": [ + 2026, 2025, 2024, - 2023 + 2023, + 2022, + 2021, + 2020, + 2019 ] }, { - "slug": "dev-ops", - "name": "dev-ops", + "slug": "lod", + "name": "lod", "organizationCount": 1, - "projectCount": 4, + "projectCount": 30, "years": [ + 2026, + 2022, + 2021, 2020, - 2019 + 2019, + 2018 ] }, { - "slug": "developer", - "name": "developer", + "slug": "data-collection", + "name": "data-collection", "organizationCount": 1, - "projectCount": 9, + "projectCount": 30, "years": [ + 2026, + 2022, + 2021, + 2020, 2019, - 2018, - 2017 - ] - }, - { - "slug": "developer-tooling", - "name": "developer tooling", - "organizationCount": 1, - "projectCount": 14, - "years": [ - 2025, - 2024 + 2018 ] }, { - "slug": "developing-countries", - "name": "developing countries", + "slug": "web-portal", + "name": "web portal", "organizationCount": 1, - "projectCount": 94, + "projectCount": 30, "years": [ - 2025, - 2024, - 2023, + 2026, 2022, 2021, 2020, 2019, - 2018, - 2017, - 2016 + 2018 ] }, { - "slug": "developing-world", - "name": "developing world", + "slug": "digitization", + "name": "digitization", "organizationCount": 1, - "projectCount": 94, + "projectCount": 30, "years": [ - 2025, - 2024, - 2023, + 2026, 2022, 2021, 2020, 2019, - 2018, - 2017, - 2016 + 2018 ] }, { - "slug": "devices", - "name": "devices", + "slug": "history", + "name": "History", "organizationCount": 1, - "projectCount": 3, + "projectCount": 30, "years": [ - 2022 + 2026, + 2022, + 2021, + 2020, + 2019, + 2018 ] }, { - "slug": "dhcp", - "name": "dhcp", + "slug": "culture", + "name": "culture", "organizationCount": 1, - "projectCount": 3, + "projectCount": 30, "years": [ + 2026, + 2022, + 2021, + 2020, 2019, 2018 ] }, { - "slug": "diagnostic", - "name": "diagnostic", + "slug": "assyriology", + "name": "assyriology", "organizationCount": 1, - "projectCount": 15, + "projectCount": 30, "years": [ + 2026, 2022, 2021, 2020, 2019, - 2018, - 2017, - 2016 + 2018 ] }, { - "slug": "diagnostics", - "name": "diagnostics", + "slug": "convex-optimization", + "name": "convex optimization", "organizationCount": 1, - "projectCount": 3, + "projectCount": 1, "years": [ - 2019, - 2018, - 2017 + 2016 ] }, { - "slug": "dicom-pathology", - "name": "dicom pathology", + "slug": "optimizations", + "name": "optimizations", "organizationCount": 1, - "projectCount": 13, + "projectCount": 11, "years": [ - 2024, - 2023, - 2021, - 2020 + 2026, + 2025, + 2019, + 2016 ] }, { - "slug": "differential-privacy", - "name": "differential privacy", + "slug": "data-infrastructure", + "name": "Data Infrastructure", "organizationCount": 1, - "projectCount": 9, + "projectCount": 1, "years": [ - 2021, - 2020 + 2024 ] }, { - "slug": "digital-arts", - "name": "digital arts", + "slug": "knowledge-extraction", + "name": "knowledge extraction", "organizationCount": 1, - "projectCount": 12, + "projectCount": 61, "years": [ + 2026, 2025, + 2024, 2023, - 2022 + 2022, + 2021, + 2020, + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "digital-design", - "name": "digital design", + "slug": "ontologies", + "name": "ontologies", "organizationCount": 1, - "projectCount": 60, + "projectCount": 61, "years": [ + 2026, 2025, 2024, 2023, @@ -11854,15 +12366,17 @@ ] }, { - "slug": "digital-financial-services", - "name": "digital financial services", + "slug": "largelanguagemodel", + "name": "largelanguagemodel", "organizationCount": 1, - "projectCount": 102, + "projectCount": 61, "years": [ + 2026, 2025, 2024, 2023, 2022, + 2021, 2020, 2019, 2018, @@ -11871,225 +12385,215 @@ ] }, { - "slug": "digital-forensics", - "name": "digital forensics", - "organizationCount": 1, - "projectCount": 0, - "years": [ - 2021 - ] - }, - { - "slug": "digital-hardware-design", - "name": "digital hardware design", + "slug": "android-sdk", + "name": "android-sdk", "organizationCount": 1, - "projectCount": 18, + "projectCount": 78, "years": [ + 2026, + 2025, + 2024, 2022, 2021, 2020, 2019, 2018, - 2017 + 2016 ] }, { - "slug": "digital-imaging", - "name": "digital imaging", + "slug": "clojure", + "name": "clojure", "organizationCount": 1, - "projectCount": 18, + "projectCount": 78, "years": [ + 2026, + 2025, + 2024, 2022, 2021, 2020, 2019, 2018, - 2017 + 2016 ] }, { - "slug": "digital-knowledge", - "name": "digital knowledge", + "slug": "debian-ci", + "name": "debian-ci", "organizationCount": 1, - "projectCount": 4, + "projectCount": 78, "years": [ + 2026, + 2025, + 2024, + 2022, + 2021, + 2020, + 2019, 2018, - 2017 + 2016 ] }, { - "slug": "digital-library", - "name": "digital library", + "slug": "sdr", + "name": "SDR", "organizationCount": 1, - "projectCount": 2, + "projectCount": 78, "years": [ - 2017 + 2026, + 2025, + 2024, + 2022, + 2021, + 2020, + 2019, + 2018, + 2016 ] }, { - "slug": "digital-logic-design", - "name": "digital logic design", + "slug": "autopkgtest", + "name": "autopkgtest", "organizationCount": 1, - "projectCount": 32, + "projectCount": 78, "years": [ + 2026, 2025, 2024, - 2023, 2022, 2021, 2020, - 2019 + 2019, + 2018, + 2016 ] }, { - "slug": "digital-marketing", - "name": "Digital Marketing", + "slug": "raspberrypi-builds", + "name": "raspberrypi_builds", "organizationCount": 1, - "projectCount": 2, + "projectCount": 78, "years": [ - 2024 + 2026, + 2025, + 2024, + 2022, + 2021, + 2020, + 2019, + 2018, + 2016 ] }, { - "slug": "digital-preservation", - "name": "digital preservation", + "slug": "mobian", + "name": "mobian", "organizationCount": 1, - "projectCount": 6, + "projectCount": 78, "years": [ + 2026, + 2025, + 2024, 2022, 2021, - 2019 + 2020, + 2019, + 2018, + 2016 ] }, { - "slug": "digital-public-goods", - "name": "Digital Public Goods", + "slug": "drug-discovery", + "name": "Drug Discovery", "organizationCount": 1, - "projectCount": 9, + "projectCount": 14, "years": [ + 2026, 2025, 2024 ] }, { - "slug": "digital-rights", - "name": "digital rights", + "slug": "conversational", + "name": "conversational", "organizationCount": 1, - "projectCount": 20, + "projectCount": 3, "years": [ - 2019, - 2018, - 2017, - 2016 + 2021 ] }, { - "slug": "digitization", - "name": "digitization", + "slug": "agent", + "name": "agent", "organizationCount": 1, - "projectCount": 30, + "projectCount": 3, "years": [ - 2022, - 2021, - 2020, - 2019, - 2018 - ] - }, - { - "slug": "directx", - "name": "directx", - "organizationCount": 1, - "projectCount": 4, - "years": [ - 2020, - 2019, - 2018, - 2017, - 2016 - ] - }, - { - "slug": "discovery", - "name": "discovery", - "organizationCount": 1, - "projectCount": 4, - "years": [ - 2019, - 2018 + 2021 ] }, { - "slug": "display", - "name": "display", + "slug": "distributed-system", + "name": "distributed system", "organizationCount": 1, - "projectCount": 1, + "projectCount": 27, "years": [ - 2016 + 2025, + 2024, + 2023, + 2022, + 2021 ] }, { - "slug": "distributed-datastructures", - "name": "distributed datastructures", + "slug": "ml-al", + "name": "ML/AL", "organizationCount": 1, - "projectCount": 38, + "projectCount": 27, "years": [ 2025, 2024, 2023, 2022, - 2021, - 2020, - 2018, - 2017, - 2016 + 2021 ] }, { - "slug": "distributed-energy-systems", - "name": "distributed energy systems", + "slug": "identity", + "name": "identity", "organizationCount": 1, - "projectCount": 6, + "projectCount": 5, "years": [ - 2017, - 2016 + 2019, + 2018 ] }, { - "slug": "distributed-system", - "name": "distributed system", + "slug": "open-government", + "name": "open government", "organizationCount": 1, - "projectCount": 27, + "projectCount": 5, "years": [ - 2025, - 2024, - 2023, - 2022, - 2021 + 2019, + 2018 ] }, { - "slug": "diversity", - "name": "diversity", + "slug": "public-code", + "name": "public code", "organizationCount": 1, - "projectCount": 38, + "projectCount": 5, "years": [ - 2022, - 2021, 2019, - 2018, - 2017, - 2016 + 2018 ] }, { - "slug": "diversity-and-inclusion", - "name": "diversity and inclusion", + "slug": "international", + "name": "international", "organizationCount": 1, - "projectCount": 29, + "projectCount": 31, "years": [ - 2025, - 2022, 2021, 2020, 2019, @@ -12097,13 +12601,11 @@ ] }, { - "slug": "diversity-equity-and-inclusion", - "name": "Diversity Equity and Inclusion", + "slug": "charity", + "name": "charity", "organizationCount": 1, - "projectCount": 29, + "projectCount": 31, "years": [ - 2025, - 2022, 2021, 2020, 2019, @@ -12111,149 +12613,149 @@ ] }, { - "slug": "diy", - "name": "diy", + "slug": "humanrights", + "name": "humanrights", "organizationCount": 1, - "projectCount": 38, + "projectCount": 31, "years": [ - 2022, 2021, + 2020, 2019, - 2018, - 2017, - 2016 + 2018 ] }, { - "slug": "dj", - "name": "dj", + "slug": "global", + "name": "global", "organizationCount": 1, - "projectCount": 16, + "projectCount": 31, "years": [ - 2025, - 2024, - 2022, + 2021, 2020, - 2018, - 2017, - 2016 + 2019, + 2018 ] }, { - "slug": "django", - "name": "django", + "slug": "asynchronous", + "name": "asynchronous", "organizationCount": 1, - "projectCount": 28, + "projectCount": 6, "years": [ - 2025, - 2024, - 2023, - 2021, - 2020, - 2019, - 2018, 2017, 2016 ] }, { - "slug": "dl-inference", - "name": "DL-inference", + "slug": "partial-differential-equations", + "name": "partial differential equations", "organizationCount": 1, - "projectCount": 32, + "projectCount": 2, "years": [ - 2025, - 2024, - 2023, - 2022 + 2016 ] }, { - "slug": "dns", - "name": "dns", + "slug": "embodied-ai", + "name": "Embodied AI", "organizationCount": 1, - "projectCount": 3, + "projectCount": 2, "years": [ - 2019, - 2018 + 2026, + 2025 ] }, { - "slug": "dns-recursive-solutions", - "name": "DNS recursive solutions", + "slug": "python-robotics", + "name": "Python Robotics", "organizationCount": 1, - "projectCount": 1, + "projectCount": 2, "years": [ - 2022 + 2026, + 2025 ] }, { - "slug": "docker", - "name": "docker", + "slug": "autonomous-drive", + "name": "Autonomous Drive", "organizationCount": 1, - "projectCount": 8, + "projectCount": 2, "years": [ - 2021, - 2020, - 2019, - 2018 + 2026, + 2025 ] }, { - "slug": "docs", - "name": "docs", + "slug": "robot-dataflow", + "name": "Robot Dataflow", "organizationCount": 1, - "projectCount": 3, + "projectCount": 2, "years": [ - 2019, - 2018 + 2026, + 2025 ] }, { - "slug": "document-assembly", - "name": "document assembly", + "slug": "symfony", + "name": "symfony", "organizationCount": 1, - "projectCount": 13, + "projectCount": 39, "years": [ + 2026, 2025, 2024, - 2021, - 2020 + 2023, + 2022, + 2020, + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "drone", - "name": "Drone", + "slug": "drupal-8", + "name": "drupal 8", "organizationCount": 1, - "projectCount": 38, + "projectCount": 39, "years": [ + 2026, 2025, 2024, 2023, 2022, - 2021, 2020, 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "drug-discovery", - "name": "Drug Discovery", + "slug": "martech", + "name": "martech", "organizationCount": 1, - "projectCount": 14, + "projectCount": 39, "years": [ + 2026, 2025, - 2024 + 2024, + 2023, + 2022, + 2020, + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "drupal-8", - "name": "drupal 8", + "slug": "massive-community", + "name": "Massive community", "organizationCount": 1, "projectCount": 39, "years": [ + 2026, 2025, 2024, 2023, @@ -12266,25 +12768,16 @@ ] }, { - "slug": "dtls", - "name": "DTLS", - "organizationCount": 1, - "projectCount": 2, - "years": [ - 2023 - ] - }, - { - "slug": "dvcs", - "name": "dvcs", + "slug": "inclusive", + "name": "Inclusive", "organizationCount": 1, - "projectCount": 22, + "projectCount": 39, "years": [ + 2026, 2025, 2024, 2023, 2022, - 2021, 2020, 2019, 2018, @@ -12293,61 +12786,18 @@ ] }, { - "slug": "dynamic-environment", - "name": "dynamic environment", + "slug": "earth-data", + "name": "earth data", "organizationCount": 1, - "projectCount": 32, - "years": [ - 2025, - 2023, - 2021, - 2019, - 2017 - ] - }, - { - "slug": "e-health", - "name": "e-health", - "organizationCount": 1, - "projectCount": 6, - "years": [ - 2016 - ] - }, - { - "slug": "e-learning", - "name": "e-learning", - "organizationCount": 1, - "projectCount": 7, + "projectCount": 4, "years": [ 2019, - 2018, - 2017, - 2016 - ] - }, - { - "slug": "e-mail", - "name": "e-mail", - "organizationCount": 1, - "projectCount": 2, - "years": [ - 2016 - ] - }, - { - "slug": "e2e", - "name": "e2e", - "organizationCount": 1, - "projectCount": 2, - "years": [ - 2022, 2018 ] }, { - "slug": "earth-data", - "name": "earth data", + "slug": "semantics", + "name": "semantics", "organizationCount": 1, "projectCount": 4, "years": [ @@ -12356,8 +12806,8 @@ ] }, { - "slug": "earth-science", - "name": "earth science", + "slug": "discovery", + "name": "discovery", "organizationCount": 1, "projectCount": 4, "years": [ @@ -12366,71 +12816,52 @@ ] }, { - "slug": "earth-sciences", - "name": "earth sciences", - "organizationCount": 1, - "projectCount": 22, - "years": [ - 2025, - 2024, - 2022, - 2021 - ] - }, - { - "slug": "earth-system-monitoring", - "name": "earth-system monitoring", - "organizationCount": 1, - "projectCount": 4, - "years": [ - 2022 - ] - }, - { - "slug": "ecological-forecasting", - "name": "ecological forecasting", + "slug": "locationtech", + "name": "locationtech", "organizationCount": 1, - "projectCount": 30, + "projectCount": 68, "years": [ + 2026, 2025, 2024, 2023, 2022, - 2021, 2020, 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "ecosystem-models", - "name": "ecosystem models", + "slug": "runtimes", + "name": "runtimes", "organizationCount": 1, - "projectCount": 30, + "projectCount": 68, "years": [ + 2026, 2025, 2024, 2023, 2022, - 2021, 2020, 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "eda", - "name": "eda", + "slug": "cloud-native-java", + "name": "cloud native java", "organizationCount": 1, - "projectCount": 60, + "projectCount": 68, "years": [ + 2026, 2025, 2024, 2023, 2022, - 2021, 2020, 2019, 2018, @@ -12439,16 +12870,16 @@ ] }, { - "slug": "eda-tools", - "name": "eda tools", + "slug": "iot-edge", + "name": "iot & edge", "organizationCount": 1, - "projectCount": 60, + "projectCount": 68, "years": [ + 2026, 2025, 2024, 2023, 2022, - 2021, 2020, 2019, 2018, @@ -12457,87 +12888,68 @@ ] }, { - "slug": "edge", - "name": "edge", + "slug": "reactive", + "name": "reactive", "organizationCount": 1, - "projectCount": 52, + "projectCount": 6, "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, - 2020, - 2018, 2017, 2016 ] }, { - "slug": "edge-ai", - "name": "Edge AI", + "slug": "unopionated", + "name": "unopionated", "organizationCount": 1, - "projectCount": 32, + "projectCount": 6, "years": [ - 2025, - 2024, - 2023, - 2022 + 2017, + 2016 ] }, { - "slug": "edit", - "name": "edit", + "slug": "crawling", + "name": "crawling", "organizationCount": 1, - "projectCount": 3, + "projectCount": 2, "years": [ 2017 ] }, { - "slug": "edk2", - "name": "edk2", + "slug": "soft-real-time", + "name": "soft real-time", "organizationCount": 1, - "projectCount": 8, + "projectCount": 3, "years": [ - 2022, - 2021 + 2020 ] }, { - "slug": "effects", - "name": "Effects", + "slug": "agent-sandbox", + "name": "agent sandbox", "organizationCount": 1, - "projectCount": 3, + "projectCount": 0, "years": [ - 2022, - 2021 + 2026 ] }, { - "slug": "electromagnetics", - "name": "electromagnetics", + "slug": "runtime", + "name": "runtime", "organizationCount": 1, - "projectCount": 18, + "projectCount": 2, "years": [ - 2025, - 2024, - 2023, - 2021, - 2019 + 2024 ] }, { - "slug": "electronic-medical-record-system", - "name": "Electronic Medical Record System", + "slug": "contributor-activity", + "name": "contributor activity", "organizationCount": 1, - "projectCount": 94, + "projectCount": 27, "years": [ 2025, - 2024, - 2023, - 2022, - 2021, 2020, 2019, 2018, @@ -12546,65 +12958,87 @@ ] }, { - "slug": "electronic-voting", - "name": "electronic voting", + "slug": "community-architecture", + "name": "community architecture", "organizationCount": 1, - "projectCount": 117, + "projectCount": 27, "years": [ 2025, - 2024, - 2023, - 2022, - 2021, 2020, 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "electronics", - "name": "electronics", + "slug": "upstream", + "name": "upstream", "organizationCount": 1, - "projectCount": 2, + "projectCount": 27, "years": [ - 2020 + 2025, + 2020, + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "electrophysiology", - "name": "electrophysiology", + "slug": "llm", + "name": "LLM", "organizationCount": 1, - "projectCount": 2, + "projectCount": 27, "years": [ + 2025, + 2020, + 2019, + 2018, + 2017, 2016 ] }, { - "slug": "eletric-mobility", - "name": "eletric mobility", + "slug": "networkmanager", + "name": "NetworkManager", "organizationCount": 1, - "projectCount": 8, + "projectCount": 27, "years": [ + 2025, + 2020, + 2019, + 2018, 2017, 2016 ] }, { - "slug": "embeddable-widget", - "name": "embeddable widget", + "slug": "image", + "name": "image", "organizationCount": 1, - "projectCount": 1, + "projectCount": 49, "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2019, + 2018, + 2017, 2016 ] }, { - "slug": "embedded-system", - "name": "Embedded System", + "slug": "filter", + "name": "filter", "organizationCount": 1, - "projectCount": 76, + "projectCount": 49, "years": [ + 2026, 2025, 2024, 2023, @@ -12618,30 +13052,14 @@ ] }, { - "slug": "embedded-automotive", - "name": "embedded/automotive", + "slug": "compressio", + "name": "compressio", "organizationCount": 1, - "projectCount": 2, - "years": [ - 2017 - ] - }, - { - "slug": "embodied-ai", - "name": "Embodied AI", - "organizationCount": 1, - "projectCount": 2, - "years": [ - 2025 - ] - }, - { - "slug": "emulator", - "name": "emulator", - "organizationCount": 1, - "projectCount": 41, + "projectCount": 49, "years": [ + 2026, 2025, + 2024, 2023, 2022, 2021, @@ -12653,142 +13071,130 @@ ] }, { - "slug": "encoding", - "name": "encoding", + "slug": "images", + "name": "images", "organizationCount": 1, - "projectCount": 12, + "projectCount": 49, "years": [ + 2026, + 2025, + 2024, + 2023, 2022, 2021, 2020, 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "encrypted-computation", - "name": "encrypted computation", + "slug": "flash-chips", + "name": "flash chips", "organizationCount": 1, - "projectCount": 9, + "projectCount": 1, "years": [ - 2021, - 2020 + 2022 ] }, { - "slug": "encyclopedia", - "name": "encyclopedia", + "slug": "low-level-programming", + "name": "low level programming", "organizationCount": 1, - "projectCount": 85, + "projectCount": 1, "years": [ - 2024, - 2023, - 2022, - 2021, - 2020, - 2019, - 2018, - 2017, - 2016 + 2022 ] }, { - "slug": "end-to-end-testing", - "name": "End-To-End Testing", + "slug": "data-intensive-science", + "name": "data-intensive science", "organizationCount": 1, - "projectCount": 2, + "projectCount": 4, "years": [ - 2024 + 2022 ] }, { - "slug": "energy", - "name": "energy", + "slug": "earth-system-monitoring", + "name": "earth-system monitoring", "organizationCount": 1, - "projectCount": 6, + "projectCount": 4, "years": [ - 2017, - 2016 + 2022 ] }, { - "slug": "engines", - "name": "engines", + "slug": "fortran", + "name": "Fortran", "organizationCount": 1, - "projectCount": 34, + "projectCount": 21, "years": [ + 2026, 2025, 2024, 2023, 2022, - 2021, - 2020, - 2019, - 2018, - 2017, - 2016 + 2021 ] }, { - "slug": "engraving", - "name": "engraving", + "slug": "ruby", + "name": "ruby", "organizationCount": 1, - "projectCount": 24, + "projectCount": 4, "years": [ - 2024, - 2023, - 2022, - 2021, - 2020, 2019, - 2018, 2017, 2016 ] }, { - "slug": "enteprise-analytics", - "name": "enteprise analytics", + "slug": "rails", + "name": "rails", "organizationCount": 1, - "projectCount": 5, + "projectCount": 4, "years": [ - 2021 + 2019, + 2017, + 2016 ] }, { - "slug": "enterprise-information-systems", - "name": "enterprise information systems", + "slug": "conference", + "name": "conference", "organizationCount": 1, - "projectCount": 0, + "projectCount": 4, "years": [ - 2018 + 2019, + 2017, + 2016 ] }, { - "slug": "environment-generation", - "name": "environment generation", + "slug": "rails-application", + "name": "rails application", "organizationCount": 1, - "projectCount": 46, + "projectCount": 4, "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, - 2020, 2019, - 2018, 2017, 2016 ] }, { - "slug": "event-handling", - "name": "event handling", + "slug": "fashiontech", + "name": "fashiontech", "organizationCount": 1, - "projectCount": 7, + "projectCount": 140, "years": [ + 2026, + 2025, + 2024, + 2019, + 2018, + 2017, 2016 ] }, @@ -12798,6 +13204,7 @@ "organizationCount": 1, "projectCount": 140, "years": [ + 2026, 2025, 2024, 2019, @@ -12807,103 +13214,140 @@ ] }, { - "slug": "evented", - "name": "evented", + "slug": "personal-assistants", + "name": "personal assistants", "organizationCount": 1, - "projectCount": 3, + "projectCount": 140, "years": [ + 2026, + 2025, + 2024, + 2019, + 2018, + 2017, 2016 ] }, { - "slug": "events-management", - "name": "events management", + "slug": "voice-assistants", + "name": "voice assistants", "organizationCount": 1, - "projectCount": 22, + "projectCount": 140, "years": [ - 2021, - 2020, + 2026, + 2025, + 2024, 2019, 2018, + 2017, 2016 ] }, { - "slug": "exoplanet", - "name": "exoplanet", + "slug": "oss-compliance", + "name": "oss compliance", "organizationCount": 1, - "projectCount": 2, + "projectCount": 42, "years": [ - 2019 + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2019, + 2018 ] }, { - "slug": "exploitation", - "name": "exploitation", + "slug": "oss-licencing", + "name": "oss licencing", "organizationCount": 1, - "projectCount": 12, + "projectCount": 42, "years": [ + 2026, + 2025, + 2024, 2023, 2022, 2021, 2020, - 2018, - 2017 + 2019, + 2018 ] }, { - "slug": "extensions", - "name": "extensions", + "slug": "license-management", + "name": "license management", "organizationCount": 1, - "projectCount": 12, + "projectCount": 42, "years": [ + 2026, + 2025, + 2024, 2023, 2022, 2021, 2020, 2019, - 2018, - 2017, - 2016 + 2018 ] }, { - "slug": "eye-tracking", - "name": "Eye Tracking", + "slug": "multimodality", + "name": "multimodality", "organizationCount": 1, - "projectCount": 8, + "projectCount": 5, "years": [ - 2025, - 2024 + 2021, + 2020, + 2019 ] }, { - "slug": "fairness", - "name": "Fairness", + "slug": "multilinguality", + "name": "multilinguality", "organizationCount": 1, - "projectCount": 4, + "projectCount": 5, "years": [ - 2022 + 2021, + 2020, + 2019 ] }, { - "slug": "fake-news", - "name": "fake-news", + "slug": "eda-tools", + "name": "eda tools", "organizationCount": 1, - "projectCount": 4, + "projectCount": 60, "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "fashiontech", - "name": "fashiontech", + "slug": "digital-design", + "name": "digital design", "organizationCount": 1, - "projectCount": 140, + "projectCount": 60, "years": [ + 2026, 2025, 2024, + 2023, + 2022, + 2021, + 2020, 2019, 2018, 2017, @@ -12911,11 +13355,15 @@ ] }, { - "slug": "federated", - "name": "federated", + "slug": "silicon", + "name": "silicon", "organizationCount": 1, - "projectCount": 29, + "projectCount": 60, "years": [ + 2026, + 2025, + 2024, + 2023, 2022, 2021, 2020, @@ -12926,26 +13374,18 @@ ] }, { - "slug": "federated-learning", - "name": "federated learning", - "organizationCount": 1, - "projectCount": 9, - "years": [ - 2021, - 2020 - ] - }, - { - "slug": "federation", - "name": "federation", + "slug": "eda", + "name": "eda", "organizationCount": 1, - "projectCount": 74, + "projectCount": 60, "years": [ + 2026, 2025, 2024, 2023, 2022, 2021, + 2020, 2019, 2018, 2017, @@ -12953,56 +13393,34 @@ ] }, { - "slug": "ffi", - "name": "ffi", + "slug": "cam", + "name": "CAM", "organizationCount": 1, - "projectCount": 19, + "projectCount": 8, "years": [ + 2026, + 2025, 2024, - 2023, - 2022, - 2021 - ] - }, - { - "slug": "ffmpeg-neuronetwork", - "name": "ffmpeg neuronetwork", - "organizationCount": 1, - "projectCount": 12, - "years": [ - 2022, - 2021, - 2020, - 2019, - 2018, - 2017 - ] - }, - { - "slug": "file-formats", - "name": "file formats", - "organizationCount": 1, - "projectCount": 3, - "years": [ - 2022, - 2020 + 2023 ] }, { - "slug": "file-share", - "name": "file share", + "slug": "bim", + "name": "BIM", "organizationCount": 1, - "projectCount": 5, + "projectCount": 8, "years": [ - 2017, - 2016 + 2026, + 2025, + 2024, + 2023 ] }, { - "slug": "filesystem", - "name": "filesystem", + "slug": "opentype", + "name": "opentype", "organizationCount": 1, - "projectCount": 26, + "projectCount": 17, "years": [ 2024, 2023, @@ -13015,27 +13433,32 @@ ] }, { - "slug": "film", - "name": "Film", + "slug": "truetype", + "name": "truetype", "organizationCount": 1, - "projectCount": 3, + "projectCount": 17, "years": [ + 2024, + 2023, 2022, - 2020 + 2021, + 2020, + 2019, + 2018, + 2017 ] }, { - "slug": "filter", - "name": "filter", + "slug": "routing-protocols", + "name": "routing protocols", "organizationCount": 1, - "projectCount": 49, + "projectCount": 74, "years": [ 2025, 2024, 2023, 2022, 2021, - 2020, 2019, 2018, 2017, @@ -13043,30 +13466,33 @@ ] }, { - "slug": "finance", - "name": "finance", + "slug": "firmware-development", + "name": "firmware development", "organizationCount": 1, - "projectCount": 30, + "projectCount": 74, "years": [ 2025, 2024, 2023, 2022, 2021, - 2020 + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "financial-inclusion", - "name": "financial inclusion", + "slug": "federation", + "name": "federation", "organizationCount": 1, - "projectCount": 102, + "projectCount": 74, "years": [ 2025, 2024, 2023, 2022, - 2020, + 2021, 2019, 2018, 2017, @@ -13074,50 +13500,79 @@ ] }, { - "slug": "finite-state-automata", - "name": "finite state automata", + "slug": "mathematical-optimizaton", + "name": "mathematical optimizaton", "organizationCount": 1, - "projectCount": 2, + "projectCount": 0, "years": [ - 2016 + 2026 ] }, { - "slug": "fintech", - "name": "fintech", + "slug": "cars", + "name": "cars", "organizationCount": 1, - "projectCount": 102, + "projectCount": 3, "years": [ - 2025, - 2024, - 2023, - 2022, - 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "firefox", - "name": "firefox", + "slug": "automobile", + "name": "automobile", "organizationCount": 1, - "projectCount": 75, + "projectCount": 3, "years": [ - 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "firewall", - "name": "firewall", + "slug": "diagnostics", + "name": "diagnostics", "organizationCount": 1, - "projectCount": 11, + "projectCount": 3, + "years": [ + 2019, + 2018, + 2017 + ] + }, + { + "slug": "functional-safety", + "name": "functional safety", + "organizationCount": 1, + "projectCount": 3, + "years": [ + 2019, + 2018, + 2017 + ] + }, + { + "slug": "bigdata", + "name": "bigdata", + "organizationCount": 1, + "projectCount": 3, + "years": [ + 2019, + 2018, + 2017 + ] + }, + { + "slug": "init-systems", + "name": "init systems", + "organizationCount": 1, + "projectCount": 25, "years": [ + 2023, + 2022, + 2021, + 2020, 2019, 2018, 2017, @@ -13125,16 +13580,15 @@ ] }, { - "slug": "firmware-development", - "name": "firmware development", + "slug": "init", + "name": "init", "organizationCount": 1, - "projectCount": 74, + "projectCount": 25, "years": [ - 2025, - 2024, 2023, 2022, 2021, + 2020, 2019, 2018, 2017, @@ -13142,44 +13596,52 @@ ] }, { - "slug": "flash-chips", - "name": "flash chips", + "slug": "package", + "name": "package", "organizationCount": 1, - "projectCount": 1, + "projectCount": 25, "years": [ - 2022 + 2023, + 2022, + 2021, + 2020, + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "flashcard", - "name": "flashcard", + "slug": "finance", + "name": "finance", "organizationCount": 1, - "projectCount": 10, + "projectCount": 30, "years": [ + 2026, 2025, 2024, + 2023, 2022, - 2021 + 2021, + 2020 ] }, { - "slug": "flashcards", - "name": "Flashcards", + "slug": "causal-inference", + "name": "Causal Inference", "organizationCount": 1, - "projectCount": 10, + "projectCount": 0, "years": [ - 2025, - 2024, - 2022, - 2021 + 2026 ] }, { - "slug": "fleet-management", - "name": "fleet management", + "slug": "dvcs", + "name": "dvcs", "organizationCount": 1, - "projectCount": 46, + "projectCount": 22, "years": [ + 2026, 2025, 2024, 2023, @@ -13188,16 +13650,17 @@ 2020, 2019, 2018, + 2017, 2016 ] }, { - "slug": "floating-car-data", - "name": "floating car data", + "slug": "genetics", + "name": "genetics", "organizationCount": 1, - "projectCount": 25, + "projectCount": 45, "years": [ - 2025, + 2026, 2024, 2023, 2022, @@ -13210,66 +13673,31 @@ ] }, { - "slug": "floss", - "name": "floss", + "slug": "healthcare", + "name": "healthcare", "organizationCount": 1, - "projectCount": 6, + "projectCount": 45, "years": [ + 2026, + 2024, + 2023, 2022, 2021, - 2019 + 2020, + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "fluid-dynamics", - "name": "Fluid Dynamics", + "slug": "gnss", + "name": "gnss", "organizationCount": 1, - "projectCount": 7, + "projectCount": 28, "years": [ 2025, - 2024 - ] - }, - { - "slug": "food", - "name": "food", - "organizationCount": 1, - "projectCount": 10, - "years": [ - 2025, - 2022, - 2018 - ] - }, - { - "slug": "forecasting", - "name": "Forecasting", - "organizationCount": 1, - "projectCount": 10, - "years": [ - 2025, - 2024 - ] - }, - { - "slug": "foreign-function-interface", - "name": "foreign function interface", - "organizationCount": 1, - "projectCount": 19, - "years": [ 2024, - 2023, - 2022, - 2021 - ] - }, - { - "slug": "forensic", - "name": "forensic", - "organizationCount": 1, - "projectCount": 149, - "years": [ - 2023, 2022, 2021, 2020, @@ -13280,33 +13708,29 @@ ] }, { - "slug": "fortran", - "name": "Fortran", + "slug": "openmp", + "name": "openmp", "organizationCount": 1, - "projectCount": 21, + "projectCount": 34, "years": [ + 2026, 2025, 2024, 2023, 2022, - 2021 - ] - }, - { - "slug": "framework-development", - "name": "framework development", - "organizationCount": 1, - "projectCount": 7, - "years": [ - 2016 + 2021, + 2020, + 2019, + 2018 ] }, { - "slug": "free-and-open-source-software-license-and-origin", - "name": "free and open source software license and origin", + "slug": "link-time-optimization", + "name": "link time optimization", "organizationCount": 1, - "projectCount": 32, + "projectCount": 34, "years": [ + 2026, 2025, 2024, 2023, @@ -13314,150 +13738,147 @@ 2021, 2020, 2019, - 2017 + 2018 ] }, { - "slug": "free-speech", - "name": "free-speech", + "slug": "illustration", + "name": "illustration", "organizationCount": 1, - "projectCount": 19, + "projectCount": 10, "years": [ + 2026, 2025, + 2024, 2023, - 2022, - 2017, - 2016 + 2022 ] }, { - "slug": "full-stack", - "name": "full stack", + "slug": "mailing-lists", + "name": "mailing lists", "organizationCount": 1, "projectCount": 4, "years": [ - 2018, - 2017 + 2021, + 2019, + 2016 ] }, { - "slug": "function-programming-language", - "name": "function programming language", + "slug": "archives", + "name": "archives", "organizationCount": 1, - "projectCount": 10, + "projectCount": 0, "years": [ - 2025, - 2024, - 2023, - 2022 + 2026 ] }, { - "slug": "functional-safety", - "name": "functional safety", + "slug": "list-management", + "name": "list management", "organizationCount": 1, - "projectCount": 3, + "projectCount": 0, "years": [ - 2019, - 2018, - 2017 + 2026 ] }, { - "slug": "fundraising", - "name": "fundraising", + "slug": "matlab", + "name": "matlab", "organizationCount": 1, - "projectCount": 22, + "projectCount": 23, "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, 2021, 2020, 2019, 2018, + 2017, 2016 ] }, { - "slug": "future-internet-architecture", - "name": "future internet architecture", + "slug": "gnu", + "name": "gnu", "organizationCount": 1, - "projectCount": 8, + "projectCount": 59, "years": [ + 2026, + 2024, + 2023, + 2020, + 2019, 2018, 2017, 2016 ] }, { - "slug": "game-design", - "name": "game design", + "slug": "binary-tools", + "name": "binary tools", "organizationCount": 1, - "projectCount": 9, + "projectCount": 59, "years": [ + 2026, 2024, 2023, - 2022, - 2021 + 2020, + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "game-engine", - "name": "game engine", + "slug": "cognitive-radio", + "name": "cognitive radio", "organizationCount": 1, - "projectCount": 27, + "projectCount": 18, "years": [ + 2026, + 2025, + 2024, + 2023, 2022, 2021, 2020, 2019, - 2018 - ] - }, - { - "slug": "game-theory", - "name": "game theory", - "organizationCount": 1, - "projectCount": 3, - "years": [ + 2018, + 2017, 2016 ] }, { - "slug": "gemma", - "name": "Gemma", - "organizationCount": 1, - "projectCount": 45, - "years": [ - 2025 - ] - }, - { - "slug": "gen-ai", - "name": "gen ai", + "slug": "spectrum-analysis", + "name": "spectrum analysis", "organizationCount": 1, - "projectCount": 32, + "projectCount": 18, "years": [ + 2026, 2025, 2024, 2023, - 2022 - ] - }, - { - "slug": "genai", - "name": "GenAI", - "organizationCount": 1, - "projectCount": 3, - "years": [ - 2025, - 2024 + 2022, + 2021, + 2020, + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "general-purpose-os", - "name": "general purpose os", + "slug": "information-theory", + "name": "information theory", "organizationCount": 1, - "projectCount": 38, + "projectCount": 18, "years": [ + 2026, 2025, 2024, 2023, @@ -13471,33 +13892,32 @@ ] }, { - "slug": "generative-science", - "name": "Generative Science", + "slug": "wireless-communication", + "name": "wireless communication", "organizationCount": 1, - "projectCount": 7, + "projectCount": 18, "years": [ + 2026, 2025, - 2024 - ] - }, - { - "slug": "generative-text", - "name": "generative text", - "organizationCount": 1, - "projectCount": 20, - "years": [ + 2024, + 2023, 2022, 2021, + 2020, 2019, - 2018 + 2018, + 2017, + 2016 ] }, { - "slug": "genetics", - "name": "genetics", + "slug": "radar", + "name": "radar", "organizationCount": 1, - "projectCount": 45, + "projectCount": 18, "years": [ + 2026, + 2025, 2024, 2023, 2022, @@ -13510,136 +13930,141 @@ ] }, { - "slug": "genome", - "name": "genome", + "slug": "software-radio", + "name": "software radio", "organizationCount": 1, - "projectCount": 28, + "projectCount": 18, "years": [ + 2026, + 2025, + 2024, 2023, 2022, 2021, 2020, + 2019, + 2018, 2017, 2016 ] }, { - "slug": "genome-analysis", - "name": "genome analysis", + "slug": "tls", + "name": "TLS", "organizationCount": 1, - "projectCount": 8, + "projectCount": 2, "years": [ - 2025, - 2024, - 2022 + 2023 ] }, { - "slug": "genome-assembly", - "name": "genome assembly", + "slug": "dtls", + "name": "DTLS", "organizationCount": 1, - "projectCount": 8, + "projectCount": 2, "years": [ - 2025, - 2024, - 2022 + 2023 ] }, { - "slug": "geocoding", - "name": "geocoding", + "slug": "game-engine", + "name": "game engine", "organizationCount": 1, - "projectCount": 45, + "projectCount": 27, "years": [ - 2025, - 2024, - 2023, 2022, 2021, 2020, 2019, - 2018, - 2017, - 2016 + 2018 ] }, { - "slug": "geodata", - "name": "geodata", + "slug": "gemma", + "name": "Gemma", "organizationCount": 1, "projectCount": 45, "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, + 2025 + ] + }, + { + "slug": "precision-health", + "name": "precision health", + "organizationCount": 1, + "projectCount": 5, + "years": [ + 2021 + ] + }, + { + "slug": "enteprise-analytics", + "name": "enteprise analytics", + "organizationCount": 1, + "projectCount": 5, + "years": [ + 2021 + ] + }, + { + "slug": "playback", + "name": "playback", + "organizationCount": 1, + "projectCount": 1, + "years": [ 2020, - 2019, - 2018, - 2017, 2016 ] }, { - "slug": "geoinformation", - "name": "Geoinformation", + "slug": "geophysics", + "name": "geophysics", "organizationCount": 1, - "projectCount": 25, + "projectCount": 18, "years": [ + 2026, 2025, 2024, 2023, - 2022, 2021, - 2020, - 2019, - 2018, - 2017, - 2016 + 2019 ] }, { - "slug": "geoinformation-systems", - "name": "geoinformation systems", + "slug": "electromagnetics", + "name": "electromagnetics", "organizationCount": 1, - "projectCount": 25, + "projectCount": 18, "years": [ + 2026, 2025, 2024, 2023, - 2022, 2021, - 2020, - 2019, - 2018, - 2017, - 2016 + 2019 ] }, { - "slug": "geometry-processing", - "name": "geometry processing", + "slug": "ground-penetrating-radar", + "name": "ground penetrating radar", "organizationCount": 1, - "projectCount": 58, + "projectCount": 18, "years": [ + 2026, 2025, 2024, 2023, - 2022, 2021, - 2020, - 2019, - 2018, - 2017 + 2019 ] }, { - "slug": "geophysics", - "name": "geophysics", + "slug": "optimisation", + "name": "optimisation", "organizationCount": 1, "projectCount": 18, "years": [ + 2026, 2025, 2024, 2023, @@ -13648,30 +14073,53 @@ ] }, { - "slug": "geoprocessing", - "name": "geoprocessing", + "slug": "function-programming-language", + "name": "function programming language", "organizationCount": 1, - "projectCount": 25, + "projectCount": 10, "years": [ + 2026, 2025, 2024, 2023, - 2022, - 2021, - 2020, - 2019, - 2018, + 2022 + ] + }, + { + "slug": "graphql", + "name": "graphql", + "organizationCount": 1, + "projectCount": 2, + "years": [ + 2020 + ] + }, + { + "slug": "eletric-mobility", + "name": "eletric mobility", + "organizationCount": 1, + "projectCount": 8, + "years": [ 2017, 2016 ] }, { - "slug": "geostatistics", - "name": "geostatistics", + "slug": "digital-forensics", + "name": "digital forensics", "organizationCount": 1, - "projectCount": 25, + "projectCount": 0, "years": [ - 2025, + 2021 + ] + }, + { + "slug": "filesystem", + "name": "filesystem", + "organizationCount": 1, + "projectCount": 26, + "years": [ + 2026, 2024, 2023, 2022, @@ -13679,61 +14127,50 @@ 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "gesture", - "name": "gesture", + "slug": "haskell", + "name": "haskell", "organizationCount": 1, - "projectCount": 88, + "projectCount": 70, "years": [ + 2026, + 2025, 2024, - 2023, 2022, 2021, 2020, 2019, - 2018, - 2017, - 2016 + 2018 ] }, { - "slug": "github", - "name": "github", + "slug": "data-streaming", + "name": "data streaming", "organizationCount": 1, - "projectCount": 11, + "projectCount": 2, "years": [ - 2022, - 2020, - 2018, - 2017, - 2016 + 2020 ] }, { - "slug": "global", - "name": "global", + "slug": "stream-processing", + "name": "stream processing", "organizationCount": 1, - "projectCount": 31, + "projectCount": 2, "years": [ - 2021, - 2020, - 2019, - 2018 + 2020 ] }, { - "slug": "global-development", - "name": "global development", + "slug": "e-health", + "name": "e-health", "organizationCount": 1, - "projectCount": 5, + "projectCount": 6, "years": [ - 2019, - 2018, - 2017 + 2016 ] }, { @@ -13746,124 +14183,114 @@ ] }, { - "slug": "global-optimization", - "name": "global optimization", + "slug": "homebrew", + "name": "homebrew", "organizationCount": 1, - "projectCount": 9, + "projectCount": 11, "years": [ - 2021, + 2022, 2020, + 2018, + 2017, 2016 ] }, { - "slug": "gnss", - "name": "gnss", + "slug": "terminal-applications", + "name": "terminal applications", "organizationCount": 1, - "projectCount": 28, + "projectCount": 11, "years": [ - 2025, - 2024, 2022, - 2021, 2020, - 2019, 2018, 2017, 2016 ] }, { - "slug": "gnu", - "name": "gnu", + "slug": "github", + "name": "github", "organizationCount": 1, - "projectCount": 59, + "projectCount": 11, "years": [ - 2024, - 2023, + 2022, 2020, - 2019, 2018, 2017, 2016 ] }, { - "slug": "google-earth", - "name": "google earth", + "slug": "arts", + "name": "Arts", "organizationCount": 1, - "projectCount": 75, + "projectCount": 26, "years": [ + 2026, 2025, - 2024, - 2023, - 2022, - 2021, - 2020, - 2019, - 2017, - 2016 + 2024 ] }, { - "slug": "gpu-computing", - "name": "gpu computing", + "slug": "humanities", + "name": "Humanities", "organizationCount": 1, - "projectCount": 5, + "projectCount": 26, "years": [ - 2021, - 2020 + 2026, + 2025, + 2024 ] }, { - "slug": "grammar", - "name": "grammar", + "slug": "hydra", + "name": "hydra", "organizationCount": 1, - "projectCount": 67, + "projectCount": 8, "years": [ - 2024, - 2023, 2021, 2020, 2019, - 2018, - 2017, - 2016 + 2018 ] }, { - "slug": "graph-algorithms", - "name": "graph algorithms", - "organizationCount": 1, - "projectCount": 3, + "slug": "docker", + "name": "docker", + "organizationCount": 1, + "projectCount": 8, "years": [ 2021, - 2020 + 2020, + 2019, + 2018 ] }, { - "slug": "graphic-stack", - "name": "graphic stack", + "slug": "rest-apis", + "name": "rest apis", "organizationCount": 1, - "projectCount": 19, + "projectCount": 8, "years": [ - 2023, - 2022, + 2021, 2020, 2019, - 2018, - 2017, - 2016 + 2018 ] }, { - "slug": "graphics-stack", - "name": "graphics stack", + "slug": "bio-neuro-image-processing", + "name": "bio/neuro image processing", "organizationCount": 1, - "projectCount": 19, + "projectCount": 211, "years": [ + 2026, + 2025, + 2024, 2023, 2022, + 2021, 2020, 2019, 2018, @@ -13872,11 +14299,12 @@ ] }, { - "slug": "graphics-user-interface", - "name": "graphics user interface", + "slug": "brain-modeling", + "name": "brain modeling", "organizationCount": 1, - "projectCount": 73, + "projectCount": 211, "years": [ + 2026, 2025, 2024, 2023, @@ -13890,58 +14318,89 @@ ] }, { - "slug": "graphql", - "name": "graphql", + "slug": "brain-simulation", + "name": "brain simulation", "organizationCount": 1, - "projectCount": 2, + "projectCount": 211, "years": [ - 2020 + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "ground-penetrating-radar", - "name": "ground penetrating radar", + "slug": "brain-imaging", + "name": "brain imaging", "organizationCount": 1, - "projectCount": 18, + "projectCount": 211, "years": [ + 2026, 2025, 2024, 2023, + 2022, 2021, - 2019 + 2020, + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "gtk", - "name": "gtk", + "slug": "brain-modelling", + "name": "brain modelling", "organizationCount": 1, - "projectCount": 70, + "projectCount": 211, "years": [ + 2026, 2025, 2024, 2023, 2022, 2021, + 2020, 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "gui-toolkit", - "name": "gui toolkit", + "slug": "neuroimage-processing", + "name": "neuroimage processing", "organizationCount": 1, - "projectCount": 5, + "projectCount": 211, "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2019, + 2018, + 2017, 2016 ] }, { - "slug": "guitar", - "name": "guitar", + "slug": "neuroimaging", + "name": "neuroimaging", "organizationCount": 1, - "projectCount": 24, + "projectCount": 211, "years": [ + 2026, + 2025, 2024, 2023, 2022, @@ -13954,127 +14413,113 @@ ] }, { - "slug": "hardware-accelerated-media-processing", - "name": "hardware accelerated media processing", + "slug": "inclusivity", + "name": "inclusivity", "organizationCount": 1, - "projectCount": 12, + "projectCount": 11, "years": [ - 2022, - 2021, 2020, - 2019, 2018, - 2017 + 2016 ] }, { - "slug": "haskell", - "name": "haskell", + "slug": "inclusion", + "name": "inclusion", "organizationCount": 1, - "projectCount": 70, + "projectCount": 11, "years": [ - 2025, - 2024, - 2022, - 2021, 2020, - 2019, + 2018, + 2016 + ] + }, + { + "slug": "language-techology", + "name": "language techology", + "organizationCount": 1, + "projectCount": 7, + "years": [ + 2016 + ] + }, + { + "slug": "medical-simulation", + "name": "medical simulation", + "organizationCount": 1, + "projectCount": 2, + "years": [ 2018 ] }, { - "slug": "hdl", - "name": "HDL", + "slug": "medical-research", + "name": "medical research", "organizationCount": 1, - "projectCount": 12, + "projectCount": 2, "years": [ - 2024, - 2023, - 2022 + 2018 ] }, { - "slug": "health-care", - "name": "Health Care", + "slug": "software-analytics", + "name": "software analytics", "organizationCount": 1, - "projectCount": 9, + "projectCount": 1, "years": [ - 2025, - 2024 + 2019 ] }, { - "slug": "healthcare", - "name": "healthcare", + "slug": "knowledge-representation", + "name": "knowledge representation", "organizationCount": 1, - "projectCount": 45, + "projectCount": 11, "years": [ - 2024, - 2023, - 2022, - 2021, - 2020, - 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "heathcare", - "name": "heathcare", + "slug": "robot-perception", + "name": "robot perception", "organizationCount": 1, - "projectCount": 12, + "projectCount": 11, "years": [ - 2025, - 2024 + 2018, + 2017 ] }, { - "slug": "high-quality-codebase", - "name": "high quality codebase", + "slug": "unreal-engine", + "name": "unreal engine", "organizationCount": 1, - "projectCount": 135, + "projectCount": 11, "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, - 2020, - 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "high-energy-astrophysics", - "name": "high-energy astrophysics", + "slug": "accelerated-media", + "name": "accelerated media", "organizationCount": 1, - "projectCount": 77, + "projectCount": 12, "years": [ - 2025, - 2024, - 2023, 2022, 2021, 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "high-energy-physics", - "name": "high-energy physics", + "slug": "compress", + "name": "compress", "organizationCount": 1, - "projectCount": 214, + "projectCount": 12, "years": [ - 2025, - 2024, - 2023, 2022, 2021, 2020, @@ -14084,34 +14529,41 @@ ] }, { - "slug": "history", - "name": "History", + "slug": "encoding", + "name": "encoding", "organizationCount": 1, - "projectCount": 30, + "projectCount": 12, "years": [ 2022, 2021, 2020, 2019, - 2018 + 2018, + 2017 ] }, { - "slug": "hmis", - "name": "HMIS", + "slug": "hardware-accelerated-media-processing", + "name": "hardware accelerated media processing", "organizationCount": 1, - "projectCount": 9, + "projectCount": 12, "years": [ - 2025, - 2024 + 2022, + 2021, + 2020, + 2019, + 2018, + 2017 ] }, { - "slug": "home-servers", - "name": "home servers", + "slug": "video-post-processing", + "name": "video post processing", "organizationCount": 1, - "projectCount": 18, + "projectCount": 12, "years": [ + 2022, + 2021, 2020, 2019, 2018, @@ -14119,8 +14571,8 @@ ] }, { - "slug": "home-theater", - "name": "home theater", + "slug": "video-apis", + "name": "video apis", "organizationCount": 1, "projectCount": 12, "years": [ @@ -14133,132 +14585,110 @@ ] }, { - "slug": "homebrew", - "name": "homebrew", + "slug": "audio-firmware", + "name": "audio firmware", "organizationCount": 1, - "projectCount": 11, + "projectCount": 12, "years": [ 2022, + 2021, 2020, + 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "honeynet", - "name": "honeynet", + "slug": "video-framework", + "name": "video framework", "organizationCount": 1, - "projectCount": 101, + "projectCount": 12, "years": [ - 2025, - 2024, - 2023, 2022, 2021, 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "honeynets", - "name": "honeynets", + "slug": "video-decoding-encoding", + "name": "video decoding/encoding", "organizationCount": 1, - "projectCount": 101, + "projectCount": 12, "years": [ - 2025, - 2024, - 2023, 2022, 2021, 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "honeypot", - "name": "honeypot", + "slug": "360-stereo-video", + "name": "360 stereo video", "organizationCount": 1, - "projectCount": 101, + "projectCount": 12, "years": [ - 2025, - 2024, - 2023, 2022, 2021, 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "honeypots", - "name": "honeypots", + "slug": "opensource-audio-firmware", + "name": "opensource audio firmware", "organizationCount": 1, - "projectCount": 101, + "projectCount": 12, "years": [ - 2025, - 2024, - 2023, 2022, 2021, 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "hospitals", - "name": "hospitals", + "slug": "ffmpeg-neuronetwork", + "name": "ffmpeg neuronetwork", "organizationCount": 1, - "projectCount": 94, + "projectCount": 12, "years": [ - 2025, - 2024, - 2023, 2022, 2021, 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "hosting", - "name": "hosting", + "slug": "codec", + "name": "Codec", "organizationCount": 1, - "projectCount": 60, + "projectCount": 12, "years": [ - 2025, - 2024, - 2023, 2022, 2021, 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "hotspot", - "name": "hotspot", + "slug": "scratch", + "name": "scratch", "organizationCount": 1, - "projectCount": 26, + "projectCount": 84, "years": [ + 2026, 2025, 2024, 2023, @@ -14267,144 +14697,158 @@ 2020, 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "hpx", - "name": "hpx", + "slug": "creativity-tools", + "name": "creativity tools", "organizationCount": 1, - "projectCount": 38, + "projectCount": 84, "years": [ + 2026, 2025, 2024, 2023, 2022, 2021, 2020, + 2019, 2018, 2017, 2016 ] }, { - "slug": "human-rights", - "name": "Human Rights", + "slug": "web-archiving", + "name": "web archiving", "organizationCount": 1, - "projectCount": 19, + "projectCount": 26, "years": [ + 2026, 2025, + 2024, 2023, - 2022, - 2017, - 2016 + 2021, + 2020, + 2019, + 2018, + 2017 ] }, { - "slug": "humanities", - "name": "Humanities", + "slug": "non-profit", + "name": "non-profit", "organizationCount": 1, "projectCount": 26, "years": [ + 2026, 2025, - 2024 - ] - }, - { - "slug": "humanrights", - "name": "humanrights", - "organizationCount": 1, - "projectCount": 31, - "years": [ + 2024, + 2023, 2021, 2020, 2019, - 2018 + 2018, + 2017 ] }, { - "slug": "hydra", - "name": "hydra", + "slug": "web-extensions", + "name": "web extensions", "organizationCount": 1, - "projectCount": 8, + "projectCount": 26, "years": [ + 2026, + 2025, + 2024, + 2023, 2021, 2020, 2019, - 2018 + 2018, + 2017 ] }, { - "slug": "hypervisor", - "name": "hypervisor", + "slug": "voice-apps", + "name": "voice apps", "organizationCount": 1, - "projectCount": 41, + "projectCount": 26, "years": [ + 2026, 2025, + 2024, 2023, - 2022, 2021, 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "hypervisor-introspection", - "name": "hypervisor introspection", + "slug": "archive", + "name": "archive", "organizationCount": 1, - "projectCount": 101, + "projectCount": 26, "years": [ + 2026, 2025, 2024, 2023, - 2022, 2021, 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "i18n", - "name": "i18n", + "slug": "web-archives", + "name": "web archives", "organizationCount": 1, - "projectCount": 85, + "projectCount": 26, "years": [ + 2026, + 2025, 2024, 2023, - 2022, 2021, 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "iam", - "name": "IAM", + "slug": "web-archving", + "name": "web archving", "organizationCount": 1, - "projectCount": 22, + "projectCount": 26, "years": [ - 2022, + 2026, + 2025, + 2024, + 2023, 2021, - 2020 + 2020, + 2019, + 2018, + 2017 ] }, { - "slug": "ictd", - "name": "ictd", + "slug": "archiving", + "name": "archiving", "organizationCount": 1, - "projectCount": 31, + "projectCount": 26, "years": [ + 2026, + 2025, + 2024, 2023, - 2022, 2021, 2020, 2019, @@ -14413,278 +14857,246 @@ ] }, { - "slug": "identity", - "name": "identity", + "slug": "stateful", + "name": "stateful", "organizationCount": 1, - "projectCount": 5, + "projectCount": 3, "years": [ 2019, 2018 ] }, { - "slug": "iio", - "name": "iio", + "slug": "dhcp", + "name": "dhcp", "organizationCount": 1, - "projectCount": 137, + "projectCount": 3, "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, - 2020, 2019, - 2018, - 2017, - 2016 + 2018 ] }, { - "slug": "ike", - "name": "ike", + "slug": "dns", + "name": "dns", "organizationCount": 1, - "projectCount": 10, + "projectCount": 3, "years": [ - 2022, - 2021, - 2020, 2019, - 2018, - 2017 + 2018 ] }, { - "slug": "ikev2", - "name": "ikev2", + "slug": "3d-reconstruction", + "name": "3D Reconstruction", "organizationCount": 1, - "projectCount": 10, + "projectCount": 13, "years": [ - 2022, - 2021, - 2020, - 2019, - 2018, - 2017 + 2026, + 2025, + 2024, + 2023 ] }, { - "slug": "illustration", - "name": "illustration", + "slug": "3d-printing", + "name": "3d printing", "organizationCount": 1, - "projectCount": 10, + "projectCount": 13, "years": [ + 2026, 2025, 2024, - 2023, - 2022 + 2023 ] }, { - "slug": "image", - "name": "image", + "slug": "neuronavigation", + "name": "Neuronavigation", "organizationCount": 1, - "projectCount": 49, + "projectCount": 13, "years": [ + 2026, 2025, 2024, - 2023, - 2022, - 2021, - 2020, - 2019, - 2018, - 2017, - 2016 + 2023 ] }, { - "slug": "image-prcessing", - "name": "image prcessing", + "slug": "earth-sciences", + "name": "earth sciences", "organizationCount": 1, - "projectCount": 7, + "projectCount": 22, "years": [ - 2023, + 2026, + 2025, + 2024, 2022, 2021 ] }, { - "slug": "image-synthesis", - "name": "image synthesis", + "slug": "oceanography", + "name": "Oceanography", "organizationCount": 1, - "projectCount": 11, + "projectCount": 22, "years": [ - 2020, - 2019, - 2018, - 2017 + 2026, + 2025, + 2024, + 2022, + 2021 ] }, { - "slug": "images", - "name": "images", + "slug": "marine-biodiversity", + "name": "Marine Biodiversity", "organizationCount": 1, - "projectCount": 49, + "projectCount": 22, "years": [ + 2026, 2025, 2024, - 2023, 2022, - 2021, - 2020, - 2019, - 2018, - 2017, - 2016 + 2021 ] }, { - "slug": "imdg", - "name": "IMDG", + "slug": "computation-graph", + "name": "computation graph", "organizationCount": 1, "projectCount": 3, "years": [ - 2022, - 2021 + 2023 ] }, { - "slug": "in-memory", - "name": "In-memory", + "slug": "code-conversion", + "name": "code conversion", "organizationCount": 1, "projectCount": 3, "years": [ - 2022, - 2021 + 2023 ] }, { - "slug": "inclusion", - "name": "inclusion", + "slug": "unified-api", + "name": "unified API", "organizationCount": 1, - "projectCount": 11, + "projectCount": 3, "years": [ - 2020, - 2018, - 2016 + 2023 ] }, { - "slug": "inclusive", - "name": "Inclusive", + "slug": "academia", + "name": "academia", "organizationCount": 1, - "projectCount": 39, + "projectCount": 11, "years": [ + 2026, 2025, 2024, - 2023, 2022, - 2020, - 2019, - 2018, - 2017, - 2016 + 2021, + 2019 ] }, { - "slug": "inclusivity", - "name": "inclusivity", + "slug": "reference-manager", + "name": "reference manager", "organizationCount": 1, "projectCount": 11, "years": [ - 2020, - 2018, - 2016 - ] - }, - { - "slug": "indexing", - "name": "indexing", - "organizationCount": 1, - "projectCount": 15, - "years": [ - 2020, - 2019, - 2018, - 2017, - 2016 + 2026, + 2025, + 2024, + 2022, + 2021, + 2019 ] }, { - "slug": "individual-projects", - "name": "individual projects", + "slug": "bibtex", + "name": "bibtex", "organizationCount": 1, - "projectCount": 13, + "projectCount": 11, "years": [ - 2017, - 2016 + 2026, + 2025, + 2024, + 2022, + 2021, + 2019 ] }, { - "slug": "inference", - "name": "inference", + "slug": "pdf", + "name": "pdf", "organizationCount": 1, - "projectCount": 32, + "projectCount": 11, "years": [ + 2026, 2025, 2024, - 2023, - 2022 + 2022, + 2021, + 2019 ] }, { - "slug": "information-theory", - "name": "information theory", + "slug": "literature", + "name": "literature", "organizationCount": 1, - "projectCount": 18, + "projectCount": 11, "years": [ + 2026, 2025, 2024, - 2023, 2022, 2021, - 2020, - 2019, - 2018, - 2017, - 2016 + 2019 ] }, { - "slug": "informationc-centric-networking", - "name": "informationc centric networking", + "slug": "bibliography", + "name": "bibliography", "organizationCount": 1, - "projectCount": 2, + "projectCount": 11, "years": [ + 2026, + 2025, + 2024, + 2022, + 2021, 2019 ] }, { - "slug": "infrastructure-as-design", - "name": "infrastructure as design", + "slug": "keras", + "name": "keras", "organizationCount": 1, - "projectCount": 2, + "projectCount": 4, "years": [ 2025 ] }, { - "slug": "infrastrucutreascode", - "name": "InfrastrucutreAsCode", + "slug": "python-library", + "name": "PYTHON LIBRARY", "organizationCount": 1, - "projectCount": 3, + "projectCount": 4, "years": [ - 2024 + 2025 ] }, { - "slug": "init", - "name": "init", + "slug": "openshift", + "name": "openshift", "organizationCount": 1, - "projectCount": 25, + "projectCount": 52, "years": [ - 2023, + 2026, 2022, 2021, 2020, @@ -14695,12 +15107,12 @@ ] }, { - "slug": "init-systems", - "name": "init systems", + "slug": "javaee", + "name": "javaee", "organizationCount": 1, - "projectCount": 25, + "projectCount": 52, "years": [ - 2023, + 2026, 2022, 2021, 2020, @@ -14711,51 +15123,30 @@ ] }, { - "slug": "innovation", - "name": "innovation", - "organizationCount": 1, - "projectCount": 4, - "years": [ - 2024 - ] - }, - { - "slug": "instrumentation", - "name": "instrumentation", - "organizationCount": 1, - "projectCount": 10, - "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, - 2020 - ] - }, - { - "slug": "integrated-development-environments", - "name": "integrated development environments", + "slug": "codeuino", + "name": "codeuino", "organizationCount": 1, - "projectCount": 140, + "projectCount": 52, "years": [ - 2025, - 2024, - 2023, + 2026, 2022, 2021, 2020, 2019, + 2018, 2017, 2016 ] }, { - "slug": "integration", - "name": "integration", + "slug": "aerogear", + "name": "aerogear", "organizationCount": 1, - "projectCount": 15, + "projectCount": 52, "years": [ + 2026, + 2022, + 2021, 2020, 2019, 2018, @@ -14764,14 +15155,12 @@ ] }, { - "slug": "integrations", - "name": "integrations", + "slug": "cfc", + "name": "cfc", "organizationCount": 1, - "projectCount": 135, + "projectCount": 52, "years": [ - 2025, - 2024, - 2023, + 2026, 2022, 2021, 2020, @@ -14782,11 +15171,12 @@ ] }, { - "slug": "interactive", - "name": "interactive", + "slug": "robot-simulator", + "name": "robot simulator", "organizationCount": 1, - "projectCount": 77, + "projectCount": 48, "years": [ + 2026, 2025, 2024, 2023, @@ -14795,68 +15185,60 @@ 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "interfaces", - "name": "interfaces", + "slug": "neural-search", + "name": "neural search", "organizationCount": 1, - "projectCount": 44, + "projectCount": 1, "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, - 2020, - 2019, - 2018, - 2017, - 2016 + 2023 ] }, { - "slug": "international", - "name": "international", + "slug": "python-mlops-framework", + "name": "Python MLOps Framework", "organizationCount": 1, - "projectCount": 31, + "projectCount": 1, "years": [ - 2021, - 2020, - 2019, - 2018 + 2023 ] }, { - "slug": "internationalization", - "name": "internationalization", + "slug": "mulitmodel-data", + "name": "Mulitmodel Data", "organizationCount": 1, - "projectCount": 9, + "projectCount": 1, "years": [ - 2025, - 2024 + 2023 ] }, { - "slug": "internet-access", - "name": "internet access", + "slug": "video-conferencing", + "name": "video conferencing", "organizationCount": 1, - "projectCount": 20, + "projectCount": 21, "years": [ - 2019, + 2026, + 2025, + 2024, + 2022, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "internet-censorship", - "name": "internet censorship", + "slug": "mvc", + "name": "mvc", "organizationCount": 1, - "projectCount": 20, + "projectCount": 36, "years": [ + 2026, + 2025, + 2022, + 2021, 2019, 2018, 2017, @@ -14864,155 +15246,138 @@ ] }, { - "slug": "interpretibility", - "name": "Interpretibility", + "slug": "notes", + "name": "notes", "organizationCount": 1, - "projectCount": 4, + "projectCount": 17, "years": [ - 2022 + 2026, + 2024, + 2022, + 2021, + 2020 ] }, { - "slug": "ion-mobility", - "name": "ion mobility", + "slug": "synchronisation", + "name": "synchronisation", "organizationCount": 1, - "projectCount": 3, + "projectCount": 17, "years": [ + 2026, + 2024, 2022, + 2021, 2020 ] }, { - "slug": "ios", - "name": "ios", + "slug": "sharing", + "name": "sharing", "organizationCount": 1, - "projectCount": 45, + "projectCount": 17, "years": [ - 2025, + 2026, 2024, - 2023, 2022, 2021, - 2020, - 2019, - 2017, - 2016 + 2020 ] }, { - "slug": "iot-edge", - "name": "iot & edge", + "slug": "note-taking", + "name": "note-taking", "organizationCount": 1, - "projectCount": 68, + "projectCount": 17, "years": [ - 2025, + 2026, 2024, - 2023, 2022, - 2020, - 2019, - 2018, - 2017, - 2016 + 2021, + 2020 ] }, { - "slug": "iot-cps", - "name": "iot cps", + "slug": "office", + "name": "office", "organizationCount": 1, - "projectCount": 46, + "projectCount": 17, "years": [ - 2025, + 2026, 2024, - 2023, 2022, 2021, - 2020, - 2019, - 2018, - 2017, - 2016 + 2020 ] }, { - "slug": "ip-cores", - "name": "IP cores", + "slug": "framework-development", + "name": "framework development", "organizationCount": 1, - "projectCount": 12, + "projectCount": 7, "years": [ - 2024, - 2023, - 2022 + 2016 ] }, { - "slug": "ipc", - "name": "ipc", + "slug": "user-interface-components", + "name": "user interface components", "organizationCount": 1, - "projectCount": 3, + "projectCount": 7, "years": [ - 2017 + 2016 ] }, { - "slug": "ipfs", - "name": "ipfs", + "slug": "event-handling", + "name": "event handling", "organizationCount": 1, - "projectCount": 2, + "projectCount": 7, "years": [ - 2019 + 2016 ] }, { - "slug": "ipsec", - "name": "ipsec", + "slug": "data-validation", + "name": "data validation", "organizationCount": 1, - "projectCount": 10, + "projectCount": 14, "years": [ - 2022, - 2021, - 2020, - 2019, - 2018, - 2017 + 2026, + 2025, + 2024 ] }, { - "slug": "ipsec-vpn", - "name": "ipsec vpn", + "slug": "developer-tooling", + "name": "developer tooling", "organizationCount": 1, - "projectCount": 10, + "projectCount": 14, "years": [ - 2022, - 2021, - 2020, - 2019, - 2018, - 2017 + 2026, + 2025, + 2024 ] }, { - "slug": "java-jsp", - "name": "java jsp", + "slug": "spatial", + "name": "spatial", "organizationCount": 1, - "projectCount": 70, + "projectCount": 1, "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, - 2019, - 2018, - 2017 + 2022 ] }, { - "slug": "javaee", - "name": "javaee", + "slug": "deskstop", + "name": "deskstop", "organizationCount": 1, - "projectCount": 52, + "projectCount": 167, "years": [ + 2026, + 2025, + 2024, + 2023, 2022, 2021, 2020, @@ -15023,208 +15388,219 @@ ] }, { - "slug": "jingle", - "name": "Jingle", + "slug": "api-testing", + "name": "API Testing", "organizationCount": 1, "projectCount": 11, "years": [ + 2025, 2024, - 2023, - 2022, - 2020, - 2019, - 2017 + 2023 ] }, { - "slug": "jit", - "name": "JIT", + "slug": "no-code-platform", + "name": "No code platform", "organizationCount": 1, - "projectCount": 3, + "projectCount": 11, "years": [ - 2022, - 2021 + 2025, + 2024, + 2023 ] }, { - "slug": "journalism", - "name": "journalism", + "slug": "dev-tool", + "name": "Dev Tool", "organizationCount": 1, - "projectCount": 1, + "projectCount": 11, "years": [ - 2018, - 2017 + 2025, + 2024, + 2023 ] }, { - "slug": "jvm", - "name": "jvm", + "slug": "mock-and-stubs-generation", + "name": "Mock and Stubs Generation", "organizationCount": 1, - "projectCount": 46, + "projectCount": 11, "years": [ 2025, 2024, - 2023, - 2022, - 2021, - 2020, - 2019, - 2018, - 2017, - 2016 + 2023 ] }, { - "slug": "keras", - "name": "keras", + "slug": "ai-testing-agent", + "name": "AI Testing Agent", "organizationCount": 1, - "projectCount": 4, + "projectCount": 11, "years": [ - 2025 + 2025, + 2024, + 2023 ] }, { - "slug": "kernel-scripting", - "name": "kernel scripting", + "slug": "cloudnative", + "name": "CloudNative", "organizationCount": 1, - "projectCount": 43, + "projectCount": 3, + "years": [ + 2022 + ] + }, + { + "slug": "operations", + "name": "Operations", + "organizationCount": 1, + "projectCount": 3, + "years": [ + 2022 + ] + }, + { + "slug": "offline-access", + "name": "offline access", + "organizationCount": 1, + "projectCount": 18, "years": [ + 2026, 2025, 2024, + 2023, 2021, 2020, 2019, - 2018, - 2017, - 2016 + 2018 ] }, { - "slug": "kinematics", - "name": "kinematics", + "slug": "media-center", + "name": "media center", "organizationCount": 1, - "projectCount": 10, + "projectCount": 12, "years": [ - 2024, - 2023, 2022, 2021, - 2020 + 2020, + 2019, + 2018, + 2017 ] }, { - "slug": "knowledge-extraction", - "name": "knowledge extraction", + "slug": "video-player", + "name": "video player", "organizationCount": 1, - "projectCount": 61, + "projectCount": 12, "years": [ - 2025, - 2024, - 2023, 2022, 2021, 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "knowledge-representation", - "name": "knowledge representation", + "slug": "media-management", + "name": "media management", "organizationCount": 1, - "projectCount": 11, + "projectCount": 12, "years": [ + 2022, + 2021, + 2020, + 2019, 2018, 2017 ] }, { - "slug": "kubernetes-operator", - "name": "Kubernetes Operator", + "slug": "home-theater", + "name": "home theater", "organizationCount": 1, - "projectCount": 5, + "projectCount": 12, "years": [ - 2025, - 2024 + 2022, + 2021, + 2020, + 2019, + 2018, + 2017 ] }, { - "slug": "laboratory-information-system", - "name": "Laboratory Information System", + "slug": "low-level", + "name": "low-level", "organizationCount": 1, - "projectCount": 9, + "projectCount": 6, "years": [ - 2025, - 2024 + 2026, + 2024, + 2016 ] }, { - "slug": "land-rights", - "name": "land rights", + "slug": "tekton", + "name": "Tekton", "organizationCount": 1, - "projectCount": 1, + "projectCount": 0, "years": [ - 2017 + 2026 ] }, { - "slug": "land-system-modelling", - "name": "land system modelling", + "slug": "slsa", + "name": "SLSA", "organizationCount": 1, - "projectCount": 3, + "projectCount": 0, "years": [ - 2022 + 2026 ] }, { - "slug": "language-server", - "name": "language server", + "slug": "supplychain", + "name": "supplychain", "organizationCount": 1, - "projectCount": 37, + "projectCount": 0, "years": [ - 2021, - 2019, - 2018, - 2017 + 2026 ] }, { - "slug": "language-technology", - "name": "language technology", + "slug": "3d-geometry", + "name": "3D Geometry", "organizationCount": 1, - "projectCount": 67, + "projectCount": 2, "years": [ - 2024, - 2023, - 2021, - 2020, - 2019, - 2018, - 2017, - 2016 + 2026, + 2025 ] }, { - "slug": "language-techology", - "name": "language techology", + "slug": "programming-build-tools", + "name": "Programming & Build Tools", "organizationCount": 1, - "projectCount": 7, + "projectCount": 16, "years": [ - 2016 + 2026, + 2025, + 2024, + 2023 ] }, { - "slug": "largelanguagemodel", - "name": "largelanguagemodel", + "slug": "scripting", + "name": "scripting", "organizationCount": 1, - "projectCount": 61, + "projectCount": 43, "years": [ + 2026, 2025, 2024, - 2023, - 2022, 2021, 2020, 2019, @@ -15234,24 +15610,16 @@ ] }, { - "slug": "latex", - "name": "latex", + "slug": "scripting-languages", + "name": "scripting languages", "organizationCount": 1, - "projectCount": 11, + "projectCount": 43, "years": [ + 2026, 2025, 2024, - 2022, 2021, - 2019 - ] - }, - { - "slug": "law", - "name": "law", - "organizationCount": 1, - "projectCount": 20, - "years": [ + 2020, 2019, 2018, 2017, @@ -15259,11 +15627,16 @@ ] }, { - "slug": "law-and-policy", - "name": "law and policy", + "slug": "reactive-programming", + "name": "reactive programming", "organizationCount": 1, - "projectCount": 20, + "projectCount": 43, "years": [ + 2026, + 2025, + 2024, + 2021, + 2020, 2019, 2018, 2017, @@ -15271,26 +15644,15 @@ ] }, { - "slug": "legal-technology", - "name": "legal technology", + "slug": "kernel-scripting", + "name": "kernel scripting", "organizationCount": 1, - "projectCount": 13, + "projectCount": 43, "years": [ + 2026, 2025, 2024, 2021, - 2020 - ] - }, - { - "slug": "less-resourced-languages", - "name": "less-resourced languages", - "organizationCount": 1, - "projectCount": 67, - "years": [ - 2024, - 2023, - 2021, 2020, 2019, 2018, @@ -15299,13 +15661,14 @@ ] }, { - "slug": "less-resources-languages", - "name": "less-resources languages", + "slug": "reactive-languages", + "name": "reactive languages", "organizationCount": 1, - "projectCount": 67, + "projectCount": 43, "years": [ + 2026, + 2025, 2024, - 2023, 2021, 2020, 2019, @@ -15315,13 +15678,14 @@ ] }, { - "slug": "lesser-resourced-languages", - "name": "lesser-resourced languages", + "slug": "statically-typed-languages", + "name": "statically-typed languages", "organizationCount": 1, - "projectCount": 67, + "projectCount": 43, "years": [ + 2026, + 2025, 2024, - 2023, 2021, 2020, 2019, @@ -15331,222 +15695,202 @@ ] }, { - "slug": "level", - "name": "level", + "slug": "social-participation", + "name": "Social participation", "organizationCount": 1, - "projectCount": 3, + "projectCount": 4, "years": [ - 2017 + 2024 ] }, { - "slug": "license", - "name": "License", + "slug": "mentoring", + "name": "mentoring", "organizationCount": 1, - "projectCount": 32, + "projectCount": 4, "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, - 2020, - 2019, - 2017 + 2024 ] }, { - "slug": "license-management", - "name": "license management", + "slug": "e2e", + "name": "e2e", "organizationCount": 1, - "projectCount": 42, + "projectCount": 2, "years": [ - 2025, - 2024, - 2023, 2022, - 2021, - 2020, - 2019, 2018 ] }, { - "slug": "licensing-software-quality-qa", - "name": "licensing & software quality QA", + "slug": "circumvention", + "name": "Circumvention", "organizationCount": 1, - "projectCount": 52, + "projectCount": 2, "years": [ - 2025, - 2024, - 2023, 2022, - 2021, - 2020, - 2018, - 2017, - 2016 + 2018 ] }, { - "slug": "life-sciences", - "name": "life sciences", + "slug": "outreach", + "name": "Outreach", "organizationCount": 1, - "projectCount": 3, + "projectCount": 0, "years": [ - 2016 + 2026 ] }, { - "slug": "lightweight", - "name": "lightweight", + "slug": "image-prcessing", + "name": "image prcessing", "organizationCount": 1, - "projectCount": 19, + "projectCount": 7, "years": [ + 2023, 2022, - 2020, - 2019, - 2018, - 2017, - 2016 + 2021 ] }, { - "slug": "link-time-optimization", - "name": "link time optimization", + "slug": "satellite-data", + "name": "satellite data", "organizationCount": 1, - "projectCount": 34, + "projectCount": 7, "years": [ - 2025, - 2024, - 2023, - 2022, 2021, 2020, - 2019, - 2018 + 2019 ] }, { - "slug": "linux-kernel", - "name": "linux kernel", + "slug": "space-standards", + "name": "space standards", "organizationCount": 1, - "projectCount": 11, + "projectCount": 7, "years": [ - 2019, - 2018, - 2017, - 2016 + 2021, + 2020, + 2019 ] }, { - "slug": "literature", - "name": "literature", + "slug": "spacecraft", + "name": "spacecraft", "organizationCount": 1, - "projectCount": 11, + "projectCount": 7, "years": [ - 2025, - 2024, - 2022, 2021, + 2020, 2019 ] }, { - "slug": "live-migration", - "name": "live migration", + "slug": "orbital-dynamics", + "name": "orbital dynamics", "organizationCount": 1, - "projectCount": 18, + "projectCount": 7, "years": [ - 2025, - 2024, - 2023, - 2022, 2021, 2020, 2019 ] }, { - "slug": "live-music", - "name": "Live music", + "slug": "cubesat", + "name": "cubesat", "organizationCount": 1, - "projectCount": 32, + "projectCount": 7, "years": [ - 2025, - 2023, - 2021, - 2019, - 2017 + 2026, + 2024, + 2022, + 2021 ] }, { - "slug": "live-programming", - "name": "live programming", + "slug": "mission-control", + "name": "mission control", "organizationCount": 1, - "projectCount": 6, + "projectCount": 7, "years": [ - 2016 + 2026, + 2024, + 2022, + 2021 ] }, { - "slug": "llm", - "name": "LLM", + "slug": "communication-protocols", + "name": "Communication Protocols", "organizationCount": 1, - "projectCount": 27, + "projectCount": 7, "years": [ - 2025, - 2020, - 2019, - 2018, - 2017, - 2016 + 2026, + 2024, + 2022, + 2021 ] }, { - "slug": "load-testing", - "name": "load testing", + "slug": "rover", + "name": "Rover", "organizationCount": 1, - "projectCount": 3, + "projectCount": 7, "years": [ - 2020, - 2019 + 2026, + 2024, + 2022, + 2021 ] }, { - "slug": "load-balancing", - "name": "load-balancing", + "slug": "ictd", + "name": "ictd", "organizationCount": 1, - "projectCount": 18, + "projectCount": 31, "years": [ - 2025, - 2024, + 2026, 2023, 2022, 2021, 2020, - 2019 + 2019, + 2018, + 2017 ] }, { - "slug": "local-grammars", - "name": "local grammars", + "slug": "office-suite", + "name": "office suite", "organizationCount": 1, - "projectCount": 2, + "projectCount": 65, "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2019, + 2018, + 2017, 2016 ] }, { - "slug": "locationtech", - "name": "locationtech", + "slug": "big-project", + "name": "big project", "organizationCount": 1, - "projectCount": 68, + "projectCount": 65, "years": [ + 2026, 2025, 2024, 2023, 2022, + 2021, 2020, 2019, 2018, @@ -15555,67 +15899,95 @@ ] }, { - "slug": "lod", - "name": "lod", + "slug": "dev-ops", + "name": "dev-ops", "organizationCount": 1, - "projectCount": 30, + "projectCount": 4, "years": [ - 2022, - 2021, 2020, - 2019, - 2018 + 2019 ] }, { - "slug": "log-management", - "name": "log management", + "slug": "webvr", + "name": "webvr", "organizationCount": 1, - "projectCount": 12, + "projectCount": 75, "years": [ + 2026, + 2025, + 2024, + 2023, 2022, 2021, 2020, 2019, - 2018, + 2017, 2016 ] }, { - "slug": "logic-bugs", - "name": "Logic bugs", + "slug": "cluster", + "name": "cluster", "organizationCount": 1, - "projectCount": 6, + "projectCount": 75, "years": [ + 2026, 2025, - 2023 + 2024, + 2023, + 2022, + 2021, + 2020, + 2019, + 2017, + 2016 ] }, { - "slug": "low-level-programming", - "name": "low level programming", + "slug": "google-earth", + "name": "google earth", "organizationCount": 1, - "projectCount": 1, + "projectCount": 75, "years": [ - 2022 + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2019, + 2017, + 2016 ] }, { - "slug": "low-level", - "name": "low-level", + "slug": "compiler-api", + "name": "compiler api", "organizationCount": 1, - "projectCount": 6, + "projectCount": 122, "years": [ + 2026, + 2025, 2024, + 2023, + 2022, + 2021, + 2020, + 2019, + 2018, + 2017, 2016 ] }, { - "slug": "lsb", - "name": "lsb", + "slug": "debuggers", + "name": "debuggers", "organizationCount": 1, - "projectCount": 137, + "projectCount": 122, "years": [ + 2026, 2025, 2024, 2023, @@ -15641,70 +16013,83 @@ ] }, { - "slug": "machine", - "name": "machine", + "slug": "operational-analytics", + "name": "Operational Analytics", "organizationCount": 1, - "projectCount": 7, + "projectCount": 2, "years": [ - 2018, - 2017, - 2016 + 2023 ] }, { - "slug": "machine-trans", - "name": "machine trans", + "slug": "database-engines", + "name": "Database Engines", "organizationCount": 1, - "projectCount": 7, + "projectCount": 39, "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2019, 2018, 2017, 2016 ] }, { - "slug": "machine-to-machine", - "name": "machine-to-machine", + "slug": "sql-features", + "name": "SQL Features", "organizationCount": 1, - "projectCount": 11, + "projectCount": 39, "years": [ + 2026, + 2025, 2024, 2023, 2022, + 2021, 2020, 2019, - 2017 + 2018, + 2017, + 2016 ] }, { - "slug": "mailing-lists", - "name": "mailing lists", + "slug": "self-hosted", + "name": "self-hosted", "organizationCount": 1, - "projectCount": 4, + "projectCount": 5, "years": [ - 2021, - 2019, - 2016 + 2023, + 2022 ] }, { - "slug": "makers", - "name": "makers", + "slug": "decentralisation", + "name": "decentralisation", "organizationCount": 1, - "projectCount": 3, + "projectCount": 29, "years": [ + 2022, + 2021, + 2020, + 2019, + 2018, + 2017, 2016 ] }, { - "slug": "malware", - "name": "malware", + "slug": "federated", + "name": "federated", "organizationCount": 1, - "projectCount": 101, + "projectCount": 29, "years": [ - 2025, - 2024, - 2023, 2022, 2021, 2020, @@ -15715,25 +16100,33 @@ ] }, { - "slug": "mapping-and-surveying", - "name": "mapping and surveying", + "slug": "decentralised", + "name": "decentralised", "organizationCount": 1, - "projectCount": 3, + "projectCount": 29, "years": [ + 2022, 2021, - 2020 + 2020, + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "marine-biodiversity", - "name": "Marine Biodiversity", + "slug": "secure-messaging", + "name": "Secure Messaging", "organizationCount": 1, - "projectCount": 22, + "projectCount": 29, "years": [ - 2025, - 2024, 2022, - 2021 + 2021, + 2020, + 2019, + 2018, + 2017, + 2016 ] }, { @@ -15755,87 +16148,65 @@ ] }, { - "slug": "martech", - "name": "martech", + "slug": "digital-marketing", + "name": "Digital Marketing", "organizationCount": 1, - "projectCount": 39, + "projectCount": 2, "years": [ - 2025, - 2024, - 2023, - 2022, - 2020, - 2019, - 2018, - 2017, - 2016 + 2024 ] }, { - "slug": "massive-community", - "name": "Massive community", + "slug": "aerospace", + "name": "aerospace", "organizationCount": 1, - "projectCount": 39, + "projectCount": 13, "years": [ 2025, 2024, - 2023, 2022, + 2021, 2020, 2019, - 2018, 2017, 2016 ] }, { - "slug": "material-design", - "name": "material design", - "organizationCount": 1, - "projectCount": 32, - "years": [ - 2025, - 2023, - 2021, - 2019, - 2017 - ] - }, - { - "slug": "materials", - "name": "materials", + "slug": "mechanical-engineering", + "name": "mechanical engineering", "organizationCount": 1, - "projectCount": 16, + "projectCount": 13, "years": [ 2025, 2024, - 2023, 2022, 2021, - 2020 + 2020, + 2019, + 2017, + 2016 ] }, { - "slug": "matlab", - "name": "matlab", + "slug": "aeronautics", + "name": "aeronautics", "organizationCount": 1, - "projectCount": 23, + "projectCount": 13, "years": [ 2025, 2024, - 2023, 2022, 2021, 2020, 2019, - 2018, 2017, 2016 ] }, { - "slug": "mechanical-engineering", - "name": "mechanical engineering", + "slug": "multibody-dynamics", + "name": "multibody dynamics", "organizationCount": 1, "projectCount": 13, "years": [ @@ -15850,221 +16221,250 @@ ] }, { - "slug": "media-acceleration", - "name": "media acceleration", + "slug": "computational-mechanics", + "name": "computational mechanics", "organizationCount": 1, - "projectCount": 19, + "projectCount": 13, "years": [ - 2023, + 2025, + 2024, 2022, + 2021, 2020, 2019, - 2018, 2017, 2016 ] }, { - "slug": "media-analysis", - "name": "media analysis", + "slug": "aeroelasticity", + "name": "aeroelasticity", "organizationCount": 1, - "projectCount": 80, + "projectCount": 13, "years": [ 2025, 2024, - 2023, 2022, 2021, 2020, 2019, - 2018, 2017, 2016 ] }, { - "slug": "media-center", - "name": "media center", + "slug": "multiphysics", + "name": "multiphysics", "organizationCount": 1, - "projectCount": 12, + "projectCount": 13, "years": [ + 2025, + 2024, 2022, 2021, 2020, 2019, - 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "media-database", - "name": "media database", + "slug": "structural-engineering", + "name": "Structural engineering", "organizationCount": 1, - "projectCount": 92, + "projectCount": 13, "years": [ 2025, 2024, - 2023, 2022, 2021, 2020, 2019, - 2018, 2017, 2016 ] }, { - "slug": "media-management", - "name": "media management", + "slug": "biophysics", + "name": "biophysics", "organizationCount": 1, - "projectCount": 12, + "projectCount": 16, "years": [ + 2026, + 2025, + 2024, + 2023, 2022, 2021, - 2020, - 2019, - 2018, - 2017 + 2020 ] }, { - "slug": "media-server", - "name": "media server", + "slug": "molecular-simulation", + "name": "molecular simulation", "organizationCount": 1, - "projectCount": 18, + "projectCount": 16, "years": [ - 2020, - 2019, - 2018, - 2017 + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020 ] }, { - "slug": "media-analytics", - "name": "media-analytics", + "slug": "molecular-dynamics", + "name": "molecular dynamics", "organizationCount": 1, - "projectCount": 0, + "projectCount": 16, "years": [ - 2021 + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020 ] }, { - "slug": "mediawiki", - "name": "mediawiki", + "slug": "trajectory-analysis", + "name": "trajectory analysis", "organizationCount": 1, - "projectCount": 85, + "projectCount": 16, "years": [ + 2026, + 2025, 2024, 2023, 2022, 2021, - 2020, - 2019, - 2018, - 2017, - 2016 + 2020 ] }, { - "slug": "medical-practice-management-solution", - "name": "medical practice management solution", + "slug": "soft-matter-physics", + "name": "soft matter physics", "organizationCount": 1, - "projectCount": 3, + "projectCount": 16, "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, 2020 ] }, { - "slug": "medical-record", - "name": "medical record", + "slug": "materials", + "name": "materials", "organizationCount": 1, - "projectCount": 94, + "projectCount": 16, "years": [ + 2026, 2025, 2024, 2023, 2022, 2021, - 2020, - 2019, - 2018, - 2017, - 2016 + 2020 ] }, { - "slug": "medical-research", - "name": "medical research", + "slug": "speed-test", + "name": "speed test", "organizationCount": 1, - "projectCount": 2, + "projectCount": 0, "years": [ - 2018 + 2026 ] }, { - "slug": "medical-simulation", - "name": "medical simulation", + "slug": "internet-measurements", + "name": "Internet measurements", "organizationCount": 1, - "projectCount": 2, + "projectCount": 0, "years": [ - 2018 + 2026 ] }, { - "slug": "membership-management", - "name": "membership management", + "slug": "internet-quality", + "name": "Internet quality", "organizationCount": 1, - "projectCount": 22, + "projectCount": 0, "years": [ - 2021, - 2020, - 2019, - 2018, - 2016 + 2026 ] }, { - "slug": "mentoring", - "name": "mentoring", + "slug": "news-media", + "name": "news-media", "organizationCount": 1, - "projectCount": 4, + "projectCount": 0, "years": [ - 2024 + 2021 ] }, { - "slug": "mesh-generation", - "name": "mesh generation", + "slug": "media-analytics", + "name": "media-analytics", "organizationCount": 1, - "projectCount": 10, + "projectCount": 0, "years": [ - 2016 + 2021 ] }, { - "slug": "mesh-processing", - "name": "mesh processing", + "slug": "ml-inference", + "name": "ml-inference", "organizationCount": 1, - "projectCount": 58, + "projectCount": 6, "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, - 2020, - 2019, - 2018, - 2017 + 2021 ] }, { - "slug": "mesh-networks", - "name": "mesh-networks", + "slug": "platform-engineering", + "name": "Platform Engineering", "organizationCount": 1, - "projectCount": 26, + "projectCount": 2, + "years": [ + 2026, + 2025 + ] + }, + { + "slug": "cloud-native-infrastructure", + "name": "cloud native infrastructure", + "organizationCount": 1, + "projectCount": 2, + "years": [ + 2026, + 2025 + ] + }, + { + "slug": "infrastructure-as-design", + "name": "infrastructure as design", + "organizationCount": 1, + "projectCount": 2, "years": [ + 2026, + 2025 + ] + }, + { + "slug": "hosting", + "name": "hosting", + "organizationCount": 1, + "projectCount": 60, + "years": [ + 2026, 2025, 2024, 2023, @@ -16073,261 +16473,299 @@ 2020, 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "message-correlation", - "name": "message correlation", + "slug": "music-recommendation", + "name": "Music recommendation", "organizationCount": 1, - "projectCount": 12, + "projectCount": 60, "years": [ + 2026, + 2025, + 2024, + 2023, 2022, 2021, 2020, 2019, 2018, + 2017, 2016 ] }, { - "slug": "message-queue", - "name": "message queue", + "slug": "music-social-network", + "name": "music social network", "organizationCount": 1, - "projectCount": 12, + "projectCount": 60, "years": [ + 2026, + 2025, + 2024, + 2023, 2022, 2021, 2020, 2019, 2018, + 2017, 2016 ] }, { - "slug": "mhealth", - "name": "mhealth", + "slug": "foreign-function-interface", + "name": "foreign function interface", "organizationCount": 1, - "projectCount": 3, + "projectCount": 19, "years": [ - 2022 + 2026, + 2024, + 2023, + 2022, + 2021 ] }, { - "slug": "microfinance", - "name": "microfinance", + "slug": "ffi", + "name": "ffi", "organizationCount": 1, - "projectCount": 102, + "projectCount": 19, "years": [ - 2025, + 2026, 2024, 2023, 2022, - 2020, - 2019, - 2018, - 2017, - 2016 + 2021 ] }, { - "slug": "microkernel", - "name": "microkernel", + "slug": "ml-ops", + "name": "ML Ops", "organizationCount": 1, - "projectCount": 3, + "projectCount": 0, "years": [ - 2017 + 2026 ] }, { - "slug": "microscopy", - "name": "microscopy", + "slug": "orchestrator", + "name": "Orchestrator", "organizationCount": 1, - "projectCount": 13, + "projectCount": 0, "years": [ - 2024, - 2023, - 2021, - 2020 + 2026 ] }, { - "slug": "midi", - "name": "midi", + "slug": "exploitation", + "name": "exploitation", "organizationCount": 1, - "projectCount": 24, + "projectCount": 12, "years": [ - 2024, + 2026, 2023, 2022, 2021, 2020, - 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "migration", - "name": "migration", + "slug": "penetration-testing", + "name": "penetration testing", "organizationCount": 1, - "projectCount": 18, + "projectCount": 12, "years": [ - 2025, - 2024, + 2026, 2023, 2022, 2021, 2020, - 2019 + 2018, + 2017 ] }, { - "slug": "minecraft", - "name": "minecraft", + "slug": "offensive-security", + "name": "offensive security", "organizationCount": 1, - "projectCount": 43, + "projectCount": 12, "years": [ + 2026, + 2023, + 2022, 2021, 2020, - 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "minifier", - "name": "minifier", + "slug": "graph-algorithms", + "name": "graph algorithms", "organizationCount": 1, - "projectCount": 2, + "projectCount": 3, "years": [ - 2017 + 2021, + 2020 ] }, { - "slug": "misinformation", - "name": "misinformation", + "slug": "web-interface", + "name": "web-interface", "organizationCount": 1, - "projectCount": 4, + "projectCount": 3, "years": [ - 2018, - 2017 + 2021, + 2020 ] }, { - "slug": "mission-control", - "name": "mission control", + "slug": "mapping-and-surveying", + "name": "mapping and surveying", "organizationCount": 1, - "projectCount": 7, + "projectCount": 3, "years": [ - 2024, - 2022, - 2021 + 2021, + 2020 ] }, { - "slug": "ml-inference", - "name": "ml-inference", + "slug": "processor", + "name": "Processor", "organizationCount": 1, - "projectCount": 6, + "projectCount": 12, "years": [ - 2021 + 2025, + 2024, + 2023, + 2022 ] }, { - "slug": "ml-al", - "name": "ML/AL", + "slug": "risc-v", + "name": "RISC-V", "organizationCount": 1, - "projectCount": 27, + "projectCount": 12, "years": [ 2025, 2024, 2023, - 2022, - 2021 + 2022 ] }, { - "slug": "mlearning", - "name": "mlearning", + "slug": "microkernel", + "name": "microkernel", "organizationCount": 1, - "projectCount": 4, + "projectCount": 3, "years": [ - 2016 + 2017 ] }, { - "slug": "mlops", - "name": "MLOps", + "slug": "components", + "name": "components", "organizationCount": 1, - "projectCount": 6, + "projectCount": 3, "years": [ - 2025, - 2022 + 2017 ] }, { - "slug": "mobian", - "name": "mobian", + "slug": "ipc", + "name": "ipc", "organizationCount": 1, - "projectCount": 78, + "projectCount": 3, "years": [ + 2017 + ] + }, + { + "slug": "ios", + "name": "ios", + "organizationCount": 1, + "projectCount": 45, + "years": [ + 2026, 2025, 2024, + 2023, 2022, 2021, 2020, 2019, - 2018, + 2017, 2016 ] }, { - "slug": "mobile-app", - "name": "mobile app", + "slug": "dj", + "name": "dj", "organizationCount": 1, - "projectCount": 4, + "projectCount": 16, "years": [ + 2026, + 2025, + 2024, + 2022, + 2020, + 2018, + 2017, 2016 ] }, { - "slug": "mobile-banking", - "name": "mobile banking", + "slug": "beatdetection", + "name": "beatdetection", "organizationCount": 1, - "projectCount": 102, + "projectCount": 16, "years": [ + 2026, 2025, 2024, - 2023, 2022, 2020, - 2019, 2018, 2017, 2016 ] }, { - "slug": "mobile-robots", - "name": "mobile robots", + "slug": "music-information-retrieval", + "name": "music information retrieval", "organizationCount": 1, - "projectCount": 8, + "projectCount": 16, "years": [ + 2026, + 2025, + 2024, + 2022, + 2020, 2018, 2017, 2016 ] }, { - "slug": "mobile-security", - "name": "mobile security", + "slug": "weather-forecasting", + "name": "Weather Forecasting", "organizationCount": 1, - "projectCount": 102, + "projectCount": 0, + "years": [ + 2026 + ] + }, + { + "slug": "neighbor-search", + "name": "neighbor-search", + "organizationCount": 1, + "projectCount": 60, "years": [ - 2025, 2024, 2023, 2022, @@ -16335,156 +16773,155 @@ 2020, 2019, 2018, + 2017, 2016 ] }, { - "slug": "mobile-streaming", - "name": "mobile streaming", + "slug": "selfdriving", + "name": "selfdriving", "organizationCount": 1, - "projectCount": 18, + "projectCount": 8, "years": [ - 2020, - 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "mock-and-stubs-generation", - "name": "Mock and Stubs Generation", + "slug": "mobile-robots", + "name": "mobile robots", "organizationCount": 1, - "projectCount": 11, + "projectCount": 8, "years": [ - 2025, - 2024, - 2023 + 2018, + 2017, + 2016 ] }, { - "slug": "modding", - "name": "modding", + "slug": "robot", + "name": "robot", "organizationCount": 1, - "projectCount": 43, + "projectCount": 8, "years": [ - 2021, - 2020, - 2019, 2018, 2017, 2016 ] }, { - "slug": "model-checking", - "name": "model checking", + "slug": "development-framework", + "name": "development framework", "organizationCount": 1, - "projectCount": 46, + "projectCount": 0, "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, - 2020, - 2019, - 2018, - 2017, - 2016 + 2026 ] }, { - "slug": "modeling-optimization", - "name": "modeling & optimization", + "slug": "ai-agent", + "name": "AI Agent", "organizationCount": 1, - "projectCount": 6, + "projectCount": 0, "years": [ - 2017, - 2016 + 2026 ] }, { - "slug": "modelling", - "name": "Modelling", + "slug": "compostion-ai", + "name": "Compostion AI", "organizationCount": 1, - "projectCount": 32, + "projectCount": 0, "years": [ - 2025, - 2023, - 2021, - 2019, - 2017 + 2026 ] }, { - "slug": "molecular-analysis", - "name": "molecular analysis", + "slug": "ai-for-math", + "name": "AI for math", + "organizationCount": 1, + "projectCount": 0, + "years": [ + 2026 + ] + }, + { + "slug": "alerting", + "name": "alerting", "organizationCount": 1, "projectCount": 3, "years": [ - 2022, - 2020 + 2020, + 2019 ] }, { - "slug": "molecular-dynamics", - "name": "molecular dynamics", + "slug": "climate-monitoring", + "name": "climate monitoring", "organizationCount": 1, - "projectCount": 16, + "projectCount": 3, "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, - 2020 + 2022 ] }, { - "slug": "molecular-networking", - "name": "molecular networking", + "slug": "nature-based-solutions", + "name": "nature based solutions", "organizationCount": 1, "projectCount": 3, "years": [ - 2022, - 2020 + 2022 ] }, { - "slug": "molecular-simulation", - "name": "molecular simulation", + "slug": "land-system-modelling", + "name": "land system modelling", "organizationCount": 1, - "projectCount": 16, + "projectCount": 3, "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, - 2020 + 2022 ] }, { - "slug": "monte-carlo-methods", - "name": "monte carlo methods", + "slug": "ar", + "name": "AR", "organizationCount": 1, - "projectCount": 9, + "projectCount": 2, "years": [ - 2021, - 2020, + 2022 + ] + }, + { + "slug": "e-learning", + "name": "e-learning", + "organizationCount": 1, + "projectCount": 7, + "years": [ + 2019, + 2018, + 2017, 2016 ] }, { - "slug": "morphological-analysis", - "name": "morphological analysis", + "slug": "school-systems", + "name": "school systems", "organizationCount": 1, - "projectCount": 67, + "projectCount": 7, + "years": [ + 2019, + 2018, + 2017, + 2016 + ] + }, + { + "slug": "school-system", + "name": "school system", + "organizationCount": 1, + "projectCount": 7, "years": [ - 2024, - 2023, - 2021, - 2020, 2019, 2018, 2017, @@ -16505,21 +16942,29 @@ ] }, { - "slug": "movies", - "name": "movies", + "slug": "trajectory-generation", + "name": "trajectory generation", "organizationCount": 1, - "projectCount": 80, + "projectCount": 10, "years": [ - 2025, 2024, 2023, 2022, 2021, - 2020, - 2019, - 2018, - 2017, - 2016 + 2020 + ] + }, + { + "slug": "kinematics", + "name": "kinematics", + "organizationCount": 1, + "projectCount": 10, + "years": [ + 2024, + 2023, + 2022, + 2021, + 2020 ] }, { @@ -16536,22 +16981,24 @@ ] }, { - "slug": "mulitmodel-data", - "name": "Mulitmodel Data", + "slug": "firefox", + "name": "firefox", "organizationCount": 1, - "projectCount": 1, + "projectCount": 75, "years": [ - 2023 + 2020, + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "multi-agent-system", - "name": "multi-agent system", + "slug": "web-browser", + "name": "web browser", "organizationCount": 1, - "projectCount": 57, + "projectCount": 75, "years": [ - 2022, - 2021, 2020, 2019, 2018, @@ -16560,13 +17007,11 @@ ] }, { - "slug": "multi-agent-systems", - "name": "Multi-agent Systems", + "slug": "open-web", + "name": "open web", "organizationCount": 1, - "projectCount": 57, + "projectCount": 75, "years": [ - 2022, - 2021, 2020, 2019, 2018, @@ -16575,47 +17020,41 @@ ] }, { - "slug": "multi-disciplinary-optimization", - "name": "Multi-Disciplinary Optimization", + "slug": "web-technologies", + "name": "web technologies", "organizationCount": 1, - "projectCount": 7, + "projectCount": 75, "years": [ - 2025, - 2024 + 2020, + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "multibody-dynamics", - "name": "multibody dynamics", + "slug": "notation", + "name": "notation", "organizationCount": 1, - "projectCount": 13, + "projectCount": 24, "years": [ - 2025, 2024, + 2023, 2022, 2021, 2020, 2019, + 2018, 2017, 2016 ] }, { - "slug": "multicloud", - "name": "multicloud", + "slug": "midi", + "name": "midi", "organizationCount": 1, - "projectCount": 1, + "projectCount": 24, "years": [ - 2019 - ] - }, - { - "slug": "multicore", - "name": "multicore", - "organizationCount": 1, - "projectCount": 46, - "years": [ - 2025, 2024, 2023, 2022, @@ -16628,81 +17067,59 @@ ] }, { - "slug": "multilingual-language-resources", - "name": "multilingual language resources", - "organizationCount": 1, - "projectCount": 2, - "years": [ - 2016 - ] - }, - { - "slug": "multilinguality", - "name": "multilinguality", + "slug": "musicxml", + "name": "musicxml", "organizationCount": 1, - "projectCount": 5, + "projectCount": 24, "years": [ + 2024, + 2023, + 2022, 2021, 2020, - 2019 - ] - }, - { - "slug": "multimedia-retrieval", - "name": "multimedia retrieval", - "organizationCount": 1, - "projectCount": 6, - "years": [ - 2021, + 2019, 2018, + 2017, 2016 ] }, { - "slug": "multimodality", - "name": "multimodality", - "organizationCount": 1, - "projectCount": 5, - "years": [ - 2021, - 2020, - 2019 - ] - }, - { - "slug": "multiphysics", - "name": "multiphysics", + "slug": "sheet-music", + "name": "sheet music", "organizationCount": 1, - "projectCount": 13, + "projectCount": 24, "years": [ - 2025, 2024, + 2023, 2022, 2021, 2020, 2019, + 2018, 2017, 2016 ] }, { - "slug": "music-information-retrieval", - "name": "music information retrieval", + "slug": "music-notation", + "name": "music notation", "organizationCount": 1, - "projectCount": 16, + "projectCount": 24, "years": [ - 2025, 2024, + 2023, 2022, + 2021, 2020, + 2019, 2018, 2017, 2016 ] }, { - "slug": "music-notation", - "name": "music notation", + "slug": "composing", + "name": "composing", "organizationCount": 1, "projectCount": 24, "years": [ @@ -16718,12 +17135,11 @@ ] }, { - "slug": "music-recommendation", - "name": "Music recommendation", + "slug": "notation-software", + "name": "notation software", "organizationCount": 1, - "projectCount": 60, + "projectCount": 24, "years": [ - 2025, 2024, 2023, 2022, @@ -16736,12 +17152,11 @@ ] }, { - "slug": "music-social-network", - "name": "music social network", + "slug": "piano", + "name": "piano", "organizationCount": 1, - "projectCount": 60, + "projectCount": 24, "years": [ - 2025, 2024, 2023, 2022, @@ -16754,8 +17169,8 @@ ] }, { - "slug": "musicxml", - "name": "musicxml", + "slug": "guitar", + "name": "guitar", "organizationCount": 1, "projectCount": 24, "years": [ @@ -16771,14 +17186,16 @@ ] }, { - "slug": "mvc", - "name": "mvc", + "slug": "engraving", + "name": "engraving", "organizationCount": 1, - "projectCount": 36, + "projectCount": 24, "years": [ - 2025, + 2024, + 2023, 2022, 2021, + 2020, 2019, 2018, 2017, @@ -16786,74 +17203,60 @@ ] }, { - "slug": "mysql", - "name": "mysql", + "slug": "molecular-analysis", + "name": "molecular analysis", "organizationCount": 1, - "projectCount": 9, + "projectCount": 3, "years": [ - 2019, - 2018, - 2017 + 2022, + 2020 ] }, { - "slug": "native-mobile-app-testing", - "name": "Native mobile app testing", + "slug": "molecular-networking", + "name": "molecular networking", "organizationCount": 1, - "projectCount": 2, + "projectCount": 3, "years": [ - 2024 + 2022, + 2020 ] }, { - "slug": "nature-based-solutions", - "name": "nature based solutions", + "slug": "ion-mobility", + "name": "ion mobility", "organizationCount": 1, "projectCount": 3, "years": [ - 2022 + 2022, + 2020 ] }, { - "slug": "neighbor-search", - "name": "neighbor-search", + "slug": "informationc-centric-networking", + "name": "informationc centric networking", "organizationCount": 1, - "projectCount": 60, + "projectCount": 2, "years": [ - 2024, - 2023, - 2022, - 2021, - 2020, - 2019, - 2018, - 2017, - 2016 + 2019 ] }, { - "slug": "network-automation", - "name": "network automation", + "slug": "ipfs", + "name": "ipfs", "organizationCount": 1, - "projectCount": 26, + "projectCount": 2, "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, - 2020, - 2019, - 2018, - 2017 + 2019 ] }, { - "slug": "network-management-system", - "name": "network management system", + "slug": "dataviz", + "name": "dataviz", "organizationCount": 1, - "projectCount": 26, + "projectCount": 119, "years": [ + 2026, 2025, 2024, 2023, @@ -16862,70 +17265,41 @@ 2020, 2019, 2018, - 2017 - ] - }, - { - "slug": "network-mapping", - "name": "network mapping", - "organizationCount": 1, - "projectCount": 9, - "years": [ 2017, 2016 ] }, { - "slug": "network-storage", - "name": "network storage", + "slug": "vim", + "name": "vim", "organizationCount": 1, - "projectCount": 31, + "projectCount": 8, "years": [ + 2026, 2025, - 2024, - 2023, - 2022, - 2021, 2020, - 2017, - 2016 + 2019, + 2018 ] }, { - "slug": "network-visualization", - "name": "network visualization", + "slug": "firewall", + "name": "firewall", "organizationCount": 1, - "projectCount": 26, + "projectCount": 11, "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, - 2020, 2019, 2018, - 2017 - ] - }, - { - "slug": "networking-security", - "name": "networking security", - "organizationCount": 1, - "projectCount": 9, - "years": [ - 2025, - 2024 + 2017, + 2016 ] }, { - "slug": "networkmanager", - "name": "NetworkManager", + "slug": "linux-kernel", + "name": "linux kernel", "organizationCount": 1, - "projectCount": 27, + "projectCount": 11, "years": [ - 2025, - 2020, 2019, 2018, 2017, @@ -16933,24 +17307,21 @@ ] }, { - "slug": "neural-network", - "name": "neural network", + "slug": "nonblocking", + "name": "nonblocking", "organizationCount": 1, - "projectCount": 32, + "projectCount": 1, "years": [ - 2025, - 2024, - 2023, - 2022 + 2020 ] }, { - "slug": "neural-search", - "name": "neural search", + "slug": "async", + "name": "async", "organizationCount": 1, "projectCount": 1, "years": [ - 2023 + 2020 ] }, { @@ -16959,133 +17330,117 @@ "organizationCount": 1, "projectCount": 2, "years": [ + 2026, 2025 ] }, { - "slug": "neuroimage-processing", - "name": "neuroimage processing", + "slug": "application-development", + "name": "Application Development", "organizationCount": 1, - "projectCount": 211, + "projectCount": 4, "years": [ - 2025, + 2026, 2024, - 2023, - 2022, - 2021, - 2020, - 2019, - 2018, - 2017, - 2016 + 2022 ] }, { - "slug": "neuroimaging", - "name": "neuroimaging", + "slug": "desktop-app-development", + "name": "Desktop App Development", "organizationCount": 1, - "projectCount": 211, + "projectCount": 4, "years": [ - 2025, + 2026, 2024, - 2023, - 2022, - 2021, - 2020, - 2019, - 2018, - 2017, - 2016 + 2022 ] }, { - "slug": "neuronavigation", - "name": "Neuronavigation", + "slug": "lightweight-framework", + "name": "lightweight framework", "organizationCount": 1, - "projectCount": 13, + "projectCount": 4, "years": [ - 2025, + 2026, 2024, - 2023 + 2022 ] }, { - "slug": "new-projects", - "name": "new projects", + "slug": "end-to-end-testing", + "name": "End-To-End Testing", "organizationCount": 1, - "projectCount": 13, + "projectCount": 2, "years": [ - 2017, - 2016 + 2024 ] }, { - "slug": "news-media", - "name": "news-media", + "slug": "component-testing", + "name": "Component testing", "organizationCount": 1, - "projectCount": 0, + "projectCount": 2, "years": [ - 2021 + 2024 ] }, { - "slug": "next-generation-sequencing", - "name": "next-generation sequencing", + "slug": "native-mobile-app-testing", + "name": "Native mobile app testing", "organizationCount": 1, - "projectCount": 15, + "projectCount": 2, "years": [ - 2020, - 2019, - 2018, - 2016 + 2024 ] }, { - "slug": "no-code-platform", - "name": "No code platform", + "slug": "declarative", + "name": "declarative", "organizationCount": 1, - "projectCount": 11, + "projectCount": 3, "years": [ - 2025, - 2024, - 2023 + 2026, + 2024 ] }, { - "slug": "node-js", - "name": "Node.js", + "slug": "reproducible", + "name": "reproducible", "organizationCount": 1, - "projectCount": 10, + "projectCount": 3, "years": [ - 2025, - 2024, - 2020, - 2019, - 2018 + 2026, + 2024 ] }, { - "slug": "nodered", - "name": "nodered", + "slug": "infrastrucutreascode", + "name": "InfrastrucutreAsCode", "organizationCount": 1, - "projectCount": 70, + "projectCount": 3, "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, - 2019, - 2018, - 2017 + 2026, + 2024 ] }, { - "slug": "non-linear", - "name": "non-linear", + "slug": "network-mapping", + "name": "network mapping", "organizationCount": 1, - "projectCount": 92, + "projectCount": 9, + "years": [ + 2017, + 2016 + ] + }, + { + "slug": "statistical-computing", + "name": "statistical computing", + "organizationCount": 1, + "projectCount": 277, "years": [ + 2026, 2025, 2024, 2023, @@ -17099,76 +17454,88 @@ ] }, { - "slug": "non-profit", - "name": "non-profit", + "slug": "pydata", + "name": "pydata", "organizationCount": 1, - "projectCount": 26, + "projectCount": 277, "years": [ + 2026, 2025, 2024, 2023, + 2022, 2021, 2020, 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "nonblocking", - "name": "nonblocking", + "slug": "blindness", + "name": "blindness", "organizationCount": 1, - "projectCount": 1, + "projectCount": 2, "years": [ - 2020 + 2020, + 2019 ] }, { - "slug": "nosql", - "name": "nosql", + "slug": "screen-reader", + "name": "screen reader", "organizationCount": 1, - "projectCount": 9, + "projectCount": 2, "years": [ - 2024, - 2022, - 2021 + 2020, + 2019 ] }, { - "slug": "nosql-database", - "name": "NoSQL Database", + "slug": "text-to-speech", + "name": "text to speech", "organizationCount": 1, - "projectCount": 3, + "projectCount": 2, "years": [ - 2022, - 2021 + 2020, + 2019 ] }, { - "slug": "notation", - "name": "notation", + "slug": "cs-education", + "name": "cs education", "organizationCount": 1, - "projectCount": 24, + "projectCount": 10, "years": [ + 2026, + 2025, 2024, 2023, 2022, - 2021, - 2020, - 2019, - 2018, - 2017, - 2016 + 2018 ] }, { - "slug": "notation-software", - "name": "notation software", + "slug": "ux-ui", + "name": "UX/UI", "organizationCount": 1, - "projectCount": 24, + "projectCount": 10, "years": [ + 2026, + 2025, 2024, 2023, + 2022, + 2018 + ] + }, + { + "slug": "open-source-bioinformatics", + "name": "Open Source Bioinformatics", + "organizationCount": 1, + "projectCount": 45, + "years": [ 2022, 2021, 2020, @@ -17179,186 +17546,133 @@ ] }, { - "slug": "note-taking", - "name": "note-taking", + "slug": "forecasting", + "name": "Forecasting", "organizationCount": 1, - "projectCount": 17, + "projectCount": 10, "years": [ - 2024, - 2022, - 2021, - 2020 + 2025, + 2024 ] }, { - "slug": "notes", - "name": "notes", + "slug": "climate", + "name": "Climate", "organizationCount": 1, - "projectCount": 17, + "projectCount": 10, "years": [ - 2024, - 2022, - 2021, - 2020 + 2025, + 2024 ] }, { - "slug": "numerical-algorithms", - "name": "numerical algorithms", + "slug": "renewables", + "name": "renewables", "organizationCount": 1, - "projectCount": 7, + "projectCount": 10, "years": [ 2025, 2024 ] }, { - "slug": "oceanography", - "name": "Oceanography", + "slug": "global-development", + "name": "global development", "organizationCount": 1, - "projectCount": 22, + "projectCount": 5, "years": [ - 2025, - 2024, - 2022, - 2021 + 2019, + 2018, + 2017 ] }, { - "slug": "offensive-security", - "name": "offensive security", + "slug": "electrophysiology", + "name": "electrophysiology", "organizationCount": 1, - "projectCount": 12, + "projectCount": 2, "years": [ - 2023, - 2022, - 2021, - 2020, - 2018, - 2017 + 2016 ] }, { - "slug": "office", - "name": "office", + "slug": "food", + "name": "food", "organizationCount": 1, - "projectCount": 17, + "projectCount": 10, "years": [ - 2024, + 2026, + 2025, 2022, - 2021, - 2020 + 2018 ] }, { - "slug": "office-suite", - "name": "office suite", + "slug": "genome", + "name": "genome", "organizationCount": 1, - "projectCount": 65, + "projectCount": 28, "years": [ - 2025, - 2024, + 2026, 2023, 2022, 2021, 2020, - 2019, - 2018, 2017, 2016 ] }, { - "slug": "offline-access", - "name": "offline access", + "slug": "digital-public-goods", + "name": "Digital Public Goods", "organizationCount": 1, - "projectCount": 18, + "projectCount": 9, "years": [ + 2026, 2025, - 2024, - 2023, - 2021, - 2020, - 2019, - 2018 + 2024 ] }, { - "slug": "ogc", - "name": "ogc", + "slug": "telemedicine-and-remote-care", + "name": "Telemedicine and Remote Care", "organizationCount": 1, - "projectCount": 25, + "projectCount": 9, "years": [ + 2026, 2025, - 2024, - 2023, - 2022, - 2021, - 2020, - 2019, - 2018, - 2017, - 2016 + 2024 ] }, { - "slug": "ogc-standards", - "name": "ogc standards", + "slug": "ai-in-health", + "name": "AI in Health", "organizationCount": 1, - "projectCount": 25, + "projectCount": 9, "years": [ + 2026, 2025, - 2024, - 2023, - 2022, - 2021, - 2020, - 2019, - 2018, - 2017, - 2016 - ] - }, - { - "slug": "olap", - "name": "OLAP", - "organizationCount": 1, - "projectCount": 2, - "years": [ - 2025 - ] - }, - { - "slug": "omics-data", - "name": "omics data", - "organizationCount": 1, - "projectCount": 18, - "years": [ - 2019, - 2018, - 2017, - 2016 + 2024 ] }, { - "slug": "on-device-machine-learning", - "name": "on-device machine learning", + "slug": "hmis", + "name": "HMIS", "organizationCount": 1, - "projectCount": 81, + "projectCount": 9, "years": [ - 2023, - 2022, - 2021, - 2020, - 2019 + 2026, + 2025, + 2024 ] }, { - "slug": "ontologies", - "name": "ontologies", + "slug": "fleet-management", + "name": "fleet management", "organizationCount": 1, - "projectCount": 61, + "projectCount": 46, "years": [ + 2026, 2025, 2024, 2023, @@ -17367,50 +17681,34 @@ 2020, 2019, 2018, - 2017, 2016 ] }, { - "slug": "open-event", - "name": "open event", - "organizationCount": 1, - "projectCount": 2, - "years": [ - 2018 - ] - }, - { - "slug": "open-government", - "name": "open government", - "organizationCount": 1, - "projectCount": 5, - "years": [ - 2019, - 2018 - ] - }, - { - "slug": "open-source-bioinformatics", - "name": "Open Source Bioinformatics", + "slug": "control", + "name": "Control", "organizationCount": 1, - "projectCount": 45, + "projectCount": 46, "years": [ + 2026, + 2025, + 2024, + 2023, 2022, 2021, 2020, 2019, 2018, - 2017, 2016 ] }, { - "slug": "open-source-medical-records", - "name": "open source medical records", + "slug": "hardware-control", + "name": "Hardware Control", "organizationCount": 1, - "projectCount": 94, + "projectCount": 46, "years": [ + 2026, 2025, 2024, 2023, @@ -17419,30 +17717,16 @@ 2020, 2019, 2018, - 2017, 2016 ] }, { - "slug": "open-source-software-metrics", - "name": "open source software metrics", - "organizationCount": 1, - "projectCount": 29, - "years": [ - 2025, - 2022, - 2021, - 2020, - 2019, - 2018 - ] - }, - { - "slug": "open-standards", - "name": "open standards", + "slug": "buildfarms", + "name": "buildfarms", "organizationCount": 1, - "projectCount": 25, + "projectCount": 46, "years": [ + 2026, 2025, 2024, 2023, @@ -17451,210 +17735,228 @@ 2020, 2019, 2018, - 2017, 2016 ] }, { - "slug": "open-system-firmware", - "name": "open system firmware", + "slug": "reproducible-science", + "name": "reproducible science", "organizationCount": 1, - "projectCount": 8, + "projectCount": 9, "years": [ - 2022, - 2021 + 2026, + 2025, + 2024 ] }, { - "slug": "open-web", - "name": "open web", + "slug": "journalism", + "name": "journalism", "organizationCount": 1, - "projectCount": 75, + "projectCount": 1, "years": [ - 2020, - 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "opendata", - "name": "opendata", + "slug": "civic", + "name": "civic", "organizationCount": 1, - "projectCount": 20, + "projectCount": 1, "years": [ - 2022, - 2021, - 2019, - 2018 + 2018, + 2017 ] }, { - "slug": "opengl", - "name": "opengl", + "slug": "scraping", + "name": "scraping", "organizationCount": 1, - "projectCount": 4, + "projectCount": 1, "years": [ - 2020, - 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "openmp", - "name": "openmp", + "slug": "gtk", + "name": "gtk", "organizationCount": 1, - "projectCount": 34, + "projectCount": 70, "years": [ + 2026, 2025, 2024, 2023, 2022, 2021, - 2020, 2019, - 2018 + 2018, + 2017 ] }, { - "slug": "openshift", - "name": "openshift", + "slug": "java-jsp", + "name": "java jsp", "organizationCount": 1, - "projectCount": 52, + "projectCount": 70, "years": [ + 2026, + 2025, + 2024, + 2023, 2022, 2021, - 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "opensource", - "name": "opensource", + "slug": "c-c", + "name": "c- c+", "organizationCount": 1, - "projectCount": 29, + "projectCount": 70, "years": [ + 2026, + 2025, + 2024, 2023, 2022, 2021, - 2020, 2019, 2018, 2017 ] }, { - "slug": "opensource-audio-firmware", - "name": "opensource audio firmware", + "slug": "perl", + "name": "perl", "organizationCount": 1, - "projectCount": 12, + "projectCount": 70, "years": [ + 2026, + 2025, + 2024, + 2023, 2022, 2021, - 2020, 2019, 2018, 2017 ] }, { - "slug": "opentype", - "name": "opentype", + "slug": "nodered", + "name": "nodered", "organizationCount": 1, - "projectCount": 17, + "projectCount": 70, "years": [ + 2026, + 2025, 2024, 2023, 2022, 2021, - 2020, 2019, 2018, 2017 ] }, { - "slug": "operating-system-developer-tools", - "name": "operating system developer tools", + "slug": "artificial-inteligence", + "name": "Artificial Inteligence", "organizationCount": 1, - "projectCount": 52, + "projectCount": 70, "years": [ + 2026, 2025, 2024, 2023, 2022, 2021, - 2020, + 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "operational-analytics", - "name": "Operational Analytics", + "slug": "transit", + "name": "Transit", "organizationCount": 1, - "projectCount": 2, + "projectCount": 10, "years": [ - 2023 + 2026, + 2025, + 2024 ] }, { - "slug": "operations", - "name": "Operations", + "slug": "travel", + "name": "travel", "organizationCount": 1, - "projectCount": 3, + "projectCount": 10, "years": [ - 2022 + 2026, + 2025, + 2024 ] }, { - "slug": "optimisation", - "name": "optimisation", + "slug": "bus", + "name": "bus", "organizationCount": 1, - "projectCount": 18, + "projectCount": 10, "years": [ + 2026, 2025, - 2024, - 2023, - 2021, - 2019 + 2024 ] }, { - "slug": "optimizations", - "name": "optimizations", + "slug": "3d-machine-learning", + "name": "3D machine learning", "organizationCount": 1, - "projectCount": 11, + "projectCount": 3, "years": [ - 2025, - 2019, - 2016 + 2022 ] }, { - "slug": "orbital-dynamics", - "name": "orbital dynamics", + "slug": "3d-data-processing", + "name": "3D data processing", "organizationCount": 1, - "projectCount": 7, + "projectCount": 3, "years": [ - 2021, - 2020, - 2019 + 2022 ] }, { - "slug": "orbital-mechanics", - "name": "orbital mechanics", + "slug": "3d-visualization", + "name": "3D visualization", + "organizationCount": 1, + "projectCount": 3, + "years": [ + 2022 + ] + }, + { + "slug": "physically-based-rendering", + "name": "physically based rendering", + "organizationCount": 1, + "projectCount": 3, + "years": [ + 2022 + ] + }, + { + "slug": "solar-physics", + "name": "solar physics", "organizationCount": 1, "projectCount": 77, "years": [ + 2026, 2025, 2024, 2023, @@ -17668,11 +17970,12 @@ ] }, { - "slug": "oss-compliance", - "name": "oss compliance", + "slug": "atomic-physics", + "name": "atomic physics", "organizationCount": 1, - "projectCount": 42, + "projectCount": 77, "years": [ + 2026, 2025, 2024, 2023, @@ -17680,15 +17983,18 @@ 2021, 2020, 2019, - 2018 + 2018, + 2017, + 2016 ] }, { - "slug": "oss-licencing", - "name": "oss licencing", + "slug": "orbital-mechanics", + "name": "orbital mechanics", "organizationCount": 1, - "projectCount": 42, + "projectCount": 77, "years": [ + 2026, 2025, 2024, 2023, @@ -17696,15 +18002,18 @@ 2021, 2020, 2019, - 2018 + 2018, + 2017, + 2016 ] }, { - "slug": "other", - "name": "other", + "slug": "high-energy-astrophysics", + "name": "high-energy astrophysics", "organizationCount": 1, - "projectCount": 248, + "projectCount": 77, "years": [ + 2026, 2025, 2024, 2023, @@ -17718,131 +18027,130 @@ ] }, { - "slug": "p2p", - "name": "p2p", + "slug": "health-care", + "name": "Health Care", "organizationCount": 1, - "projectCount": 5, + "projectCount": 9, "years": [ - 2018, - 2017, - 2016 + 2026, + 2025, + 2024 ] }, { - "slug": "package", - "name": "package", + "slug": "laboratory-information-system", + "name": "Laboratory Information System", "organizationCount": 1, - "projectCount": 25, + "projectCount": 9, + "years": [ + 2026, + 2025, + 2024 + ] + }, + { + "slug": "medical-practice-management-solution", + "name": "medical practice management solution", + "organizationCount": 1, + "projectCount": 3, + "years": [ + 2020 + ] + }, + { + "slug": "e-mail", + "name": "e-mail", + "organizationCount": 1, + "projectCount": 2, "years": [ - 2023, - 2022, - 2021, - 2020, - 2019, - 2018, - 2017, 2016 ] }, { - "slug": "package-and-dependencies-licensing-and-origin", - "name": "package and dependencies licensing and origin", + "slug": "encrypted-computation", + "name": "encrypted computation", "organizationCount": 1, - "projectCount": 32, + "projectCount": 9, "years": [ - 2025, - 2024, - 2023, - 2022, 2021, - 2020, - 2019, - 2017 + 2020 ] }, { - "slug": "package-vulnerabilities-and-security", - "name": "package vulnerabilities and security", + "slug": "federated-learning", + "name": "federated learning", "organizationCount": 1, - "projectCount": 32, + "projectCount": 9, "years": [ - 2025, - 2024, - 2023, - 2022, 2021, - 2020, - 2019, - 2017 + 2020 ] }, { - "slug": "packages", - "name": "Packages", + "slug": "structured-transparency", + "name": "structured transparency", "organizationCount": 1, - "projectCount": 26, + "projectCount": 9, "years": [ - 2025, - 2024, - 2023, - 2022, 2021, - 2020, - 2019, - 2018 + 2020 ] }, { - "slug": "parallel", - "name": "parallel", + "slug": "differential-privacy", + "name": "differential privacy", "organizationCount": 1, - "projectCount": 3, + "projectCount": 9, "years": [ - 2016 + 2021, + 2020 ] }, { - "slug": "parallelism", - "name": "parallelism", + "slug": "clinics", + "name": "clinics", "organizationCount": 1, - "projectCount": 38, + "projectCount": 94, "years": [ + 2026, 2025, 2024, 2023, 2022, 2021, 2020, + 2019, 2018, 2017, 2016 ] }, { - "slug": "parallelization", - "name": "parallelization", + "slug": "hospitals", + "name": "hospitals", "organizationCount": 1, - "projectCount": 4, + "projectCount": 94, "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2019, 2018, - 2017 - ] - }, - { - "slug": "partial-differential-equations", - "name": "partial differential equations", - "organizationCount": 1, - "projectCount": 2, - "years": [ + 2017, 2016 ] }, { - "slug": "particle-physics", - "name": "particle physics", + "slug": "clinical", + "name": "clinical", "organizationCount": 1, - "projectCount": 214, + "projectCount": 94, "years": [ + 2026, 2025, 2024, 2023, @@ -17851,64 +18159,55 @@ 2020, 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "pdf", - "name": "pdf", + "slug": "developing-world", + "name": "developing world", "organizationCount": 1, - "projectCount": 11, + "projectCount": 94, "years": [ + 2026, 2025, 2024, + 2023, 2022, 2021, - 2019 - ] - }, - { - "slug": "peace-corps", - "name": "peace corps", - "organizationCount": 1, - "projectCount": 30, - "years": [ + 2020, + 2019, + 2018, 2017, 2016 ] }, { - "slug": "pedagogy", - "name": "pedagogy", + "slug": "developing-countries", + "name": "developing countries", "organizationCount": 1, - "projectCount": 32, + "projectCount": 94, "years": [ + 2026, 2025, 2024, 2023, 2022, 2021, 2020, - 2019 - ] - }, - { - "slug": "peer-feedback", - "name": "peer feedback", - "organizationCount": 1, - "projectCount": 20, - "years": [ + 2019, 2018, 2017, 2016 ] }, { - "slug": "peer-to-peer", - "name": "peer to peer", + "slug": "medical-record", + "name": "medical record", "organizationCount": 1, - "projectCount": 80, + "projectCount": 94, "years": [ + 2026, 2025, 2024, 2023, @@ -17922,38 +18221,50 @@ ] }, { - "slug": "peer-reviewed-libraries", - "name": "peer-reviewed libraries", - "organizationCount": 1, - "projectCount": 41, + "slug": "open-source-medical-records", + "name": "open source medical records", + "organizationCount": 1, + "projectCount": 94, "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, 2021, 2020, 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "penetration-testing", - "name": "penetration testing", + "slug": "electronic-medical-record-system", + "name": "Electronic Medical Record System", "organizationCount": 1, - "projectCount": 12, + "projectCount": 94, "years": [ + 2026, + 2025, + 2024, 2023, 2022, 2021, 2020, + 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "pentesting", - "name": "pentesting", + "slug": "qa-automation", + "name": "QA automation", "organizationCount": 1, - "projectCount": 102, + "projectCount": 94, "years": [ + 2026, 2025, 2024, 2023, @@ -17962,15 +18273,65 @@ 2020, 2019, 2018, + 2017, 2016 ] }, { - "slug": "performance-optimisation", - "name": "Performance Optimisation", + "slug": "webdev", + "name": "webdev", "organizationCount": 1, - "projectCount": 214, + "projectCount": 2, + "years": [ + 2026, + 2025 + ] + }, + { + "slug": "data-wrangling", + "name": "data-wrangling", + "organizationCount": 1, + "projectCount": 3, + "years": [ + 2024, + 2020 + ] + }, + { + "slug": "reconcilation", + "name": "reconcilation", + "organizationCount": 1, + "projectCount": 3, + "years": [ + 2024, + 2020 + ] + }, + { + "slug": "telephony", + "name": "telephony", + "organizationCount": 1, + "projectCount": 0, + "years": [ + 2018 + ] + }, + { + "slug": "sip", + "name": "sip", + "organizationCount": 1, + "projectCount": 0, + "years": [ + 2018 + ] + }, + { + "slug": "geocoding", + "name": "geocoding", + "organizationCount": 1, + "projectCount": 45, "years": [ + 2026, 2025, 2024, 2023, @@ -17979,290 +18340,307 @@ 2020, 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "perl", - "name": "perl", + "slug": "geodata", + "name": "geodata", "organizationCount": 1, - "projectCount": 70, + "projectCount": 45, "years": [ + 2026, 2025, 2024, 2023, 2022, 2021, + 2020, 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "personal-assistants", - "name": "personal assistants", + "slug": "conferences", + "name": "conferences", "organizationCount": 1, - "projectCount": 140, + "projectCount": 52, "years": [ + 2026, 2025, 2024, - 2019, + 2023, + 2022, + 2021, + 2020, 2018, 2017, 2016 ] }, { - "slug": "personal-server", - "name": "Personal Server", + "slug": "qa", + "name": "qa", "organizationCount": 1, - "projectCount": 44, + "projectCount": 52, "years": [ + 2026, 2025, 2024, 2023, 2022, 2021, 2020, - 2019, 2018, 2017, 2016 ] }, { - "slug": "pharmacological-modeling", - "name": "pharmacological modeling", - "organizationCount": 1, - "projectCount": 2, - "years": [ - 2020 - ] - }, - { - "slug": "philosophy", - "name": "philosophy", + "slug": "edge", + "name": "edge", "organizationCount": 1, - "projectCount": 117, + "projectCount": 52, "years": [ + 2026, 2025, 2024, 2023, 2022, 2021, 2020, - 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "physical-computing", - "name": "physical computing", + "slug": "aiml", + "name": "AIML", "organizationCount": 1, - "projectCount": 44, + "projectCount": 52, "years": [ + 2026, 2025, 2024, 2023, 2022, 2021, 2020, - 2019, 2018, 2017, 2016 ] }, { - "slug": "physically-based-rendering", - "name": "physically based rendering", - "organizationCount": 1, - "projectCount": 3, - "years": [ - 2022 - ] - }, - { - "slug": "physiology", - "name": "physiology", - "organizationCount": 1, - "projectCount": 2, - "years": [ - 2020 - ] - }, - { - "slug": "piano", - "name": "piano", + "slug": "operating-system-developer-tools", + "name": "operating system developer tools", "organizationCount": 1, - "projectCount": 24, + "projectCount": 52, "years": [ + 2026, + 2025, 2024, 2023, 2022, 2021, 2020, - 2019, 2018, 2017, 2016 ] }, { - "slug": "pipeline-automation", - "name": "pipeline automation", + "slug": "containers-kubernetes", + "name": "containers kubernetes", "organizationCount": 1, - "projectCount": 0, + "projectCount": 52, "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2018, + 2017, 2016 ] }, { - "slug": "platform-engineering", - "name": "Platform Engineering", + "slug": "security-cryptography", + "name": "Security Cryptography", "organizationCount": 1, - "projectCount": 2, + "projectCount": 52, "years": [ - 2025 + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2018, + 2017, + 2016 ] }, { - "slug": "playback", - "name": "playback", + "slug": "licensing-software-quality-qa", + "name": "licensing & software quality QA", "organizationCount": 1, - "projectCount": 1, + "projectCount": 52, "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, 2020, + 2018, + 2017, 2016 ] }, { - "slug": "plotting", - "name": "plotting", + "slug": "systems-management", + "name": "systems management", "organizationCount": 1, - "projectCount": 140, + "projectCount": 52, "years": [ + 2026, 2025, 2024, 2023, 2022, 2021, 2020, - 2019, + 2018, 2017, 2016 ] }, { - "slug": "plotting-tools", - "name": "plotting tools", + "slug": "edge-ai", + "name": "Edge AI", "organizationCount": 1, - "projectCount": 4, + "projectCount": 32, "years": [ - 2019, - 2018 + 2026, + 2025, + 2024, + 2023, + 2022 ] }, { - "slug": "point-set-processing", - "name": "point set processing", + "slug": "dl-inference", + "name": "DL-inference", "organizationCount": 1, - "projectCount": 58, + "projectCount": 32, "years": [ + 2026, 2025, 2024, 2023, - 2022, - 2021, - 2020, - 2019, - 2018, - 2017 + 2022 ] }, { - "slug": "polar-science", - "name": "Polar Science", + "slug": "neural-network", + "name": "neural network", "organizationCount": 1, - "projectCount": 12, + "projectCount": 32, "years": [ + 2026, 2025, - 2024 + 2024, + 2023, + 2022 ] }, { - "slug": "pollution", - "name": "pollution", - "organizationCount": 1, - "projectCount": 38, + "slug": "inference", + "name": "inference", + "organizationCount": 1, + "projectCount": 32, "years": [ - 2022, - 2021, - 2019, - 2018, - 2017, - 2016 + 2026, + 2025, + 2024, + 2023, + 2022 ] }, { - "slug": "polyhedral-compilation", - "name": "polyhedral compilation", + "slug": "gen-ai", + "name": "gen ai", "organizationCount": 1, - "projectCount": 4, + "projectCount": 32, "years": [ - 2018, - 2017 + 2026, + 2025, + 2024, + 2023, + 2022 ] }, { - "slug": "polyhedral-model", - "name": "polyhedral model", + "slug": "agentic-ai", + "name": "Agentic AI", "organizationCount": 1, - "projectCount": 4, + "projectCount": 32, "years": [ - 2018, - 2017 + 2026, + 2025, + 2024, + 2023, + 2022 ] }, { - "slug": "polystore", - "name": "polystore", + "slug": "model-serving", + "name": "Model Serving", "organizationCount": 1, - "projectCount": 9, + "projectCount": 32, "years": [ + 2026, + 2025, 2024, - 2022, - 2021 + 2023, + 2022 ] }, { - "slug": "population-genetics", - "name": "population genetics", + "slug": "telecommunications", + "name": "telecommunications", "organizationCount": 1, - "projectCount": 15, + "projectCount": 26, "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, 2020, 2019, 2018, - 2016 - ] - }, - { - "slug": "portable", - "name": "portable", - "organizationCount": 1, - "projectCount": 3, - "years": [ - 2016 + 2017 ] }, { - "slug": "posix", - "name": "posix", + "slug": "mesh-networks", + "name": "mesh-networks", "organizationCount": 1, - "projectCount": 46, + "projectCount": 26, "years": [ + 2026, 2025, 2024, 2023, @@ -18271,16 +18649,16 @@ 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "postgresql", - "name": "postgresql", + "slug": "configu", + "name": "configu", "organizationCount": 1, - "projectCount": 51, + "projectCount": 26, "years": [ + 2026, 2025, 2024, 2023, @@ -18293,12 +18671,17 @@ ] }, { - "slug": "pragrammer-productivity", - "name": "pragrammer productivity", + "slug": "telecom", + "name": "telecom", "organizationCount": 1, - "projectCount": 17, + "projectCount": 26, "years": [ + 2026, 2025, + 2024, + 2023, + 2022, + 2021, 2020, 2019, 2018, @@ -18306,20 +18689,12 @@ ] }, { - "slug": "precision-health", - "name": "precision health", - "organizationCount": 1, - "projectCount": 5, - "years": [ - 2021 - ] - }, - { - "slug": "printing", - "name": "printing", + "slug": "network-visualization", + "name": "network visualization", "organizationCount": 1, - "projectCount": 137, + "projectCount": 26, "years": [ + 2026, 2025, 2024, 2023, @@ -18328,25 +18703,16 @@ 2020, 2019, 2018, - 2017, - 2016 - ] - }, - { - "slug": "probabilistic-models", - "name": "probabilistic models", - "organizationCount": 1, - "projectCount": 5, - "years": [ - 2016 + 2017 ] }, { - "slug": "process-automation", - "name": "process automation", + "slug": "network-automation", + "name": "network automation", "organizationCount": 1, - "projectCount": 44, + "projectCount": 26, "years": [ + 2026, 2025, 2024, 2023, @@ -18355,69 +18721,52 @@ 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "processor", - "name": "Processor", + "slug": "network-management-system", + "name": "network management system", "organizationCount": 1, - "projectCount": 12, + "projectCount": 26, "years": [ + 2026, 2025, 2024, 2023, - 2022 - ] - }, - { - "slug": "processor-design", - "name": "processor design", - "organizationCount": 1, - "projectCount": 2, - "years": [ - 2016 - ] - }, - { - "slug": "profiling", - "name": "profiling", - "organizationCount": 1, - "projectCount": 8, - "years": [ + 2022, 2021, 2020, - 2019 - ] - }, - { - "slug": "program-verification", - "name": "program verification", - "organizationCount": 1, - "projectCount": 4, - "years": [ + 2019, 2018, 2017 ] }, { - "slug": "programming-build-tools", - "name": "Programming & Build Tools", + "slug": "hotspot", + "name": "hotspot", "organizationCount": 1, - "projectCount": 16, + "projectCount": 26, "years": [ + 2026, 2025, 2024, - 2023 + 2023, + 2022, + 2021, + 2020, + 2019, + 2018, + 2017 ] }, { - "slug": "progressive-web-apps", - "name": "progressive web apps", + "slug": "sdn", + "name": "sdn", "organizationCount": 1, - "projectCount": 103, + "projectCount": 26, "years": [ + 2026, 2025, 2024, 2023, @@ -18430,40 +18779,21 @@ ] }, { - "slug": "project-management", - "name": "project-management", - "organizationCount": 1, - "projectCount": 3, - "years": [ - 2017, - 2016 - ] - }, - { - "slug": "pronunciation", - "name": "pronunciation", - "organizationCount": 1, - "projectCount": 11, - "years": [ - 2017 - ] - }, - { - "slug": "public-code", - "name": "public code", + "slug": "open-event", + "name": "open event", "organizationCount": 1, - "projectCount": 5, + "projectCount": 2, "years": [ - 2019, 2018 ] }, { - "slug": "pydata", - "name": "pydata", + "slug": "interactive", + "name": "interactive", "organizationCount": 1, - "projectCount": 277, + "projectCount": 77, "years": [ + 2026, 2025, 2024, 2023, @@ -18477,55 +18807,80 @@ ] }, { - "slug": "python-library", - "name": "PYTHON LIBRARY", + "slug": "gui-toolkit", + "name": "gui toolkit", "organizationCount": 1, - "projectCount": 4, + "projectCount": 5, "years": [ - 2025 + 2016 ] }, { - "slug": "python-mlops-framework", - "name": "Python MLOps Framework", + "slug": "acoustics", + "name": "acoustics", "organizationCount": 1, - "projectCount": 1, + "projectCount": 10, "years": [ - 2023 + 2022, + 2021, + 2020 ] }, { - "slug": "python-robotics", - "name": "Python Robotics", + "slug": "community-science", + "name": "community science", "organizationCount": 1, - "projectCount": 2, + "projectCount": 10, "years": [ - 2025 + 2022, + 2021, + 2020 ] }, { - "slug": "qa", - "name": "qa", + "slug": "cartography", + "name": "cartography", "organizationCount": 1, - "projectCount": 52, + "projectCount": 101, "years": [ + 2026, 2025, 2024, 2023, 2022, 2021, 2020, + 2019, 2018, 2017, 2016 ] }, { - "slug": "qa-automation", - "name": "QA automation", + "slug": "data-cataloging", + "name": "Data cataloging", "organizationCount": 1, - "projectCount": 94, + "projectCount": 2, + "years": [ + 2022 + ] + }, + { + "slug": "enterprise-information-systems", + "name": "enterprise information systems", + "organizationCount": 1, + "projectCount": 0, + "years": [ + 2018 + ] + }, + { + "slug": "appsec", + "name": "appsec", + "organizationCount": 1, + "projectCount": 102, "years": [ + 2026, 2025, 2024, 2023, @@ -18534,16 +18889,16 @@ 2020, 2019, 2018, - 2017, 2016 ] }, { - "slug": "radar", - "name": "radar", + "slug": "sdlc", + "name": "sdlc", "organizationCount": 1, - "projectCount": 18, + "projectCount": 102, "years": [ + 2026, 2025, 2024, 2023, @@ -18552,60 +18907,37 @@ 2020, 2019, 2018, - 2017, 2016 ] }, { - "slug": "radiative-transfer", - "name": "radiative transfer", + "slug": "cloud-security", + "name": "cloud security", "organizationCount": 1, - "projectCount": 9, + "projectCount": 102, "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, 2021, 2020, - 2016 - ] - }, - { - "slug": "rails", - "name": "rails", - "organizationCount": 1, - "projectCount": 4, - "years": [ - 2019, - 2017, - 2016 - ] - }, - { - "slug": "rails-application", - "name": "rails application", - "organizationCount": 1, - "projectCount": 4, - "years": [ 2019, - 2017, - 2016 - ] - }, - { - "slug": "rare-disease", - "name": "rare disease", - "organizationCount": 1, - "projectCount": 1, - "years": [ + 2018, 2016 ] }, { - "slug": "raspberrypi-builds", - "name": "raspberrypi_builds", + "slug": "mobile-security", + "name": "mobile security", "organizationCount": 1, - "projectCount": 78, + "projectCount": 102, "years": [ + 2026, 2025, 2024, + 2023, 2022, 2021, 2020, @@ -18615,11 +18947,12 @@ ] }, { - "slug": "ray-tracing", - "name": "ray tracing", + "slug": "cyber-security", + "name": "cyber security", "organizationCount": 1, - "projectCount": 73, + "projectCount": 102, "years": [ + 2026, 2025, 2024, 2023, @@ -18628,16 +18961,16 @@ 2020, 2019, 2018, - 2017, 2016 ] }, { - "slug": "rdbms", - "name": "rdbms", + "slug": "top-10", + "name": "top 10", "organizationCount": 1, - "projectCount": 51, + "projectCount": 102, "years": [ + 2026, 2025, 2024, 2023, @@ -18646,106 +18979,84 @@ 2020, 2019, 2018, - 2017 + 2016 ] }, { - "slug": "react", - "name": "react", + "slug": "pentesting", + "name": "pentesting", "organizationCount": 1, - "projectCount": 28, + "projectCount": 102, "years": [ + 2026, 2025, 2024, 2023, + 2022, 2021, 2020, 2019, 2018, - 2017, 2016 ] }, { - "slug": "reactive", - "name": "reactive", + "slug": "synchronized", + "name": "synchronized", "organizationCount": 1, - "projectCount": 6, + "projectCount": 5, "years": [ 2017, 2016 ] }, { - "slug": "reactive-languages", - "name": "reactive languages", + "slug": "sync", + "name": "sync", "organizationCount": 1, - "projectCount": 43, + "projectCount": 5, "years": [ - 2025, - 2024, - 2021, - 2020, - 2019, - 2018, 2017, 2016 ] }, { - "slug": "reactive-programming", - "name": "reactive programming", + "slug": "file-share", + "name": "file share", "organizationCount": 1, - "projectCount": 43, + "projectCount": 5, "years": [ - 2025, - 2024, - 2021, - 2020, - 2019, - 2018, 2017, 2016 ] }, { - "slug": "real-unix", - "name": "real unix", + "slug": "p2p", + "name": "p2p", "organizationCount": 1, - "projectCount": 38, + "projectCount": 5, "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, - 2020, - 2019, 2018, 2017, 2016 ] }, { - "slug": "real-time-communication", - "name": "Real-Time Communication", + "slug": "web-tools", + "name": "web tools", "organizationCount": 1, - "projectCount": 11, + "projectCount": 2, "years": [ - 2024, - 2023, - 2022, - 2020, - 2019, - 2017 + 2025 ] }, { - "slug": "real-time-computer-graphics", - "name": "real-time computer graphics", + "slug": "ecosystem-models", + "name": "ecosystem models", "organizationCount": 1, - "projectCount": 73, + "projectCount": 30, "years": [ + 2026, 2025, 2024, 2023, @@ -18754,16 +19065,16 @@ 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "real-time-os", - "name": "real-time os", + "slug": "ecological-forecasting", + "name": "ecological forecasting", "organizationCount": 1, - "projectCount": 38, + "projectCount": 30, "years": [ + 2026, 2025, 2024, 2023, @@ -18776,104 +19087,87 @@ ] }, { - "slug": "real-time-system", - "name": "real-time system", + "slug": "climate-science", + "name": "climate science", "organizationCount": 1, - "projectCount": 15, + "projectCount": 30, "years": [ + 2026, + 2025, 2024, 2023, 2022, 2021, 2020, 2019, - 2018 + 2018, + 2017 ] }, { - "slug": "reconcilation", - "name": "reconcilation", + "slug": "analyzing", + "name": "analyzing", "organizationCount": 1, - "projectCount": 3, + "projectCount": 0, "years": [ - 2024, - 2020 + 2016 ] }, { - "slug": "reference-manager", - "name": "reference manager", + "slug": "transcoding", + "name": "transcoding", "organizationCount": 1, - "projectCount": 11, + "projectCount": 0, "years": [ - 2025, - 2024, - 2022, - 2021, - 2019 + 2016 ] }, { - "slug": "relational-database", - "name": "relational database", + "slug": "pipeline-automation", + "name": "pipeline automation", "organizationCount": 1, - "projectCount": 51, + "projectCount": 0, "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, - 2020, - 2019, - 2018, - 2017 + 2016 ] }, { - "slug": "reliable-log-transfer", - "name": "reliable log transfer", + "slug": "database-optimization", + "name": "database optimization", "organizationCount": 1, - "projectCount": 12, + "projectCount": 3, "years": [ - 2022, - 2021, 2020, - 2019, - 2018, - 2016 + 2019 ] }, { - "slug": "remote-access", - "name": "remote access", + "slug": "load-testing", + "name": "load testing", "organizationCount": 1, - "projectCount": 0, + "projectCount": 3, "years": [ - 2019, - 2018 + 2020, + 2019 ] }, { - "slug": "remote-patient-monitoring", - "name": "remote patient monitoring", + "slug": "alerts", + "name": "alerts", "organizationCount": 1, "projectCount": 3, "years": [ - 2022 + 2020, + 2019 ] }, { - "slug": "remote-sensing", - "name": "remote sensing", + "slug": "analysis", + "name": "analysis", "organizationCount": 1, - "projectCount": 25, + "projectCount": 19, "years": [ - 2025, - 2024, - 2023, 2022, - 2021, 2020, 2019, 2018, @@ -18882,392 +19176,359 @@ ] }, { - "slug": "renewables", - "name": "renewables", - "organizationCount": 1, - "projectCount": 10, - "years": [ - 2025, - 2024 - ] - }, - { - "slug": "reproducible", - "name": "reproducible", + "slug": "timeseries", + "name": "timeseries", "organizationCount": 1, - "projectCount": 3, + "projectCount": 19, "years": [ - 2024 + 2022, + 2020, + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "reproducible-science", - "name": "reproducible science", + "slug": "lightweight", + "name": "lightweight", "organizationCount": 1, - "projectCount": 9, + "projectCount": 19, "years": [ - 2025, - 2024 + 2022, + 2020, + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "research-and-development", - "name": "research and development", + "slug": "dynamic-environment", + "name": "dynamic environment", "organizationCount": 1, - "projectCount": 34, + "projectCount": 32, "years": [ + 2026, 2025, - 2024, 2023, - 2022, 2021, - 2020, 2019, - 2018, 2017 ] }, { - "slug": "rest-apis", - "name": "rest apis", + "slug": "material-design", + "name": "material design", "organizationCount": 1, - "projectCount": 8, + "projectCount": 32, "years": [ + 2026, + 2025, + 2023, 2021, - 2020, 2019, - 2018 + 2017 ] }, { - "slug": "result-presentation", - "name": "result presentation", + "slug": "virtual-machines", + "name": "virtual machines", "organizationCount": 1, - "projectCount": 14, + "projectCount": 32, "years": [ + 2026, 2025, - 2024, 2023, + 2021, 2019, - 2018 + 2017 ] }, { - "slug": "retrieval", - "name": "retrieval", + "slug": "modelling", + "name": "Modelling", "organizationCount": 1, - "projectCount": 6, + "projectCount": 32, "years": [ + 2026, + 2025, + 2023, 2021, - 2018, - 2016 + 2019, + 2017 ] }, { - "slug": "risc-v", - "name": "RISC-V", + "slug": "live-music", + "name": "Live music", "organizationCount": 1, - "projectCount": 12, + "projectCount": 32, "years": [ + 2026, 2025, - 2024, 2023, - 2022 + 2021, + 2019, + 2017 ] }, { - "slug": "robot", - "name": "robot", + "slug": "mysql", + "name": "mysql", "organizationCount": 1, - "projectCount": 8, + "projectCount": 9, "years": [ + 2019, 2018, - 2017, - 2016 - ] - }, - { - "slug": "robot-dataflow", - "name": "Robot Dataflow", - "organizationCount": 1, - "projectCount": 2, - "years": [ - 2025 + 2017 ] }, { - "slug": "robot-perception", - "name": "robot perception", + "slug": "developer", + "name": "developer", "organizationCount": 1, - "projectCount": 11, + "projectCount": 9, "years": [ + 2019, 2018, 2017 ] }, { - "slug": "robot-simulator", - "name": "robot simulator", + "slug": "administrator", + "name": "administrator", "organizationCount": 1, - "projectCount": 48, + "projectCount": 9, "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, - 2020, 2019, 2018, 2017 ] }, { - "slug": "robotics-simulation", - "name": "robotics simulation", + "slug": "beacons", + "name": "beacons", "organizationCount": 1, - "projectCount": 57, + "projectCount": 8, "years": [ - 2022, - 2021, - 2020, - 2019, - 2018, 2017, 2016 ] }, { - "slug": "robustness", - "name": "Robustness", + "slug": "voice", + "name": "voice", "organizationCount": 1, - "projectCount": 4, + "projectCount": 1, "years": [ - 2022 + 2021 ] }, { - "slug": "routing-protocols", - "name": "routing protocols", + "slug": "video-editing", + "name": "video editing", "organizationCount": 1, - "projectCount": 74, + "projectCount": 10, "years": [ - 2025, - 2024, 2023, - 2022, 2021, - 2019, - 2018, - 2017, - 2016 + 2020, + 2019 ] }, { - "slug": "rover", - "name": "Rover", + "slug": "code-quality", + "name": "code quality", "organizationCount": 1, - "projectCount": 7, + "projectCount": 3, "years": [ - 2024, - 2022, - 2021 + 2018, + 2017 ] }, { - "slug": "rovers", - "name": "rovers", + "slug": "source-code-analyzer", + "name": "source code analyzer", "organizationCount": 1, - "projectCount": 38, + "projectCount": 3, "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, - 2020, - 2019, 2018, 2017 ] }, { - "slug": "ruby", - "name": "ruby", + "slug": "school-apps", + "name": "school apps", "organizationCount": 1, - "projectCount": 4, + "projectCount": 2, "years": [ - 2019, - 2017, - 2016 + 2018 ] }, { - "slug": "runtime", - "name": "runtime", + "slug": "3d-computer-vision", + "name": "3d computer vision", "organizationCount": 1, - "projectCount": 2, + "projectCount": 5, "years": [ - 2024 + 2021, + 2020 ] }, { - "slug": "runtimes", - "name": "runtimes", + "slug": "gpu-computing", + "name": "gpu computing", "organizationCount": 1, - "projectCount": 68, + "projectCount": 5, "years": [ - 2025, - 2024, - 2023, - 2022, - 2020, - 2019, - 2018, - 2017, - 2016 + 2021, + 2020 ] }, { - "slug": "saas", - "name": "saas", + "slug": "polyhedral-compilation", + "name": "polyhedral compilation", "organizationCount": 1, - "projectCount": 20, + "projectCount": 4, "years": [ 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "safety", - "name": "Safety", + "slug": "parallelization", + "name": "parallelization", "organizationCount": 1, "projectCount": 4, "years": [ - 2022 + 2018, + 2017 ] }, { - "slug": "samba", - "name": "samba", + "slug": "program-verification", + "name": "program verification", "organizationCount": 1, - "projectCount": 3, + "projectCount": 4, "years": [ - 2021, - 2020, - 2019, + 2018, 2017 ] }, { - "slug": "sat-smt-solving", - "name": "SAT & SMT solving", + "slug": "polyhedral-model", + "name": "polyhedral model", "organizationCount": 1, - "projectCount": 14, + "projectCount": 4, "years": [ - 2025, - 2024, - 2023, - 2019, - 2018 + 2018, + 2017 ] }, { - "slug": "satellite-data", - "name": "satellite data", + "slug": "polystore", + "name": "polystore", "organizationCount": 1, - "projectCount": 7, + "projectCount": 9, "years": [ - 2021, - 2020, - 2019 + 2024, + 2022, + 2021 ] }, { - "slug": "save-restore", - "name": "save/restore", + "slug": "nosql", + "name": "nosql", "organizationCount": 1, - "projectCount": 18, + "projectCount": 9, "years": [ - 2025, 2024, - 2023, 2022, - 2021, - 2020, - 2019 + 2021 ] }, { - "slug": "scalability", - "name": "scalability", + "slug": "new-projects", + "name": "new projects", "organizationCount": 1, - "projectCount": 19, + "projectCount": 13, "years": [ - 2018, 2017, 2016 ] }, { - "slug": "school-apps", - "name": "school apps", - "organizationCount": 1, - "projectCount": 2, - "years": [ - 2018 - ] - }, - { - "slug": "school-system", - "name": "school system", + "slug": "individual-projects", + "name": "individual projects", "organizationCount": 1, - "projectCount": 7, + "projectCount": 13, "years": [ - 2019, - 2018, 2017, 2016 ] }, { - "slug": "school-systems", - "name": "school systems", + "slug": "rdbms", + "name": "rdbms", "organizationCount": 1, - "projectCount": 7, + "projectCount": 51, "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "science-and-enineering", - "name": "science and enineering", + "slug": "relational-database", + "name": "relational database", "organizationCount": 1, - "projectCount": 10, + "projectCount": 51, "years": [ - 2016 + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2019, + 2018, + 2017 ] }, { - "slug": "scraping", - "name": "scraping", + "slug": "postgresql", + "name": "postgresql", "organizationCount": 1, - "projectCount": 1, + "projectCount": 51, "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2019, 2018, 2017 ] }, { - "slug": "scratch", - "name": "scratch", + "slug": "benchmark", + "name": "Benchmark", "organizationCount": 1, - "projectCount": 84, + "projectCount": 51, "years": [ + 2026, 2025, 2024, 2023, @@ -19276,131 +19537,111 @@ 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "screen-reader", - "name": "screen reader", + "slug": "dns-recursive-solutions", + "name": "DNS recursive solutions", "organizationCount": 1, - "projectCount": 2, + "projectCount": 1, "years": [ - 2020, - 2019 + 2022 ] }, { - "slug": "screencapture", - "name": "ScreenCapture", + "slug": "authoritative-dns-software", + "name": "Authoritative DNS software", "organizationCount": 1, - "projectCount": 7, + "projectCount": 1, "years": [ - 2025, - 2024 + 2022 ] }, { - "slug": "scripting", - "name": "scripting", + "slug": "probabilistic-models", + "name": "probabilistic models", "organizationCount": 1, - "projectCount": 43, + "projectCount": 5, "years": [ - 2025, - 2024, - 2021, - 2020, - 2019, - 2018, - 2017, 2016 ] }, { - "slug": "scripting-languages", - "name": "scripting languages", + "slug": "creative-coding", + "name": "creative coding", "organizationCount": 1, - "projectCount": 43, + "projectCount": 87, "years": [ + 2026, 2025, - 2024, + 2023, + 2022, 2021, 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "sdlc", - "name": "sdlc", + "slug": "agent-based-models", + "name": "Agent Based Models", "organizationCount": 1, - "projectCount": 102, + "projectCount": 7, "years": [ + 2026, 2025, - 2024, - 2023, - 2022, - 2021, - 2020, - 2019, - 2018, - 2016 + 2024 ] }, { - "slug": "sdn", - "name": "sdn", + "slug": "generative-science", + "name": "Generative Science", "organizationCount": 1, - "projectCount": 26, + "projectCount": 7, "years": [ + 2026, 2025, - 2024, - 2023, - 2022, - 2021, - 2020, - 2019, - 2018, - 2017 + 2024 ] }, { - "slug": "sdr", - "name": "SDR", + "slug": "exoplanet", + "name": "exoplanet", "organizationCount": 1, - "projectCount": 78, + "projectCount": 2, "years": [ - 2025, - 2024, - 2022, - 2021, - 2020, - 2019, - 2018, - 2016 + 2019 ] }, { - "slug": "seamless", - "name": "seamless", + "slug": "computer-assisted-translation", + "name": "computer-assisted translation", "organizationCount": 1, - "projectCount": 0, + "projectCount": 3, "years": [ - 2019, - 2018 + 2021 ] }, { - "slug": "secure-messaging", - "name": "Secure Messaging", + "slug": "kubernetes-operator", + "name": "Kubernetes Operator", "organizationCount": 1, - "projectCount": 29, + "projectCount": 5, + "years": [ + 2025, + 2024 + ] + }, + { + "slug": "pollution", + "name": "pollution", + "organizationCount": 1, + "projectCount": 38, "years": [ 2022, 2021, - 2020, 2019, 2018, 2017, @@ -19408,11 +19649,13 @@ ] }, { - "slug": "security-and-privacy", - "name": "security and privacy", + "slug": "diversity", + "name": "diversity", "organizationCount": 1, - "projectCount": 20, + "projectCount": 38, "years": [ + 2022, + 2021, 2019, 2018, 2017, @@ -19420,115 +19663,135 @@ ] }, { - "slug": "security-and-software-bill-of-materials", - "name": "security and software bill of materials", + "slug": "diy", + "name": "diy", "organizationCount": 1, - "projectCount": 29, + "projectCount": 38, "years": [ - 2025, 2022, 2021, - 2020, 2019, - 2018 + 2018, + 2017, + 2016 ] }, { - "slug": "security-cryptography", - "name": "Security Cryptography", + "slug": "data-vizualisation", + "name": "data vizualisation", "organizationCount": 1, - "projectCount": 52, + "projectCount": 15, "years": [ - 2025, 2024, 2023, 2022, 2021, 2020, - 2018, - 2017, - 2016 + 2019, + 2018 ] }, { - "slug": "security-defense", - "name": "Security Defense", + "slug": "real-time-system", + "name": "real-time system", "organizationCount": 1, - "projectCount": 2, + "projectCount": 15, "years": [ 2024, - 2023 + 2023, + 2022, + 2021, + 2020, + 2019, + 2018 ] }, { - "slug": "self-hosted", - "name": "self-hosted", + "slug": "ui-design", + "name": "ui design", "organizationCount": 1, - "projectCount": 5, + "projectCount": 277, "years": [ + 2026, + 2025, + 2024, 2023, - 2022 + 2022, + 2021, + 2020, + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "selfdriving", - "name": "selfdriving", + "slug": "backup", + "name": "Backup", "organizationCount": 1, - "projectCount": 8, + "projectCount": 277, "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2019, 2018, 2017, 2016 ] }, { - "slug": "semantics", - "name": "semantics", + "slug": "computational-science", + "name": "Computational Science", "organizationCount": 1, - "projectCount": 4, + "projectCount": 7, "years": [ - 2019, - 2018 + 2026, + 2025, + 2024 ] }, { - "slug": "sensor-web", - "name": "sensor web", + "slug": "numerical-algorithms", + "name": "numerical algorithms", "organizationCount": 1, - "projectCount": 25, + "projectCount": 7, "years": [ + 2026, 2025, - 2024, - 2023, - 2022, - 2021, - 2020, - 2019, - 2018, - 2017, - 2016 + 2024 ] }, { - "slug": "sensors", - "name": "sensors", + "slug": "hypervisor", + "name": "hypervisor", "organizationCount": 1, - "projectCount": 20, + "projectCount": 41, "years": [ + 2026, + 2025, + 2023, 2022, 2021, + 2020, 2019, - 2018 + 2018, + 2017, + 2016 ] }, { - "slug": "sensorweb", - "name": "sensorweb", + "slug": "emulator", + "name": "emulator", "organizationCount": 1, - "projectCount": 25, + "projectCount": 41, "years": [ + 2026, 2025, - 2024, 2023, 2022, 2021, @@ -19540,76 +19803,94 @@ ] }, { - "slug": "sentimental-analysis", - "name": "Sentimental Analysis", + "slug": "mhealth", + "name": "mhealth", "organizationCount": 1, - "projectCount": 8, + "projectCount": 3, "years": [ - 2025, - 2024 + 2022 ] }, { - "slug": "sepsis-detection", - "name": "sepsis detection", + "slug": "remote-patient-monitoring", + "name": "remote patient monitoring", "organizationCount": 1, "projectCount": 3, "years": [ - 2019 + 2022 ] }, { - "slug": "sepsis-prediction", - "name": "sepsis prediction", + "slug": "devices", + "name": "devices", "organizationCount": 1, "projectCount": 3, "years": [ - 2019 + 2022 ] }, { - "slug": "server-development", - "name": "Server development", + "slug": "assembly", + "name": "assembly", "organizationCount": 1, - "projectCount": 26, + "projectCount": 15, "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, 2020, - 2019, - 2018 + 2018, + 2017, + 2016 ] }, { - "slug": "serverless-computing", - "name": "Serverless Computing", + "slug": "ui-toolkit", + "name": "ui toolkit", "organizationCount": 1, - "projectCount": 6, + "projectCount": 2, "years": [ - 2024, - 2023 + 2021 ] }, { - "slug": "sharing", - "name": "sharing", + "slug": "design-system", + "name": "design system", "organizationCount": 1, - "projectCount": 17, + "projectCount": 2, + "years": [ + 2021 + ] + }, + { + "slug": "docs", + "name": "docs", + "organizationCount": 1, + "projectCount": 3, + "years": [ + 2019, + 2018 + ] + }, + { + "slug": "co-speech-gesture", + "name": "co-speech gesture", + "organizationCount": 1, + "projectCount": 88, "years": [ 2024, + 2023, 2022, 2021, - 2020 + 2020, + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "sheet-music", - "name": "sheet music", + "slug": "cognitive-science", + "name": "cognitive science", "organizationCount": 1, - "projectCount": 24, + "projectCount": 88, "years": [ 2024, 2023, @@ -19623,12 +19904,11 @@ ] }, { - "slug": "silicon", - "name": "silicon", + "slug": "gesture", + "name": "gesture", "organizationCount": 1, - "projectCount": 60, + "projectCount": 88, "years": [ - 2025, 2024, 2023, 2022, @@ -19641,96 +19921,108 @@ ] }, { - "slug": "simulation-software", - "name": "simulation software", + "slug": "fairness", + "name": "Fairness", "organizationCount": 1, - "projectCount": 10, + "projectCount": 4, "years": [ - 2016 + 2022 ] }, { - "slug": "simulators", - "name": "simulators", + "slug": "robustness", + "name": "Robustness", "organizationCount": 1, - "projectCount": 2, + "projectCount": 4, "years": [ - 2016 + 2022 ] }, { - "slug": "sip", - "name": "sip", + "slug": "safety", + "name": "Safety", "organizationCount": 1, - "projectCount": 0, + "projectCount": 4, "years": [ - 2018 + 2022 ] }, { - "slug": "smart-cities", - "name": "smart cities", + "slug": "interpretibility", + "name": "Interpretibility", "organizationCount": 1, - "projectCount": 1, + "projectCount": 4, "years": [ - 2018 + 2022 ] }, { - "slug": "smart-contracts", - "name": "smart contracts", + "slug": "robotics-simulation", + "name": "robotics simulation", "organizationCount": 1, - "projectCount": 13, + "projectCount": 57, "years": [ - 2025, - 2024, + 2022, 2021, - 2020 + 2020, + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "smt-solver", - "name": "smt solver", + "slug": "multi-agent-system", + "name": "multi-agent system", "organizationCount": 1, - "projectCount": 14, + "projectCount": 57, "years": [ - 2025, - 2024, - 2023, + 2022, + 2021, + 2020, 2019, - 2018 + 2018, + 2017, + 2016 ] }, { - "slug": "snapshots", - "name": "snapshots", + "slug": "component-based-development", + "name": "component-based development", "organizationCount": 1, - "projectCount": 18, + "projectCount": 57, "years": [ - 2025, - 2024, - 2023, 2022, 2021, 2020, - 2019 + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "social-participation", - "name": "Social participation", + "slug": "multi-agent-systems", + "name": "Multi-agent Systems", "organizationCount": 1, - "projectCount": 4, + "projectCount": 57, "years": [ - 2024 + 2022, + 2021, + 2020, + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "social-science", - "name": "social science", + "slug": "progressive-web-apps", + "name": "progressive web apps", "organizationCount": 1, - "projectCount": 117, + "projectCount": 103, "years": [ + 2026, 2025, 2024, 2023, @@ -19743,11 +20035,12 @@ ] }, { - "slug": "social-network", - "name": "social-network", + "slug": "chatbot", + "name": "chatbot", "organizationCount": 1, "projectCount": 103, "years": [ + 2026, 2025, 2024, 2023, @@ -19760,43 +20053,30 @@ ] }, { - "slug": "soft-matter-physics", - "name": "soft matter physics", + "slug": "social-network", + "name": "social-network", "organizationCount": 1, - "projectCount": 16, + "projectCount": 103, "years": [ + 2026, 2025, 2024, 2023, 2022, 2021, - 2020 - ] - }, - { - "slug": "soft-real-time", - "name": "soft real-time", - "organizationCount": 1, - "projectCount": 3, - "years": [ - 2020 - ] - }, - { - "slug": "software-analytics", - "name": "software analytics", - "organizationCount": 1, - "projectCount": 1, - "years": [ - 2019 + 2020, + 2019, + 2018, + 2017 ] }, { - "slug": "software-archeology", - "name": "software archeology", + "slug": "team", + "name": "team", "organizationCount": 1, - "projectCount": 34, + "projectCount": 103, "years": [ + 2026, 2025, 2024, 2023, @@ -19805,27 +20085,34 @@ 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "software-as-a-service", - "name": "software as a service", + "slug": "team-collaboration", + "name": "Team Collaboration", "organizationCount": 1, - "projectCount": 20, + "projectCount": 103, "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "software-composition-analysis", - "name": "software composition analysis", + "slug": "chat-platform", + "name": "Chat platform", "organizationCount": 1, - "projectCount": 32, + "projectCount": 103, "years": [ + 2026, 2025, 2024, 2023, @@ -19833,43 +20120,47 @@ 2021, 2020, 2019, + 2018, 2017 ] }, { - "slug": "software-configurability", - "name": "software configurability", + "slug": "spam-filtering", + "name": "spam filtering", "organizationCount": 1, - "projectCount": 16, + "projectCount": 3, "years": [ 2025, - 2024, - 2023, - 2022 + 2018, + 2017 ] }, { - "slug": "software-defined-storage", - "name": "software defined storage", + "slug": "posix", + "name": "posix", "organizationCount": 1, - "projectCount": 31, + "projectCount": 46, "years": [ + 2026, 2025, 2024, 2023, 2022, 2021, 2020, + 2019, + 2018, 2017, 2016 ] }, { - "slug": "software-model-checking", - "name": "software model checking", + "slug": "multicore", + "name": "multicore", "organizationCount": 1, "projectCount": 46, "years": [ + 2026, 2025, 2024, 2023, @@ -19883,11 +20174,12 @@ ] }, { - "slug": "software-packages", - "name": "software packages", + "slug": "iot-cps", + "name": "iot cps", "organizationCount": 1, - "projectCount": 32, + "projectCount": 46, "years": [ + 2026, 2025, 2024, 2023, @@ -19895,33 +20187,34 @@ 2021, 2020, 2019, - 2017 + 2018, + 2017, + 2016 ] }, { - "slug": "software-preservation", - "name": "software preservation", + "slug": "type-system", + "name": "type system", "organizationCount": 1, - "projectCount": 34, + "projectCount": 38, "years": [ - 2025, - 2024, + 2026, 2023, 2022, 2021, 2020, 2019, 2018, - 2017, 2016 ] }, { - "slug": "software-radio", - "name": "software radio", + "slug": "combinatorics", + "name": "combinatorics", "organizationCount": 1, - "projectCount": 18, + "projectCount": 55, "years": [ + 2026, 2025, 2024, 2023, @@ -19935,52 +20228,52 @@ ] }, { - "slug": "software-reuse", - "name": "software reuse", + "slug": "toolbox", + "name": "toolbox", "organizationCount": 1, - "projectCount": 16, + "projectCount": 55, "years": [ + 2026, 2025, 2024, 2023, - 2022 + 2022, + 2021, + 2020, + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "software-sustainability", - "name": "software sustainability", + "slug": "samba", + "name": "samba", "organizationCount": 1, - "projectCount": 29, + "projectCount": 3, "years": [ - 2025, - 2022, 2021, 2020, 2019, - 2018 + 2017 ] }, { - "slug": "software-verification", - "name": "software verification", + "slug": "serverless-computing", + "name": "Serverless Computing", "organizationCount": 1, - "projectCount": 14, + "projectCount": 6, "years": [ - 2025, 2024, - 2023, - 2019, - 2018 + 2023 ] }, { - "slug": "software-visualization", - "name": "software visualization", + "slug": "forensic", + "name": "forensic", "organizationCount": 1, - "projectCount": 73, + "projectCount": 149, "years": [ - 2025, - 2024, 2023, 2022, 2021, @@ -19992,27 +20285,28 @@ ] }, { - "slug": "softwarecompositionanalysis", - "name": "SoftwareCompositionAnalysis", + "slug": "cloud-with-google-computer-engine", + "name": "cloud with google computer engine", "organizationCount": 1, - "projectCount": 32, + "projectCount": 149, "years": [ - 2025, - 2024, 2023, 2022, 2021, 2020, 2019, - 2017 + 2018, + 2017, + 2016 ] }, { - "slug": "solar-physics", - "name": "solar physics", + "slug": "software-preservation", + "name": "software preservation", "organizationCount": 1, - "projectCount": 77, + "projectCount": 34, "years": [ + 2026, 2025, 2024, 2023, @@ -20026,11 +20320,12 @@ ] }, { - "slug": "solid-geometry", - "name": "solid geometry", + "slug": "engines", + "name": "engines", "organizationCount": 1, - "projectCount": 73, + "projectCount": 34, "years": [ + 2026, 2025, 2024, 2023, @@ -20044,11 +20339,12 @@ ] }, { - "slug": "solid-modeling", - "name": "solid modeling", + "slug": "software-archeology", + "name": "software archeology", "organizationCount": 1, - "projectCount": 73, + "projectCount": 34, "years": [ + 2026, 2025, 2024, 2023, @@ -20062,475 +20358,440 @@ ] }, { - "slug": "solver", - "name": "solver", + "slug": "tcp", + "name": "tcp", "organizationCount": 1, - "projectCount": 3, + "projectCount": 1, "years": [ - 2016 + 2018 ] }, { - "slug": "sound", - "name": "Sound", + "slug": "vector-database", + "name": "Vector Database", "organizationCount": 1, "projectCount": 3, "years": [ - 2022, - 2021 + 2022 ] }, { - "slug": "source-code-analyzer", - "name": "source code analyzer", + "slug": "project-management", + "name": "project-management", "organizationCount": 1, "projectCount": 3, "years": [ - 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "source-code-archive", - "name": "source code archive", + "slug": "toolbox-frameworks", + "name": "toolbox frameworks", "organizationCount": 1, - "projectCount": 6, + "projectCount": 8, "years": [ - 2022, - 2021, - 2019 + 2024, + 2022 ] }, { - "slug": "source-code-management", - "name": "source code management", + "slug": "telepresence", + "name": "Telepresence", "organizationCount": 1, - "projectCount": 6, + "projectCount": 12, "years": [ - 2022, - 2021, - 2019 + 2025, + 2023, + 2022 ] }, { - "slug": "space-standards", - "name": "space standards", + "slug": "digital-arts", + "name": "digital arts", "organizationCount": 1, - "projectCount": 7, + "projectCount": 12, "years": [ - 2021, - 2020, - 2019 + 2025, + 2023, + 2022 ] }, { - "slug": "spacecraft", - "name": "spacecraft", + "slug": "software-verification", + "name": "software verification", "organizationCount": 1, - "projectCount": 7, + "projectCount": 14, "years": [ - 2021, - 2020, - 2019 + 2025, + 2024, + 2023, + 2019, + 2018 ] }, { - "slug": "spam-filtering", - "name": "spam filtering", + "slug": "benchmarking", + "name": "benchmarking", "organizationCount": 1, - "projectCount": 3, + "projectCount": 14, "years": [ 2025, - 2018, - 2017 + 2024, + 2023, + 2019, + 2018 ] }, { - "slug": "spatial", - "name": "spatial", + "slug": "smt-solver", + "name": "smt solver", "organizationCount": 1, - "projectCount": 1, + "projectCount": 14, "years": [ - 2022 + 2025, + 2024, + 2023, + 2019, + 2018 ] }, { - "slug": "spatial-data", - "name": "spatial data", + "slug": "result-presentation", + "name": "result presentation", "organizationCount": 1, - "projectCount": 25, + "projectCount": 14, "years": [ 2025, 2024, 2023, - 2022, - 2021, - 2020, 2019, - 2018, - 2017, - 2016 + 2018 ] }, { - "slug": "spatial-data-infrastructures", - "name": "spatial data infrastructures", + "slug": "sat-smt-solving", + "name": "SAT & SMT solving", "organizationCount": 1, - "projectCount": 25, + "projectCount": 14, "years": [ 2025, 2024, 2023, + 2019, + 2018 + ] + }, + { + "slug": "digital-preservation", + "name": "digital preservation", + "organizationCount": 1, + "projectCount": 6, + "years": [ 2022, 2021, - 2020, - 2019, - 2018, - 2017, - 2016 + 2019 ] }, { - "slug": "spatial-information", - "name": "spatial information", + "slug": "big-code", + "name": "big code", "organizationCount": 1, - "projectCount": 25, + "projectCount": 6, "years": [ - 2025, - 2024, - 2023, 2022, 2021, - 2020, - 2019, - 2018, - 2017, - 2016 + 2019 ] }, { - "slug": "spatial-information-infrastructures", - "name": "spatial information infrastructures", + "slug": "source-code-archive", + "name": "source code archive", "organizationCount": 1, - "projectCount": 25, + "projectCount": 6, "years": [ - 2025, - 2024, - 2023, 2022, 2021, - 2020, - 2019, - 2018, - 2017, - 2016 + 2019 ] }, { - "slug": "spectrum-analysis", - "name": "spectrum analysis", + "slug": "source-code-management", + "name": "source code management", "organizationCount": 1, - "projectCount": 18, + "projectCount": 6, "years": [ - 2025, - 2024, - 2023, 2022, 2021, - 2020, - 2019, - 2018, - 2017, + 2019 + ] + }, + { + "slug": "floss", + "name": "floss", + "organizationCount": 1, + "projectCount": 6, + "years": [ + 2022, + 2021, + 2019 + ] + }, + { + "slug": "portable", + "name": "portable", + "organizationCount": 1, + "projectCount": 3, + "years": [ 2016 ] }, { - "slug": "speech-recognition", - "name": "speech recognition", + "slug": "makers", + "name": "makers", "organizationCount": 1, - "projectCount": 11, + "projectCount": 3, "years": [ - 2017 + 2016 ] }, { - "slug": "sql-features", - "name": "SQL Features", + "slug": "opensource", + "name": "opensource", "organizationCount": 1, - "projectCount": 39, + "projectCount": 29, "years": [ - 2025, - 2024, 2023, 2022, 2021, 2020, 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "standard-libraries", - "name": "Standard Libraries", + "slug": "automated-testing", + "name": "Automated Testing", "organizationCount": 1, - "projectCount": 26, + "projectCount": 6, "years": [ 2025, - 2024, - 2023, - 2022, - 2021, - 2020, - 2019, - 2018 + 2023 ] }, { - "slug": "stateful", - "name": "stateful", + "slug": "logic-bugs", + "name": "Logic bugs", "organizationCount": 1, - "projectCount": 3, + "projectCount": 6, "years": [ - 2019, - 2018 + 2025, + 2023 ] }, { - "slug": "statically-typed-languages", - "name": "statically-typed languages", + "slug": "database-systems", + "name": "Database systems", "organizationCount": 1, - "projectCount": 43, + "projectCount": 6, "years": [ 2025, - 2024, - 2021, - 2020, - 2019, - 2018, - 2017, - 2016 + 2023 ] }, { - "slug": "statistical-computing", - "name": "statistical computing", + "slug": "hpx", + "name": "hpx", "organizationCount": 1, - "projectCount": 277, + "projectCount": 38, "years": [ + 2026, 2025, 2024, 2023, 2022, 2021, 2020, - 2019, 2018, 2017, 2016 ] }, { - "slug": "stem", - "name": "stem", + "slug": "c-standardizaion", + "name": "c++ standardizaion", "organizationCount": 1, - "projectCount": 89, + "projectCount": 38, "years": [ + 2026, 2025, 2024, 2023, 2022, 2021, 2020, - 2019, 2018, 2017, 2016 ] }, { - "slug": "storage-server", - "name": "storage server", + "slug": "distributed-datastructures", + "name": "distributed datastructures", "organizationCount": 1, - "projectCount": 18, + "projectCount": 38, "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, 2020, - 2019, 2018, - 2017 - ] - }, - { - "slug": "stream-processing", - "name": "stream processing", - "organizationCount": 1, - "projectCount": 2, - "years": [ - 2020 + 2017, + 2016 ] }, { - "slug": "structural-engineering", - "name": "Structural engineering", + "slug": "asynchronous-many-task-systems", + "name": "asynchronous many task systems", "organizationCount": 1, - "projectCount": 13, + "projectCount": 38, "years": [ + 2026, 2025, 2024, + 2023, 2022, 2021, 2020, - 2019, + 2018, 2017, 2016 ] }, { - "slug": "structured-data", - "name": "structured data", + "slug": "asynchronous-manytask-systems", + "name": "asynchronous manytask systems", "organizationCount": 1, - "projectCount": 12, + "projectCount": 38, "years": [ + 2026, + 2025, + 2024, 2023, 2022, 2021, 2020, - 2019, 2018, 2017, 2016 ] }, { - "slug": "structured-transparency", - "name": "structured transparency", - "organizationCount": 1, - "projectCount": 9, - "years": [ - 2021, - 2020 - ] - }, - { - "slug": "supernova", - "name": "supernova", + "slug": "parallelism", + "name": "parallelism", "organizationCount": 1, - "projectCount": 9, + "projectCount": 38, "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, 2021, 2020, + 2018, + 2017, 2016 ] }, { - "slug": "surveillance", - "name": "Surveillance", + "slug": "computational-fluid-dynamics", + "name": "Computational Fluid Dynamics", "organizationCount": 1, - "projectCount": 19, + "projectCount": 7, "years": [ + 2026, 2025, - 2023, - 2022, - 2017, - 2016 + 2024 ] }, { - "slug": "sustainability", - "name": "sustainability", + "slug": "multi-disciplinary-optimization", + "name": "Multi-Disciplinary Optimization", "organizationCount": 1, - "projectCount": 29, + "projectCount": 7, "years": [ + 2026, 2025, - 2022, - 2021, - 2020, - 2019, - 2018 + 2024 ] }, { - "slug": "symbolic-execution", - "name": "symbolic execution", + "slug": "adjoint-design-optimization", + "name": "Adjoint Design Optimization", "organizationCount": 1, - "projectCount": 46, + "projectCount": 7, "years": [ + 2026, 2025, - 2024, - 2023, - 2022, - 2021, - 2020, - 2019, - 2018, - 2017, - 2016 + 2024 ] }, { - "slug": "symbolic-mathematics", - "name": "symbolic mathematics", + "slug": "fluid-dynamics", + "name": "Fluid Dynamics", "organizationCount": 1, - "projectCount": 63, + "projectCount": 7, "years": [ + 2026, 2025, - 2024, - 2023, - 2022, - 2021, - 2020, - 2019, - 2018, - 2017, - 2016 + 2024 ] }, { - "slug": "symfony", - "name": "symfony", + "slug": "biomedical-informatics", + "name": "biomedical informatics", "organizationCount": 1, - "projectCount": 39, + "projectCount": 9, "years": [ - 2025, - 2024, - 2023, - 2022, - 2020, - 2019, 2018, 2017, 2016 ] }, { - "slug": "sync", - "name": "sync", + "slug": "bioinformtics", + "name": "bioinformtics", "organizationCount": 1, - "projectCount": 5, + "projectCount": 9, "years": [ + 2018, 2017, 2016 ] }, { - "slug": "synchronisation", - "name": "synchronisation", + "slug": "biomedical-data-science", + "name": "biomedical data science", "organizationCount": 1, - "projectCount": 17, + "projectCount": 9, "years": [ - 2024, - 2022, - 2021, - 2020 + 2018, + 2017, + 2016 ] }, { - "slug": "synchronized", - "name": "synchronized", + "slug": "cancer-informatics", + "name": "cancer informatics", "organizationCount": 1, - "projectCount": 5, + "projectCount": 9, "years": [ + 2018, 2017, 2016 ] @@ -20551,53 +20812,33 @@ ] }, { - "slug": "system-modelling", - "name": "system modelling", - "organizationCount": 1, - "projectCount": 3, - "years": [ - 2016 - ] - }, - { - "slug": "systems-management", - "name": "systems management", + "slug": "diagnostic", + "name": "diagnostic", "organizationCount": 1, - "projectCount": 52, + "projectCount": 15, "years": [ - 2025, - 2024, - 2023, 2022, 2021, 2020, + 2019, 2018, 2017, 2016 ] }, { - "slug": "systers", - "name": "systers", - "organizationCount": 1, - "projectCount": 30, - "years": [ - 2017, - 2016 - ] - }, - { - "slug": "tc39", - "name": "tc39", + "slug": "security-defense", + "name": "Security Defense", "organizationCount": 1, "projectCount": 2, "years": [ - 2017 + 2024, + 2023 ] }, { - "slug": "tcp", - "name": "tcp", + "slug": "smart-cities", + "name": "smart cities", "organizationCount": 1, "projectCount": 1, "years": [ @@ -20605,11 +20846,12 @@ ] }, { - "slug": "teaching-quality-codebase", - "name": "teaching quality codebase", + "slug": "stem", + "name": "stem", "organizationCount": 1, - "projectCount": 135, + "projectCount": 89, "years": [ + 2026, 2025, 2024, 2023, @@ -20623,45 +20865,32 @@ ] }, { - "slug": "team", - "name": "team", + "slug": "component-repository", + "name": "component repository", "organizationCount": 1, - "projectCount": 103, + "projectCount": 2, "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, - 2020, - 2019, - 2018, - 2017 + 2026, + 2025 ] }, { - "slug": "team-collaboration", - "name": "Team Collaboration", + "slug": "vulnerabilities-management", + "name": "vulnerabilities management", "organizationCount": 1, - "projectCount": 103, + "projectCount": 2, "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, - 2020, - 2019, - 2018, - 2017 + 2026, + 2025 ] }, { - "slug": "technical-computing", - "name": "technical computing", + "slug": "packages", + "name": "Packages", "organizationCount": 1, - "projectCount": 140, + "projectCount": 26, "years": [ + 2026, 2025, 2024, 2023, @@ -20669,16 +20898,16 @@ 2021, 2020, 2019, - 2017, - 2016 + 2018 ] }, { - "slug": "telecom", - "name": "telecom", + "slug": "server-development", + "name": "Server development", "organizationCount": 1, "projectCount": 26, "years": [ + 2026, 2025, 2024, 2023, @@ -20686,16 +20915,16 @@ 2021, 2020, 2019, - 2018, - 2017 + 2018 ] }, { - "slug": "telecommunications", - "name": "telecommunications", + "slug": "standard-libraries", + "name": "Standard Libraries", "organizationCount": 1, "projectCount": 26, "years": [ + 2026, 2025, 2024, 2023, @@ -20703,46 +20932,16 @@ 2021, 2020, 2019, - 2018, - 2017 - ] - }, - { - "slug": "telemedicine-and-remote-care", - "name": "Telemedicine and Remote Care", - "organizationCount": 1, - "projectCount": 9, - "years": [ - 2025, - 2024 - ] - }, - { - "slug": "telephony", - "name": "telephony", - "organizationCount": 1, - "projectCount": 0, - "years": [ 2018 ] }, { - "slug": "telepresence", - "name": "Telepresence", - "organizationCount": 1, - "projectCount": 12, - "years": [ - 2025, - 2023, - 2022 - ] - }, - { - "slug": "television", - "name": "television", + "slug": "computer-algebra", + "name": "computer algebra", "organizationCount": 1, - "projectCount": 80, + "projectCount": 63, "years": [ + 2026, 2025, 2024, 2023, @@ -20756,14 +20955,16 @@ ] }, { - "slug": "tensorflow", - "name": "tensorflow", + "slug": "symbolic-mathematics", + "name": "symbolic mathematics", "organizationCount": 1, - "projectCount": 28, + "projectCount": 63, "years": [ + 2026, 2025, 2024, 2023, + 2022, 2021, 2020, 2019, @@ -20773,288 +20974,252 @@ ] }, { - "slug": "terminal-applications", - "name": "terminal applications", + "slug": "2d-animation", + "name": "2d animation", "organizationCount": 1, - "projectCount": 11, + "projectCount": 12, "years": [ + 2026, + 2025, + 2024, + 2023, 2022, + 2021, 2020, - 2018, - 2017, - 2016 + 2019 ] }, { - "slug": "test-input-generation", - "name": "test input generation", + "slug": "log-management", + "name": "log management", "organizationCount": 1, - "projectCount": 46, + "projectCount": 12, "years": [ - 2025, - 2024, - 2023, 2022, 2021, 2020, 2019, 2018, - 2017, 2016 ] }, { - "slug": "testing-ci", - "name": "testing/ci", + "slug": "message-queue", + "name": "message queue", "organizationCount": 1, - "projectCount": 19, + "projectCount": 12, "years": [ - 2023, 2022, + 2021, 2020, 2019, 2018, - 2017, 2016 ] }, { - "slug": "text-analytics", - "name": "text analytics", + "slug": "message-correlation", + "name": "message correlation", "organizationCount": 1, - "projectCount": 10, + "projectCount": 12, "years": [ + 2022, + 2021, + 2020, 2019, 2018, - 2017 + 2016 ] }, { - "slug": "text-editing", - "name": "text editing", + "slug": "reliable-log-transfer", + "name": "reliable log transfer", "organizationCount": 1, - "projectCount": 4, + "projectCount": 12, "years": [ + 2022, + 2021, + 2020, 2019, - 2018 + 2018, + 2016 ] }, { - "slug": "text-generation", - "name": "text generation", + "slug": "women-in-tech", + "name": "women in tech", "organizationCount": 1, - "projectCount": 10, + "projectCount": 30, "years": [ - 2019, - 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "text-to-speech", - "name": "text to speech", + "slug": "systers", + "name": "systers", "organizationCount": 1, - "projectCount": 2, + "projectCount": 30, "years": [ - 2020, - 2019 + 2017, + 2016 ] }, { - "slug": "threat-intelligence", - "name": "Threat Intelligence", + "slug": "women-in-open-source", + "name": "women in open source", "organizationCount": 1, - "projectCount": 101, + "projectCount": 30, "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, - 2020, - 2019, - 2018, 2017, 2016 ] }, { - "slug": "timeseries", - "name": "timeseries", + "slug": "peace-corps", + "name": "peace corps", "organizationCount": 1, - "projectCount": 19, + "projectCount": 30, "years": [ - 2022, - 2020, - 2019, - 2018, 2017, 2016 ] }, { - "slug": "tls", - "name": "TLS", + "slug": "in-memory", + "name": "In-memory", "organizationCount": 1, - "projectCount": 2, + "projectCount": 3, "years": [ - 2023 + 2022, + 2021 ] }, { - "slug": "toolbox", - "name": "toolbox", + "slug": "jit", + "name": "JIT", "organizationCount": 1, - "projectCount": 55, + "projectCount": 3, "years": [ - 2025, - 2024, - 2023, 2022, - 2021, - 2020, - 2019, - 2018, - 2017, - 2016 + 2021 ] }, { - "slug": "toolbox-frameworks", - "name": "toolbox frameworks", + "slug": "imdg", + "name": "IMDG", "organizationCount": 1, - "projectCount": 8, + "projectCount": 3, "years": [ - 2024, - 2022 + 2022, + 2021 ] }, { - "slug": "toolchains", - "name": "toolchains", + "slug": "nosql-database", + "name": "NoSQL Database", "organizationCount": 1, - "projectCount": 10, + "projectCount": 3, "years": [ - 2025, - 2024, - 2020, - 2019, - 2018 + 2022, + 2021 ] }, { - "slug": "top-10", - "name": "top 10", + "slug": "monte-carlo-methods", + "name": "monte carlo methods", "organizationCount": 1, - "projectCount": 102, + "projectCount": 9, "years": [ - 2025, - 2024, - 2023, - 2022, 2021, 2020, - 2019, - 2018, 2016 ] }, { - "slug": "trajectory-analysis", - "name": "trajectory analysis", + "slug": "radiative-transfer", + "name": "radiative transfer", "organizationCount": 1, - "projectCount": 16, + "projectCount": 9, "years": [ - 2025, - 2024, - 2023, - 2022, 2021, - 2020 + 2020, + 2016 ] }, { - "slug": "trajectory-analytics", - "name": "trajectory analytics", + "slug": "global-optimization", + "name": "global optimization", "organizationCount": 1, - "projectCount": 25, + "projectCount": 9, "years": [ - 2025, - 2024, - 2023, - 2022, 2021, 2020, - 2019, - 2018, - 2017, 2016 ] }, { - "slug": "trajectory-generation", - "name": "trajectory generation", + "slug": "supernova", + "name": "supernova", "organizationCount": 1, - "projectCount": 10, + "projectCount": 9, "years": [ - 2024, - 2023, - 2022, 2021, - 2020 + 2020, + 2016 ] }, { - "slug": "transcoding", - "name": "transcoding", + "slug": "software-as-a-service", + "name": "software as a service", "organizationCount": 1, - "projectCount": 0, + "projectCount": 20, "years": [ + 2018, + 2017, 2016 ] }, { - "slug": "transit", - "name": "Transit", + "slug": "peer-feedback", + "name": "peer feedback", "organizationCount": 1, - "projectCount": 10, + "projectCount": 20, "years": [ - 2025, - 2024 + 2018, + 2017, + 2016 ] }, { - "slug": "travel", - "name": "travel", + "slug": "saas", + "name": "saas", "organizationCount": 1, - "projectCount": 10, + "projectCount": 20, "years": [ - 2025, - 2024 + 2018, + 2017, + 2016 ] }, { - "slug": "triangulation", - "name": "triangulation", + "slug": "on-device-machine-learning", + "name": "on-device machine learning", "organizationCount": 1, - "projectCount": 58, + "projectCount": 81, "years": [ - 2025, - 2024, 2023, 2022, 2021, 2020, - 2019, - 2018, - 2017 + 2019 ] }, { - "slug": "triangulaton", - "name": "triangulaton", + "slug": "ddd", + "name": "ddd", "organizationCount": 1, - "projectCount": 58, + "projectCount": 248, "years": [ 2025, 2024, @@ -21064,59 +21229,98 @@ 2020, 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "truetype", - "name": "truetype", + "slug": "academic-research", + "name": "academic research", "organizationCount": 1, - "projectCount": 17, + "projectCount": 5, "years": [ - 2024, + 2019, + 2018, + 2017, + 2016 + ] + }, + { + "slug": "game-design", + "name": "game design", + "organizationCount": 1, + "projectCount": 9, + "years": [ + 2024, + 2023, + 2022, + 2021 + ] + }, + { + "slug": "embedded-system", + "name": "Embedded System", + "organizationCount": 1, + "projectCount": 76, + "years": [ + 2026, + 2025, + 2024, 2023, 2022, 2021, 2020, 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "type-system", - "name": "type system", + "slug": "honeypot", + "name": "honeypot", "organizationCount": 1, - "projectCount": 38, + "projectCount": 101, "years": [ + 2026, + 2025, + 2024, 2023, 2022, 2021, 2020, 2019, 2018, + 2017, 2016 ] }, { - "slug": "type-systems", - "name": "type systems", + "slug": "honeynet", + "name": "honeynet", "organizationCount": 1, - "projectCount": 17, + "projectCount": 101, "years": [ + 2026, 2025, + 2024, + 2023, + 2022, + 2021, 2020, 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "uav", - "name": "uav", + "slug": "honeypots", + "name": "honeypots", "organizationCount": 1, - "projectCount": 38, + "projectCount": 101, "years": [ + 2026, 2025, 2024, 2023, @@ -21125,25 +21329,36 @@ 2020, 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "uefi", - "name": "uefi", + "slug": "deception", + "name": "deception", "organizationCount": 1, - "projectCount": 8, + "projectCount": 101, "years": [ + 2026, + 2025, + 2024, + 2023, 2022, - 2021 + 2021, + 2020, + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "ugv", - "name": "UGV", + "slug": "malware", + "name": "malware", "organizationCount": 1, - "projectCount": 38, + "projectCount": 101, "years": [ + 2026, 2025, 2024, 2023, @@ -21152,180 +21367,1193 @@ 2020, 2019, 2018, - 2017 + 2017, + 2016 + ] + }, + { + "slug": "honeynets", + "name": "honeynets", + "organizationCount": 1, + "projectCount": 101, + "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2019, + 2018, + 2017, + 2016 + ] + }, + { + "slug": "hypervisor-introspection", + "name": "hypervisor introspection", + "organizationCount": 1, + "projectCount": 101, + "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2019, + 2018, + 2017, + 2016 + ] + }, + { + "slug": "threat-intelligence", + "name": "Threat Intelligence", + "organizationCount": 1, + "projectCount": 101, + "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2019, + 2018, + 2017, + 2016 + ] + }, + { + "slug": "model-checking", + "name": "model checking", + "organizationCount": 1, + "projectCount": 46, + "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2019, + 2018, + 2017, + 2016 + ] + }, + { + "slug": "environment-generation", + "name": "environment generation", + "organizationCount": 1, + "projectCount": 46, + "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2019, + 2018, + 2017, + 2016 + ] + }, + { + "slug": "symbolic-execution", + "name": "symbolic execution", + "organizationCount": 1, + "projectCount": 46, + "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2019, + 2018, + 2017, + 2016 + ] + }, + { + "slug": "test-input-generation", + "name": "test input generation", + "organizationCount": 1, + "projectCount": 46, + "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2019, + 2018, + 2017, + 2016 + ] + }, + { + "slug": "software-model-checking", + "name": "software model checking", + "organizationCount": 1, + "projectCount": 46, + "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2019, + 2018, + 2017, + 2016 + ] + }, + { + "slug": "verification-of-concurrent-systems", + "name": "verification of concurrent systems", + "organizationCount": 1, + "projectCount": 46, + "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2019, + 2018, + 2017, + 2016 + ] + }, + { + "slug": "jvm", + "name": "jvm", + "organizationCount": 1, + "projectCount": 46, + "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2019, + 2018, + 2017, + 2016 + ] + }, + { + "slug": "integrated-development-environments", + "name": "integrated development environments", + "organizationCount": 1, + "projectCount": 140, + "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2019, + 2017, + 2016 + ] + }, + { + "slug": "plotting", + "name": "plotting", + "organizationCount": 1, + "projectCount": 140, + "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2019, + 2017, + 2016 + ] + }, + { + "slug": "technical-computing", + "name": "technical computing", + "organizationCount": 1, + "projectCount": 140, + "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2019, + 2017, + 2016 + ] + }, + { + "slug": "ipsec", + "name": "ipsec", + "organizationCount": 1, + "projectCount": 10, + "years": [ + 2026, + 2022, + 2021, + 2020, + 2019, + 2018, + 2017 + ] + }, + { + "slug": "ike", + "name": "ike", + "organizationCount": 1, + "projectCount": 10, + "years": [ + 2026, + 2022, + 2021, + 2020, + 2019, + 2018, + 2017 + ] + }, + { + "slug": "ipsec-vpn", + "name": "ipsec vpn", + "organizationCount": 1, + "projectCount": 10, + "years": [ + 2026, + 2022, + 2021, + 2020, + 2019, + 2018, + 2017 + ] + }, + { + "slug": "ikev2", + "name": "ikev2", + "organizationCount": 1, + "projectCount": 10, + "years": [ + 2026, + 2022, + 2021, + 2020, + 2019, + 2018, + 2017 + ] + }, + { + "slug": "printing", + "name": "printing", + "organizationCount": 1, + "projectCount": 137, + "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2019, + 2018, + 2017, + 2016 + ] + }, + { + "slug": "lsb", + "name": "lsb", + "organizationCount": 1, + "projectCount": 137, + "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2019, + 2018, + 2017, + 2016 + ] + }, + { + "slug": "wireguard", + "name": "wireguard", + "organizationCount": 1, + "projectCount": 137, + "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2019, + 2018, + 2017, + 2016 + ] + }, + { + "slug": "iio", + "name": "iio", + "organizationCount": 1, + "projectCount": 137, + "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2019, + 2018, + 2017, + 2016 + ] + }, + { + "slug": "zephyr", + "name": "zephyr", + "organizationCount": 1, + "projectCount": 137, + "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2019, + 2018, + 2017, + 2016 + ] + }, + { + "slug": "fintech", + "name": "fintech", + "organizationCount": 1, + "projectCount": 102, + "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2020, + 2019, + 2018, + 2017, + 2016 + ] + }, + { + "slug": "financial-inclusion", + "name": "financial inclusion", + "organizationCount": 1, + "projectCount": 102, + "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2020, + 2019, + 2018, + 2017, + 2016 + ] + }, + { + "slug": "mobile-banking", + "name": "mobile banking", + "organizationCount": 1, + "projectCount": 102, + "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2020, + 2019, + 2018, + 2017, + 2016 + ] + }, + { + "slug": "digital-financial-services", + "name": "digital financial services", + "organizationCount": 1, + "projectCount": 102, + "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2020, + 2019, + 2018, + 2017, + 2016 + ] + }, + { + "slug": "microfinance", + "name": "microfinance", + "organizationCount": 1, + "projectCount": 102, + "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2020, + 2019, + 2018, + 2017, + 2016 + ] + }, + { + "slug": "embeddable-widget", + "name": "embeddable widget", + "organizationCount": 1, + "projectCount": 1, + "years": [ + 2016 + ] + }, + { + "slug": "rare-disease", + "name": "rare disease", + "organizationCount": 1, + "projectCount": 1, + "years": [ + 2016 + ] + }, + { + "slug": "data-refinement", + "name": "data refinement", + "organizationCount": 1, + "projectCount": 1, + "years": [ + 2016 + ] + }, + { + "slug": "general-purpose-os", + "name": "general purpose os", + "organizationCount": 1, + "projectCount": 38, + "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2019, + 2018, + 2017, + 2016 + ] + }, + { + "slug": "real-unix", + "name": "real unix", + "organizationCount": 1, + "projectCount": 38, + "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2019, + 2018, + 2017, + 2016 + ] + }, + { + "slug": "userland", + "name": "userland", + "organizationCount": 1, + "projectCount": 38, + "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2019, + 2018, + 2017, + 2016 + ] + }, + { + "slug": "unix", + "name": "unix", + "organizationCount": 1, + "projectCount": 38, + "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2019, + 2018, + 2017, + 2016 + ] + }, + { + "slug": "bsd", + "name": "bsd", + "organizationCount": 1, + "projectCount": 38, + "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2019, + 2018, + 2017, + 2016 + ] + }, + { + "slug": "research-and-development", + "name": "research and development", + "organizationCount": 1, + "projectCount": 34, + "years": [ + 2026, + 2025, + 2024, + 2023, + 2022, + 2021, + 2020, + 2019, + 2018, + 2017 + ] + }, + { + "slug": "openroad-chip-design", + "name": "OpenROAD chip design", + "organizationCount": 1, + "projectCount": 0, + "years": [ + 2026 + ] + }, + { + "slug": "open-eda", + "name": "Open EDA", + "organizationCount": 1, + "projectCount": 0, + "years": [ + 2026 + ] + }, + { + "slug": "open-source-design", + "name": "Open-source Design", + "organizationCount": 1, + "projectCount": 0, + "years": [ + 2026 + ] + }, + { + "slug": "llm-chip-design", + "name": "LLM chip design", + "organizationCount": 1, + "projectCount": 0, + "years": [ + 2026 + ] + }, + { + "slug": "ai-ml-networking", + "name": "AI/ML Networking", + "organizationCount": 1, + "projectCount": 9, + "years": [ + 2026, + 2025, + 2024 + ] + }, + { + "slug": "networking-security", + "name": "networking security", + "organizationCount": 1, + "projectCount": 9, + "years": [ + 2026, + 2025, + 2024 + ] + }, + { + "slug": "database-services", + "name": "database services", + "organizationCount": 1, + "projectCount": 1, + "years": [ + 2019 + ] + }, + { + "slug": "voxel", + "name": "voxel", + "organizationCount": 1, + "projectCount": 43, + "years": [ + 2021, + 2020, + 2019, + 2018, + 2017, + 2016 + ] + }, + { + "slug": "minecraft", + "name": "minecraft", + "organizationCount": 1, + "projectCount": 43, + "years": [ + 2021, + 2020, + 2019, + 2018, + 2017, + 2016 + ] + }, + { + "slug": "modding", + "name": "modding", + "organizationCount": 1, + "projectCount": 43, + "years": [ + 2021, + 2020, + 2019, + 2018, + 2017, + 2016 + ] + }, + { + "slug": "anonymity", + "name": "anonymity", + "organizationCount": 1, + "projectCount": 19, + "years": [ + 2025, + 2023, + 2022, + 2017, + 2016 + ] + }, + { + "slug": "anti-censorship", + "name": "anti-censorship", + "organizationCount": 1, + "projectCount": 19, + "years": [ + 2025, + 2023, + 2022, + 2017, + 2016 + ] + }, + { + "slug": "counter-censorship", + "name": "counter-censorship", + "organizationCount": 1, + "projectCount": 19, + "years": [ + 2025, + 2023, + 2022, + 2017, + 2016 + ] + }, + { + "slug": "free-speech", + "name": "free-speech", + "organizationCount": 1, + "projectCount": 19, + "years": [ + 2025, + 2023, + 2022, + 2017, + 2016 + ] + }, + { + "slug": "human-rights", + "name": "Human Rights", + "organizationCount": 1, + "projectCount": 19, + "years": [ + 2025, + 2023, + 2022, + 2017, + 2016 + ] + }, + { + "slug": "surveillance", + "name": "Surveillance", + "organizationCount": 1, + "projectCount": 19, + "years": [ + 2025, + 2023, + 2022, + 2017, + 2016 + ] + }, + { + "slug": "visualization-grammar", + "name": "visualization grammar", + "organizationCount": 1, + "projectCount": 4, + "years": [ + 2019, + 2018 + ] + }, + { + "slug": "plotting-tools", + "name": "plotting tools", + "organizationCount": 1, + "projectCount": 4, + "years": [ + 2019, + 2018 + ] + }, + { + "slug": "compatibility", + "name": "compatibility", + "organizationCount": 1, + "projectCount": 4, + "years": [ + 2020, + 2019, + 2018, + 2017, + 2016 + ] + }, + { + "slug": "directx", + "name": "directx", + "organizationCount": 1, + "projectCount": 4, + "years": [ + 2020, + 2019, + 2018, + 2017, + 2016 + ] + }, + { + "slug": "opengl", + "name": "opengl", + "organizationCount": 1, + "projectCount": 4, + "years": [ + 2020, + 2019, + 2018, + 2017, + 2016 + ] + }, + { + "slug": "vulkan", + "name": "vulkan", + "organizationCount": 1, + "projectCount": 4, + "years": [ + 2020, + 2019, + 2018, + 2017, + 2016 + ] + }, + { + "slug": "uefi", + "name": "uefi", + "organizationCount": 1, + "projectCount": 8, + "years": [ + 2022, + 2021 + ] + }, + { + "slug": "bootloader", + "name": "bootloader", + "organizationCount": 1, + "projectCount": 8, + "years": [ + 2022, + 2021 + ] + }, + { + "slug": "edk2", + "name": "edk2", + "organizationCount": 1, + "projectCount": 8, + "years": [ + 2022, + 2021 + ] + }, + { + "slug": "open-system-firmware", + "name": "open system firmware", + "organizationCount": 1, + "projectCount": 8, + "years": [ + 2022, + 2021 + ] + }, + { + "slug": "acpi", + "name": "acpi", + "organizationCount": 1, + "projectCount": 8, + "years": [ + 2022, + 2021 + ] + }, + { + "slug": "edit", + "name": "edit", + "organizationCount": 1, + "projectCount": 3, + "years": [ + 2026, + 2017 + ] + }, + { + "slug": "level", + "name": "level", + "organizationCount": 1, + "projectCount": 3, + "years": [ + 2026, + 2017 + ] + }, + { + "slug": "level-editor", + "name": "Level Editor", + "organizationCount": 1, + "projectCount": 3, + "years": [ + 2026, + 2017 + ] + }, + { + "slug": "video-capture", + "name": "video capture", + "organizationCount": 1, + "projectCount": 6, + "years": [ + 2019, + 2018, + 2017, + 2016 + ] + }, + { + "slug": "multicloud", + "name": "multicloud", + "organizationCount": 1, + "projectCount": 1, + "years": [ + 2019 + ] + }, + { + "slug": "cats", + "name": "cats", + "organizationCount": 1, + "projectCount": 2, + "years": [ + 2026, + 2025 + ] + }, + { + "slug": "research-software", + "name": "research software", + "organizationCount": 1, + "projectCount": 47, + "years": [ + 2026, + 2025, + 2024, + 2023 + ] + }, + { + "slug": "internationalization", + "name": "internationalization", + "organizationCount": 1, + "projectCount": 9, + "years": [ + 2025, + 2024 + ] + }, + { + "slug": "software-reuse", + "name": "software reuse", + "organizationCount": 1, + "projectCount": 16, + "years": [ + 2026, + 2025, + 2024, + 2023, + 2022 ] }, { - "slug": "ui-design", - "name": "ui design", + "slug": "software-configurability", + "name": "software configurability", "organizationCount": 1, - "projectCount": 277, + "projectCount": 16, "years": [ + 2026, 2025, 2024, 2023, - 2022, - 2021, - 2020, - 2019, - 2018, - 2017, - 2016 + 2022 ] }, { - "slug": "ui-toolkit", - "name": "ui toolkit", + "slug": "technology", + "name": "Technology", "organizationCount": 1, - "projectCount": 2, + "projectCount": 0, "years": [ - 2021 + 2026 ] }, { - "slug": "unified-api", - "name": "unified API", + "slug": "local-grammars", + "name": "local grammars", "organizationCount": 1, - "projectCount": 3, + "projectCount": 2, "years": [ - 2023 + 2016 ] }, { - "slug": "unikernels", - "name": "unikernels", + "slug": "finite-state-automata", + "name": "finite state automata", "organizationCount": 1, "projectCount": 2, "years": [ - 2017 + 2016 ] }, { - "slug": "unix", - "name": "unix", + "slug": "corpus-annotation", + "name": "corpus annotation", "organizationCount": 1, - "projectCount": 38, + "projectCount": 2, "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, - 2020, - 2019, - 2018, - 2017, 2016 ] }, { - "slug": "unmanned-vehicle", - "name": "unmanned vehicle", + "slug": "multilingual-language-resources", + "name": "multilingual language resources", "organizationCount": 1, - "projectCount": 38, + "projectCount": 2, "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, - 2020, - 2019, - 2018, - 2017 + 2016 ] }, { - "slug": "unopionated", - "name": "unopionated", + "slug": "usability", + "name": "Usability", "organizationCount": 1, - "projectCount": 6, + "projectCount": 8, "years": [ - 2017, - 2016 + 2026, + 2025, + 2024 ] }, { - "slug": "unreal-engine", - "name": "unreal engine", + "slug": "user-evaluation", + "name": "User Evaluation", "organizationCount": 1, - "projectCount": 11, + "projectCount": 8, "years": [ - 2018, - 2017 + 2026, + 2025, + 2024 ] }, { - "slug": "upstream", - "name": "upstream", + "slug": "eye-tracking", + "name": "Eye Tracking", "organizationCount": 1, - "projectCount": 27, + "projectCount": 8, "years": [ + 2026, 2025, - 2020, - 2019, - 2018, - 2017, - 2016 + 2024 ] }, { - "slug": "usability", - "name": "Usability", + "slug": "sentimental-analysis", + "name": "Sentimental Analysis", "organizationCount": 1, "projectCount": 8, "years": [ + 2026, 2025, 2024 ] }, { - "slug": "usabilty", - "name": "usabilty", + "slug": "energy", + "name": "energy", "organizationCount": 1, - "projectCount": 4, + "projectCount": 6, "years": [ - 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "user-evaluation", - "name": "User Evaluation", + "slug": "distributed-energy-systems", + "name": "distributed energy systems", "organizationCount": 1, - "projectCount": 8, + "projectCount": 6, "years": [ - 2025, - 2024 + 2017, + 2016 ] }, { - "slug": "user-generated-content", - "name": "user generated content", + "slug": "modeling-optimization", + "name": "modeling & optimization", "organizationCount": 1, - "projectCount": 10, + "projectCount": 6, "years": [ - 2025, - 2024, - 2022, - 2021 + 2017, + 2016 ] }, { - "slug": "user-interface-components", - "name": "user interface components", + "slug": "data-portal", + "name": "data portal", "organizationCount": 1, - "projectCount": 7, + "projectCount": 6, "years": [ + 2017, 2016 ] }, { - "slug": "userland", - "name": "userland", + "slug": "non-linear", + "name": "non-linear", "organizationCount": 1, - "projectCount": 38, + "projectCount": 92, "years": [ + 2026, 2025, 2024, 2023, @@ -21339,33 +22567,31 @@ ] }, { - "slug": "ux-ui", - "name": "UX/UI", + "slug": "codecs", + "name": "codecs", "organizationCount": 1, - "projectCount": 10, + "projectCount": 92, "years": [ + 2026, 2025, 2024, 2023, 2022, - 2018 - ] - }, - { - "slug": "vector-database", - "name": "Vector Database", - "organizationCount": 1, - "projectCount": 3, - "years": [ - 2022 + 2021, + 2020, + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "verification-of-concurrent-systems", - "name": "verification of concurrent systems", + "slug": "media-database", + "name": "media database", "organizationCount": 1, - "projectCount": 46, + "projectCount": 92, "years": [ + 2026, 2025, 2024, 2023, @@ -21379,144 +22605,192 @@ ] }, { - "slug": "video-apis", - "name": "video apis", + "slug": "multimedia-retrieval", + "name": "multimedia retrieval", "organizationCount": 1, - "projectCount": 12, + "projectCount": 6, "years": [ - 2022, 2021, - 2020, - 2019, 2018, - 2017 + 2016 ] }, { - "slug": "video-capture", - "name": "video capture", + "slug": "retrieval", + "name": "retrieval", "organizationCount": 1, "projectCount": 6, "years": [ - 2019, + 2021, 2018, - 2017, 2016 ] }, { - "slug": "video-conferencing", - "name": "video conferencing", + "slug": "wayland", + "name": "Wayland", "organizationCount": 1, - "projectCount": 21, + "projectCount": 7, + "years": [ + 2025, + 2024 + ] + }, + { + "slug": "screencapture", + "name": "ScreenCapture", + "organizationCount": 1, + "projectCount": 7, + "years": [ + 2025, + 2024 + ] + }, + { + "slug": "desktop-portals", + "name": "Desktop Portals", + "organizationCount": 1, + "projectCount": 7, + "years": [ + 2025, + 2024 + ] + }, + { + "slug": "window-system", + "name": "window system", + "organizationCount": 1, + "projectCount": 1, + "years": [ + 2016 + ] + }, + { + "slug": "display", + "name": "display", + "organizationCount": 1, + "projectCount": 1, + "years": [ + 2016 + ] + }, + { + "slug": "toolchains", + "name": "toolchains", + "organizationCount": 1, + "projectCount": 10, "years": [ + 2026, 2025, 2024, - 2022, - 2018, - 2017 + 2020, + 2019, + 2018 ] }, { - "slug": "video-decoding-encoding", - "name": "video decoding/encoding", + "slug": "web-performance", + "name": "web performance", "organizationCount": 1, - "projectCount": 12, + "projectCount": 10, "years": [ - 2022, - 2021, + 2026, + 2025, + 2024, 2020, 2019, - 2018, - 2017 + 2018 ] }, { - "slug": "video-editing", - "name": "video editing", + "slug": "webassembly", + "name": "webassembly", "organizationCount": 1, "projectCount": 10, "years": [ - 2023, - 2021, + 2026, + 2025, + 2024, 2020, - 2019 + 2019, + 2018 ] }, { - "slug": "video-framework", - "name": "video framework", + "slug": "node-js", + "name": "Node.js", "organizationCount": 1, - "projectCount": 12, + "projectCount": 10, "years": [ - 2022, - 2021, + 2026, + 2025, + 2024, 2020, 2019, - 2018, - 2017 + 2018 ] }, { - "slug": "video-player", - "name": "video player", + "slug": "webpack", + "name": "webpack", "organizationCount": 1, - "projectCount": 12, + "projectCount": 10, "years": [ - 2022, - 2021, + 2026, + 2025, + 2024, 2020, 2019, - 2018, - 2017 + 2018 ] }, { - "slug": "video-post-processing", - "name": "video post processing", + "slug": "genome-assembly", + "name": "genome assembly", "organizationCount": 1, - "projectCount": 12, + "projectCount": 8, "years": [ - 2022, - 2021, - 2020, - 2019, - 2018, - 2017 + 2025, + 2024, + 2022 ] }, { - "slug": "vim", - "name": "vim", + "slug": "genome-analysis", + "name": "genome analysis", "organizationCount": 1, "projectCount": 8, "years": [ 2025, - 2020, - 2019, - 2018 + 2024, + 2022 ] }, { - "slug": "virtual-machines", - "name": "virtual machines", + "slug": "mediawiki", + "name": "mediawiki", "organizationCount": 1, - "projectCount": 32, + "projectCount": 85, "years": [ - 2025, + 2026, + 2024, 2023, + 2022, 2021, + 2020, 2019, - 2017 + 2018, + 2017, + 2016 ] }, { - "slug": "vison", - "name": "vison", + "slug": "i18n", + "name": "i18n", "organizationCount": 1, - "projectCount": 38, + "projectCount": 85, "years": [ - 2025, + 2026, 2024, 2023, 2022, @@ -21524,16 +22798,17 @@ 2020, 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "visual-design", - "name": "visual design", + "slug": "encyclopedia", + "name": "encyclopedia", "organizationCount": 1, - "projectCount": 135, + "projectCount": 85, "years": [ - 2025, + 2026, 2024, 2023, 2022, @@ -21546,71 +22821,69 @@ ] }, { - "slug": "visual-effects", - "name": "Visual Effects", + "slug": "wikimedia", + "name": "wikimedia", "organizationCount": 1, - "projectCount": 3, + "projectCount": 85, "years": [ + 2026, + 2024, + 2023, 2022, - 2020 + 2021, + 2020, + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "visualization-grammar", - "name": "visualization grammar", + "slug": "fake-news", + "name": "fake-news", "organizationCount": 1, "projectCount": 4, "years": [ - 2019, - 2018 + 2018, + 2017 ] }, { - "slug": "voice", - "name": "voice", + "slug": "misinformation", + "name": "misinformation", "organizationCount": 1, - "projectCount": 1, + "projectCount": 4, "years": [ - 2021 + 2018, + 2017 ] }, { - "slug": "voice-apps", - "name": "voice apps", + "slug": "digital-knowledge", + "name": "digital knowledge", "organizationCount": 1, - "projectCount": 26, + "projectCount": 4, "years": [ - 2025, - 2024, - 2023, - 2021, - 2020, - 2019, 2018, 2017 ] }, { - "slug": "voice-assistants", - "name": "voice assistants", + "slug": "bookmarking", + "name": "bookmarking", "organizationCount": 1, - "projectCount": 140, + "projectCount": 4, "years": [ - 2025, - 2024, - 2019, 2018, - 2017, - 2016 + 2017 ] }, { - "slug": "voxel", - "name": "voxel", + "slug": "integration", + "name": "integration", "organizationCount": 1, - "projectCount": 43, + "projectCount": 15, "years": [ - 2021, 2020, 2019, 2018, @@ -21619,10 +22892,10 @@ ] }, { - "slug": "vulkan", - "name": "vulkan", + "slug": "indexing", + "name": "indexing", "organizationCount": 1, - "projectCount": 4, + "projectCount": 15, "years": [ 2020, 2019, @@ -21632,78 +22905,107 @@ ] }, { - "slug": "vulnerabilities-management", - "name": "vulnerabilities management", + "slug": "unikernels", + "name": "unikernels", "organizationCount": 1, "projectCount": 2, "years": [ - 2025 + 2017 ] }, { - "slug": "wayland", - "name": "Wayland", + "slug": "embedded-automotive", + "name": "embedded/automotive", "organizationCount": 1, - "projectCount": 7, + "projectCount": 2, "years": [ - 2025, - 2024 + 2017 ] }, { - "slug": "web-archives", - "name": "web archives", + "slug": "customization", + "name": "customization", "organizationCount": 1, - "projectCount": 26, + "projectCount": 5, + "years": [ + 2022, + 2021 + ] + }, + { + "slug": "text-editing", + "name": "text editing", + "organizationCount": 1, + "projectCount": 4, + "years": [ + 2019, + 2018 + ] + }, + { + "slug": "machine-to-machine", + "name": "machine-to-machine", + "organizationCount": 1, + "projectCount": 11, "years": [ - 2025, 2024, 2023, - 2021, + 2022, 2020, 2019, - 2018, 2017 ] }, { - "slug": "web-archiving", - "name": "web archiving", + "slug": "xmpp", + "name": "xmpp", "organizationCount": 1, - "projectCount": 26, + "projectCount": 11, "years": [ - 2025, 2024, 2023, - 2021, + 2022, 2020, 2019, - 2018, 2017 ] }, { - "slug": "web-archving", - "name": "web archving", + "slug": "jingle", + "name": "Jingle", "organizationCount": 1, - "projectCount": 26, + "projectCount": 11, "years": [ - 2025, 2024, 2023, - 2021, + 2022, 2020, 2019, - 2018, 2017 ] }, { - "slug": "web-browser", - "name": "web browser", + "slug": "real-time-communication", + "name": "Real-Time Communication", + "organizationCount": 1, + "projectCount": 11, + "years": [ + 2024, + 2023, + 2022, + 2020, + 2019, + 2017 + ] + }, + { + "slug": "graphics-stack", + "name": "graphics stack", "organizationCount": 1, - "projectCount": 75, + "projectCount": 19, "years": [ + 2023, + 2022, 2020, 2019, 2018, @@ -21712,58 +23014,58 @@ ] }, { - "slug": "web-extensions", - "name": "web extensions", + "slug": "3d-acceleration", + "name": "3d acceleration", "organizationCount": 1, - "projectCount": 26, + "projectCount": 19, "years": [ - 2025, - 2024, 2023, - 2021, + 2022, 2020, 2019, 2018, - 2017 + 2017, + 2016 ] }, { - "slug": "web-performance", - "name": "web performance", + "slug": "media-acceleration", + "name": "media acceleration", "organizationCount": 1, - "projectCount": 10, + "projectCount": 19, "years": [ - 2025, - 2024, + 2023, + 2022, 2020, 2019, - 2018 + 2018, + 2017, + 2016 ] }, { - "slug": "web-portal", - "name": "web portal", + "slug": "2d-acceleration", + "name": "2d acceleration", "organizationCount": 1, - "projectCount": 30, + "projectCount": 19, "years": [ + 2023, 2022, - 2021, 2020, 2019, - 2018 + 2018, + 2017, + 2016 ] }, { - "slug": "web-processing", - "name": "web processing", + "slug": "windowing-system", + "name": "windowing system", "organizationCount": 1, - "projectCount": 25, + "projectCount": 19, "years": [ - 2025, - 2024, 2023, 2022, - 2021, 2020, 2019, 2018, @@ -21772,11 +23074,13 @@ ] }, { - "slug": "web-technologies", - "name": "web technologies", + "slug": "graphic-stack", + "name": "graphic stack", "organizationCount": 1, - "projectCount": 75, + "projectCount": 19, "years": [ + 2023, + 2022, 2020, 2019, 2018, @@ -21785,25 +23089,28 @@ ] }, { - "slug": "web-tools", - "name": "web tools", + "slug": "windowing-systems", + "name": "windowing systems", "organizationCount": 1, - "projectCount": 2, + "projectCount": 19, "years": [ - 2025 + 2023, + 2022, + 2020, + 2019, + 2018, + 2017, + 2016 ] }, { - "slug": "web-based-geoprocessing", - "name": "web-based geoprocessing", + "slug": "testing-ci", + "name": "testing/ci", "organizationCount": 1, - "projectCount": 25, + "projectCount": 19, "years": [ - 2025, - 2024, 2023, 2022, - 2021, 2020, 2019, 2018, @@ -21812,91 +23119,65 @@ ] }, { - "slug": "web-interface", - "name": "web-interface", + "slug": "remote-access", + "name": "remote access", "organizationCount": 1, - "projectCount": 3, + "projectCount": 0, "years": [ - 2021, - 2020 + 2019, + 2018 ] }, { - "slug": "webassembly", - "name": "webassembly", + "slug": "seamless", + "name": "seamless", "organizationCount": 1, - "projectCount": 10, + "projectCount": 0, "years": [ - 2025, - 2024, - 2020, 2019, 2018 ] }, { - "slug": "webdev", - "name": "webdev", + "slug": "3dui", + "name": "3dui", "organizationCount": 1, "projectCount": 2, "years": [ - 2025 - ] - }, - { - "slug": "webhook", - "name": "webhook", - "organizationCount": 1, - "projectCount": 58, - "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, - 2020, - 2019, - 2018, - 2017 + 2021 ] }, { - "slug": "webpack", - "name": "webpack", + "slug": "window-management", + "name": "window management", "organizationCount": 1, - "projectCount": 10, + "projectCount": 2, "years": [ - 2025, - 2024, - 2020, - 2019, - 2018 + 2021 ] }, { - "slug": "webvr", - "name": "webvr", + "slug": "extensions", + "name": "extensions", "organizationCount": 1, - "projectCount": 75, + "projectCount": 12, "years": [ - 2025, - 2024, 2023, 2022, 2021, 2020, 2019, + 2018, 2017, 2016 ] }, { - "slug": "wikimedia", - "name": "wikimedia", + "slug": "structured-data", + "name": "structured data", "organizationCount": 1, - "projectCount": 85, + "projectCount": 12, "years": [ - 2024, 2023, 2022, 2021, @@ -21908,31 +23189,36 @@ ] }, { - "slug": "window-management", - "name": "window management", + "slug": "agi", + "name": "AGI", "organizationCount": 1, - "projectCount": 2, + "projectCount": 10, "years": [ - 2021 + 2025, + 2024 ] }, { - "slug": "window-system", - "name": "window system", + "slug": "digital-library", + "name": "digital library", "organizationCount": 1, - "projectCount": 1, + "projectCount": 2, "years": [ - 2016 + 2017 ] }, { - "slug": "windowing-system", - "name": "windowing system", + "slug": "high-quality-codebase", + "name": "high quality codebase", "organizationCount": 1, - "projectCount": 19, + "projectCount": 135, "years": [ + 2026, + 2025, + 2024, 2023, 2022, + 2021, 2020, 2019, 2018, @@ -21941,13 +23227,17 @@ ] }, { - "slug": "windowing-systems", - "name": "windowing systems", + "slug": "visual-design", + "name": "visual design", "organizationCount": 1, - "projectCount": 19, + "projectCount": 135, "years": [ + 2026, + 2025, + 2024, 2023, 2022, + 2021, 2020, 2019, 2018, @@ -21956,11 +23246,12 @@ ] }, { - "slug": "wireguard", - "name": "wireguard", + "slug": "bots", + "name": "bots", "organizationCount": 1, - "projectCount": 137, + "projectCount": 135, "years": [ + 2026, 2025, 2024, 2023, @@ -21974,11 +23265,12 @@ ] }, { - "slug": "wireless-communication", - "name": "wireless communication", + "slug": "teaching-quality-codebase", + "name": "teaching quality codebase", "organizationCount": 1, - "projectCount": 18, + "projectCount": 135, "years": [ + 2026, 2025, 2024, 2023, @@ -21992,45 +23284,12 @@ ] }, { - "slug": "women-in-open-source", - "name": "women in open source", - "organizationCount": 1, - "projectCount": 30, - "years": [ - 2017, - 2016 - ] - }, - { - "slug": "women-in-tech", - "name": "women in tech", - "organizationCount": 1, - "projectCount": 30, - "years": [ - 2017, - 2016 - ] - }, - { - "slug": "xmpp", - "name": "xmpp", - "organizationCount": 1, - "projectCount": 11, - "years": [ - 2024, - 2023, - 2022, - 2020, - 2019, - 2017 - ] - }, - { - "slug": "zephyr", - "name": "zephyr", + "slug": "integrations", + "name": "integrations", "organizationCount": 1, - "projectCount": 137, + "projectCount": 135, "years": [ + 2026, 2025, 2024, 2023, @@ -22042,25 +23301,10 @@ 2017, 2016 ] - }, - { - "slug": "zero-downtime", - "name": "zero-downtime", - "organizationCount": 1, - "projectCount": 18, - "years": [ - 2025, - 2024, - 2023, - 2022, - 2021, - 2020, - 2019 - ] } ], "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.897Z" + "generated_at": "2026-02-19T13:36:03.185Z" } } \ No newline at end of file diff --git a/new-api-details/topics/indexing.json b/new-api-details/topics/indexing.json index a904276d..5320681f 100644 --- a/new-api-details/topics/indexing.json +++ b/new-api-details/topics/indexing.json @@ -1,7 +1,7 @@ { "slug": "indexing", "name": "indexing", - "published_at": "2026-01-25T16:06:29.803Z", + "published_at": "2026-02-19T13:36:03.148Z", "organizationCount": 1, "projectCount": 15, "years": [ @@ -52,6 +52,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.803Z" + "generated_at": "2026-02-19T13:36:03.148Z" } } \ No newline at end of file diff --git a/new-api-details/topics/individual-projects.json b/new-api-details/topics/individual-projects.json index 029055c7..fba58369 100644 --- a/new-api-details/topics/individual-projects.json +++ b/new-api-details/topics/individual-projects.json @@ -1,7 +1,7 @@ { "slug": "individual-projects", "name": "individual projects", - "published_at": "2026-01-25T16:06:29.552Z", + "published_at": "2026-02-19T13:36:02.735Z", "organizationCount": 1, "projectCount": 13, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.552Z" + "generated_at": "2026-02-19T13:36:02.735Z" } } \ No newline at end of file diff --git a/new-api-details/topics/industry.json b/new-api-details/topics/industry.json index 737bfc54..6c77c978 100644 --- a/new-api-details/topics/industry.json +++ b/new-api-details/topics/industry.json @@ -1,10 +1,11 @@ { "slug": "industry", "name": "industry", - "published_at": "2026-01-25T16:06:28.890Z", + "published_at": "2026-02-19T13:36:01.237Z", "organizationCount": 2, "projectCount": 69, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "eclipse-foundation", "name": "Eclipse Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 68, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -84,10 +86,14 @@ "2025": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.890Z" + "generated_at": "2026-02-19T13:36:01.237Z" } } \ No newline at end of file diff --git a/new-api-details/topics/inference.json b/new-api-details/topics/inference.json index bebd4a58..3ba65bea 100644 --- a/new-api-details/topics/inference.json +++ b/new-api-details/topics/inference.json @@ -1,10 +1,11 @@ { "slug": "inference", "name": "inference", - "published_at": "2026-01-25T16:06:29.499Z", + "published_at": "2026-02-19T13:36:02.637Z", "organizationCount": 1, "projectCount": 32, "years": [ + 2026, 2025, 2024, 2023, @@ -15,14 +16,15 @@ "slug": "openvino-toolkit", "name": "OpenVINO Toolkit", "first_year": 2022, - "last_year": 2025, + "last_year": 2026, "total_projects": 32, "is_currently_active": true, "active_years": [ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -42,10 +44,14 @@ "2025": { "organizationCount": 1, "projectCount": 16 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.499Z" + "generated_at": "2026-02-19T13:36:02.637Z" } } \ No newline at end of file diff --git a/new-api-details/topics/information-retrieval.json b/new-api-details/topics/information-retrieval.json index eba6f91a..f6ea4a19 100644 --- a/new-api-details/topics/information-retrieval.json +++ b/new-api-details/topics/information-retrieval.json @@ -1,10 +1,11 @@ { "slug": "information-retrieval", "name": "information retrieval", - "published_at": "2026-01-25T16:06:28.802Z", + "published_at": "2026-02-19T13:36:01.098Z", "organizationCount": 2, "projectCount": 45, "years": [ + 2026, 2022, 2021, 2020, @@ -18,15 +19,16 @@ "slug": "cuneiform-digital-library-initiative-cdli", "name": "Cuneiform Digital Library Initiative (CDLI)", "first_year": 2018, - "last_year": 2022, + "last_year": 2026, "total_projects": 30, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2018, 2019, 2020, 2021, - 2022 + 2022, + 2026 ] }, { @@ -73,10 +75,14 @@ "2022": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.802Z" + "generated_at": "2026-02-19T13:36:01.098Z" } } \ No newline at end of file diff --git a/new-api-details/topics/information-security.json b/new-api-details/topics/information-security.json index 34987dff..6b40deaa 100644 --- a/new-api-details/topics/information-security.json +++ b/new-api-details/topics/information-security.json @@ -1,10 +1,11 @@ { "slug": "information-security", "name": "information security", - "published_at": "2026-01-25T16:06:29.279Z", + "published_at": "2026-02-19T13:36:02.186Z", "organizationCount": 4, "projectCount": 357, "years": [ + 2026, 2025, 2024, 2023, @@ -18,13 +19,14 @@ ], "organizations": [ { - "slug": "librehealth", - "name": "LibreHealth", - "first_year": 2017, + "slug": "score-lab", + "name": "SCoRe Lab", + "first_year": 2016, "last_year": 2023, - "total_projects": 31, + "total_projects": 149, "is_currently_active": false, "active_years": [ + 2016, 2017, 2018, 2019, @@ -34,26 +36,11 @@ 2023 ] }, - { - "slug": "mozilla", - "name": "Mozilla", - "first_year": 2016, - "last_year": 2020, - "total_projects": 75, - "is_currently_active": false, - "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020 - ] - }, { "slug": "owasp-foundation", "name": "OWASP Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 102, "is_currently_active": true, "active_years": [ @@ -65,25 +52,41 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "score-lab", - "name": "SCoRe Lab", + "slug": "mozilla", + "name": "Mozilla", "first_year": 2016, - "last_year": 2023, - "total_projects": 149, + "last_year": 2020, + "total_projects": 75, "is_currently_active": false, "active_years": [ 2016, + 2017, + 2018, + 2019, + 2020 + ] + }, + { + "slug": "librehealth", + "name": "LibreHealth", + "first_year": 2017, + "last_year": 2026, + "total_projects": 31, + "is_currently_active": true, + "active_years": [ 2017, 2018, 2019, 2020, 2021, 2022, - 2023 + 2023, + 2026 ] } ], @@ -127,10 +130,14 @@ "2025": { "organizationCount": 1, "projectCount": 15 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.279Z" + "generated_at": "2026-02-19T13:36:02.186Z" } } \ No newline at end of file diff --git a/new-api-details/topics/information-theory.json b/new-api-details/topics/information-theory.json index 0fe5b80a..498a78bd 100644 --- a/new-api-details/topics/information-theory.json +++ b/new-api-details/topics/information-theory.json @@ -1,10 +1,11 @@ { "slug": "information-theory", "name": "information theory", - "published_at": "2026-01-25T16:06:29.056Z", + "published_at": "2026-02-19T13:36:01.692Z", "organizationCount": 1, "projectCount": 18, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "gnu-radio", "name": "GNU Radio", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 18, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.056Z" + "generated_at": "2026-02-19T13:36:01.692Z" } } \ No newline at end of file diff --git a/new-api-details/topics/informationc-centric-networking.json b/new-api-details/topics/informationc-centric-networking.json index 243e8279..1bbacc6a 100644 --- a/new-api-details/topics/informationc-centric-networking.json +++ b/new-api-details/topics/informationc-centric-networking.json @@ -1,7 +1,7 @@ { "slug": "informationc-centric-networking", "name": "informationc centric networking", - "published_at": "2026-01-25T16:06:29.395Z", + "published_at": "2026-02-19T13:36:02.389Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.395Z" + "generated_at": "2026-02-19T13:36:02.389Z" } } \ No newline at end of file diff --git a/new-api-details/topics/infrastructure-as-design.json b/new-api-details/topics/infrastructure-as-design.json index 3f8a238c..97385ad7 100644 --- a/new-api-details/topics/infrastructure-as-design.json +++ b/new-api-details/topics/infrastructure-as-design.json @@ -1,10 +1,11 @@ { "slug": "infrastructure-as-design", "name": "infrastructure as design", - "published_at": "2026-01-25T16:06:29.340Z", + "published_at": "2026-02-19T13:36:02.278Z", "organizationCount": 1, "projectCount": 2, "years": [ + 2026, 2025 ], "organizations": [ @@ -12,11 +13,12 @@ "slug": "meshery", "name": "Meshery", "first_year": 2025, - "last_year": 2025, + "last_year": 2026, "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] } ], @@ -24,10 +26,14 @@ "2025": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.340Z" + "generated_at": "2026-02-19T13:36:02.278Z" } } \ No newline at end of file diff --git a/new-api-details/topics/infrastructure.json b/new-api-details/topics/infrastructure.json index 67683c6c..33092b3b 100644 --- a/new-api-details/topics/infrastructure.json +++ b/new-api-details/topics/infrastructure.json @@ -1,10 +1,11 @@ { "slug": "infrastructure", "name": "infrastructure", - "published_at": "2026-01-25T16:06:28.820Z", + "published_at": "2026-02-19T13:36:01.149Z", "organizationCount": 5, "projectCount": 36, "years": [ + 2026, 2025, 2024, 2020, @@ -13,16 +14,31 @@ 2016 ], "organizations": [ + { + "slug": "kubeflow", + "name": "Kubeflow", + "first_year": 2020, + "last_year": 2026, + "total_projects": 21, + "is_currently_active": true, + "active_years": [ + 2020, + 2024, + 2025, + 2026 + ] + }, { "slug": "data-for-the-common-good", "name": "Data for the Common Good", "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "total_projects": 8, "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -49,19 +65,6 @@ 2019 ] }, - { - "slug": "kubeflow", - "name": "Kubeflow", - "first_year": 2020, - "last_year": 2025, - "total_projects": 21, - "is_currently_active": true, - "active_years": [ - 2020, - 2024, - 2025 - ] - }, { "slug": "osu-open-source-lab", "name": "OSU Open Source Lab", @@ -98,10 +101,14 @@ "2025": { "organizationCount": 2, "projectCount": 15 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.820Z" + "generated_at": "2026-02-19T13:36:01.149Z" } } \ No newline at end of file diff --git a/new-api-details/topics/infrastrucutreascode.json b/new-api-details/topics/infrastrucutreascode.json index c9748e7d..c439730f 100644 --- a/new-api-details/topics/infrastrucutreascode.json +++ b/new-api-details/topics/infrastrucutreascode.json @@ -1,10 +1,11 @@ { "slug": "infrastrucutreascode", "name": "InfrastrucutreAsCode", - "published_at": "2026-01-25T16:06:29.413Z", + "published_at": "2026-02-19T13:36:02.423Z", "organizationCount": 1, "projectCount": 3, "years": [ + 2026, 2024 ], "organizations": [ @@ -12,11 +13,12 @@ "slug": "nixos-foundation", "name": "NixOS Foundation", "first_year": 2024, - "last_year": 2024, + "last_year": 2026, "total_projects": 3, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ - 2024 + 2024, + 2026 ] } ], @@ -24,10 +26,14 @@ "2024": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.413Z" + "generated_at": "2026-02-19T13:36:02.423Z" } } \ No newline at end of file diff --git a/new-api-details/topics/init-systems.json b/new-api-details/topics/init-systems.json index 8c514e16..f4b9211b 100644 --- a/new-api-details/topics/init-systems.json +++ b/new-api-details/topics/init-systems.json @@ -1,7 +1,7 @@ { "slug": "init-systems", "name": "init systems", - "published_at": "2026-01-25T16:06:29.078Z", + "published_at": "2026-02-19T13:36:01.605Z", "organizationCount": 1, "projectCount": 25, "years": [ @@ -70,6 +70,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.078Z" + "generated_at": "2026-02-19T13:36:01.605Z" } } \ No newline at end of file diff --git a/new-api-details/topics/init.json b/new-api-details/topics/init.json index 302a557b..553bb0d5 100644 --- a/new-api-details/topics/init.json +++ b/new-api-details/topics/init.json @@ -1,7 +1,7 @@ { "slug": "init", "name": "init", - "published_at": "2026-01-25T16:06:29.080Z", + "published_at": "2026-02-19T13:36:01.607Z", "organizationCount": 1, "projectCount": 25, "years": [ @@ -70,6 +70,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.080Z" + "generated_at": "2026-02-19T13:36:01.607Z" } } \ No newline at end of file diff --git a/new-api-details/topics/innovation.json b/new-api-details/topics/innovation.json index 82ead16b..896f0df9 100644 --- a/new-api-details/topics/innovation.json +++ b/new-api-details/topics/innovation.json @@ -1,10 +1,11 @@ { "slug": "innovation", "name": "innovation", - "published_at": "2026-01-25T16:06:29.251Z", - "organizationCount": 1, + "published_at": "2026-02-19T13:36:02.149Z", + "organizationCount": 2, "projectCount": 4, "years": [ + 2026, 2024 ], "organizations": [ @@ -18,16 +19,31 @@ "active_years": [ 2024 ] + }, + { + "slug": "united-nations-office-of-information-communication-technology", + "name": "United Nations Office of Information Communication Technology", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] } ], "yearlyStats": { "2024": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.251Z" + "generated_at": "2026-02-19T13:36:02.149Z" } } \ No newline at end of file diff --git a/new-api-details/topics/input-methods.json b/new-api-details/topics/input-methods.json index 0878267d..e11de223 100644 --- a/new-api-details/topics/input-methods.json +++ b/new-api-details/topics/input-methods.json @@ -1,10 +1,11 @@ { "slug": "input-methods", "name": "input methods", - "published_at": "2026-01-25T16:06:29.145Z", + "published_at": "2026-02-19T13:36:01.802Z", "organizationCount": 2, "projectCount": 92, "years": [ + 2026, 2024, 2023, 2022, @@ -16,24 +17,13 @@ 2016 ], "organizations": [ - { - "slug": "indic-project", - "name": "Indic Project", - "first_year": 2016, - "last_year": 2016, - "total_projects": 7, - "is_currently_active": false, - "active_years": [ - 2016 - ] - }, { "slug": "wikimedia-foundation", "name": "Wikimedia Foundation", "first_year": 2016, - "last_year": 2024, + "last_year": 2026, "total_projects": 85, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -43,7 +33,19 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 + ] + }, + { + "slug": "indic-project", + "name": "Indic Project", + "first_year": 2016, + "last_year": 2016, + "total_projects": 7, + "is_currently_active": false, + "active_years": [ + 2016 ] } ], @@ -83,10 +85,14 @@ "2024": { "organizationCount": 1, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.145Z" + "generated_at": "2026-02-19T13:36:01.802Z" } } \ No newline at end of file diff --git a/new-api-details/topics/instant-messaging.json b/new-api-details/topics/instant-messaging.json index d0a7bee1..001735e2 100644 --- a/new-api-details/topics/instant-messaging.json +++ b/new-api-details/topics/instant-messaging.json @@ -1,10 +1,11 @@ { "slug": "instant-messaging", "name": "instant messaging", - "published_at": "2026-01-25T16:06:28.578Z", + "published_at": "2026-02-19T13:36:00.673Z", "organizationCount": 6, "projectCount": 169, "years": [ + 2026, 2025, 2024, 2023, @@ -18,39 +19,23 @@ ], "organizations": [ { - "slug": "beam-community", - "name": "Beam Community", - "first_year": 2016, - "last_year": 2018, - "total_projects": 19, - "is_currently_active": false, - "active_years": [ - 2016, - 2017, - 2018 - ] - }, - { - "slug": "conversationsim", - "name": "Conversations.im", + "slug": "rocketchat", + "name": "rocket.chat", "first_year": 2017, - "last_year": 2018, - "total_projects": 4, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 103, + "is_currently_active": true, "active_years": [ 2017, - 2018 - ] - }, - { - "slug": "erlang-ecosystem-foundation", - "name": "Erlang Ecosystem Foundation", - "first_year": 2020, - "last_year": 2020, - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2020 + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { @@ -71,22 +56,16 @@ ] }, { - "slug": "rocketchat", - "name": "rocket.chat", - "first_year": 2017, - "last_year": 2025, - "total_projects": 103, - "is_currently_active": true, + "slug": "beam-community", + "name": "Beam Community", + "first_year": 2016, + "last_year": 2018, + "total_projects": 19, + "is_currently_active": false, "active_years": [ + 2016, 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2018 ] }, { @@ -104,6 +83,29 @@ 2023, 2024 ] + }, + { + "slug": "conversationsim", + "name": "Conversations.im", + "first_year": 2017, + "last_year": 2018, + "total_projects": 4, + "is_currently_active": false, + "active_years": [ + 2017, + 2018 + ] + }, + { + "slug": "erlang-ecosystem-foundation", + "name": "Erlang Ecosystem Foundation", + "first_year": 2020, + "last_year": 2020, + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2020 + ] } ], "yearlyStats": { @@ -146,10 +148,14 @@ "2025": { "organizationCount": 1, "projectCount": 19 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.578Z" + "generated_at": "2026-02-19T13:36:00.673Z" } } \ No newline at end of file diff --git a/new-api-details/topics/instrumentation.json b/new-api-details/topics/instrumentation.json index 87aaf1d1..b1da8497 100644 --- a/new-api-details/topics/instrumentation.json +++ b/new-api-details/topics/instrumentation.json @@ -1,10 +1,11 @@ { "slug": "instrumentation", "name": "instrumentation", - "published_at": "2026-01-25T16:06:28.379Z", + "published_at": "2026-02-19T13:36:00.405Z", "organizationCount": 1, "projectCount": 10, "years": [ + 2026, 2025, 2024, 2023, @@ -17,7 +18,7 @@ "slug": "aflplusplus", "name": "AFLplusplus", "first_year": 2020, - "last_year": 2025, + "last_year": 2026, "total_projects": 10, "is_currently_active": true, "active_years": [ @@ -26,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -54,10 +56,14 @@ "2025": { "organizationCount": 1, "projectCount": 1 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.379Z" + "generated_at": "2026-02-19T13:36:00.405Z" } } \ No newline at end of file diff --git a/new-api-details/topics/integrated-development-environments.json b/new-api-details/topics/integrated-development-environments.json index 7b403f9f..eb6923ef 100644 --- a/new-api-details/topics/integrated-development-environments.json +++ b/new-api-details/topics/integrated-development-environments.json @@ -1,10 +1,11 @@ { "slug": "integrated-development-environments", "name": "integrated development environments", - "published_at": "2026-01-25T16:06:29.692Z", + "published_at": "2026-02-19T13:36:02.924Z", "organizationCount": 1, "projectCount": 140, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "the-julia-language", "name": "The Julia Language", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 140, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 14 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.692Z" + "generated_at": "2026-02-19T13:36:02.924Z" } } \ No newline at end of file diff --git a/new-api-details/topics/integration.json b/new-api-details/topics/integration.json index 726618c8..72fa60a5 100644 --- a/new-api-details/topics/integration.json +++ b/new-api-details/topics/integration.json @@ -1,7 +1,7 @@ { "slug": "integration", "name": "integration", - "published_at": "2026-01-25T16:06:29.802Z", + "published_at": "2026-02-19T13:36:03.146Z", "organizationCount": 1, "projectCount": 15, "years": [ @@ -52,6 +52,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.802Z" + "generated_at": "2026-02-19T13:36:03.146Z" } } \ No newline at end of file diff --git a/new-api-details/topics/integrations.json b/new-api-details/topics/integrations.json index 85ea01c3..0284fb8c 100644 --- a/new-api-details/topics/integrations.json +++ b/new-api-details/topics/integrations.json @@ -1,10 +1,11 @@ { "slug": "integrations", "name": "integrations", - "published_at": "2026-01-25T16:06:29.818Z", + "published_at": "2026-02-19T13:36:03.183Z", "organizationCount": 1, "projectCount": 135, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "zulip", "name": "Zulip", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 135, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 14 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.818Z" + "generated_at": "2026-02-19T13:36:03.183Z" } } \ No newline at end of file diff --git a/new-api-details/topics/interactive.json b/new-api-details/topics/interactive.json index 815115b7..c7379d01 100644 --- a/new-api-details/topics/interactive.json +++ b/new-api-details/topics/interactive.json @@ -1,10 +1,11 @@ { "slug": "interactive", "name": "interactive", - "published_at": "2026-01-25T16:06:29.515Z", + "published_at": "2026-02-19T13:36:02.655Z", "organizationCount": 1, "projectCount": 77, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "oppia-foundation", "name": "Oppia Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 77, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.515Z" + "generated_at": "2026-02-19T13:36:02.655Z" } } \ No newline at end of file diff --git a/new-api-details/topics/interactivity.json b/new-api-details/topics/interactivity.json index 90f47219..bd15682d 100644 --- a/new-api-details/topics/interactivity.json +++ b/new-api-details/topics/interactivity.json @@ -1,7 +1,7 @@ { "slug": "interactivity", "name": "interactivity", - "published_at": "2026-01-25T16:06:28.534Z", + "published_at": "2026-02-19T13:36:00.602Z", "organizationCount": 2, "projectCount": 3, "years": [ @@ -45,6 +45,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.534Z" + "generated_at": "2026-02-19T13:36:00.602Z" } } \ No newline at end of file diff --git a/new-api-details/topics/interfaces.json b/new-api-details/topics/interfaces.json index d2e712c8..70666fa4 100644 --- a/new-api-details/topics/interfaces.json +++ b/new-api-details/topics/interfaces.json @@ -1,7 +1,7 @@ { "slug": "interfaces", "name": "interfaces", - "published_at": "2026-01-25T16:06:28.566Z", + "published_at": "2026-02-19T13:36:00.655Z", "organizationCount": 1, "projectCount": 44, "years": [ @@ -23,7 +23,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 44, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -82,6 +82,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.566Z" + "generated_at": "2026-02-19T13:36:00.655Z" } } \ No newline at end of file diff --git a/new-api-details/topics/international.json b/new-api-details/topics/international.json index 5160247d..02f6a8b1 100644 --- a/new-api-details/topics/international.json +++ b/new-api-details/topics/international.json @@ -1,7 +1,7 @@ { "slug": "international", "name": "international", - "published_at": "2026-01-25T16:06:28.849Z", + "published_at": "2026-02-19T13:36:01.190Z", "organizationCount": 1, "projectCount": 31, "years": [ @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.849Z" + "generated_at": "2026-02-19T13:36:01.190Z" } } \ No newline at end of file diff --git a/new-api-details/topics/internationalization.json b/new-api-details/topics/internationalization.json index a77963c5..477f4a10 100644 --- a/new-api-details/topics/internationalization.json +++ b/new-api-details/topics/internationalization.json @@ -1,7 +1,7 @@ { "slug": "internationalization", "name": "internationalization", - "published_at": "2026-01-25T16:06:29.751Z", + "published_at": "2026-02-19T13:36:03.091Z", "organizationCount": 1, "projectCount": 9, "years": [ @@ -15,7 +15,7 @@ "first_year": 2024, "last_year": 2025, "total_projects": 9, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2024, 2025 @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.751Z" + "generated_at": "2026-02-19T13:36:03.091Z" } } \ No newline at end of file diff --git a/new-api-details/topics/internet-access.json b/new-api-details/topics/internet-access.json index cfb6657d..7eccf4a4 100644 --- a/new-api-details/topics/internet-access.json +++ b/new-api-details/topics/internet-access.json @@ -1,7 +1,7 @@ { "slug": "internet-access", "name": "internet access", - "published_at": "2026-01-25T16:06:28.589Z", + "published_at": "2026-02-19T13:36:00.709Z", "organizationCount": 1, "projectCount": 20, "years": [ @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.589Z" + "generated_at": "2026-02-19T13:36:00.709Z" } } \ No newline at end of file diff --git a/new-api-details/topics/internet-censorship.json b/new-api-details/topics/internet-censorship.json index f673a1cf..c1c577cb 100644 --- a/new-api-details/topics/internet-censorship.json +++ b/new-api-details/topics/internet-censorship.json @@ -1,7 +1,7 @@ { "slug": "internet-censorship", "name": "internet censorship", - "published_at": "2026-01-25T16:06:28.592Z", + "published_at": "2026-02-19T13:36:00.723Z", "organizationCount": 1, "projectCount": 20, "years": [ @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.592Z" + "generated_at": "2026-02-19T13:36:00.723Z" } } \ No newline at end of file diff --git a/new-api-details/topics/internet-freedom.json b/new-api-details/topics/internet-freedom.json index 53cadbe7..ba68b149 100644 --- a/new-api-details/topics/internet-freedom.json +++ b/new-api-details/topics/internet-freedom.json @@ -1,7 +1,7 @@ { "slug": "internet-freedom", "name": "internet freedom", - "published_at": "2026-01-25T16:06:28.585Z", + "published_at": "2026-02-19T13:36:00.688Z", "organizationCount": 2, "projectCount": 95, "years": [ @@ -13,32 +13,32 @@ ], "organizations": [ { - "slug": "berkman-klein-center-for-internet-and-society", - "name": "Berkman Klein Center for Internet and Society", + "slug": "mozilla", + "name": "Mozilla", "first_year": 2016, - "last_year": 2019, - "total_projects": 20, + "last_year": 2020, + "total_projects": 75, "is_currently_active": false, "active_years": [ 2016, 2017, 2018, - 2019 + 2019, + 2020 ] }, { - "slug": "mozilla", - "name": "Mozilla", + "slug": "berkman-klein-center-for-internet-and-society", + "name": "Berkman Klein Center for Internet and Society", "first_year": 2016, - "last_year": 2020, - "total_projects": 75, + "last_year": 2019, + "total_projects": 20, "is_currently_active": false, "active_years": [ 2016, 2017, 2018, - 2019, - 2020 + 2019 ] } ], @@ -66,6 +66,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.585Z" + "generated_at": "2026-02-19T13:36:00.688Z" } } \ No newline at end of file diff --git a/new-api-details/topics/internet-measurements.json b/new-api-details/topics/internet-measurements.json new file mode 100644 index 00000000..54bae31b --- /dev/null +++ b/new-api-details/topics/internet-measurements.json @@ -0,0 +1,33 @@ +{ + "slug": "internet-measurements", + "name": "Internet measurements", + "published_at": "2026-02-19T13:36:02.268Z", + "organizationCount": 1, + "projectCount": 0, + "years": [ + 2026 + ], + "organizations": [ + { + "slug": "measurement-lab", + "name": "Measurement Lab", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + } + ], + "yearlyStats": { + "2026": { + "organizationCount": 1, + "projectCount": 0 + } + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:36:02.268Z" + } +} \ No newline at end of file diff --git a/new-api-details/topics/internet-of-things.json b/new-api-details/topics/internet-of-things.json index 3daf892d..9ae9a264 100644 --- a/new-api-details/topics/internet-of-things.json +++ b/new-api-details/topics/internet-of-things.json @@ -1,10 +1,11 @@ { "slug": "internet-of-things", "name": "internet of things", - "published_at": "2026-01-25T16:06:28.793Z", + "published_at": "2026-02-19T13:36:01.074Z", "organizationCount": 5, "projectCount": 100, "years": [ + 2026, 2025, 2024, 2023, @@ -16,22 +17,11 @@ 2016 ], "organizations": [ - { - "slug": "computational-science-and-engineering-at-tu-wien", - "name": "Computational Science and Engineering at TU Wien", - "first_year": 2016, - "last_year": 2016, - "total_projects": 10, - "is_currently_active": false, - "active_years": [ - 2016 - ] - }, { "slug": "eclipse-foundation", "name": "Eclipse Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 68, "is_currently_active": true, "active_years": [ @@ -43,7 +33,35 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "xmpp-standards-foundation", + "name": "XMPP Standards Foundation", + "first_year": 2017, + "last_year": 2024, + "total_projects": 11, + "is_currently_active": false, + "active_years": [ + 2017, + 2019, + 2020, + 2022, + 2023, + 2024 + ] + }, + { + "slug": "computational-science-and-engineering-at-tu-wien", + "name": "Computational Science and Engineering at TU Wien", + "first_year": 2016, + "last_year": 2016, + "total_projects": 10, + "is_currently_active": false, + "active_years": [ + 2016 ] }, { @@ -68,22 +86,6 @@ "active_years": [ 2016 ] - }, - { - "slug": "xmpp-standards-foundation", - "name": "XMPP Standards Foundation", - "first_year": 2017, - "last_year": 2024, - "total_projects": 11, - "is_currently_active": false, - "active_years": [ - 2017, - 2019, - 2020, - 2022, - 2023, - 2024 - ] } ], "yearlyStats": { @@ -122,10 +124,14 @@ "2025": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.793Z" + "generated_at": "2026-02-19T13:36:01.074Z" } } \ No newline at end of file diff --git a/new-api-details/topics/internet-quality.json b/new-api-details/topics/internet-quality.json new file mode 100644 index 00000000..6bc195a1 --- /dev/null +++ b/new-api-details/topics/internet-quality.json @@ -0,0 +1,33 @@ +{ + "slug": "internet-quality", + "name": "Internet quality", + "published_at": "2026-02-19T13:36:02.270Z", + "organizationCount": 1, + "projectCount": 0, + "years": [ + 2026 + ], + "organizations": [ + { + "slug": "measurement-lab", + "name": "Measurement Lab", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + } + ], + "yearlyStats": { + "2026": { + "organizationCount": 1, + "projectCount": 0 + } + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:36:02.270Z" + } +} \ No newline at end of file diff --git a/new-api-details/topics/internet.json b/new-api-details/topics/internet.json index c4e12c65..213addf2 100644 --- a/new-api-details/topics/internet.json +++ b/new-api-details/topics/internet.json @@ -1,7 +1,7 @@ { "slug": "internet", "name": "internet", - "published_at": "2026-01-25T16:06:29.184Z", + "published_at": "2026-02-19T13:36:01.944Z", "organizationCount": 3, "projectCount": 93, "years": [ @@ -16,13 +16,28 @@ 2016 ], "organizations": [ + { + "slug": "mozilla", + "name": "Mozilla", + "first_year": 2016, + "last_year": 2020, + "total_projects": 75, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020 + ] + }, { "slug": "internet-health-report", "name": "Internet Health Report", "first_year": 2022, "last_year": 2025, "total_projects": 15, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2023, @@ -41,21 +56,6 @@ 2018, 2019 ] - }, - { - "slug": "mozilla", - "name": "Mozilla", - "first_year": 2016, - "last_year": 2020, - "total_projects": 75, - "is_currently_active": false, - "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020 - ] } ], "yearlyStats": { @@ -98,6 +98,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.184Z" + "generated_at": "2026-02-19T13:36:01.944Z" } } \ No newline at end of file diff --git a/new-api-details/topics/interoperability.json b/new-api-details/topics/interoperability.json index f5052302..fefee017 100644 --- a/new-api-details/topics/interoperability.json +++ b/new-api-details/topics/interoperability.json @@ -1,7 +1,7 @@ { "slug": "interoperability", "name": "interoperability", - "published_at": "2026-01-25T16:06:29.321Z", + "published_at": "2026-02-19T13:36:02.218Z", "organizationCount": 2, "projectCount": 32, "years": [ @@ -78,6 +78,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.321Z" + "generated_at": "2026-02-19T13:36:02.218Z" } } \ No newline at end of file diff --git a/new-api-details/topics/interpreters.json b/new-api-details/topics/interpreters.json new file mode 100644 index 00000000..0eaad2e5 --- /dev/null +++ b/new-api-details/topics/interpreters.json @@ -0,0 +1,33 @@ +{ + "slug": "interpreters", + "name": "interpreters", + "published_at": "2026-02-19T13:36:00.812Z", + "organizationCount": 1, + "projectCount": 0, + "years": [ + 2026 + ], + "organizations": [ + { + "slug": "boa", + "name": "Boa", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + } + ], + "yearlyStats": { + "2026": { + "organizationCount": 1, + "projectCount": 0 + } + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:36:00.812Z" + } +} \ No newline at end of file diff --git a/new-api-details/topics/interpretibility.json b/new-api-details/topics/interpretibility.json index 0118011c..4ec8f7ea 100644 --- a/new-api-details/topics/interpretibility.json +++ b/new-api-details/topics/interpretibility.json @@ -1,7 +1,7 @@ { "slug": "interpretibility", "name": "Interpretibility", - "published_at": "2026-01-25T16:06:29.592Z", + "published_at": "2026-02-19T13:36:02.788Z", "organizationCount": 1, "projectCount": 4, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.592Z" + "generated_at": "2026-02-19T13:36:02.788Z" } } \ No newline at end of file diff --git a/new-api-details/topics/ion-mobility.json b/new-api-details/topics/ion-mobility.json index 896ba041..c0f1d0d0 100644 --- a/new-api-details/topics/ion-mobility.json +++ b/new-api-details/topics/ion-mobility.json @@ -1,7 +1,7 @@ { "slug": "ion-mobility", "name": "ion mobility", - "published_at": "2026-01-25T16:06:29.316Z", + "published_at": "2026-02-19T13:36:02.388Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.316Z" + "generated_at": "2026-02-19T13:36:02.388Z" } } \ No newline at end of file diff --git a/new-api-details/topics/ios.json b/new-api-details/topics/ios.json index 39bb92c8..a1b82371 100644 --- a/new-api-details/topics/ios.json +++ b/new-api-details/topics/ios.json @@ -1,10 +1,11 @@ { "slug": "ios", "name": "ios", - "published_at": "2026-01-25T16:06:29.311Z", + "published_at": "2026-02-19T13:36:02.314Z", "organizationCount": 1, "projectCount": 45, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "mit-app-inventor", "name": "MIT App Inventor", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 45, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.311Z" + "generated_at": "2026-02-19T13:36:02.314Z" } } \ No newline at end of file diff --git a/new-api-details/topics/iot-cps.json b/new-api-details/topics/iot-cps.json index 19c414dc..473bacf0 100644 --- a/new-api-details/topics/iot-cps.json +++ b/new-api-details/topics/iot-cps.json @@ -1,10 +1,11 @@ { "slug": "iot-cps", "name": "iot cps", - "published_at": "2026-01-25T16:06:29.582Z", + "published_at": "2026-02-19T13:36:02.804Z", "organizationCount": 1, "projectCount": 46, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "rtems-project", "name": "RTEMS Project", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 46, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 8 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.582Z" + "generated_at": "2026-02-19T13:36:02.804Z" } } \ No newline at end of file diff --git a/new-api-details/topics/iot-edge.json b/new-api-details/topics/iot-edge.json index 54363a58..0a80d9cd 100644 --- a/new-api-details/topics/iot-edge.json +++ b/new-api-details/topics/iot-edge.json @@ -1,10 +1,11 @@ { "slug": "iot-edge", "name": "iot & edge", - "published_at": "2026-01-25T16:06:28.896Z", + "published_at": "2026-02-19T13:36:01.241Z", "organizationCount": 1, "projectCount": 68, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "eclipse-foundation", "name": "Eclipse Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 68, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.896Z" + "generated_at": "2026-02-19T13:36:01.241Z" } } \ No newline at end of file diff --git a/new-api-details/topics/iot.json b/new-api-details/topics/iot.json index 760797e7..9eea7d8c 100644 --- a/new-api-details/topics/iot.json +++ b/new-api-details/topics/iot.json @@ -1,10 +1,11 @@ { "slug": "iot", "name": "iot", - "published_at": "2026-01-25T16:06:28.562Z", + "published_at": "2026-02-19T13:36:00.651Z", "organizationCount": 11, "projectCount": 510, "years": [ + 2026, 2025, 2024, 2023, @@ -18,12 +19,12 @@ ], "organizations": [ { - "slug": "beagleboardorg", - "name": "BeagleBoard.org", + "slug": "score-lab", + "name": "SCoRe Lab", "first_year": 2016, - "last_year": 2025, - "total_projects": 44, - "is_currently_active": true, + "last_year": 2023, + "total_projects": 149, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -32,29 +33,14 @@ 2020, 2021, 2022, - 2023, - 2024, - 2025 - ] - }, - { - "slug": "beam-community", - "name": "Beam Community", - "first_year": 2016, - "last_year": 2018, - "total_projects": 19, - "is_currently_active": false, - "active_years": [ - 2016, - 2017, - 2018 + 2023 ] }, { "slug": "eclipse-foundation", "name": "Eclipse Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 68, "is_currently_active": true, "active_years": [ @@ -66,16 +52,17 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "jboss-community", "name": "JBoss Community", "first_year": 2016, - "last_year": 2022, + "last_year": 2026, "total_projects": 52, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -83,16 +70,17 @@ 2019, 2020, 2021, - 2022 + 2022, + 2026 ] }, { - "slug": "matrixorg", - "name": "Matrix.org", + "slug": "rtems-project", + "name": "RTEMS Project", "first_year": 2016, - "last_year": 2022, - "total_projects": 29, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 46, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -100,28 +88,18 @@ 2019, 2020, 2021, - 2022 - ] - }, - { - "slug": "micro-electronics-research-lab-uitu", - "name": "Micro Electronics Research Lab - UITU", - "first_year": 2022, - "last_year": 2025, - "total_projects": 12, - "is_currently_active": true, - "active_years": [ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "mit-app-inventor", "name": "MIT App Inventor", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 45, "is_currently_active": true, "active_years": [ @@ -133,17 +111,19 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "openwisp", - "name": "OpenWISP", - "first_year": 2017, + "slug": "beagleboardorg", + "name": "BeagleBoard.org", + "first_year": 2016, "last_year": 2025, - "total_projects": 26, - "is_currently_active": true, + "total_projects": 44, + "is_currently_active": false, "active_years": [ + 2016, 2017, 2018, 2019, @@ -156,12 +136,12 @@ ] }, { - "slug": "rtems-project", - "name": "RTEMS Project", + "slug": "matrixorg", + "name": "Matrix.org", "first_year": 2016, - "last_year": 2025, - "total_projects": 46, - "is_currently_active": true, + "last_year": 2022, + "total_projects": 29, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -169,28 +149,27 @@ 2019, 2020, 2021, - 2022, - 2023, - 2024, - 2025 + 2022 ] }, { - "slug": "score-lab", - "name": "SCoRe Lab", - "first_year": 2016, - "last_year": 2023, - "total_projects": 149, - "is_currently_active": false, + "slug": "openwisp", + "name": "OpenWISP", + "first_year": 2017, + "last_year": 2026, + "total_projects": 26, + "is_currently_active": true, "active_years": [ - 2016, 2017, 2018, 2019, 2020, 2021, 2022, - 2023 + 2023, + 2024, + 2025, + 2026 ] }, { @@ -204,6 +183,33 @@ 2016, 2017 ] + }, + { + "slug": "beam-community", + "name": "Beam Community", + "first_year": 2016, + "last_year": 2018, + "total_projects": 19, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2018 + ] + }, + { + "slug": "micro-electronics-research-lab-uitu", + "name": "Micro Electronics Research Lab - UITU", + "first_year": 2022, + "last_year": 2025, + "total_projects": 12, + "is_currently_active": false, + "active_years": [ + 2022, + 2023, + 2024, + 2025 + ] } ], "yearlyStats": { @@ -246,10 +252,14 @@ "2025": { "organizationCount": 6, "projectCount": 35 + }, + "2026": { + "organizationCount": 5, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.562Z" + "generated_at": "2026-02-19T13:36:00.651Z" } } \ No newline at end of file diff --git a/new-api-details/topics/ip-cores.json b/new-api-details/topics/ip-cores.json index 38cdba4d..5735d0d4 100644 --- a/new-api-details/topics/ip-cores.json +++ b/new-api-details/topics/ip-cores.json @@ -1,7 +1,7 @@ { "slug": "ip-cores", "name": "IP cores", - "published_at": "2026-01-25T16:06:28.666Z", + "published_at": "2026-02-19T13:36:01.010Z", "organizationCount": 1, "projectCount": 12, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.666Z" + "generated_at": "2026-02-19T13:36:01.010Z" } } \ No newline at end of file diff --git a/new-api-details/topics/ipc.json b/new-api-details/topics/ipc.json index cb3b4c53..babb65ce 100644 --- a/new-api-details/topics/ipc.json +++ b/new-api-details/topics/ipc.json @@ -1,7 +1,7 @@ { "slug": "ipc", "name": "ipc", - "published_at": "2026-01-25T16:06:29.357Z", + "published_at": "2026-02-19T13:36:02.310Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.357Z" + "generated_at": "2026-02-19T13:36:02.310Z" } } \ No newline at end of file diff --git a/new-api-details/topics/ipfs.json b/new-api-details/topics/ipfs.json index f6f29b02..3cbe35b1 100644 --- a/new-api-details/topics/ipfs.json +++ b/new-api-details/topics/ipfs.json @@ -1,7 +1,7 @@ { "slug": "ipfs", "name": "ipfs", - "published_at": "2026-01-25T16:06:29.397Z", + "published_at": "2026-02-19T13:36:02.391Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.397Z" + "generated_at": "2026-02-19T13:36:02.391Z" } } \ No newline at end of file diff --git a/new-api-details/topics/ipsec-vpn.json b/new-api-details/topics/ipsec-vpn.json index 019058e0..a708ed1d 100644 --- a/new-api-details/topics/ipsec-vpn.json +++ b/new-api-details/topics/ipsec-vpn.json @@ -1,10 +1,11 @@ { "slug": "ipsec-vpn", "name": "ipsec vpn", - "published_at": "2026-01-25T16:06:29.696Z", + "published_at": "2026-02-19T13:36:02.932Z", "organizationCount": 1, "projectCount": 10, "years": [ + 2026, 2022, 2021, 2020, @@ -17,16 +18,17 @@ "slug": "the-libreswan-project", "name": "The Libreswan Project", "first_year": 2017, - "last_year": 2022, + "last_year": 2026, "total_projects": 10, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, 2019, 2020, 2021, - 2022 + 2022, + 2026 ] } ], @@ -54,10 +56,14 @@ "2022": { "organizationCount": 1, "projectCount": 0 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.696Z" + "generated_at": "2026-02-19T13:36:02.932Z" } } \ No newline at end of file diff --git a/new-api-details/topics/ipsec.json b/new-api-details/topics/ipsec.json index 23164125..53b590a3 100644 --- a/new-api-details/topics/ipsec.json +++ b/new-api-details/topics/ipsec.json @@ -1,10 +1,11 @@ { "slug": "ipsec", "name": "ipsec", - "published_at": "2026-01-25T16:06:29.694Z", + "published_at": "2026-02-19T13:36:02.928Z", "organizationCount": 1, "projectCount": 10, "years": [ + 2026, 2022, 2021, 2020, @@ -17,16 +18,17 @@ "slug": "the-libreswan-project", "name": "The Libreswan Project", "first_year": 2017, - "last_year": 2022, + "last_year": 2026, "total_projects": 10, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, 2019, 2020, 2021, - 2022 + 2022, + 2026 ] } ], @@ -54,10 +56,14 @@ "2022": { "organizationCount": 1, "projectCount": 0 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.694Z" + "generated_at": "2026-02-19T13:36:02.928Z" } } \ No newline at end of file diff --git a/new-api-details/topics/ipv6.json b/new-api-details/topics/ipv6.json index 706e8dbb..68fd3185 100644 --- a/new-api-details/topics/ipv6.json +++ b/new-api-details/topics/ipv6.json @@ -1,7 +1,7 @@ { "slug": "ipv6", "name": "ipv6", - "published_at": "2026-01-25T16:06:29.185Z", + "published_at": "2026-02-19T13:36:01.949Z", "organizationCount": 2, "projectCount": 12, "years": [ @@ -11,18 +11,6 @@ 2016 ], "organizations": [ - { - "slug": "internet-systems-consortium", - "name": "Internet Systems Consortium", - "first_year": 2018, - "last_year": 2019, - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2018, - 2019 - ] - }, { "slug": "nmap-security-scanner", "name": "Nmap Security Scanner", @@ -34,6 +22,18 @@ 2016, 2017 ] + }, + { + "slug": "internet-systems-consortium", + "name": "Internet Systems Consortium", + "first_year": 2018, + "last_year": 2019, + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2018, + 2019 + ] } ], "yearlyStats": { @@ -56,6 +56,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.185Z" + "generated_at": "2026-02-19T13:36:01.949Z" } } \ No newline at end of file diff --git a/new-api-details/topics/java-jsp.json b/new-api-details/topics/java-jsp.json index 69e06866..f3f874cf 100644 --- a/new-api-details/topics/java-jsp.json +++ b/new-api-details/topics/java-jsp.json @@ -1,10 +1,11 @@ { "slug": "java-jsp", "name": "java jsp", - "published_at": "2026-01-25T16:06:29.453Z", + "published_at": "2026-02-19T13:36:02.521Z", "organizationCount": 1, "projectCount": 70, "years": [ + 2026, 2025, 2024, 2023, @@ -19,7 +20,7 @@ "slug": "open-technologies-alliance-gfoss", "name": "Open Technologies Alliance - GFOSS", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 70, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.453Z" + "generated_at": "2026-02-19T13:36:02.521Z" } } \ No newline at end of file diff --git a/new-api-details/topics/java.json b/new-api-details/topics/java.json index c4d821e1..dcfd0f9f 100644 --- a/new-api-details/topics/java.json +++ b/new-api-details/topics/java.json @@ -1,10 +1,11 @@ { "slug": "java", "name": "java", - "published_at": "2026-01-25T16:06:28.886Z", + "published_at": "2026-02-19T13:36:01.229Z", "organizationCount": 3, "projectCount": 171, "years": [ + 2026, 2025, 2024, 2023, @@ -18,58 +19,61 @@ ], "organizations": [ { - "slug": "eclipse-foundation", - "name": "Eclipse Foundation", - "first_year": 2016, - "last_year": 2025, - "total_projects": 68, + "slug": "open-technologies-alliance-gfoss", + "name": "Open Technologies Alliance - GFOSS", + "first_year": 2017, + "last_year": 2026, + "total_projects": 70, "is_currently_active": true, "active_years": [ - 2016, 2017, 2018, 2019, - 2020, + 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "jenkins", - "name": "Jenkins", + "slug": "eclipse-foundation", + "name": "Eclipse Foundation", "first_year": 2016, - "last_year": 2025, - "total_projects": 33, + "last_year": 2026, + "total_projects": 68, "is_currently_active": true, "active_years": [ 2016, + 2017, 2018, 2019, 2020, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "open-technologies-alliance-gfoss", - "name": "Open Technologies Alliance - GFOSS", - "first_year": 2017, - "last_year": 2025, - "total_projects": 70, + "slug": "jenkins", + "name": "Jenkins", + "first_year": 2016, + "last_year": 2026, + "total_projects": 33, "is_currently_active": true, "active_years": [ - 2017, + 2016, 2018, 2019, - 2021, + 2020, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -113,10 +117,14 @@ "2025": { "organizationCount": 3, "projectCount": 21 + }, + "2026": { + "organizationCount": 3, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.886Z" + "generated_at": "2026-02-19T13:36:01.229Z" } } \ No newline at end of file diff --git a/new-api-details/topics/javaee.json b/new-api-details/topics/javaee.json index c5857b8e..6f1e8565 100644 --- a/new-api-details/topics/javaee.json +++ b/new-api-details/topics/javaee.json @@ -1,10 +1,11 @@ { "slug": "javaee", "name": "javaee", - "published_at": "2026-01-25T16:06:29.201Z", + "published_at": "2026-02-19T13:36:02.022Z", "organizationCount": 1, "projectCount": 52, "years": [ + 2026, 2022, 2021, 2020, @@ -18,9 +19,9 @@ "slug": "jboss-community", "name": "JBoss Community", "first_year": 2016, - "last_year": 2022, + "last_year": 2026, "total_projects": 52, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -28,7 +29,8 @@ 2019, 2020, 2021, - 2022 + 2022, + 2026 ] } ], @@ -60,10 +62,14 @@ "2022": { "organizationCount": 1, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.201Z" + "generated_at": "2026-02-19T13:36:02.022Z" } } \ No newline at end of file diff --git a/new-api-details/topics/javascript.json b/new-api-details/topics/javascript.json index 34f6c640..b19c3f85 100644 --- a/new-api-details/topics/javascript.json +++ b/new-api-details/topics/javascript.json @@ -1,10 +1,11 @@ { "slug": "javascript", "name": "javascript", - "published_at": "2026-01-25T16:06:28.596Z", + "published_at": "2026-02-19T13:36:00.740Z", "organizationCount": 5, "projectCount": 126, "years": [ + 2026, 2025, 2024, 2023, @@ -18,21 +19,29 @@ ], "organizations": [ { - "slug": "biojs", - "name": "BioJS", - "first_year": 2016, - "last_year": 2016, - "total_projects": 3, - "is_currently_active": false, + "slug": "open-technologies-alliance-gfoss", + "name": "Open Technologies Alliance - GFOSS", + "first_year": 2017, + "last_year": 2026, + "total_projects": 70, + "is_currently_active": true, "active_years": [ - 2016 + 2017, + 2018, + 2019, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { "slug": "drupal-association", "name": "Drupal Association", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 39, "is_currently_active": true, "active_years": [ @@ -44,53 +53,48 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "electron", - "name": "Electron", - "first_year": 2022, - "last_year": 2025, - "total_projects": 4, + "slug": "webpack", + "name": "webpack", + "first_year": 2018, + "last_year": 2026, + "total_projects": 10, "is_currently_active": true, "active_years": [ - 2022, + 2018, + 2019, + 2020, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "open-technologies-alliance-gfoss", - "name": "Open Technologies Alliance - GFOSS", - "first_year": 2017, + "slug": "electron", + "name": "Electron", + "first_year": 2022, "last_year": 2025, - "total_projects": 70, - "is_currently_active": true, + "total_projects": 4, + "is_currently_active": false, "active_years": [ - 2017, - 2018, - 2019, - 2021, 2022, - 2023, 2024, 2025 ] }, { - "slug": "webpack", - "name": "webpack", - "first_year": 2018, - "last_year": 2025, - "total_projects": 10, - "is_currently_active": true, + "slug": "biojs", + "name": "BioJS", + "first_year": 2016, + "last_year": 2016, + "total_projects": 3, + "is_currently_active": false, "active_years": [ - 2018, - 2019, - 2020, - 2024, - 2025 + 2016 ] } ], @@ -134,10 +138,14 @@ "2025": { "organizationCount": 4, "projectCount": 19 + }, + "2026": { + "organizationCount": 3, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.596Z" + "generated_at": "2026-02-19T13:36:00.740Z" } } \ No newline at end of file diff --git a/new-api-details/topics/jax.json b/new-api-details/topics/jax.json index acafd070..f0aef541 100644 --- a/new-api-details/topics/jax.json +++ b/new-api-details/topics/jax.json @@ -1,7 +1,7 @@ { "slug": "jax", "name": "Jax", - "published_at": "2026-01-25T16:06:29.101Z", + "published_at": "2026-02-19T13:36:01.716Z", "organizationCount": 2, "projectCount": 49, "years": [ @@ -14,7 +14,7 @@ "first_year": 2025, "last_year": 2025, "total_projects": 45, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2025 ] @@ -25,7 +25,7 @@ "first_year": 2025, "last_year": 2025, "total_projects": 4, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2025 ] @@ -39,6 +39,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.101Z" + "generated_at": "2026-02-19T13:36:01.717Z" } } \ No newline at end of file diff --git a/new-api-details/topics/jingle.json b/new-api-details/topics/jingle.json index d4fe21c8..cc8bc489 100644 --- a/new-api-details/topics/jingle.json +++ b/new-api-details/topics/jingle.json @@ -1,7 +1,7 @@ { "slug": "jingle", "name": "Jingle", - "published_at": "2026-01-25T16:06:29.798Z", + "published_at": "2026-02-19T13:36:03.155Z", "organizationCount": 1, "projectCount": 11, "years": [ @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.798Z" + "generated_at": "2026-02-19T13:36:03.155Z" } } \ No newline at end of file diff --git a/new-api-details/topics/jit.json b/new-api-details/topics/jit.json index f700c476..f11cda19 100644 --- a/new-api-details/topics/jit.json +++ b/new-api-details/topics/jit.json @@ -1,7 +1,7 @@ { "slug": "jit", "name": "JIT", - "published_at": "2026-01-25T16:06:29.670Z", + "published_at": "2026-02-19T13:36:02.890Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.670Z" + "generated_at": "2026-02-19T13:36:02.890Z" } } \ No newline at end of file diff --git a/new-api-details/topics/journalism.json b/new-api-details/topics/journalism.json index 78182614..c060156e 100644 --- a/new-api-details/topics/journalism.json +++ b/new-api-details/topics/journalism.json @@ -1,7 +1,7 @@ { "slug": "journalism", "name": "journalism", - "published_at": "2026-01-25T16:06:29.450Z", + "published_at": "2026-02-19T13:36:02.515Z", "organizationCount": 1, "projectCount": 1, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.450Z" + "generated_at": "2026-02-19T13:36:02.516Z" } } \ No newline at end of file diff --git a/new-api-details/topics/json.json b/new-api-details/topics/json.json index 73953159..8772e48a 100644 --- a/new-api-details/topics/json.json +++ b/new-api-details/topics/json.json @@ -1,10 +1,11 @@ { "slug": "json", "name": "json", - "published_at": "2026-01-25T16:06:28.932Z", + "published_at": "2026-02-19T13:36:01.474Z", "organizationCount": 2, "projectCount": 169, "years": [ + 2026, 2025, 2024, 2022, @@ -20,7 +21,7 @@ "slug": "fossasia", "name": "FOSSASIA", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 140, "is_currently_active": true, "active_years": [ @@ -29,7 +30,8 @@ 2018, 2019, 2024, - 2025 + 2025, + 2026 ] }, { @@ -86,10 +88,14 @@ "2025": { "organizationCount": 1, "projectCount": 20 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.932Z" + "generated_at": "2026-02-19T13:36:01.474Z" } } \ No newline at end of file diff --git a/new-api-details/topics/jvm.json b/new-api-details/topics/jvm.json index 0536293b..610ac2c8 100644 --- a/new-api-details/topics/jvm.json +++ b/new-api-details/topics/jvm.json @@ -1,10 +1,11 @@ { "slug": "jvm", "name": "jvm", - "published_at": "2026-01-25T16:06:29.691Z", + "published_at": "2026-02-19T13:36:02.923Z", "organizationCount": 1, "projectCount": 46, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "the-jpf-team", "name": "The JPF team", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 46, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.691Z" + "generated_at": "2026-02-19T13:36:02.923Z" } } \ No newline at end of file diff --git a/new-api-details/topics/keras.json b/new-api-details/topics/keras.json index 2529a8bd..18c0695a 100644 --- a/new-api-details/topics/keras.json +++ b/new-api-details/topics/keras.json @@ -1,7 +1,7 @@ { "slug": "keras", "name": "keras", - "published_at": "2026-01-25T16:06:29.196Z", + "published_at": "2026-02-19T13:36:02.010Z", "organizationCount": 1, "projectCount": 4, "years": [ @@ -14,7 +14,7 @@ "first_year": 2025, "last_year": 2025, "total_projects": 4, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2025 ] @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.196Z" + "generated_at": "2026-02-19T13:36:02.010Z" } } \ No newline at end of file diff --git a/new-api-details/topics/kernel-scripting.json b/new-api-details/topics/kernel-scripting.json index 6a290071..cd49c719 100644 --- a/new-api-details/topics/kernel-scripting.json +++ b/new-api-details/topics/kernel-scripting.json @@ -1,10 +1,11 @@ { "slug": "kernel-scripting", "name": "kernel scripting", - "published_at": "2026-01-25T16:06:29.264Z", + "published_at": "2026-02-19T13:36:02.140Z", "organizationCount": 1, "projectCount": 43, "years": [ + 2026, 2025, 2024, 2021, @@ -19,7 +20,7 @@ "slug": "lablua", "name": "LabLua", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 43, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2020, 2021, 2024, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.264Z" + "generated_at": "2026-02-19T13:36:02.140Z" } } \ No newline at end of file diff --git a/new-api-details/topics/kernel.json b/new-api-details/topics/kernel.json index 819defd5..64c52e1d 100644 --- a/new-api-details/topics/kernel.json +++ b/new-api-details/topics/kernel.json @@ -1,10 +1,11 @@ { "slug": "kernel", "name": "kernel", - "published_at": "2026-01-25T16:06:28.758Z", + "published_at": "2026-02-19T13:36:01.018Z", "organizationCount": 15, "projectCount": 509, "years": [ + 2026, 2025, 2024, 2023, @@ -18,21 +19,31 @@ ], "organizations": [ { - "slug": "cilium", - "name": "Cilium", - "first_year": 2021, - "last_year": 2021, - "total_projects": 3, - "is_currently_active": false, + "slug": "the-linux-foundation", + "name": "The Linux Foundation", + "first_year": 2016, + "last_year": 2026, + "total_projects": 137, + "is_currently_active": true, "active_years": [ - 2021 + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { "slug": "debian", "name": "Debian", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 78, "is_currently_active": true, "active_years": [ @@ -43,28 +54,19 @@ 2021, 2022, 2024, - 2025 - ] - }, - { - "slug": "gvisor", - "name": "gVisor", - "first_year": 2021, - "last_year": 2021, - "total_projects": 1, - "is_currently_active": false, - "active_years": [ - 2021 + 2025, + 2026 ] }, { - "slug": "haiku", - "name": "Haiku", - "first_year": 2017, - "last_year": 2024, - "total_projects": 26, - "is_currently_active": false, + "slug": "the-freebsd-project", + "name": "The FreeBSD Project", + "first_year": 2016, + "last_year": 2026, + "total_projects": 76, + "is_currently_active": true, "active_years": [ + 2016, 2017, 2018, 2019, @@ -72,65 +74,37 @@ 2021, 2022, 2023, - 2024 - ] - }, - { - "slug": "illumosorg", - "name": "illumos.org", - "first_year": 2017, - "last_year": 2017, - "total_projects": 0, - "is_currently_active": false, - "active_years": [ - 2017 + 2024, + 2025, + 2026 ] }, { - "slug": "kolibrios-project-team", - "name": "KolibriOS Project Team", + "slug": "rtems-project", + "name": "RTEMS Project", "first_year": 2016, - "last_year": 2024, - "total_projects": 6, - "is_currently_active": false, - "active_years": [ - 2016, - 2024 - ] - }, - { - "slug": "openafs", - "name": "OpenAFS", - "first_year": 2022, - "last_year": 2025, - "total_projects": 4, + "last_year": 2026, + "total_projects": 46, "is_currently_active": true, - "active_years": [ - 2022, - 2025 - ] - }, - { - "slug": "performance-co-pilot", - "name": "Performance Co-Pilot", - "first_year": 2016, - "last_year": 2022, - "total_projects": 19, - "is_currently_active": false, "active_years": [ 2016, 2017, 2018, 2019, 2020, - 2022 + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { "slug": "qemu", "name": "QEMU", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 41, "is_currently_active": true, "active_years": [ @@ -142,16 +116,17 @@ 2021, 2022, 2023, - 2025 + 2025, + 2026 ] }, { - "slug": "reactos-foundation", - "name": "ReactOS Foundation", + "slug": "the-netbsd-foundation", + "name": "The NetBSD Foundation", "first_year": 2016, - "last_year": 2022, - "total_projects": 15, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 38, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -159,18 +134,21 @@ 2019, 2020, 2021, - 2022 + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "rtems-project", - "name": "RTEMS Project", - "first_year": 2016, - "last_year": 2025, - "total_projects": 46, + "slug": "haiku", + "name": "Haiku", + "first_year": 2017, + "last_year": 2026, + "total_projects": 26, "is_currently_active": true, "active_years": [ - 2016, 2017, 2018, 2019, @@ -179,56 +157,49 @@ 2022, 2023, 2024, - 2025 + 2026 ] }, { - "slug": "the-freebsd-project", - "name": "The FreeBSD Project", + "slug": "performance-co-pilot", + "name": "Performance Co-Pilot", "first_year": 2016, - "last_year": 2025, - "total_projects": 76, - "is_currently_active": true, + "last_year": 2022, + "total_projects": 19, + "is_currently_active": false, "active_years": [ 2016, 2017, 2018, 2019, 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2022 ] }, { - "slug": "the-linux-foundation", - "name": "The Linux Foundation", + "slug": "xorg-foundation", + "name": "X.Org Foundation", "first_year": 2016, - "last_year": 2025, - "total_projects": 137, - "is_currently_active": true, + "last_year": 2023, + "total_projects": 19, + "is_currently_active": false, "active_years": [ 2016, 2017, 2018, 2019, 2020, - 2021, 2022, - 2023, - 2024, - 2025 + 2023 ] }, { - "slug": "the-netbsd-foundation", - "name": "The NetBSD Foundation", + "slug": "reactos-foundation", + "name": "ReactOS Foundation", "first_year": 2016, - "last_year": 2025, - "total_projects": 38, - "is_currently_active": true, + "last_year": 2022, + "total_projects": 15, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -236,27 +207,66 @@ 2019, 2020, 2021, - 2022, - 2023, - 2024, - 2025 + 2022 ] }, { - "slug": "xorg-foundation", - "name": "X.Org Foundation", + "slug": "kolibrios-project-team", + "name": "KolibriOS Project Team", "first_year": 2016, - "last_year": 2023, - "total_projects": 19, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 6, + "is_currently_active": true, "active_years": [ 2016, - 2017, - 2018, - 2019, - 2020, + 2024, + 2026 + ] + }, + { + "slug": "openafs", + "name": "OpenAFS", + "first_year": 2022, + "last_year": 2026, + "total_projects": 4, + "is_currently_active": true, + "active_years": [ 2022, - 2023 + 2025, + 2026 + ] + }, + { + "slug": "cilium", + "name": "Cilium", + "first_year": 2021, + "last_year": 2021, + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2021 + ] + }, + { + "slug": "gvisor", + "name": "gVisor", + "first_year": 2021, + "last_year": 2021, + "total_projects": 1, + "is_currently_active": false, + "active_years": [ + 2021 + ] + }, + { + "slug": "illumosorg", + "name": "illumos.org", + "first_year": 2017, + "last_year": 2017, + "total_projects": 0, + "is_currently_active": false, + "active_years": [ + 2017 ] } ], @@ -300,10 +310,14 @@ "2025": { "organizationCount": 7, "projectCount": 60 + }, + "2026": { + "organizationCount": 9, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.758Z" + "generated_at": "2026-02-19T13:36:01.018Z" } } \ No newline at end of file diff --git a/new-api-details/topics/kinematics.json b/new-api-details/topics/kinematics.json index 13331f40..6218fadd 100644 --- a/new-api-details/topics/kinematics.json +++ b/new-api-details/topics/kinematics.json @@ -1,7 +1,7 @@ { "slug": "kinematics", "name": "kinematics", - "published_at": "2026-01-25T16:06:29.374Z", + "published_at": "2026-02-19T13:36:02.357Z", "organizationCount": 1, "projectCount": 10, "years": [ @@ -52,6 +52,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.374Z" + "generated_at": "2026-02-19T13:36:02.357Z" } } \ No newline at end of file diff --git a/new-api-details/topics/knowledge-extraction.json b/new-api-details/topics/knowledge-extraction.json index 3e68e4a4..ebc8544c 100644 --- a/new-api-details/topics/knowledge-extraction.json +++ b/new-api-details/topics/knowledge-extraction.json @@ -1,10 +1,11 @@ { "slug": "knowledge-extraction", "name": "knowledge extraction", - "published_at": "2026-01-25T16:06:28.814Z", + "published_at": "2026-02-19T13:36:01.152Z", "organizationCount": 1, "projectCount": 61, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "dbpedia", "name": "DBpedia", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 61, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.814Z" + "generated_at": "2026-02-19T13:36:01.152Z" } } \ No newline at end of file diff --git a/new-api-details/topics/knowledge-graph.json b/new-api-details/topics/knowledge-graph.json index b52cb361..479949b7 100644 --- a/new-api-details/topics/knowledge-graph.json +++ b/new-api-details/topics/knowledge-graph.json @@ -1,10 +1,11 @@ { "slug": "knowledge-graph", "name": "knowledge graph", - "published_at": "2026-01-25T16:06:28.815Z", + "published_at": "2026-02-19T13:36:01.153Z", "organizationCount": 2, "projectCount": 69, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "dbpedia", "name": "DBpedia", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 61, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -92,10 +94,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.815Z" + "generated_at": "2026-02-19T13:36:01.153Z" } } \ No newline at end of file diff --git a/new-api-details/topics/knowledge-graphs.json b/new-api-details/topics/knowledge-graphs.json index 95d61068..81d5553d 100644 --- a/new-api-details/topics/knowledge-graphs.json +++ b/new-api-details/topics/knowledge-graphs.json @@ -1,10 +1,11 @@ { "slug": "knowledge-graphs", "name": "knowledge graphs", - "published_at": "2026-01-25T16:06:28.819Z", + "published_at": "2026-02-19T13:36:01.157Z", "organizationCount": 3, "projectCount": 72, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "dbpedia", "name": "DBpedia", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 61, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -103,10 +105,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.819Z" + "generated_at": "2026-02-19T13:36:01.157Z" } } \ No newline at end of file diff --git a/new-api-details/topics/knowledge-representation.json b/new-api-details/topics/knowledge-representation.json index 6cee6202..ea18a7a8 100644 --- a/new-api-details/topics/knowledge-representation.json +++ b/new-api-details/topics/knowledge-representation.json @@ -1,7 +1,7 @@ { "slug": "knowledge-representation", "name": "knowledge representation", - "published_at": "2026-01-25T16:06:29.151Z", + "published_at": "2026-02-19T13:36:01.817Z", "organizationCount": 1, "projectCount": 11, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.151Z" + "generated_at": "2026-02-19T13:36:01.817Z" } } \ No newline at end of file diff --git a/new-api-details/topics/kubernetes-operator.json b/new-api-details/topics/kubernetes-operator.json index f0ccc2d4..a61ec196 100644 --- a/new-api-details/topics/kubernetes-operator.json +++ b/new-api-details/topics/kubernetes-operator.json @@ -1,7 +1,7 @@ { "slug": "kubernetes-operator", "name": "Kubernetes Operator", - "published_at": "2026-01-25T16:06:29.566Z", + "published_at": "2026-02-19T13:36:02.755Z", "organizationCount": 1, "projectCount": 5, "years": [ @@ -15,7 +15,7 @@ "first_year": 2024, "last_year": 2025, "total_projects": 5, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2024, 2025 @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.566Z" + "generated_at": "2026-02-19T13:36:02.755Z" } } \ No newline at end of file diff --git a/new-api-details/topics/kubernetes.json b/new-api-details/topics/kubernetes.json index 7ef8ce23..9666385b 100644 --- a/new-api-details/topics/kubernetes.json +++ b/new-api-details/topics/kubernetes.json @@ -1,10 +1,11 @@ { "slug": "kubernetes", "name": "kubernetes", - "published_at": "2026-01-25T16:06:28.678Z", + "published_at": "2026-02-19T13:36:01.057Z", "organizationCount": 7, "projectCount": 198, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "cncf", "name": "CNCF", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 113, "is_currently_active": true, "active_years": [ @@ -33,16 +34,17 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "jboss-community", "name": "JBoss Community", "first_year": 2016, - "last_year": 2022, + "last_year": 2026, "total_projects": 52, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -50,56 +52,36 @@ 2019, 2020, 2021, - 2022 - ] - }, - { - "slug": "kapitan", - "name": "Kapitan", - "first_year": 2019, - "last_year": 2020, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2019, - 2020 - ] - }, - { - "slug": "kro-kube-resource-orchestrator", - "name": "kro | Kube Resource Orchestrator", - "first_year": 2025, - "last_year": 2025, - "total_projects": 2, - "is_currently_active": true, - "active_years": [ - 2025 + 2022, + 2026 ] }, { "slug": "kubeflow", "name": "Kubeflow", "first_year": 2020, - "last_year": 2025, + "last_year": 2026, "total_projects": 21, "is_currently_active": true, "active_years": [ 2020, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "kubevirt", "name": "KubeVirt", "first_year": 2023, - "last_year": 2025, + "last_year": 2026, "total_projects": 4, "is_currently_active": true, "active_years": [ 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -113,6 +95,29 @@ 2019, 2020 ] + }, + { + "slug": "kapitan", + "name": "Kapitan", + "first_year": 2019, + "last_year": 2020, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2019, + 2020 + ] + }, + { + "slug": "kro-kube-resource-orchestrator", + "name": "kro | Kube Resource Orchestrator", + "first_year": 2025, + "last_year": 2025, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2025 + ] } ], "yearlyStats": { @@ -155,10 +160,14 @@ "2025": { "organizationCount": 4, "projectCount": 25 + }, + "2026": { + "organizationCount": 4, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.678Z" + "generated_at": "2026-02-19T13:36:01.057Z" } } \ No newline at end of file diff --git a/new-api-details/topics/laboratory-information-system.json b/new-api-details/topics/laboratory-information-system.json index 18ea559a..239c0e94 100644 --- a/new-api-details/topics/laboratory-information-system.json +++ b/new-api-details/topics/laboratory-information-system.json @@ -1,10 +1,11 @@ { "slug": "laboratory-information-system", "name": "Laboratory Information System", - "published_at": "2026-01-25T16:06:29.471Z", + "published_at": "2026-02-19T13:36:02.558Z", "organizationCount": 1, "projectCount": 9, "years": [ + 2026, 2025, 2024 ], @@ -13,12 +14,13 @@ "slug": "openelis-global", "name": "OpenELIS Global", "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "total_projects": 9, "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -30,10 +32,14 @@ "2025": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.471Z" + "generated_at": "2026-02-19T13:36:02.558Z" } } \ No newline at end of file diff --git a/new-api-details/topics/land-rights.json b/new-api-details/topics/land-rights.json index 7bc7110a..296d9303 100644 --- a/new-api-details/topics/land-rights.json +++ b/new-api-details/topics/land-rights.json @@ -1,7 +1,7 @@ { "slug": "land-rights", "name": "land rights", - "published_at": "2026-01-25T16:06:28.688Z", + "published_at": "2026-02-19T13:36:00.899Z", "organizationCount": 1, "projectCount": 1, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.688Z" + "generated_at": "2026-02-19T13:36:00.899Z" } } \ No newline at end of file diff --git a/new-api-details/topics/land-system-modelling.json b/new-api-details/topics/land-system-modelling.json index 62e042e6..a7abf25d 100644 --- a/new-api-details/topics/land-system-modelling.json +++ b/new-api-details/topics/land-system-modelling.json @@ -1,7 +1,7 @@ { "slug": "land-system-modelling", "name": "land system modelling", - "published_at": "2026-01-25T16:06:29.848Z", + "published_at": "2026-02-19T13:36:02.344Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.848Z" + "generated_at": "2026-02-19T13:36:02.344Z" } } \ No newline at end of file diff --git a/new-api-details/topics/language-server.json b/new-api-details/topics/language-server.json index 5b61438a..a2bd894b 100644 --- a/new-api-details/topics/language-server.json +++ b/new-api-details/topics/language-server.json @@ -1,7 +1,7 @@ { "slug": "language-server", "name": "language server", - "published_at": "2026-01-25T16:06:29.826Z", + "published_at": "2026-02-19T13:36:01.063Z", "organizationCount": 1, "projectCount": 37, "years": [ @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.826Z" + "generated_at": "2026-02-19T13:36:01.063Z" } } \ No newline at end of file diff --git a/new-api-details/topics/language-technology.json b/new-api-details/topics/language-technology.json index 0302eec3..ce2f1c0b 100644 --- a/new-api-details/topics/language-technology.json +++ b/new-api-details/topics/language-technology.json @@ -1,7 +1,7 @@ { "slug": "language-technology", "name": "language technology", - "published_at": "2026-01-25T16:06:28.505Z", + "published_at": "2026-02-19T13:36:00.497Z", "organizationCount": 1, "projectCount": 67, "years": [ @@ -70,6 +70,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.505Z" + "generated_at": "2026-02-19T13:36:00.497Z" } } \ No newline at end of file diff --git a/new-api-details/topics/language-techology.json b/new-api-details/topics/language-techology.json index c7fac832..43399eca 100644 --- a/new-api-details/topics/language-techology.json +++ b/new-api-details/topics/language-techology.json @@ -1,7 +1,7 @@ { "slug": "language-techology", "name": "language techology", - "published_at": "2026-01-25T16:06:29.143Z", + "published_at": "2026-02-19T13:36:01.801Z", "organizationCount": 1, "projectCount": 7, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.143Z" + "generated_at": "2026-02-19T13:36:01.801Z" } } \ No newline at end of file diff --git a/new-api-details/topics/language.json b/new-api-details/topics/language.json index 5ecfeaf0..a8b37285 100644 --- a/new-api-details/topics/language.json +++ b/new-api-details/topics/language.json @@ -1,10 +1,11 @@ { "slug": "language", "name": "language", - "published_at": "2026-01-25T16:06:28.638Z", + "published_at": "2026-02-19T13:36:00.941Z", "organizationCount": 4, "projectCount": 173, "years": [ + 2026, 2025, 2024, 2023, @@ -17,11 +18,30 @@ 2016 ], "organizations": [ + { + "slug": "red-hen-lab", + "name": "Red Hen Lab", + "first_year": 2016, + "last_year": 2024, + "total_projects": 88, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024 + ] + }, { "slug": "ccextractor-development", "name": "CCExtractor Development", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 80, "is_currently_active": true, "active_years": [ @@ -34,7 +54,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -58,25 +79,6 @@ "active_years": [ 2018 ] - }, - { - "slug": "red-hen-lab", - "name": "Red Hen Lab", - "first_year": 2016, - "last_year": 2024, - "total_projects": 88, - "is_currently_active": false, - "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024 - ] } ], "yearlyStats": { @@ -119,10 +121,14 @@ "2025": { "organizationCount": 1, "projectCount": 10 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.638Z" + "generated_at": "2026-02-19T13:36:00.941Z" } } \ No newline at end of file diff --git a/new-api-details/topics/languages.json b/new-api-details/topics/languages.json index a456bf34..5d9f6f74 100644 --- a/new-api-details/topics/languages.json +++ b/new-api-details/topics/languages.json @@ -1,10 +1,11 @@ { "slug": "languages", "name": "languages", - "published_at": "2026-01-25T16:06:29.348Z", + "published_at": "2026-02-19T13:36:02.289Z", "organizationCount": 2, "projectCount": 28, "years": [ + 2026, 2025, 2024, 2023, @@ -16,14 +17,15 @@ "slug": "metacall", "name": "MetaCall", "first_year": 2021, - "last_year": 2024, + "last_year": 2026, "total_projects": 19, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -32,7 +34,7 @@ "first_year": 2024, "last_year": 2025, "total_projects": 9, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2024, 2025 @@ -59,10 +61,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.348Z" + "generated_at": "2026-02-19T13:36:02.289Z" } } \ No newline at end of file diff --git a/new-api-details/topics/largelanguagemodel.json b/new-api-details/topics/largelanguagemodel.json index cc7a95c3..7a833f3e 100644 --- a/new-api-details/topics/largelanguagemodel.json +++ b/new-api-details/topics/largelanguagemodel.json @@ -1,10 +1,11 @@ { "slug": "largelanguagemodel", "name": "largelanguagemodel", - "published_at": "2026-01-25T16:06:28.820Z", + "published_at": "2026-02-19T13:36:01.158Z", "organizationCount": 1, "projectCount": 61, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "dbpedia", "name": "DBpedia", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 61, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.820Z" + "generated_at": "2026-02-19T13:36:01.158Z" } } \ No newline at end of file diff --git a/new-api-details/topics/latex.json b/new-api-details/topics/latex.json index 5e18d86d..d6161835 100644 --- a/new-api-details/topics/latex.json +++ b/new-api-details/topics/latex.json @@ -1,10 +1,11 @@ { "slug": "latex", "name": "latex", - "published_at": "2026-01-25T16:06:29.214Z", - "organizationCount": 1, + "published_at": "2026-02-19T13:36:02.006Z", + "organizationCount": 2, "projectCount": 11, "years": [ + 2026, 2025, 2024, 2022, @@ -16,7 +17,7 @@ "slug": "jabref-ev", "name": "JabRef e.V.", "first_year": 2019, - "last_year": 2025, + "last_year": 2026, "total_projects": 11, "is_currently_active": true, "active_years": [ @@ -24,7 +25,19 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "moganlab", + "name": "MoganLab", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 ] } ], @@ -48,10 +61,14 @@ "2025": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.214Z" + "generated_at": "2026-02-19T13:36:02.006Z" } } \ No newline at end of file diff --git a/new-api-details/topics/law-and-policy.json b/new-api-details/topics/law-and-policy.json index 53f5276a..c650fdb6 100644 --- a/new-api-details/topics/law-and-policy.json +++ b/new-api-details/topics/law-and-policy.json @@ -1,7 +1,7 @@ { "slug": "law-and-policy", "name": "law and policy", - "published_at": "2026-01-25T16:06:28.588Z", + "published_at": "2026-02-19T13:36:00.706Z", "organizationCount": 1, "projectCount": 20, "years": [ @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.588Z" + "generated_at": "2026-02-19T13:36:00.706Z" } } \ No newline at end of file diff --git a/new-api-details/topics/law.json b/new-api-details/topics/law.json index 306ac936..31cc2d9c 100644 --- a/new-api-details/topics/law.json +++ b/new-api-details/topics/law.json @@ -1,7 +1,7 @@ { "slug": "law", "name": "law", - "published_at": "2026-01-25T16:06:28.590Z", + "published_at": "2026-02-19T13:36:00.718Z", "organizationCount": 1, "projectCount": 20, "years": [ @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.590Z" + "generated_at": "2026-02-19T13:36:00.719Z" } } \ No newline at end of file diff --git a/new-api-details/topics/learning-management.json b/new-api-details/topics/learning-management.json index 063295e5..7886b304 100644 --- a/new-api-details/topics/learning-management.json +++ b/new-api-details/topics/learning-management.json @@ -1,7 +1,7 @@ { "slug": "learning-management", "name": "learning management", - "published_at": "2026-01-25T16:06:29.370Z", + "published_at": "2026-02-19T13:36:02.351Z", "organizationCount": 2, "projectCount": 27, "years": [ @@ -12,30 +12,30 @@ ], "organizations": [ { - "slug": "moodle", - "name": "Moodle", + "slug": "teammates-national-university-of-singapore", + "name": "TEAMMATES @ National University of Singapore", "first_year": 2016, - "last_year": 2019, - "total_projects": 7, + "last_year": 2018, + "total_projects": 20, "is_currently_active": false, "active_years": [ 2016, 2017, - 2018, - 2019 + 2018 ] }, { - "slug": "teammates-national-university-of-singapore", - "name": "TEAMMATES @ National University of Singapore", + "slug": "moodle", + "name": "Moodle", "first_year": 2016, - "last_year": 2018, - "total_projects": 20, + "last_year": 2019, + "total_projects": 7, "is_currently_active": false, "active_years": [ 2016, 2017, - 2018 + 2018, + 2019 ] } ], @@ -59,6 +59,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.370Z" + "generated_at": "2026-02-19T13:36:02.351Z" } } \ No newline at end of file diff --git a/new-api-details/topics/learning.json b/new-api-details/topics/learning.json index 2260b6dc..43811499 100644 --- a/new-api-details/topics/learning.json +++ b/new-api-details/topics/learning.json @@ -1,10 +1,11 @@ { "slug": "learning", "name": "learning", - "published_at": "2026-01-25T16:06:29.266Z", + "published_at": "2026-02-19T13:36:02.157Z", "organizationCount": 2, "projectCount": 105, "years": [ + 2026, 2025, 2024, 2023, @@ -17,26 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "learning-equality", - "name": "Learning Equality", - "first_year": 2021, - "last_year": 2025, - "total_projects": 16, - "is_currently_active": true, - "active_years": [ - 2021, - 2022, - 2023, - 2024, - 2025 - ] - }, { "slug": "sugar-labs", "name": "Sugar Labs", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 89, "is_currently_active": true, "active_years": [ @@ -49,7 +35,24 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "learning-equality", + "name": "Learning Equality", + "first_year": 2021, + "last_year": 2026, + "total_projects": 16, + "is_currently_active": true, + "active_years": [ + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] } ], @@ -93,10 +96,14 @@ "2025": { "organizationCount": 2, "projectCount": 16 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.266Z" + "generated_at": "2026-02-19T13:36:02.157Z" } } \ No newline at end of file diff --git a/new-api-details/topics/legal-technology.json b/new-api-details/topics/legal-technology.json index 5797390b..b7cfbf2a 100644 --- a/new-api-details/topics/legal-technology.json +++ b/new-api-details/topics/legal-technology.json @@ -1,10 +1,11 @@ { "slug": "legal-technology", "name": "legal technology", - "published_at": "2026-01-25T16:06:28.438Z", + "published_at": "2026-02-19T13:36:00.384Z", "organizationCount": 1, "projectCount": 13, "years": [ + 2026, 2025, 2024, 2021, @@ -15,14 +16,15 @@ "slug": "accord-project", "name": "Accord Project", "first_year": 2020, - "last_year": 2025, + "last_year": 2026, "total_projects": 13, "is_currently_active": true, "active_years": [ 2020, 2021, 2024, - 2025 + 2025, + 2026 ] } ], @@ -42,10 +44,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.438Z" + "generated_at": "2026-02-19T13:36:00.384Z" } } \ No newline at end of file diff --git a/new-api-details/topics/legal.json b/new-api-details/topics/legal.json index ef52e9d3..1bfacabf 100644 --- a/new-api-details/topics/legal.json +++ b/new-api-details/topics/legal.json @@ -1,10 +1,11 @@ { "slug": "legal", "name": "legal", - "published_at": "2026-01-25T16:06:28.435Z", + "published_at": "2026-02-19T13:36:00.374Z", "organizationCount": 2, "projectCount": 27, "years": [ + 2026, 2025, 2024, 2023, @@ -13,20 +14,6 @@ 2019 ], "organizations": [ - { - "slug": "accord-project", - "name": "Accord Project", - "first_year": 2020, - "last_year": 2025, - "total_projects": 13, - "is_currently_active": true, - "active_years": [ - 2020, - 2021, - 2024, - 2025 - ] - }, { "slug": "creative-commons", "name": "Creative Commons", @@ -40,6 +27,21 @@ 2023, 2024 ] + }, + { + "slug": "accord-project", + "name": "Accord Project", + "first_year": 2020, + "last_year": 2026, + "total_projects": 13, + "is_currently_active": true, + "active_years": [ + 2020, + 2021, + 2024, + 2025, + 2026 + ] } ], "yearlyStats": { @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.435Z" + "generated_at": "2026-02-19T13:36:00.374Z" } } \ No newline at end of file diff --git a/new-api-details/topics/less-resourced-languages.json b/new-api-details/topics/less-resourced-languages.json index 0fd7174a..c59364d2 100644 --- a/new-api-details/topics/less-resourced-languages.json +++ b/new-api-details/topics/less-resourced-languages.json @@ -1,7 +1,7 @@ { "slug": "less-resourced-languages", "name": "less-resourced languages", - "published_at": "2026-01-25T16:06:28.507Z", + "published_at": "2026-02-19T13:36:00.499Z", "organizationCount": 1, "projectCount": 67, "years": [ @@ -70,6 +70,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.507Z" + "generated_at": "2026-02-19T13:36:00.499Z" } } \ No newline at end of file diff --git a/new-api-details/topics/less-resources-languages.json b/new-api-details/topics/less-resources-languages.json index 027becb7..b0b691d9 100644 --- a/new-api-details/topics/less-resources-languages.json +++ b/new-api-details/topics/less-resources-languages.json @@ -1,7 +1,7 @@ { "slug": "less-resources-languages", "name": "less-resources languages", - "published_at": "2026-01-25T16:06:28.509Z", + "published_at": "2026-02-19T13:36:00.500Z", "organizationCount": 1, "projectCount": 67, "years": [ @@ -70,6 +70,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.509Z" + "generated_at": "2026-02-19T13:36:00.500Z" } } \ No newline at end of file diff --git a/new-api-details/topics/lesser-resourced-languages.json b/new-api-details/topics/lesser-resourced-languages.json index 71be892f..65373462 100644 --- a/new-api-details/topics/lesser-resourced-languages.json +++ b/new-api-details/topics/lesser-resourced-languages.json @@ -1,7 +1,7 @@ { "slug": "lesser-resourced-languages", "name": "lesser-resourced languages", - "published_at": "2026-01-25T16:06:28.504Z", + "published_at": "2026-02-19T13:36:00.496Z", "organizationCount": 1, "projectCount": 67, "years": [ @@ -70,6 +70,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.504Z" + "generated_at": "2026-02-19T13:36:00.496Z" } } \ No newline at end of file diff --git a/new-api-details/topics/level-editor.json b/new-api-details/topics/level-editor.json new file mode 100644 index 00000000..702f68ac --- /dev/null +++ b/new-api-details/topics/level-editor.json @@ -0,0 +1,39 @@ +{ + "slug": "level-editor", + "name": "Level Editor", + "published_at": "2026-02-19T13:36:03.079Z", + "organizationCount": 1, + "projectCount": 3, + "years": [ + 2026, + 2017 + ], + "organizations": [ + { + "slug": "tiled", + "name": "Tiled", + "first_year": 2017, + "last_year": 2026, + "total_projects": 3, + "is_currently_active": true, + "active_years": [ + 2017, + 2026 + ] + } + ], + "yearlyStats": { + "2017": { + "organizationCount": 1, + "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 + } + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:36:03.079Z" + } +} \ No newline at end of file diff --git a/new-api-details/topics/level.json b/new-api-details/topics/level.json index 540ebde9..2daf108c 100644 --- a/new-api-details/topics/level.json +++ b/new-api-details/topics/level.json @@ -1,10 +1,11 @@ { "slug": "level", "name": "level", - "published_at": "2026-01-25T16:06:29.743Z", + "published_at": "2026-02-19T13:36:03.075Z", "organizationCount": 1, "projectCount": 3, "years": [ + 2026, 2017 ], "organizations": [ @@ -12,11 +13,12 @@ "slug": "tiled", "name": "Tiled", "first_year": 2017, - "last_year": 2017, + "last_year": 2026, "total_projects": 3, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ - 2017 + 2017, + 2026 ] } ], @@ -24,10 +26,14 @@ "2017": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.743Z" + "generated_at": "2026-02-19T13:36:03.075Z" } } \ No newline at end of file diff --git a/new-api-details/topics/libraries.json b/new-api-details/topics/libraries.json index 66e0c42e..3eab6289 100644 --- a/new-api-details/topics/libraries.json +++ b/new-api-details/topics/libraries.json @@ -1,10 +1,11 @@ { "slug": "libraries", "name": "libraries", - "published_at": "2026-01-25T16:06:28.987Z", - "organizationCount": 6, + "published_at": "2026-02-19T13:36:00.487Z", + "organizationCount": 7, "projectCount": 433, "years": [ + 2026, 2025, 2024, 2023, @@ -18,13 +19,18 @@ ], "organizations": [ { - "slug": "fortran-lang", - "name": "Fortran-lang", - "first_year": 2021, + "slug": "the-apache-software-foundation", + "name": "The Apache Software Foundation", + "first_year": 2016, "last_year": 2025, - "total_projects": 21, - "is_currently_active": true, + "total_projects": 248, + "is_currently_active": false, "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, 2021, 2022, 2023, @@ -33,16 +39,40 @@ ] }, { - "slug": "kotlin-foundation", - "name": "Kotlin Foundation", - "first_year": 2023, - "last_year": 2025, - "total_projects": 16, + "slug": "llvm-compiler-infrastructure", + "name": "LLVM Compiler Infrastructure", + "first_year": 2016, + "last_year": 2026, + "total_projects": 122, "is_currently_active": true, "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "fortran-lang", + "name": "Fortran-lang", + "first_year": 2021, + "last_year": 2026, + "total_projects": 21, + "is_currently_active": true, + "active_years": [ + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { @@ -64,23 +94,17 @@ ] }, { - "slug": "llvm-compiler-infrastructure", - "name": "LLVM Compiler Infrastructure", - "first_year": 2016, - "last_year": 2025, - "total_projects": 122, + "slug": "kotlin-foundation", + "name": "Kotlin Foundation", + "first_year": 2023, + "last_year": 2026, + "total_projects": 16, "is_currently_active": true, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -98,23 +122,14 @@ ] }, { - "slug": "the-apache-software-foundation", - "name": "The Apache Software Foundation", - "first_year": 2016, - "last_year": 2025, - "total_projects": 248, + "slug": "apache-software-foundation", + "name": "Apache Software Foundation", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, "is_currently_active": true, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2026 ] } ], @@ -158,10 +173,14 @@ "2025": { "organizationCount": 4, "projectCount": 55 + }, + "2026": { + "organizationCount": 4, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.987Z" + "generated_at": "2026-02-19T13:36:00.487Z" } } \ No newline at end of file diff --git a/new-api-details/topics/library.json b/new-api-details/topics/library.json index 730a4e57..975d16d1 100644 --- a/new-api-details/topics/library.json +++ b/new-api-details/topics/library.json @@ -1,10 +1,11 @@ { "slug": "library", "name": "library", - "published_at": "2026-01-25T16:06:28.613Z", + "published_at": "2026-02-19T13:36:00.817Z", "organizationCount": 7, "projectCount": 152, "years": [ + 2026, 2025, 2024, 2023, @@ -33,28 +34,30 @@ ] }, { - "slug": "freetype", - "name": "FreeType", - "first_year": 2017, - "last_year": 2024, - "total_projects": 17, - "is_currently_active": false, + "slug": "stear-group", + "name": "Ste||ar group", + "first_year": 2016, + "last_year": 2026, + "total_projects": 38, + "is_currently_active": true, "active_years": [ + 2016, 2017, 2018, - 2019, 2020, 2021, 2022, 2023, - 2024 + 2024, + 2025, + 2026 ] }, { "slug": "internet-archive", "name": "Internet Archive", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 26, "is_currently_active": true, "active_years": [ @@ -65,22 +68,8 @@ 2021, 2023, 2024, - 2025 - ] - }, - { - "slug": "jabref-ev", - "name": "JabRef e.V.", - "first_year": 2019, - "last_year": 2025, - "total_projects": 11, - "is_currently_active": true, - "active_years": [ - 2019, - 2021, - 2022, - 2024, - 2025 + 2025, + 2026 ] }, { @@ -102,33 +91,48 @@ ] }, { - "slug": "seaql", - "name": "SeaQL", - "first_year": 2022, - "last_year": 2022, - "total_projects": 0, + "slug": "freetype", + "name": "FreeType", + "first_year": 2017, + "last_year": 2024, + "total_projects": 17, "is_currently_active": false, "active_years": [ - 2022 + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024 ] }, { - "slug": "stear-group", - "name": "Ste||ar group", - "first_year": 2016, - "last_year": 2025, - "total_projects": 38, + "slug": "jabref-ev", + "name": "JabRef e.V.", + "first_year": 2019, + "last_year": 2026, + "total_projects": 11, "is_currently_active": true, "active_years": [ - 2016, - 2017, - 2018, - 2020, + 2019, 2021, 2022, - 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "seaql", + "name": "SeaQL", + "first_year": 2022, + "last_year": 2022, + "total_projects": 0, + "is_currently_active": false, + "active_years": [ + 2022 ] } ], @@ -172,10 +176,14 @@ "2025": { "organizationCount": 3, "projectCount": 15 + }, + "2026": { + "organizationCount": 3, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.613Z" + "generated_at": "2026-02-19T13:36:00.817Z" } } \ No newline at end of file diff --git a/new-api-details/topics/license-compliance.json b/new-api-details/topics/license-compliance.json index ff9c14e0..2ba1d655 100644 --- a/new-api-details/topics/license-compliance.json +++ b/new-api-details/topics/license-compliance.json @@ -1,10 +1,11 @@ { "slug": "license-compliance", "name": "license compliance", - "published_at": "2026-01-25T16:06:28.416Z", + "published_at": "2026-02-19T13:36:00.318Z", "organizationCount": 3, "projectCount": 76, "years": [ + 2026, 2025, 2024, 2023, @@ -17,50 +18,53 @@ ], "organizations": [ { - "slug": "aboutcode", - "name": "AboutCode", - "first_year": 2017, - "last_year": 2025, - "total_projects": 32, + "slug": "fossology", + "name": "FOSSology", + "first_year": 2018, + "last_year": 2026, + "total_projects": 42, "is_currently_active": true, "active_years": [ - 2017, + 2018, 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "fossology", - "name": "FOSSology", - "first_year": 2018, - "last_year": 2025, - "total_projects": 42, + "slug": "aboutcode", + "name": "AboutCode", + "first_year": 2017, + "last_year": 2026, + "total_projects": 32, "is_currently_active": true, "active_years": [ - 2018, + 2017, 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "sw360", "name": "SW360", "first_year": 2025, - "last_year": 2025, + "last_year": 2026, "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] } ], @@ -100,10 +104,14 @@ "2025": { "organizationCount": 3, "projectCount": 17 + }, + "2026": { + "organizationCount": 3, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.416Z" + "generated_at": "2026-02-19T13:36:00.318Z" } } \ No newline at end of file diff --git a/new-api-details/topics/license-management.json b/new-api-details/topics/license-management.json index b81ce42d..9e62a848 100644 --- a/new-api-details/topics/license-management.json +++ b/new-api-details/topics/license-management.json @@ -1,10 +1,11 @@ { "slug": "license-management", "name": "license management", - "published_at": "2026-01-25T16:06:28.944Z", + "published_at": "2026-02-19T13:36:01.520Z", "organizationCount": 1, "projectCount": 42, "years": [ + 2026, 2025, 2024, 2023, @@ -19,7 +20,7 @@ "slug": "fossology", "name": "FOSSology", "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "total_projects": 42, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 10 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.944Z" + "generated_at": "2026-02-19T13:36:01.520Z" } } \ No newline at end of file diff --git a/new-api-details/topics/license-scan.json b/new-api-details/topics/license-scan.json index dc4c2825..3b2b4574 100644 --- a/new-api-details/topics/license-scan.json +++ b/new-api-details/topics/license-scan.json @@ -1,10 +1,11 @@ { "slug": "license-scan", "name": "license-scan", - "published_at": "2026-01-25T16:06:28.413Z", + "published_at": "2026-02-19T13:36:00.313Z", "organizationCount": 2, "projectCount": 74, "years": [ + 2026, 2025, 2024, 2023, @@ -17,39 +18,41 @@ ], "organizations": [ { - "slug": "aboutcode", - "name": "AboutCode", - "first_year": 2017, - "last_year": 2025, - "total_projects": 32, + "slug": "fossology", + "name": "FOSSology", + "first_year": 2018, + "last_year": 2026, + "total_projects": 42, "is_currently_active": true, "active_years": [ - 2017, + 2018, 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "fossology", - "name": "FOSSology", - "first_year": 2018, - "last_year": 2025, - "total_projects": 42, + "slug": "aboutcode", + "name": "AboutCode", + "first_year": 2017, + "last_year": 2026, + "total_projects": 32, "is_currently_active": true, "active_years": [ - 2018, + 2017, 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -89,10 +92,14 @@ "2025": { "organizationCount": 2, "projectCount": 15 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.413Z" + "generated_at": "2026-02-19T13:36:00.314Z" } } \ No newline at end of file diff --git a/new-api-details/topics/license.json b/new-api-details/topics/license.json index 7b8e8c5b..cce639e4 100644 --- a/new-api-details/topics/license.json +++ b/new-api-details/topics/license.json @@ -1,10 +1,11 @@ { "slug": "license", "name": "License", - "published_at": "2026-01-25T16:06:28.423Z", + "published_at": "2026-02-19T13:36:00.354Z", "organizationCount": 1, "projectCount": 32, "years": [ + 2026, 2025, 2024, 2023, @@ -19,7 +20,7 @@ "slug": "aboutcode", "name": "AboutCode", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 32, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.423Z" + "generated_at": "2026-02-19T13:36:00.354Z" } } \ No newline at end of file diff --git a/new-api-details/topics/licensing-software-quality-qa.json b/new-api-details/topics/licensing-software-quality-qa.json index 8f5fd90f..3e289f88 100644 --- a/new-api-details/topics/licensing-software-quality-qa.json +++ b/new-api-details/topics/licensing-software-quality-qa.json @@ -1,10 +1,11 @@ { "slug": "licensing-software-quality-qa", "name": "licensing & software quality QA", - "published_at": "2026-01-25T16:06:29.861Z", + "published_at": "2026-02-19T13:36:02.628Z", "organizationCount": 1, "projectCount": 52, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "opensuse-project", "name": "openSUSE Project", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 52, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.861Z" + "generated_at": "2026-02-19T13:36:02.628Z" } } \ No newline at end of file diff --git a/new-api-details/topics/licensing.json b/new-api-details/topics/licensing.json index 446ed8fc..961d9236 100644 --- a/new-api-details/topics/licensing.json +++ b/new-api-details/topics/licensing.json @@ -1,10 +1,11 @@ { "slug": "licensing", "name": "licensing", - "published_at": "2026-01-25T16:06:28.938Z", + "published_at": "2026-02-19T13:36:01.505Z", "organizationCount": 2, "projectCount": 71, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "fossology", "name": "FOSSology", "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "total_projects": 42, "is_currently_active": true, "active_years": [ @@ -31,7 +32,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -88,10 +90,14 @@ "2025": { "organizationCount": 1, "projectCount": 10 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.938Z" + "generated_at": "2026-02-19T13:36:01.505Z" } } \ No newline at end of file diff --git a/new-api-details/topics/life-sciences.json b/new-api-details/topics/life-sciences.json index 72c317fc..c7b6e8a9 100644 --- a/new-api-details/topics/life-sciences.json +++ b/new-api-details/topics/life-sciences.json @@ -1,7 +1,7 @@ { "slug": "life-sciences", "name": "life sciences", - "published_at": "2026-01-25T16:06:28.598Z", + "published_at": "2026-02-19T13:36:00.748Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.598Z" + "generated_at": "2026-02-19T13:36:00.748Z" } } \ No newline at end of file diff --git a/new-api-details/topics/lightweight-framework.json b/new-api-details/topics/lightweight-framework.json new file mode 100644 index 00000000..58e424e2 --- /dev/null +++ b/new-api-details/topics/lightweight-framework.json @@ -0,0 +1,45 @@ +{ + "slug": "lightweight-framework", + "name": "lightweight framework", + "published_at": "2026-02-19T13:36:02.415Z", + "organizationCount": 1, + "projectCount": 4, + "years": [ + 2026, + 2024, + 2022 + ], + "organizations": [ + { + "slug": "neutralinojs", + "name": "Neutralinojs", + "first_year": 2022, + "last_year": 2026, + "total_projects": 4, + "is_currently_active": true, + "active_years": [ + 2022, + 2024, + 2026 + ] + } + ], + "yearlyStats": { + "2022": { + "organizationCount": 1, + "projectCount": 1 + }, + "2024": { + "organizationCount": 1, + "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 + } + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:36:02.415Z" + } +} \ No newline at end of file diff --git a/new-api-details/topics/lightweight.json b/new-api-details/topics/lightweight.json index 1497d45b..2803d67b 100644 --- a/new-api-details/topics/lightweight.json +++ b/new-api-details/topics/lightweight.json @@ -1,7 +1,7 @@ { "slug": "lightweight", "name": "lightweight", - "published_at": "2026-01-25T16:06:29.534Z", + "published_at": "2026-02-19T13:36:02.695Z", "organizationCount": 1, "projectCount": 19, "years": [ @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.534Z" + "generated_at": "2026-02-19T13:36:02.696Z" } } \ No newline at end of file diff --git a/new-api-details/topics/linear-algebra.json b/new-api-details/topics/linear-algebra.json index a5b32c84..fd26e768 100644 --- a/new-api-details/topics/linear-algebra.json +++ b/new-api-details/topics/linear-algebra.json @@ -1,10 +1,11 @@ { "slug": "linear-algebra", "name": "linear algebra", - "published_at": "2026-01-25T16:06:29.291Z", + "published_at": "2026-02-19T13:36:02.240Z", "organizationCount": 4, "projectCount": 226, "years": [ + 2026, 2025, 2024, 2023, @@ -18,11 +19,11 @@ ], "organizations": [ { - "slug": "mbdyn", - "name": "MBDyn", + "slug": "the-julia-language", + "name": "The Julia Language", "first_year": 2016, - "last_year": 2025, - "total_projects": 13, + "last_year": 2026, + "total_projects": 140, "is_currently_active": true, "active_years": [ 2016, @@ -31,8 +32,10 @@ 2020, 2021, 2022, + 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -55,36 +58,35 @@ ] }, { - "slug": "ruby-science-foundation", - "name": "Ruby Science Foundation", + "slug": "mbdyn", + "name": "MBDyn", "first_year": 2016, - "last_year": 2019, + "last_year": 2025, "total_projects": 13, "is_currently_active": false, "active_years": [ 2016, 2017, - 2018, - 2019 + 2019, + 2020, + 2021, + 2022, + 2024, + 2025 ] }, { - "slug": "the-julia-language", - "name": "The Julia Language", + "slug": "ruby-science-foundation", + "name": "Ruby Science Foundation", "first_year": 2016, - "last_year": 2025, - "total_projects": 140, - "is_currently_active": true, + "last_year": 2019, + "total_projects": 13, + "is_currently_active": false, "active_years": [ 2016, 2017, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2018, + 2019 ] } ], @@ -128,10 +130,14 @@ "2025": { "organizationCount": 2, "projectCount": 16 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.291Z" + "generated_at": "2026-02-19T13:36:02.240Z" } } \ No newline at end of file diff --git a/new-api-details/topics/linguistics.json b/new-api-details/topics/linguistics.json index 151a89c6..b0ce8345 100644 --- a/new-api-details/topics/linguistics.json +++ b/new-api-details/topics/linguistics.json @@ -1,10 +1,11 @@ { "slug": "linguistics", "name": "linguistics", - "published_at": "2026-01-25T16:06:28.803Z", + "published_at": "2026-02-19T13:36:01.099Z", "organizationCount": 3, "projectCount": 54, "years": [ + 2026, 2025, 2024, 2022, @@ -20,27 +21,16 @@ "slug": "cuneiform-digital-library-initiative-cdli", "name": "Cuneiform Digital Library Initiative (CDLI)", "first_year": 2018, - "last_year": 2022, + "last_year": 2026, "total_projects": 30, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2018, 2019, 2020, 2021, - 2022 - ] - }, - { - "slug": "unicode-inc", - "name": "Unicode, Inc.", - "first_year": 2024, - "last_year": 2025, - "total_projects": 9, - "is_currently_active": true, - "active_years": [ - 2024, - 2025 + 2022, + 2026 ] }, { @@ -57,6 +47,18 @@ 2019, 2020 ] + }, + { + "slug": "unicode-inc", + "name": "Unicode, Inc.", + "first_year": 2024, + "last_year": 2025, + "total_projects": 9, + "is_currently_active": false, + "active_years": [ + 2024, + 2025 + ] } ], "yearlyStats": { @@ -95,10 +97,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.803Z" + "generated_at": "2026-02-19T13:36:01.099Z" } } \ No newline at end of file diff --git a/new-api-details/topics/link-time-optimization.json b/new-api-details/topics/link-time-optimization.json index 426306c7..40c03a93 100644 --- a/new-api-details/topics/link-time-optimization.json +++ b/new-api-details/topics/link-time-optimization.json @@ -1,10 +1,11 @@ { "slug": "link-time-optimization", "name": "link time optimization", - "published_at": "2026-01-25T16:06:29.036Z", + "published_at": "2026-02-19T13:36:01.665Z", "organizationCount": 1, "projectCount": 34, "years": [ + 2026, 2025, 2024, 2023, @@ -19,7 +20,7 @@ "slug": "gnu-compiler-collection-gcc", "name": "GNU Compiler Collection (GCC)", "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "total_projects": 34, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.036Z" + "generated_at": "2026-02-19T13:36:01.665Z" } } \ No newline at end of file diff --git a/new-api-details/topics/linked-data.json b/new-api-details/topics/linked-data.json index 2597bee7..440ca31d 100644 --- a/new-api-details/topics/linked-data.json +++ b/new-api-details/topics/linked-data.json @@ -1,10 +1,11 @@ { "slug": "linked-data", "name": "linked data", - "published_at": "2026-01-25T16:06:28.817Z", + "published_at": "2026-02-19T13:36:01.155Z", "organizationCount": 2, "projectCount": 69, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "dbpedia", "name": "DBpedia", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 61, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -92,10 +94,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.817Z" + "generated_at": "2026-02-19T13:36:01.155Z" } } \ No newline at end of file diff --git a/new-api-details/topics/linter.json b/new-api-details/topics/linter.json index b45779ec..1429a4a2 100644 --- a/new-api-details/topics/linter.json +++ b/new-api-details/topics/linter.json @@ -1,7 +1,7 @@ { "slug": "linter", "name": "linter", - "published_at": "2026-01-25T16:06:28.902Z", + "published_at": "2026-02-19T13:36:01.252Z", "organizationCount": 2, "projectCount": 5, "years": [ @@ -10,17 +10,6 @@ 2017 ], "organizations": [ - { - "slug": "elm-tooling", - "name": "Elm Tooling", - "first_year": 2021, - "last_year": 2021, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2021 - ] - }, { "slug": "pmd", "name": "PMD", @@ -32,6 +21,17 @@ 2017, 2018 ] + }, + { + "slug": "elm-tooling", + "name": "Elm Tooling", + "first_year": 2021, + "last_year": 2021, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2021 + ] } ], "yearlyStats": { @@ -50,6 +50,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.902Z" + "generated_at": "2026-02-19T13:36:01.252Z" } } \ No newline at end of file diff --git a/new-api-details/topics/linux-distribution.json b/new-api-details/topics/linux-distribution.json index 26dded8e..0278c4e2 100644 --- a/new-api-details/topics/linux-distribution.json +++ b/new-api-details/topics/linux-distribution.json @@ -1,10 +1,11 @@ { "slug": "linux-distribution", "name": "linux distribution", - "published_at": "2026-01-25T16:06:28.951Z", + "published_at": "2026-02-19T13:36:01.277Z", "organizationCount": 2, "projectCount": 79, "years": [ + 2026, 2025, 2024, 2023, @@ -18,37 +19,38 @@ ], "organizations": [ { - "slug": "fedora-project", - "name": "Fedora Project", + "slug": "opensuse-project", + "name": "openSUSE Project", "first_year": 2016, - "last_year": 2025, - "total_projects": 27, + "last_year": 2026, + "total_projects": 52, "is_currently_active": true, "active_years": [ 2016, 2017, 2018, - 2019, 2020, - 2025 + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "opensuse-project", - "name": "openSUSE Project", + "slug": "fedora-project", + "name": "Fedora Project", "first_year": 2016, "last_year": 2025, - "total_projects": 52, - "is_currently_active": true, + "total_projects": 27, + "is_currently_active": false, "active_years": [ 2016, 2017, 2018, + 2019, 2020, - 2021, - 2022, - 2023, - 2024, 2025 ] } @@ -93,10 +95,14 @@ "2025": { "organizationCount": 2, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.951Z" + "generated_at": "2026-02-19T13:36:01.277Z" } } \ No newline at end of file diff --git a/new-api-details/topics/linux-kernel.json b/new-api-details/topics/linux-kernel.json index 473f7a3d..b10947df 100644 --- a/new-api-details/topics/linux-kernel.json +++ b/new-api-details/topics/linux-kernel.json @@ -1,7 +1,7 @@ { "slug": "linux-kernel", "name": "linux kernel", - "published_at": "2026-01-25T16:06:29.401Z", + "published_at": "2026-02-19T13:36:02.400Z", "organizationCount": 1, "projectCount": 11, "years": [ @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.401Z" + "generated_at": "2026-02-19T13:36:02.400Z" } } \ No newline at end of file diff --git a/new-api-details/topics/linux.json b/new-api-details/topics/linux.json index defdfebb..03917ead 100644 --- a/new-api-details/topics/linux.json +++ b/new-api-details/topics/linux.json @@ -1,10 +1,11 @@ { "slug": "linux", "name": "linux", - "published_at": "2026-01-25T16:06:28.521Z", + "published_at": "2026-02-19T13:36:00.524Z", "organizationCount": 12, "projectCount": 318, "years": [ + 2026, 2025, 2024, 2023, @@ -18,61 +19,64 @@ ], "organizations": [ { - "slug": "apertus-association", - "name": "Apertus Association", - "first_year": 2017, - "last_year": 2022, - "total_projects": 18, - "is_currently_active": false, + "slug": "ccextractor-development", + "name": "CCExtractor Development", + "first_year": 2016, + "last_year": 2026, + "total_projects": 80, + "is_currently_active": true, "active_years": [ + 2016, 2017, 2018, 2019, 2020, 2021, - 2022 - ] - }, - { - "slug": "buildroot", - "name": "Buildroot", - "first_year": 2019, - "last_year": 2019, - "total_projects": 1, - "is_currently_active": false, - "active_years": [ - 2019 + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "ccextractor-development", - "name": "CCExtractor Development", + "slug": "liquid-galaxy-project", + "name": "Liquid Galaxy project", "first_year": 2016, - "last_year": 2025, - "total_projects": 80, + "last_year": 2026, + "total_projects": 75, "is_currently_active": true, "active_years": [ 2016, 2017, - 2018, 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "cockpit-project", - "name": "Cockpit Project", - "first_year": 2023, - "last_year": 2023, - "total_projects": 2, - "is_currently_active": false, + "slug": "opensuse-project", + "name": "openSUSE Project", + "first_year": 2016, + "last_year": 2026, + "total_projects": 52, + "is_currently_active": true, "active_years": [ - 2023 + 2016, + 2017, + 2018, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { @@ -81,7 +85,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -91,19 +95,6 @@ 2025 ] }, - { - "slug": "frrouting", - "name": "FRRouting", - "first_year": 2020, - "last_year": 2022, - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2020, - 2021, - 2022 - ] - }, { "slug": "gentoo-foundation", "name": "Gentoo Foundation", @@ -123,37 +114,51 @@ ] }, { - "slug": "homebrew", - "name": "Homebrew", - "first_year": 2016, + "slug": "apertus-association", + "name": "Apertus Association", + "first_year": 2017, "last_year": 2022, - "total_projects": 11, + "total_projects": 18, "is_currently_active": false, "active_years": [ - 2016, 2017, 2018, + 2019, 2020, + 2021, 2022 ] }, { - "slug": "liquid-galaxy-project", - "name": "Liquid Galaxy project", + "slug": "strace", + "name": "strace", "first_year": 2016, - "last_year": 2025, - "total_projects": 75, - "is_currently_active": true, + "last_year": 2022, + "total_projects": 15, + "is_currently_active": false, "active_years": [ 2016, 2017, + 2018, 2019, 2020, 2021, - 2022, - 2023, - 2024, - 2025 + 2022 + ] + }, + { + "slug": "homebrew", + "name": "Homebrew", + "first_year": 2016, + "last_year": 2022, + "total_projects": 11, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2018, + 2020, + 2022 ] }, { @@ -169,39 +174,38 @@ ] }, { - "slug": "opensuse-project", - "name": "openSUSE Project", - "first_year": 2016, - "last_year": 2025, - "total_projects": 52, - "is_currently_active": true, + "slug": "frrouting", + "name": "FRRouting", + "first_year": 2020, + "last_year": 2022, + "total_projects": 3, + "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, 2020, 2021, - 2022, - 2023, - 2024, - 2025 + 2022 ] }, { - "slug": "strace", - "name": "strace", - "first_year": 2016, - "last_year": 2022, - "total_projects": 15, + "slug": "cockpit-project", + "name": "Cockpit Project", + "first_year": 2023, + "last_year": 2023, + "total_projects": 2, "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022 + 2023 + ] + }, + { + "slug": "buildroot", + "name": "Buildroot", + "first_year": 2019, + "last_year": 2019, + "total_projects": 1, + "is_currently_active": false, + "active_years": [ + 2019 ] } ], @@ -245,10 +249,14 @@ "2025": { "organizationCount": 4, "projectCount": 30 + }, + "2026": { + "organizationCount": 3, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.521Z" + "generated_at": "2026-02-19T13:36:00.524Z" } } \ No newline at end of file diff --git a/new-api-details/topics/list-management.json b/new-api-details/topics/list-management.json new file mode 100644 index 00000000..97a90a07 --- /dev/null +++ b/new-api-details/topics/list-management.json @@ -0,0 +1,33 @@ +{ + "slug": "list-management", + "name": "list management", + "published_at": "2026-02-19T13:36:01.671Z", + "organizationCount": 1, + "projectCount": 0, + "years": [ + 2026 + ], + "organizations": [ + { + "slug": "gnu-mailman", + "name": "GNU Mailman", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + } + ], + "yearlyStats": { + "2026": { + "organizationCount": 1, + "projectCount": 0 + } + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:36:01.671Z" + } +} \ No newline at end of file diff --git a/new-api-details/topics/literature.json b/new-api-details/topics/literature.json index 6ffc8591..3ec666ff 100644 --- a/new-api-details/topics/literature.json +++ b/new-api-details/topics/literature.json @@ -1,10 +1,11 @@ { "slug": "literature", "name": "literature", - "published_at": "2026-01-25T16:06:29.214Z", + "published_at": "2026-02-19T13:36:02.005Z", "organizationCount": 1, "projectCount": 11, "years": [ + 2026, 2025, 2024, 2022, @@ -16,7 +17,7 @@ "slug": "jabref-ev", "name": "JabRef e.V.", "first_year": 2019, - "last_year": 2025, + "last_year": 2026, "total_projects": 11, "is_currently_active": true, "active_years": [ @@ -24,7 +25,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] } ], @@ -48,10 +50,14 @@ "2025": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.214Z" + "generated_at": "2026-02-19T13:36:02.005Z" } } \ No newline at end of file diff --git a/new-api-details/topics/live-migration.json b/new-api-details/topics/live-migration.json index 378618dd..6f0e9381 100644 --- a/new-api-details/topics/live-migration.json +++ b/new-api-details/topics/live-migration.json @@ -1,10 +1,11 @@ { "slug": "live-migration", "name": "live migration", - "published_at": "2026-01-25T16:06:28.683Z", + "published_at": "2026-02-19T13:36:01.091Z", "organizationCount": 1, "projectCount": 18, "years": [ + 2026, 2025, 2024, 2023, @@ -18,7 +19,7 @@ "slug": "criu", "name": "CRIU", "first_year": 2019, - "last_year": 2025, + "last_year": 2026, "total_projects": 18, "is_currently_active": true, "active_years": [ @@ -28,7 +29,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -60,10 +62,14 @@ "2025": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.683Z" + "generated_at": "2026-02-19T13:36:01.091Z" } } \ No newline at end of file diff --git a/new-api-details/topics/live-music.json b/new-api-details/topics/live-music.json index a7a497ef..368a1418 100644 --- a/new-api-details/topics/live-music.json +++ b/new-api-details/topics/live-music.json @@ -1,10 +1,11 @@ { "slug": "live-music", "name": "Live music", - "published_at": "2026-01-25T16:06:29.538Z", + "published_at": "2026-02-19T13:36:02.703Z", "organizationCount": 1, "projectCount": 32, "years": [ + 2026, 2025, 2023, 2021, @@ -16,7 +17,7 @@ "slug": "pharo-consortium", "name": "Pharo Consortium", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 32, "is_currently_active": true, "active_years": [ @@ -24,7 +25,8 @@ 2019, 2021, 2023, - 2025 + 2025, + 2026 ] } ], @@ -48,10 +50,14 @@ "2025": { "organizationCount": 1, "projectCount": 8 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.538Z" + "generated_at": "2026-02-19T13:36:02.703Z" } } \ No newline at end of file diff --git a/new-api-details/topics/live-programming.json b/new-api-details/topics/live-programming.json index 77fb3691..761ce48a 100644 --- a/new-api-details/topics/live-programming.json +++ b/new-api-details/topics/live-programming.json @@ -1,7 +1,7 @@ { "slug": "live-programming", "name": "live programming", - "published_at": "2026-01-25T16:06:28.395Z", + "published_at": "2026-02-19T13:36:00.467Z", "organizationCount": 1, "projectCount": 6, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.395Z" + "generated_at": "2026-02-19T13:36:00.467Z" } } \ No newline at end of file diff --git a/new-api-details/topics/live-streaming.json b/new-api-details/topics/live-streaming.json index 96ca3c07..a169b24a 100644 --- a/new-api-details/topics/live-streaming.json +++ b/new-api-details/topics/live-streaming.json @@ -1,7 +1,7 @@ { "slug": "live-streaming", "name": "live streaming", - "published_at": "2026-01-25T16:06:29.519Z", + "published_at": "2026-02-19T13:36:02.677Z", "organizationCount": 2, "projectCount": 11, "years": [ @@ -12,30 +12,30 @@ ], "organizations": [ { - "slug": "p2psporg", - "name": "P2PSP.org", + "slug": "timvideosus", + "name": "TimVideos.us", "first_year": 2016, - "last_year": 2018, - "total_projects": 5, + "last_year": 2019, + "total_projects": 6, "is_currently_active": false, "active_years": [ 2016, 2017, - 2018 + 2018, + 2019 ] }, { - "slug": "timvideosus", - "name": "TimVideos.us", + "slug": "p2psporg", + "name": "P2PSP.org", "first_year": 2016, - "last_year": 2019, - "total_projects": 6, + "last_year": 2018, + "total_projects": 5, "is_currently_active": false, "active_years": [ 2016, 2017, - 2018, - 2019 + 2018 ] } ], @@ -59,6 +59,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.519Z" + "generated_at": "2026-02-19T13:36:02.677Z" } } \ No newline at end of file diff --git a/new-api-details/topics/llm-chip-design.json b/new-api-details/topics/llm-chip-design.json new file mode 100644 index 00000000..031b7c85 --- /dev/null +++ b/new-api-details/topics/llm-chip-design.json @@ -0,0 +1,33 @@ +{ + "slug": "llm-chip-design", + "name": "LLM chip design", + "published_at": "2026-02-19T13:36:02.972Z", + "organizationCount": 1, + "projectCount": 0, + "years": [ + 2026 + ], + "organizations": [ + { + "slug": "the-openroad-initiative", + "name": "The OpenROAD Initiative", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + } + ], + "yearlyStats": { + "2026": { + "organizationCount": 1, + "projectCount": 0 + } + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:36:02.972Z" + } +} \ No newline at end of file diff --git a/new-api-details/topics/llm.json b/new-api-details/topics/llm.json index bc73565a..8594e327 100644 --- a/new-api-details/topics/llm.json +++ b/new-api-details/topics/llm.json @@ -1,7 +1,7 @@ { "slug": "llm", "name": "LLM", - "published_at": "2026-01-25T16:06:28.971Z", + "published_at": "2026-02-19T13:36:01.321Z", "organizationCount": 1, "projectCount": 27, "years": [ @@ -19,7 +19,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.971Z" + "generated_at": "2026-02-19T13:36:01.321Z" } } \ No newline at end of file diff --git a/new-api-details/topics/load-balancing.json b/new-api-details/topics/load-balancing.json index 4ffcc7f1..53183a99 100644 --- a/new-api-details/topics/load-balancing.json +++ b/new-api-details/topics/load-balancing.json @@ -1,10 +1,11 @@ { "slug": "load-balancing", "name": "load-balancing", - "published_at": "2026-01-25T16:06:28.681Z", + "published_at": "2026-02-19T13:36:01.089Z", "organizationCount": 1, "projectCount": 18, "years": [ + 2026, 2025, 2024, 2023, @@ -18,7 +19,7 @@ "slug": "criu", "name": "CRIU", "first_year": 2019, - "last_year": 2025, + "last_year": 2026, "total_projects": 18, "is_currently_active": true, "active_years": [ @@ -28,7 +29,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -60,10 +62,14 @@ "2025": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.681Z" + "generated_at": "2026-02-19T13:36:01.089Z" } } \ No newline at end of file diff --git a/new-api-details/topics/load-testing.json b/new-api-details/topics/load-testing.json index b725ec1b..bf6fbe93 100644 --- a/new-api-details/topics/load-testing.json +++ b/new-api-details/topics/load-testing.json @@ -1,7 +1,7 @@ { "slug": "load-testing", "name": "load testing", - "published_at": "2026-01-25T16:06:29.531Z", + "published_at": "2026-02-19T13:36:02.690Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.531Z" + "generated_at": "2026-02-19T13:36:02.690Z" } } \ No newline at end of file diff --git a/new-api-details/topics/local-grammars.json b/new-api-details/topics/local-grammars.json index 55eb8c04..f30ba973 100644 --- a/new-api-details/topics/local-grammars.json +++ b/new-api-details/topics/local-grammars.json @@ -1,7 +1,7 @@ { "slug": "local-grammars", "name": "local grammars", - "published_at": "2026-01-25T16:06:29.754Z", + "published_at": "2026-02-19T13:36:03.100Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.754Z" + "generated_at": "2026-02-19T13:36:03.100Z" } } \ No newline at end of file diff --git a/new-api-details/topics/locationtech.json b/new-api-details/topics/locationtech.json index 5c782d88..de609da8 100644 --- a/new-api-details/topics/locationtech.json +++ b/new-api-details/topics/locationtech.json @@ -1,10 +1,11 @@ { "slug": "locationtech", "name": "locationtech", - "published_at": "2026-01-25T16:06:28.888Z", + "published_at": "2026-02-19T13:36:01.233Z", "organizationCount": 1, "projectCount": 68, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "eclipse-foundation", "name": "Eclipse Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 68, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.888Z" + "generated_at": "2026-02-19T13:36:01.233Z" } } \ No newline at end of file diff --git a/new-api-details/topics/lod.json b/new-api-details/topics/lod.json index 8961d7a9..70aaf2f4 100644 --- a/new-api-details/topics/lod.json +++ b/new-api-details/topics/lod.json @@ -1,10 +1,11 @@ { "slug": "lod", "name": "lod", - "published_at": "2026-01-25T16:06:28.804Z", + "published_at": "2026-02-19T13:36:01.101Z", "organizationCount": 1, "projectCount": 30, "years": [ + 2026, 2022, 2021, 2020, @@ -16,15 +17,16 @@ "slug": "cuneiform-digital-library-initiative-cdli", "name": "Cuneiform Digital Library Initiative (CDLI)", "first_year": 2018, - "last_year": 2022, + "last_year": 2026, "total_projects": 30, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2018, 2019, 2020, 2021, - 2022 + 2022, + 2026 ] } ], @@ -48,10 +50,14 @@ "2022": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.804Z" + "generated_at": "2026-02-19T13:36:01.101Z" } } \ No newline at end of file diff --git a/new-api-details/topics/log-management.json b/new-api-details/topics/log-management.json index 0ecc8abd..2b219d53 100644 --- a/new-api-details/topics/log-management.json +++ b/new-api-details/topics/log-management.json @@ -1,7 +1,7 @@ { "slug": "log-management", "name": "log management", - "published_at": "2026-01-25T16:06:29.877Z", + "published_at": "2026-02-19T13:36:02.878Z", "organizationCount": 1, "projectCount": 12, "years": [ @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.877Z" + "generated_at": "2026-02-19T13:36:02.878Z" } } \ No newline at end of file diff --git a/new-api-details/topics/logging.json b/new-api-details/topics/logging.json index e583ec0d..31137e3a 100644 --- a/new-api-details/topics/logging.json +++ b/new-api-details/topics/logging.json @@ -1,10 +1,11 @@ { "slug": "logging", "name": "logging", - "published_at": "2026-01-25T16:06:28.675Z", + "published_at": "2026-02-19T13:36:01.055Z", "organizationCount": 3, "projectCount": 129, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "cncf", "name": "CNCF", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 113, "is_currently_active": true, "active_years": [ @@ -33,19 +34,8 @@ 2022, 2023, 2024, - 2025 - ] - }, - { - "slug": "elastic", - "name": "Elastic", - "first_year": 2018, - "last_year": 2020, - "total_projects": 4, - "is_currently_active": false, - "active_years": [ - 2018, - 2020 + 2025, + 2026 ] }, { @@ -63,6 +53,18 @@ 2021, 2022 ] + }, + { + "slug": "elastic", + "name": "Elastic", + "first_year": 2018, + "last_year": 2020, + "total_projects": 4, + "is_currently_active": false, + "active_years": [ + 2018, + 2020 + ] } ], "yearlyStats": { @@ -105,10 +107,14 @@ "2025": { "organizationCount": 1, "projectCount": 11 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.675Z" + "generated_at": "2026-02-19T13:36:01.055Z" } } \ No newline at end of file diff --git a/new-api-details/topics/logic-bugs.json b/new-api-details/topics/logic-bugs.json index 329e934b..4e20fb40 100644 --- a/new-api-details/topics/logic-bugs.json +++ b/new-api-details/topics/logic-bugs.json @@ -1,7 +1,7 @@ { "slug": "logic-bugs", "name": "Logic bugs", - "published_at": "2026-01-25T16:06:29.606Z", + "published_at": "2026-02-19T13:36:02.849Z", "organizationCount": 1, "projectCount": 6, "years": [ @@ -15,7 +15,7 @@ "first_year": 2023, "last_year": 2025, "total_projects": 6, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2023, 2025 @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.606Z" + "generated_at": "2026-02-19T13:36:02.849Z" } } \ No newline at end of file diff --git a/new-api-details/topics/logic.json b/new-api-details/topics/logic.json index addcc8c3..8be5e637 100644 --- a/new-api-details/topics/logic.json +++ b/new-api-details/topics/logic.json @@ -1,10 +1,11 @@ { "slug": "logic", "name": "logic", - "published_at": "2026-01-25T16:06:28.384Z", + "published_at": "2026-02-19T13:36:00.466Z", "organizationCount": 2, "projectCount": 123, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "aossie", "name": "AOSSIE", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 117, "is_currently_active": true, "active_years": [ @@ -33,7 +34,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -88,10 +90,14 @@ "2025": { "organizationCount": 1, "projectCount": 21 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.384Z" + "generated_at": "2026-02-19T13:36:00.466Z" } } \ No newline at end of file diff --git a/new-api-details/topics/low-level-programming.json b/new-api-details/topics/low-level-programming.json index a30ae337..fd7fdf4d 100644 --- a/new-api-details/topics/low-level-programming.json +++ b/new-api-details/topics/low-level-programming.json @@ -1,7 +1,7 @@ { "slug": "low-level-programming", "name": "low level programming", - "published_at": "2026-01-25T16:06:28.981Z", + "published_at": "2026-02-19T13:36:01.406Z", "organizationCount": 1, "projectCount": 1, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.981Z" + "generated_at": "2026-02-19T13:36:01.406Z" } } \ No newline at end of file diff --git a/new-api-details/topics/low-level.json b/new-api-details/topics/low-level.json index 3111e055..116cc0ad 100644 --- a/new-api-details/topics/low-level.json +++ b/new-api-details/topics/low-level.json @@ -1,10 +1,11 @@ { "slug": "low-level", "name": "low-level", - "published_at": "2026-01-25T16:06:29.248Z", + "published_at": "2026-02-19T13:36:02.121Z", "organizationCount": 1, "projectCount": 6, "years": [ + 2026, 2024, 2016 ], @@ -13,12 +14,13 @@ "slug": "kolibrios-project-team", "name": "KolibriOS Project Team", "first_year": 2016, - "last_year": 2024, + "last_year": 2026, "total_projects": 6, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, - 2024 + 2024, + 2026 ] } ], @@ -30,10 +32,14 @@ "2024": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.248Z" + "generated_at": "2026-02-19T13:36:02.121Z" } } \ No newline at end of file diff --git a/new-api-details/topics/lowlevel.json b/new-api-details/topics/lowlevel.json index 0bbba381..cd1bafbd 100644 --- a/new-api-details/topics/lowlevel.json +++ b/new-api-details/topics/lowlevel.json @@ -1,10 +1,11 @@ { "slug": "lowlevel", "name": "lowlevel", - "published_at": "2026-01-25T16:06:29.247Z", + "published_at": "2026-02-19T13:36:02.120Z", "organizationCount": 2, "projectCount": 47, "years": [ + 2026, 2025, 2024, 2023, @@ -17,23 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "kolibrios-project-team", - "name": "KolibriOS Project Team", - "first_year": 2016, - "last_year": 2024, - "total_projects": 6, - "is_currently_active": false, - "active_years": [ - 2016, - 2024 - ] - }, { "slug": "qemu", "name": "QEMU", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 41, "is_currently_active": true, "active_years": [ @@ -45,7 +34,21 @@ 2021, 2022, 2023, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "kolibrios-project-team", + "name": "KolibriOS Project Team", + "first_year": 2016, + "last_year": 2026, + "total_projects": 6, + "is_currently_active": true, + "active_years": [ + 2016, + 2024, + 2026 ] } ], @@ -89,10 +92,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.247Z" + "generated_at": "2026-02-19T13:36:02.121Z" } } \ No newline at end of file diff --git a/new-api-details/topics/lsb.json b/new-api-details/topics/lsb.json index 1b71c512..89e1c981 100644 --- a/new-api-details/topics/lsb.json +++ b/new-api-details/topics/lsb.json @@ -1,10 +1,11 @@ { "slug": "lsb", "name": "lsb", - "published_at": "2026-01-25T16:06:29.698Z", + "published_at": "2026-02-19T13:36:02.935Z", "organizationCount": 1, "projectCount": 137, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "the-linux-foundation", "name": "The Linux Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 137, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 21 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.698Z" + "generated_at": "2026-02-19T13:36:02.935Z" } } \ No newline at end of file diff --git a/new-api-details/topics/mac-os-x.json b/new-api-details/topics/mac-os-x.json index 6cf3a8f5..4af5799f 100644 --- a/new-api-details/topics/mac-os-x.json +++ b/new-api-details/topics/mac-os-x.json @@ -1,7 +1,7 @@ { "slug": "mac-os-x", "name": "mac os x", - "published_at": "2026-01-25T16:06:29.317Z", + "published_at": "2026-02-19T13:36:02.209Z", "organizationCount": 1, "projectCount": 7, "years": [ @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.317Z" + "generated_at": "2026-02-19T13:36:02.209Z" } } \ No newline at end of file diff --git a/new-api-details/topics/machine-learning.json b/new-api-details/topics/machine-learning.json index 813917be..4b738f1b 100644 --- a/new-api-details/topics/machine-learning.json +++ b/new-api-details/topics/machine-learning.json @@ -1,10 +1,11 @@ { "slug": "machine-learning", "name": "machine learning", - "published_at": "2026-01-25T16:06:28.386Z", - "organizationCount": 66, + "published_at": "2026-02-19T13:36:00.320Z", + "organizationCount": 70, "projectCount": 3160, "years": [ + 2026, 2025, 2024, 2023, @@ -18,43 +19,53 @@ ], "organizations": [ { - "slug": "aboutcode", - "name": "AboutCode", - "first_year": 2017, - "last_year": 2025, - "total_projects": 32, + "slug": "numfocus", + "name": "NumFOCUS", + "first_year": 2016, + "last_year": 2026, + "total_projects": 277, "is_currently_active": true, "active_years": [ + 2016, 2017, + 2018, 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "aimacode", - "name": "aimacode", + "slug": "python-software-foundation", + "name": "Python Software Foundation", "first_year": 2016, - "last_year": 2019, - "total_projects": 16, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 277, + "is_currently_active": true, "active_years": [ 2016, 2017, 2018, - 2019 + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "aossie", - "name": "AOSSIE", + "slug": "cern-hsf", + "name": "CERN-HSF", "first_year": 2017, - "last_year": 2025, - "total_projects": 117, + "last_year": 2026, + "total_projects": 214, "is_currently_active": true, "active_years": [ 2017, @@ -65,15 +76,16 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "beagleboardorg", - "name": "BeagleBoard.org", + "slug": "r-project-for-statistical-computing", + "name": "R project for statistical computing", "first_year": 2016, - "last_year": 2025, - "total_projects": 44, + "last_year": 2026, + "total_projects": 212, "is_currently_active": true, "active_years": [ 2016, @@ -85,63 +97,129 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "camicroscope", - "name": "caMicroscope", - "first_year": 2020, - "last_year": 2024, - "total_projects": 13, - "is_currently_active": false, + "slug": "incf", + "name": "INCF", + "first_year": 2016, + "last_year": 2026, + "total_projects": 211, + "is_currently_active": true, "active_years": [ + 2016, + 2017, + 2018, + 2019, 2020, 2021, + 2022, 2023, - 2024 + 2024, + 2025, + 2026 ] }, { - "slug": "cbmiuthsc", - "name": "CBMI@UTHSC", - "first_year": 2019, - "last_year": 2019, - "total_projects": 3, + "slug": "score-lab", + "name": "SCoRe Lab", + "first_year": 2016, + "last_year": 2023, + "total_projects": 149, "is_currently_active": false, "active_years": [ - 2019 + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023 ] }, { - "slug": "center-for-translational-data-science", - "name": "Center for Translational Data Science", - "first_year": 2022, - "last_year": 2025, - "total_projects": 6, + "slug": "fossasia", + "name": "FOSSASIA", + "first_year": 2016, + "last_year": 2026, + "total_projects": 140, + "is_currently_active": true, + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2024, + 2025, + 2026 + ] + }, + { + "slug": "the-julia-language", + "name": "The Julia Language", + "first_year": 2016, + "last_year": 2026, + "total_projects": 140, "is_currently_active": true, "active_years": [ + 2016, + 2017, + 2019, + 2020, + 2021, 2022, - 2025 + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "cern-sft", - "name": "CERN SFT", + "slug": "machine-learning-for-science-ml4sci", + "name": "Machine Learning for Science (ML4SCI)", + "first_year": 2021, + "last_year": 2026, + "total_projects": 119, + "is_currently_active": true, + "active_years": [ + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ] + }, + { + "slug": "national-resource-for-network-biology-nrnb", + "name": "National Resource for Network Biology (NRNB)", "first_year": 2016, - "last_year": 2016, - "total_projects": 10, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 119, + "is_currently_active": true, "active_years": [ - 2016 + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "cern-hsf", - "name": "CERN-HSF", + "slug": "aossie", + "name": "AOSSIE", "first_year": 2017, - "last_year": 2025, - "total_projects": 214, + "last_year": 2026, + "total_projects": 117, "is_currently_active": true, "active_years": [ 2017, @@ -152,97 +230,108 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "chaoss", - "name": "CHAOSS", - "first_year": 2018, - "last_year": 2025, - "total_projects": 29, + "slug": "rocketchat", + "name": "rocket.chat", + "first_year": 2017, + "last_year": 2026, + "total_projects": 103, "is_currently_active": true, "active_years": [ + 2017, 2018, 2019, 2020, 2021, 2022, - 2025 + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "city-of-boston", - "name": "City of Boston", - "first_year": 2024, - "last_year": 2024, - "total_projects": 4, + "slug": "opencv", + "name": "OpenCV", + "first_year": 2016, + "last_year": 2025, + "total_projects": 93, "is_currently_active": false, "active_years": [ - 2024 + 2016, + 2017, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025 ] }, { - "slug": "classical-language-toolkit", - "name": "Classical Language Toolkit", + "slug": "red-hen-lab", + "name": "Red Hen Lab", "first_year": 2016, - "last_year": 2018, - "total_projects": 7, + "last_year": 2024, + "total_projects": 88, "is_currently_active": false, "active_years": [ 2016, 2017, - 2018 + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024 ] }, { - "slug": "clips-university-of-antwerp", - "name": "CLiPS, University of Antwerp", - "first_year": 2017, - "last_year": 2019, - "total_projects": 10, + "slug": "tensorflow", + "name": "TensorFlow", + "first_year": 2019, + "last_year": 2023, + "total_projects": 81, "is_currently_active": false, "active_years": [ - 2017, - 2018, - 2019 + 2019, + 2020, + 2021, + 2022, + 2023 ] }, { - "slug": "cloudcv", - "name": "CloudCV", + "slug": "liquid-galaxy-project", + "name": "Liquid Galaxy project", "first_year": 2016, - "last_year": 2025, - "total_projects": 28, + "last_year": 2026, + "total_projects": 75, "is_currently_active": true, "active_years": [ 2016, 2017, - 2018, 2019, 2020, 2021, + 2022, 2023, 2024, - 2025 - ] - }, - { - "slug": "cvat", - "name": "CVAT", - "first_year": 2024, - "last_year": 2024, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2024 + 2025, + 2026 ] }, { "slug": "dbpedia", "name": "DBpedia", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 61, "is_currently_active": true, "active_years": [ @@ -255,360 +344,376 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "environmental-data-and-governance-initiative", - "name": "Environmental Data And Governance Initiative", - "first_year": 2017, - "last_year": 2017, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2017 - ] - }, - { - "slug": "fossasia", - "name": "FOSSASIA", - "first_year": 2016, - "last_year": 2025, - "total_projects": 140, - "is_currently_active": true, + "slug": "metabrainz-foundation-inc", + "name": "MetaBrainz Foundation Inc", + "first_year": 2016, + "last_year": 2026, + "total_projects": 60, + "is_currently_active": true, "active_years": [ 2016, 2017, 2018, 2019, + 2020, + 2021, + 2022, + 2023, 2024, - 2025 - ] - }, - { - "slug": "free-uk-genealogy", - "name": "Free UK Genealogy", - "first_year": 2018, - "last_year": 2018, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2018 + 2025, + 2026 ] }, { - "slug": "genome-assembly-and-annotation", - "name": "Genome Assembly and Annotation", - "first_year": 2021, - "last_year": 2023, - "total_projects": 14, + "slug": "mlpack", + "name": "mlpack", + "first_year": 2016, + "last_year": 2024, + "total_projects": 60, "is_currently_active": false, "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, 2021, 2022, - 2023 + 2023, + 2024 ] }, { - "slug": "green-navigation", - "name": "Green Navigation", + "slug": "jboss-community", + "name": "JBoss Community", "first_year": 2016, - "last_year": 2017, - "total_projects": 8, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 52, + "is_currently_active": true, "active_years": [ 2016, - 2017 + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2026 ] }, { - "slug": "humanai", - "name": "HumanAI", - "first_year": 2024, + "slug": "beagleboardorg", + "name": "BeagleBoard.org", + "first_year": 2016, "last_year": 2025, - "total_projects": 26, - "is_currently_active": true, + "total_projects": 44, + "is_currently_active": false, "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, 2024, 2025 ] }, { - "slug": "incf", - "name": "INCF", + "slug": "stear-group", + "name": "Ste||ar group", "first_year": 2016, - "last_year": 2025, - "total_projects": 211, + "last_year": 2026, + "total_projects": 38, "is_currently_active": true, "active_years": [ 2016, 2017, 2018, - 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "institute-for-artificial-intelligence", - "name": "Institute for Artificial Intelligence", + "slug": "aboutcode", + "name": "AboutCode", "first_year": 2017, - "last_year": 2018, - "total_projects": 11, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 32, + "is_currently_active": true, "active_years": [ 2017, - 2018 + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "ivy-lets-unifyai", - "name": "Ivy (lets-unify.ai)", - "first_year": 2023, - "last_year": 2023, - "total_projects": 3, - "is_currently_active": false, + "slug": "openvino-toolkit", + "name": "OpenVINO Toolkit", + "first_year": 2022, + "last_year": 2026, + "total_projects": 32, + "is_currently_active": true, "active_years": [ - 2023 + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "jax-and-keras", - "name": "JAX and Keras", - "first_year": 2025, - "last_year": 2025, - "total_projects": 4, + "slug": "pharo-consortium", + "name": "Pharo Consortium", + "first_year": 2017, + "last_year": 2026, + "total_projects": 32, "is_currently_active": true, "active_years": [ - 2025 + 2017, + 2019, + 2021, + 2023, + 2025, + 2026 ] }, { - "slug": "jboss-community", - "name": "JBoss Community", - "first_year": 2016, - "last_year": 2022, - "total_projects": 52, + "slug": "chaoss", + "name": "CHAOSS", + "first_year": 2018, + "last_year": 2025, + "total_projects": 29, "is_currently_active": false, "active_years": [ - 2016, - 2017, 2018, 2019, 2020, 2021, - 2022 + 2022, + 2025 ] }, { - "slug": "knime", - "name": "KNIME", - "first_year": 2019, - "last_year": 2019, - "total_projects": 2, + "slug": "cloudcv", + "name": "CloudCV", + "first_year": 2016, + "last_year": 2025, + "total_projects": 28, "is_currently_active": false, "active_years": [ - 2019 + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2023, + 2024, + 2025 ] }, { - "slug": "kornia", - "name": "Kornia", - "first_year": 2025, - "last_year": 2025, - "total_projects": 2, + "slug": "humanai", + "name": "HumanAI", + "first_year": 2024, + "last_year": 2026, + "total_projects": 26, "is_currently_active": true, "active_years": [ - 2025 + 2024, + 2025, + 2026 ] }, { "slug": "kubeflow", "name": "Kubeflow", "first_year": 2020, - "last_year": 2025, + "last_year": 2026, "total_projects": 21, "is_currently_active": true, "active_years": [ 2020, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "liquid-galaxy-project", - "name": "Liquid Galaxy project", + "slug": "aimacode", + "name": "aimacode", "first_year": 2016, - "last_year": 2025, - "total_projects": 75, - "is_currently_active": true, + "last_year": 2019, + "total_projects": 16, + "is_currently_active": false, "active_years": [ 2016, 2017, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2018, + 2019 ] }, { - "slug": "machine-learning-for-science-ml4sci", - "name": "Machine Learning for Science (ML4SCI)", - "first_year": 2021, - "last_year": 2025, - "total_projects": 119, + "slug": "mdanalysis", + "name": "MDAnalysis", + "first_year": 2020, + "last_year": 2026, + "total_projects": 16, "is_currently_active": true, "active_years": [ + 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "mayors-office-of-new-urban-mechanics", - "name": "Mayor's Office of New Urban Mechanics", - "first_year": 2021, - "last_year": 2023, - "total_projects": 9, + "slug": "xapian-search-engine-library", + "name": "Xapian Search Engine Library", + "first_year": 2016, + "last_year": 2020, + "total_projects": 15, "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020 + ] + }, + { + "slug": "genome-assembly-and-annotation", + "name": "Genome Assembly and Annotation", + "first_year": 2021, + "last_year": 2026, + "total_projects": 14, + "is_currently_active": true, "active_years": [ 2021, 2022, - 2023 + 2023, + 2026 ] }, { - "slug": "mdanalysis", - "name": "MDAnalysis", + "slug": "camicroscope", + "name": "caMicroscope", "first_year": 2020, - "last_year": 2025, - "total_projects": 16, - "is_currently_active": true, + "last_year": 2024, + "total_projects": 13, + "is_currently_active": false, "active_years": [ 2020, 2021, - 2022, 2023, - 2024, - 2025 + 2024 ] }, { - "slug": "mediapipe", - "name": "MediaPipe", - "first_year": 2021, - "last_year": 2021, - "total_projects": 6, + "slug": "institute-for-artificial-intelligence", + "name": "Institute for Artificial Intelligence", + "first_year": 2017, + "last_year": 2018, + "total_projects": 11, "is_currently_active": false, "active_years": [ - 2021 + 2017, + 2018 ] }, { - "slug": "metabrainz-foundation-inc", - "name": "MetaBrainz Foundation Inc", + "slug": "cern-sft", + "name": "CERN SFT", "first_year": 2016, - "last_year": 2025, - "total_projects": 60, - "is_currently_active": true, + "last_year": 2016, + "total_projects": 10, + "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2016 ] }, { - "slug": "mlpack", - "name": "mlpack", - "first_year": 2016, - "last_year": 2024, - "total_projects": 60, + "slug": "clips-university-of-antwerp", + "name": "CLiPS, University of Antwerp", + "first_year": 2017, + "last_year": 2019, + "total_projects": 10, "is_currently_active": false, "active_years": [ - 2016, 2017, 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024 + 2019 ] }, { - "slug": "national-resource-for-network-biology-nrnb", - "name": "National Resource for Network Biology (NRNB)", - "first_year": 2016, - "last_year": 2025, - "total_projects": 119, - "is_currently_active": true, + "slug": "orcasound", + "name": "Orcasound", + "first_year": 2020, + "last_year": 2022, + "total_projects": 10, + "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2019, 2020, 2021, - 2022, - 2023, - 2024, - 2025 + 2022 ] }, { - "slug": "numfocus", - "name": "NumFOCUS", + "slug": "shogun", + "name": "Shogun", "first_year": 2016, - "last_year": 2025, - "total_projects": 277, - "is_currently_active": true, + "last_year": 2020, + "total_projects": 10, + "is_currently_active": false, "active_years": [ 2016, 2017, - 2018, 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2020 ] }, { - "slug": "open-chromosome-collective", - "name": "Open Chromosome Collective", - "first_year": 2024, - "last_year": 2024, - "total_projects": 3, + "slug": "mayors-office-of-new-urban-mechanics", + "name": "Mayor's Office of New Urban Mechanics", + "first_year": 2021, + "last_year": 2023, + "total_projects": 9, "is_currently_active": false, "active_years": [ - 2024 + 2021, + 2022, + 2023 ] }, { - "slug": "open-detection", - "name": "Open Detection", + "slug": "green-navigation", + "name": "Green Navigation", "first_year": 2016, "last_year": 2017, - "total_projects": 4, + "total_projects": 8, "is_currently_active": false, "active_years": [ 2016, @@ -616,156 +721,110 @@ ] }, { - "slug": "opencv", - "name": "OpenCV", - "first_year": 2016, - "last_year": 2025, - "total_projects": 93, - "is_currently_active": true, - "active_years": [ - 2016, - 2017, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 - ] - }, - { - "slug": "openvino-toolkit", - "name": "OpenVINO Toolkit", + "slug": "wellcome-sanger-tree-of-life", + "name": "Wellcome Sanger Tree of Life", "first_year": 2022, "last_year": 2025, - "total_projects": 32, - "is_currently_active": true, + "total_projects": 8, + "is_currently_active": false, "active_years": [ 2022, - 2023, 2024, 2025 ] }, { - "slug": "orange-data-mining-fruitful-fun", - "name": "Orange – Data Mining Fruitful & Fun", + "slug": "classical-language-toolkit", + "name": "Classical Language Toolkit", "first_year": 2016, - "last_year": 2016, - "total_projects": 5, + "last_year": 2018, + "total_projects": 7, "is_currently_active": false, "active_years": [ - 2016 + 2016, + 2017, + 2018 ] }, { - "slug": "orcasound", - "name": "Orcasound", - "first_year": 2020, - "last_year": 2022, - "total_projects": 10, + "slug": "center-for-translational-data-science", + "name": "Center for Translational Data Science", + "first_year": 2022, + "last_year": 2025, + "total_projects": 6, "is_currently_active": false, "active_years": [ - 2020, - 2021, - 2022 + 2022, + 2025 ] }, { - "slug": "pharo-consortium", - "name": "Pharo Consortium", - "first_year": 2017, - "last_year": 2025, - "total_projects": 32, - "is_currently_active": true, + "slug": "mediapipe", + "name": "MediaPipe", + "first_year": 2021, + "last_year": 2021, + "total_projects": 6, + "is_currently_active": false, "active_years": [ - 2017, - 2019, - 2021, - 2023, - 2025 + 2021 ] }, { - "slug": "python-software-foundation", - "name": "Python Software Foundation", + "slug": "vitrivr", + "name": "vitrivr", "first_year": 2016, - "last_year": 2025, - "total_projects": 277, - "is_currently_active": true, + "last_year": 2021, + "total_projects": 6, + "is_currently_active": false, "active_years": [ 2016, - 2017, 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2021 ] }, { - "slug": "qdrant", - "name": "Qdrant", - "first_year": 2023, - "last_year": 2023, - "total_projects": 2, + "slug": "orange-data-mining-fruitful-fun", + "name": "Orange – Data Mining Fruitful & Fun", + "first_year": 2016, + "last_year": 2016, + "total_projects": 5, "is_currently_active": false, "active_years": [ - 2023 + 2016 ] }, { - "slug": "quillorg", - "name": "Quill.org", - "first_year": 2018, - "last_year": 2018, - "total_projects": 1, + "slug": "city-of-boston", + "name": "City of Boston", + "first_year": 2024, + "last_year": 2024, + "total_projects": 4, "is_currently_active": false, "active_years": [ - 2018 + 2024 ] }, { - "slug": "r-project-for-statistical-computing", - "name": "R project for statistical computing", - "first_year": 2016, + "slug": "jax-and-keras", + "name": "JAX and Keras", + "first_year": 2025, "last_year": 2025, - "total_projects": 212, - "is_currently_active": true, + "total_projects": 4, + "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, 2025 ] }, { - "slug": "red-hen-lab", - "name": "Red Hen Lab", + "slug": "open-detection", + "name": "Open Detection", "first_year": 2016, - "last_year": 2024, - "total_projects": 88, + "last_year": 2017, + "total_projects": 4, "is_currently_active": false, "active_years": [ 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024 + 2017 ] }, { @@ -780,64 +839,49 @@ ] }, { - "slug": "rocketchat", - "name": "rocket.chat", - "first_year": 2017, - "last_year": 2025, - "total_projects": 103, - "is_currently_active": true, + "slug": "cbmiuthsc", + "name": "CBMI@UTHSC", + "first_year": 2019, + "last_year": 2019, + "total_projects": 3, + "is_currently_active": false, "active_years": [ - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2019 ] }, { - "slug": "rspamd", - "name": "Rspamd", - "first_year": 2017, - "last_year": 2025, + "slug": "ivy-lets-unifyai", + "name": "Ivy (lets-unify.ai)", + "first_year": 2023, + "last_year": 2023, "total_projects": 3, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ - 2017, - 2018, - 2025 + 2023 ] }, { - "slug": "salesforce", - "name": "Salesforce", - "first_year": 2019, - "last_year": 2019, - "total_projects": 2, + "slug": "open-chromosome-collective", + "name": "Open Chromosome Collective", + "first_year": 2024, + "last_year": 2024, + "total_projects": 3, "is_currently_active": false, "active_years": [ - 2019 + 2024 ] }, { - "slug": "score-lab", - "name": "SCoRe Lab", - "first_year": 2016, - "last_year": 2023, - "total_projects": 149, + "slug": "rspamd", + "name": "Rspamd", + "first_year": 2017, + "last_year": 2025, + "total_projects": 3, "is_currently_active": false, "active_years": [ - 2016, 2017, 2018, - 2019, - 2020, - 2021, - 2022, - 2023 + 2025 ] }, { @@ -852,123 +896,93 @@ ] }, { - "slug": "shogun", - "name": "Shogun", - "first_year": 2016, - "last_year": 2020, - "total_projects": 10, + "slug": "cvat", + "name": "CVAT", + "first_year": 2024, + "last_year": 2024, + "total_projects": 2, "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2019, - 2020 + 2024 ] }, { - "slug": "stear-group", - "name": "Ste||ar group", - "first_year": 2016, - "last_year": 2025, - "total_projects": 38, - "is_currently_active": true, + "slug": "environmental-data-and-governance-initiative", + "name": "Environmental Data And Governance Initiative", + "first_year": 2017, + "last_year": 2017, + "total_projects": 2, + "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2017 ] }, { - "slug": "stratosphere-laboratory-czech-technical-university-in-prague", - "name": "Stratosphere Laboratory, Czech Technical University in Prague", - "first_year": 2023, - "last_year": 2024, + "slug": "free-uk-genealogy", + "name": "Free UK Genealogy", + "first_year": 2018, + "last_year": 2018, "total_projects": 2, "is_currently_active": false, "active_years": [ - 2023, - 2024 + 2018 ] }, { - "slug": "tensorflow", - "name": "TensorFlow", + "slug": "knime", + "name": "KNIME", "first_year": 2019, - "last_year": 2023, - "total_projects": 81, + "last_year": 2019, + "total_projects": 2, "is_currently_active": false, "active_years": [ - 2019, - 2020, - 2021, - 2022, - 2023 + 2019 ] }, { - "slug": "the-julia-language", - "name": "The Julia Language", - "first_year": 2016, - "last_year": 2025, - "total_projects": 140, + "slug": "kornia", + "name": "Kornia", + "first_year": 2025, + "last_year": 2026, + "total_projects": 2, "is_currently_active": true, "active_years": [ - 2016, - 2017, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "vitrivr", - "name": "vitrivr", - "first_year": 2016, - "last_year": 2021, - "total_projects": 6, + "slug": "qdrant", + "name": "Qdrant", + "first_year": 2023, + "last_year": 2023, + "total_projects": 2, "is_currently_active": false, "active_years": [ - 2016, - 2018, - 2021 + 2023 ] }, { - "slug": "wellcome-sanger-tree-of-life", - "name": "Wellcome Sanger Tree of Life", - "first_year": 2022, - "last_year": 2025, - "total_projects": 8, - "is_currently_active": true, + "slug": "salesforce", + "name": "Salesforce", + "first_year": 2019, + "last_year": 2019, + "total_projects": 2, + "is_currently_active": false, "active_years": [ - 2022, - 2024, - 2025 + 2019 ] }, { - "slug": "xapian-search-engine-library", - "name": "Xapian Search Engine Library", - "first_year": 2016, - "last_year": 2020, - "total_projects": 15, + "slug": "stratosphere-laboratory-czech-technical-university-in-prague", + "name": "Stratosphere Laboratory, Czech Technical University in Prague", + "first_year": 2023, + "last_year": 2024, + "total_projects": 2, "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020 + 2023, + 2024 ] }, { @@ -981,6 +995,61 @@ "active_years": [ 2017 ] + }, + { + "slug": "quillorg", + "name": "Quill.org", + "first_year": 2018, + "last_year": 2018, + "total_projects": 1, + "is_currently_active": false, + "active_years": [ + 2018 + ] + }, + { + "slug": "german-center-for-open-source-ai", + "name": "German Center for Open Source AI", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + }, + { + "slug": "malariagen", + "name": "MalariaGEN", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + }, + { + "slug": "metaflow", + "name": "Metaflow", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + }, + { + "slug": "mllam", + "name": "MLLAM", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] } ], "yearlyStats": { @@ -1023,10 +1092,14 @@ "2025": { "organizationCount": 30, "projectCount": 362 + }, + "2026": { + "organizationCount": 28, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.386Z" + "generated_at": "2026-02-19T13:36:00.320Z" } } \ No newline at end of file diff --git a/new-api-details/topics/machine-to-machine.json b/new-api-details/topics/machine-to-machine.json index d77a73d1..09758bc9 100644 --- a/new-api-details/topics/machine-to-machine.json +++ b/new-api-details/topics/machine-to-machine.json @@ -1,7 +1,7 @@ { "slug": "machine-to-machine", "name": "machine-to-machine", - "published_at": "2026-01-25T16:06:29.796Z", + "published_at": "2026-02-19T13:36:03.153Z", "organizationCount": 1, "projectCount": 11, "years": [ @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.796Z" + "generated_at": "2026-02-19T13:36:03.153Z" } } \ No newline at end of file diff --git a/new-api-details/topics/machine-trans.json b/new-api-details/topics/machine-trans.json index 366b523d..23e31431 100644 --- a/new-api-details/topics/machine-trans.json +++ b/new-api-details/topics/machine-trans.json @@ -1,7 +1,7 @@ { "slug": "machine-trans", "name": "machine trans", - "published_at": "2026-01-25T16:06:28.780Z", + "published_at": "2026-02-19T13:36:01.036Z", "organizationCount": 1, "projectCount": 7, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.780Z" + "generated_at": "2026-02-19T13:36:01.036Z" } } \ No newline at end of file diff --git a/new-api-details/topics/machine-translation.json b/new-api-details/topics/machine-translation.json index 6c367738..7f61676d 100644 --- a/new-api-details/topics/machine-translation.json +++ b/new-api-details/topics/machine-translation.json @@ -1,10 +1,11 @@ { "slug": "machine-translation", "name": "machine translation", - "published_at": "2026-01-25T16:06:28.469Z", + "published_at": "2026-02-19T13:36:00.489Z", "organizationCount": 4, "projectCount": 109, "years": [ + 2026, 2024, 2023, 2022, @@ -34,6 +35,22 @@ 2024 ] }, + { + "slug": "cuneiform-digital-library-initiative-cdli", + "name": "Cuneiform Digital Library Initiative (CDLI)", + "first_year": 2018, + "last_year": 2026, + "total_projects": 30, + "is_currently_active": true, + "active_years": [ + 2018, + 2019, + 2020, + 2021, + 2022, + 2026 + ] + }, { "slug": "classical-language-toolkit", "name": "Classical Language Toolkit", @@ -47,21 +64,6 @@ 2018 ] }, - { - "slug": "cuneiform-digital-library-initiative-cdli", - "name": "Cuneiform Digital Library Initiative (CDLI)", - "first_year": 2018, - "last_year": 2022, - "total_projects": 30, - "is_currently_active": false, - "active_years": [ - 2018, - 2019, - 2020, - 2021, - 2022 - ] - }, { "slug": "framenet-brasil-ufjf", "name": "FrameNet Brasil (UFJF)", @@ -112,10 +114,14 @@ "2024": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.469Z" + "generated_at": "2026-02-19T13:36:00.489Z" } } \ No newline at end of file diff --git a/new-api-details/topics/machine.json b/new-api-details/topics/machine.json index b1f72981..f69f5479 100644 --- a/new-api-details/topics/machine.json +++ b/new-api-details/topics/machine.json @@ -1,7 +1,7 @@ { "slug": "machine", "name": "machine", - "published_at": "2026-01-25T16:06:28.779Z", + "published_at": "2026-02-19T13:36:01.035Z", "organizationCount": 1, "projectCount": 7, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.779Z" + "generated_at": "2026-02-19T13:36:01.035Z" } } \ No newline at end of file diff --git a/new-api-details/topics/macos.json b/new-api-details/topics/macos.json index 585bbac3..45e52e03 100644 --- a/new-api-details/topics/macos.json +++ b/new-api-details/topics/macos.json @@ -1,7 +1,7 @@ { "slug": "macos", "name": "macos", - "published_at": "2026-01-25T16:06:29.122Z", + "published_at": "2026-02-19T13:36:01.773Z", "organizationCount": 2, "projectCount": 18, "years": [ @@ -71,6 +71,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.122Z" + "generated_at": "2026-02-19T13:36:01.773Z" } } \ No newline at end of file diff --git a/new-api-details/topics/mail.json b/new-api-details/topics/mail.json index 1fbe6814..83038c93 100644 --- a/new-api-details/topics/mail.json +++ b/new-api-details/topics/mail.json @@ -1,7 +1,7 @@ { "slug": "mail", "name": "mail", - "published_at": "2026-01-25T16:06:29.039Z", + "published_at": "2026-02-19T13:36:01.669Z", "organizationCount": 2, "projectCount": 6, "years": [ @@ -62,6 +62,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.039Z" + "generated_at": "2026-02-19T13:36:01.669Z" } } \ No newline at end of file diff --git a/new-api-details/topics/mailing-lists.json b/new-api-details/topics/mailing-lists.json index a748b6fa..3a73de45 100644 --- a/new-api-details/topics/mailing-lists.json +++ b/new-api-details/topics/mailing-lists.json @@ -1,7 +1,7 @@ { "slug": "mailing-lists", "name": "mailing lists", - "published_at": "2026-01-25T16:06:29.038Z", + "published_at": "2026-02-19T13:36:01.668Z", "organizationCount": 1, "projectCount": 4, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.038Z" + "generated_at": "2026-02-19T13:36:01.668Z" } } \ No newline at end of file diff --git a/new-api-details/topics/makers.json b/new-api-details/topics/makers.json index ac9a7fb4..7af1302f 100644 --- a/new-api-details/topics/makers.json +++ b/new-api-details/topics/makers.json @@ -1,7 +1,7 @@ { "slug": "makers", "name": "makers", - "published_at": "2026-01-25T16:06:29.638Z", + "published_at": "2026-02-19T13:36:02.844Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.638Z" + "generated_at": "2026-02-19T13:36:02.844Z" } } \ No newline at end of file diff --git a/new-api-details/topics/malware-analysis.json b/new-api-details/topics/malware-analysis.json index 21e40b8c..268eac90 100644 --- a/new-api-details/topics/malware-analysis.json +++ b/new-api-details/topics/malware-analysis.json @@ -1,10 +1,11 @@ { "slug": "malware-analysis", "name": "malware-analysis", - "published_at": "2026-01-25T16:06:28.921Z", + "published_at": "2026-02-19T13:36:01.387Z", "organizationCount": 2, "projectCount": 108, "years": [ + 2026, 2025, 2024, 2023, @@ -17,24 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "flare", - "name": "FLARE", - "first_year": 2023, - "last_year": 2025, - "total_projects": 7, - "is_currently_active": true, - "active_years": [ - 2023, - 2024, - 2025 - ] - }, { "slug": "the-honeynet-project", "name": "The Honeynet Project", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 101, "is_currently_active": true, "active_years": [ @@ -47,7 +35,22 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "flare", + "name": "FLARE", + "first_year": 2023, + "last_year": 2026, + "total_projects": 7, + "is_currently_active": true, + "active_years": [ + 2023, + 2024, + 2025, + 2026 ] } ], @@ -91,10 +94,14 @@ "2025": { "organizationCount": 2, "projectCount": 11 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.921Z" + "generated_at": "2026-02-19T13:36:01.387Z" } } \ No newline at end of file diff --git a/new-api-details/topics/malware.json b/new-api-details/topics/malware.json index 5b0a967d..e58ebbef 100644 --- a/new-api-details/topics/malware.json +++ b/new-api-details/topics/malware.json @@ -1,10 +1,11 @@ { "slug": "malware", "name": "malware", - "published_at": "2026-01-25T16:06:29.682Z", + "published_at": "2026-02-19T13:36:02.911Z", "organizationCount": 1, "projectCount": 101, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "the-honeynet-project", "name": "The Honeynet Project", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 101, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.682Z" + "generated_at": "2026-02-19T13:36:02.911Z" } } \ No newline at end of file diff --git a/new-api-details/topics/mapping-and-surveying.json b/new-api-details/topics/mapping-and-surveying.json index c2edd1fd..f3189f4a 100644 --- a/new-api-details/topics/mapping-and-surveying.json +++ b/new-api-details/topics/mapping-and-surveying.json @@ -1,7 +1,7 @@ { "slug": "mapping-and-surveying", "name": "mapping and surveying", - "published_at": "2026-01-25T16:06:29.308Z", + "published_at": "2026-02-19T13:36:02.303Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.308Z" + "generated_at": "2026-02-19T13:36:02.303Z" } } \ No newline at end of file diff --git a/new-api-details/topics/mapping.json b/new-api-details/topics/mapping.json index 21863a5d..75b2d1aa 100644 --- a/new-api-details/topics/mapping.json +++ b/new-api-details/topics/mapping.json @@ -1,10 +1,11 @@ { "slug": "mapping", "name": "mapping", - "published_at": "2026-01-25T16:06:28.344Z", + "published_at": "2026-02-19T13:36:00.245Z", "organizationCount": 4, "projectCount": 107, "years": [ + 2026, 2025, 2024, 2023, @@ -17,6 +18,39 @@ 2016 ], "organizations": [ + { + "slug": "osgeo-open-source-geospatial-foundation", + "name": "OSGeo (Open Source Geospatial Foundation)", + "first_year": 2016, + "last_year": 2026, + "total_projects": 101, + "is_currently_active": true, + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ] + }, + { + "slug": "mggg-redistricting-lab", + "name": "MGGG Redistricting Lab", + "first_year": 2020, + "last_year": 2021, + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2020, + 2021 + ] + }, { "slug": "3dtk", "name": "3DTK", @@ -38,38 +72,6 @@ "active_years": [ 2017 ] - }, - { - "slug": "mggg-redistricting-lab", - "name": "MGGG Redistricting Lab", - "first_year": 2020, - "last_year": 2021, - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2020, - 2021 - ] - }, - { - "slug": "osgeo-open-source-geospatial-foundation", - "name": "OSGeo (Open Source Geospatial Foundation)", - "first_year": 2016, - "last_year": 2025, - "total_projects": 101, - "is_currently_active": true, - "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 - ] } ], "yearlyStats": { @@ -112,10 +114,14 @@ "2025": { "organizationCount": 1, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.344Z" + "generated_at": "2026-02-19T13:36:00.245Z" } } \ No newline at end of file diff --git a/new-api-details/topics/maps.json b/new-api-details/topics/maps.json index c1a210e8..9a96af3b 100644 --- a/new-api-details/topics/maps.json +++ b/new-api-details/topics/maps.json @@ -1,10 +1,11 @@ { "slug": "maps", "name": "maps", - "published_at": "2026-01-25T16:06:29.287Z", + "published_at": "2026-02-19T13:36:02.200Z", "organizationCount": 6, "projectCount": 233, "years": [ + 2026, 2025, 2024, 2023, @@ -18,40 +19,51 @@ ], "organizations": [ { - "slug": "liquid-galaxy-project", - "name": "Liquid Galaxy project", + "slug": "osgeo-open-source-geospatial-foundation", + "name": "OSGeo (Open Source Geospatial Foundation)", "first_year": 2016, - "last_year": 2025, - "total_projects": 75, + "last_year": 2026, + "total_projects": 101, "is_currently_active": true, "active_years": [ 2016, 2017, + 2018, 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "mapaction", - "name": "MapAction", - "first_year": 2021, - "last_year": 2021, - "total_projects": 1, - "is_currently_active": false, + "slug": "liquid-galaxy-project", + "name": "Liquid Galaxy project", + "first_year": 2016, + "last_year": 2026, + "total_projects": 75, + "is_currently_active": true, "active_years": [ - 2021 + 2016, + 2017, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { "slug": "openstreetmap", "name": "OpenStreetMap", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 45, "is_currently_active": true, "active_years": [ @@ -64,7 +76,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -73,7 +86,7 @@ "first_year": 2022, "last_year": 2025, "total_projects": 10, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2023, @@ -82,23 +95,14 @@ ] }, { - "slug": "osgeo-open-source-geospatial-foundation", - "name": "OSGeo (Open Source Geospatial Foundation)", - "first_year": 2016, - "last_year": 2025, - "total_projects": 101, - "is_currently_active": true, + "slug": "mapaction", + "name": "MapAction", + "first_year": 2021, + "last_year": 2021, + "total_projects": 1, + "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2021 ] }, { @@ -153,10 +157,14 @@ "2025": { "organizationCount": 4, "projectCount": 29 + }, + "2026": { + "organizationCount": 3, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.287Z" + "generated_at": "2026-02-19T13:36:02.200Z" } } \ No newline at end of file diff --git a/new-api-details/topics/marine-biodiversity.json b/new-api-details/topics/marine-biodiversity.json index 78f75c65..376c08cf 100644 --- a/new-api-details/topics/marine-biodiversity.json +++ b/new-api-details/topics/marine-biodiversity.json @@ -1,10 +1,11 @@ { "slug": "marine-biodiversity", "name": "Marine Biodiversity", - "published_at": "2026-01-25T16:06:29.140Z", + "published_at": "2026-02-19T13:36:01.992Z", "organizationCount": 1, "projectCount": 22, "years": [ + 2026, 2025, 2024, 2022, @@ -15,14 +16,15 @@ "slug": "ioos", "name": "IOOS", "first_year": 2021, - "last_year": 2025, + "last_year": 2026, "total_projects": 22, "is_currently_active": true, "active_years": [ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] } ], @@ -42,10 +44,14 @@ "2025": { "organizationCount": 1, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.140Z" + "generated_at": "2026-02-19T13:36:01.992Z" } } \ No newline at end of file diff --git a/new-api-details/topics/marketing-automation.json b/new-api-details/topics/marketing-automation.json index 782fd1b9..5db3fb8c 100644 --- a/new-api-details/topics/marketing-automation.json +++ b/new-api-details/topics/marketing-automation.json @@ -1,7 +1,7 @@ { "slug": "marketing-automation", "name": "Marketing Automation", - "published_at": "2026-01-25T16:06:29.334Z", + "published_at": "2026-02-19T13:36:02.236Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.334Z" + "generated_at": "2026-02-19T13:36:02.236Z" } } \ No newline at end of file diff --git a/new-api-details/topics/marketing.json b/new-api-details/topics/marketing.json index 2e5bdc53..37f5f1e8 100644 --- a/new-api-details/topics/marketing.json +++ b/new-api-details/topics/marketing.json @@ -1,7 +1,7 @@ { "slug": "marketing", "name": "Marketing", - "published_at": "2026-01-25T16:06:29.334Z", + "published_at": "2026-02-19T13:36:02.235Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.334Z" + "generated_at": "2026-02-19T13:36:02.235Z" } } \ No newline at end of file diff --git a/new-api-details/topics/martech.json b/new-api-details/topics/martech.json index d31c3253..d789f122 100644 --- a/new-api-details/topics/martech.json +++ b/new-api-details/topics/martech.json @@ -1,10 +1,11 @@ { "slug": "martech", "name": "martech", - "published_at": "2026-01-25T16:06:28.871Z", + "published_at": "2026-02-19T13:36:01.219Z", "organizationCount": 1, "projectCount": 39, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "drupal-association", "name": "Drupal Association", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 39, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.871Z" + "generated_at": "2026-02-19T13:36:01.219Z" } } \ No newline at end of file diff --git a/new-api-details/topics/mass-spectrometry.json b/new-api-details/topics/mass-spectrometry.json index 4baca8f6..7695fb06 100644 --- a/new-api-details/topics/mass-spectrometry.json +++ b/new-api-details/topics/mass-spectrometry.json @@ -1,10 +1,12 @@ { "slug": "mass-spectrometry", "name": "mass spectrometry", - "published_at": "2026-01-25T16:06:29.313Z", - "organizationCount": 2, - "projectCount": 5, + "published_at": "2026-02-19T13:36:02.383Z", + "organizationCount": 3, + "projectCount": 7, "years": [ + 2026, + 2025, 2023, 2022, 2020 @@ -32,6 +34,18 @@ "active_years": [ 2023 ] + }, + { + "slug": "openms", + "name": "OpenMS", + "first_year": 2025, + "last_year": 2026, + "total_projects": 2, + "is_currently_active": true, + "active_years": [ + 2025, + 2026 + ] } ], "yearlyStats": { @@ -46,10 +60,18 @@ "2023": { "organizationCount": 1, "projectCount": 2 + }, + "2025": { + "organizationCount": 1, + "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.313Z" + "generated_at": "2026-02-19T13:36:02.383Z" } } \ No newline at end of file diff --git a/new-api-details/topics/massive-community.json b/new-api-details/topics/massive-community.json index 4654706d..8acc7c14 100644 --- a/new-api-details/topics/massive-community.json +++ b/new-api-details/topics/massive-community.json @@ -1,10 +1,11 @@ { "slug": "massive-community", "name": "Massive community", - "published_at": "2026-01-25T16:06:28.877Z", + "published_at": "2026-02-19T13:36:01.222Z", "organizationCount": 1, "projectCount": 39, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "drupal-association", "name": "Drupal Association", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 39, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.877Z" + "generated_at": "2026-02-19T13:36:01.222Z" } } \ No newline at end of file diff --git a/new-api-details/topics/material-design.json b/new-api-details/topics/material-design.json index f694fce3..8cb67c9a 100644 --- a/new-api-details/topics/material-design.json +++ b/new-api-details/topics/material-design.json @@ -1,10 +1,11 @@ { "slug": "material-design", "name": "material design", - "published_at": "2026-01-25T16:06:29.536Z", + "published_at": "2026-02-19T13:36:02.700Z", "organizationCount": 1, "projectCount": 32, "years": [ + 2026, 2025, 2023, 2021, @@ -16,7 +17,7 @@ "slug": "pharo-consortium", "name": "Pharo Consortium", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 32, "is_currently_active": true, "active_years": [ @@ -24,7 +25,8 @@ 2019, 2021, 2023, - 2025 + 2025, + 2026 ] } ], @@ -48,10 +50,14 @@ "2025": { "organizationCount": 1, "projectCount": 8 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.536Z" + "generated_at": "2026-02-19T13:36:02.700Z" } } \ No newline at end of file diff --git a/new-api-details/topics/materials-science.json b/new-api-details/topics/materials-science.json index c59fc563..fc62d476 100644 --- a/new-api-details/topics/materials-science.json +++ b/new-api-details/topics/materials-science.json @@ -1,10 +1,11 @@ { "slug": "materials-science", "name": "materials science", - "published_at": "2026-01-25T16:06:28.836Z", + "published_at": "2026-02-19T13:36:01.173Z", "organizationCount": 2, "projectCount": 65, "years": [ + 2026, 2025, 2024, 2023, @@ -17,18 +18,6 @@ 2016 ], "organizations": [ - { - "slug": "deepchem", - "name": "DeepChem", - "first_year": 2024, - "last_year": 2025, - "total_projects": 14, - "is_currently_active": true, - "active_years": [ - 2024, - 2025 - ] - }, { "slug": "open-chemistry", "name": "Open Chemistry", @@ -47,6 +36,19 @@ 2023, 2024 ] + }, + { + "slug": "deepchem", + "name": "DeepChem", + "first_year": 2024, + "last_year": 2026, + "total_projects": 14, + "is_currently_active": true, + "active_years": [ + 2024, + 2025, + 2026 + ] } ], "yearlyStats": { @@ -89,10 +91,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.836Z" + "generated_at": "2026-02-19T13:36:01.173Z" } } \ No newline at end of file diff --git a/new-api-details/topics/materials.json b/new-api-details/topics/materials.json index d99d6c7f..e0d5ac3c 100644 --- a/new-api-details/topics/materials.json +++ b/new-api-details/topics/materials.json @@ -1,10 +1,11 @@ { "slug": "materials", "name": "materials", - "published_at": "2026-01-25T16:06:29.305Z", + "published_at": "2026-02-19T13:36:02.264Z", "organizationCount": 1, "projectCount": 16, "years": [ + 2026, 2025, 2024, 2023, @@ -17,7 +18,7 @@ "slug": "mdanalysis", "name": "MDAnalysis", "first_year": 2020, - "last_year": 2025, + "last_year": 2026, "total_projects": 16, "is_currently_active": true, "active_years": [ @@ -26,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -54,10 +56,14 @@ "2025": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.305Z" + "generated_at": "2026-02-19T13:36:02.264Z" } } \ No newline at end of file diff --git a/new-api-details/topics/math.json b/new-api-details/topics/math.json index 749af9c6..e892685e 100644 --- a/new-api-details/topics/math.json +++ b/new-api-details/topics/math.json @@ -1,10 +1,11 @@ { "slug": "math", "name": "math", - "published_at": "2026-01-25T16:06:29.600Z", + "published_at": "2026-02-19T13:36:02.804Z", "organizationCount": 4, "projectCount": 271, "years": [ + 2026, 2025, 2024, 2023, @@ -18,44 +19,30 @@ ], "organizations": [ { - "slug": "ruby-science-foundation", - "name": "Ruby Science Foundation", - "first_year": 2016, - "last_year": 2019, - "total_projects": 13, - "is_currently_active": false, - "active_years": [ - 2016, - 2017, - 2018, - 2019 - ] - }, - { - "slug": "sagemath", - "name": "SageMath", + "slug": "the-julia-language", + "name": "The Julia Language", "first_year": 2016, - "last_year": 2025, - "total_projects": 55, + "last_year": 2026, + "total_projects": 140, "is_currently_active": true, "active_years": [ 2016, 2017, - 2018, 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "sympy", "name": "SymPy", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 63, "is_currently_active": true, "active_years": [ @@ -68,26 +55,43 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "the-julia-language", - "name": "The Julia Language", + "slug": "sagemath", + "name": "SageMath", "first_year": 2016, - "last_year": 2025, - "total_projects": 140, + "last_year": 2026, + "total_projects": 55, "is_currently_active": true, "active_years": [ 2016, 2017, + 2018, 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "ruby-science-foundation", + "name": "Ruby Science Foundation", + "first_year": 2016, + "last_year": 2019, + "total_projects": 13, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2018, + 2019 ] } ], @@ -131,10 +135,14 @@ "2025": { "organizationCount": 3, "projectCount": 27 + }, + "2026": { + "organizationCount": 3, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.600Z" + "generated_at": "2026-02-19T13:36:02.804Z" } } \ No newline at end of file diff --git a/new-api-details/topics/mathematical-optimizaton.json b/new-api-details/topics/mathematical-optimizaton.json new file mode 100644 index 00000000..967c31f9 --- /dev/null +++ b/new-api-details/topics/mathematical-optimizaton.json @@ -0,0 +1,33 @@ +{ + "slug": "mathematical-optimizaton", + "name": "mathematical optimizaton", + "published_at": "2026-02-19T13:36:01.575Z", + "organizationCount": 1, + "projectCount": 0, + "years": [ + 2026 + ], + "organizations": [ + { + "slug": "gambit-the-package-for-computation-in-game-theory", + "name": "Gambit: The package for computation in game theory", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + } + ], + "yearlyStats": { + "2026": { + "organizationCount": 1, + "projectCount": 0 + } + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:36:01.575Z" + } +} \ No newline at end of file diff --git a/new-api-details/topics/mathematical-software.json b/new-api-details/topics/mathematical-software.json index 8bf69fcf..96e7f447 100644 --- a/new-api-details/topics/mathematical-software.json +++ b/new-api-details/topics/mathematical-software.json @@ -1,10 +1,11 @@ { "slug": "mathematical-software", "name": "mathematical software", - "published_at": "2026-01-25T16:06:28.406Z", + "published_at": "2026-02-19T13:36:00.633Z", "organizationCount": 4, "projectCount": 90, "years": [ + 2026, 2025, 2024, 2023, @@ -18,32 +19,31 @@ ], "organizations": [ { - "slug": "ascend", - "name": "ASCEND", + "slug": "sagemath", + "name": "SageMath", "first_year": 2016, - "last_year": 2016, - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2016 - ] - }, - { - "slug": "biogears", - "name": "BioGears", - "first_year": 2020, - "last_year": 2020, - "total_projects": 2, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 55, + "is_currently_active": true, "active_years": [ - 2020 + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { "slug": "geomscale", "name": "GeomScale", "first_year": 2020, - "last_year": 2025, + "last_year": 2026, "total_projects": 30, "is_currently_active": true, "active_years": [ @@ -52,27 +52,30 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "sagemath", - "name": "SageMath", + "slug": "ascend", + "name": "ASCEND", "first_year": 2016, - "last_year": 2025, - "total_projects": 55, - "is_currently_active": true, + "last_year": 2016, + "total_projects": 3, + "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2016 + ] + }, + { + "slug": "biogears", + "name": "BioGears", + "first_year": 2020, + "last_year": 2020, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2020 ] } ], @@ -116,10 +119,14 @@ "2025": { "organizationCount": 2, "projectCount": 13 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.406Z" + "generated_at": "2026-02-19T13:36:00.633Z" } } \ No newline at end of file diff --git a/new-api-details/topics/mathematics.json b/new-api-details/topics/mathematics.json index 225d6d0f..40cc91f1 100644 --- a/new-api-details/topics/mathematics.json +++ b/new-api-details/topics/mathematics.json @@ -1,10 +1,11 @@ { "slug": "mathematics", "name": "mathematics", - "published_at": "2026-01-25T16:06:28.859Z", + "published_at": "2026-02-19T13:36:00.570Z", "organizationCount": 11, "projectCount": 489, "years": [ + 2026, 2025, 2024, 2023, @@ -18,52 +19,53 @@ ], "organizations": [ { - "slug": "appleseed", - "name": "appleseed", - "first_year": 2017, - "last_year": 2020, - "total_projects": 11, - "is_currently_active": false, + "slug": "python-software-foundation", + "name": "Python Software Foundation", + "first_year": 2016, + "last_year": 2026, + "total_projects": 277, + "is_currently_active": true, "active_years": [ + 2016, 2017, 2018, 2019, - 2020 + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "distributed-and-unified-numerics-environment-dune", - "name": "Distributed and Unified Numerics Environment (DUNE)", + "slug": "sympy", + "name": "SymPy", "first_year": 2016, - "last_year": 2016, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2016 - ] - }, - { - "slug": "geomscale", - "name": "GeomScale", - "first_year": 2020, - "last_year": 2025, - "total_projects": 30, + "last_year": 2026, + "total_projects": 63, "is_currently_active": true, "active_years": [ + 2016, + 2017, + 2018, + 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "gnu-octave", - "name": "GNU Octave", + "slug": "sagemath", + "name": "SageMath", "first_year": 2016, - "last_year": 2025, - "total_projects": 23, + "last_year": 2026, + "total_projects": 55, "is_currently_active": true, "active_years": [ 2016, @@ -75,46 +77,33 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "jgrapht", - "name": "JGraphT", - "first_year": 2018, - "last_year": 2018, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2018 - ] - }, - { - "slug": "python-software-foundation", - "name": "Python Software Foundation", - "first_year": 2016, - "last_year": 2025, - "total_projects": 277, + "slug": "geomscale", + "name": "GeomScale", + "first_year": 2020, + "last_year": 2026, + "total_projects": 30, "is_currently_active": true, "active_years": [ - 2016, - 2017, - 2018, - 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "sagemath", - "name": "SageMath", + "slug": "gnu-octave", + "name": "GNU Octave", "first_year": 2016, - "last_year": 2025, - "total_projects": 55, + "last_year": 2026, + "total_projects": 23, "is_currently_active": true, "active_years": [ 2016, @@ -126,7 +115,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -142,48 +132,65 @@ 2018 ] }, + { + "slug": "appleseed", + "name": "appleseed", + "first_year": 2017, + "last_year": 2020, + "total_projects": 11, + "is_currently_active": false, + "active_years": [ + 2017, + 2018, + 2019, + 2020 + ] + }, { "slug": "stdlib", "name": "stdlib", "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "total_projects": 9, "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "sympy", - "name": "SymPy", + "slug": "timelab-technologies-ltd", + "name": "Timelab Technologies Ltd.", "first_year": 2016, - "last_year": 2025, - "total_projects": 63, - "is_currently_active": true, + "last_year": 2016, + "total_projects": 3, + "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2016 ] }, { - "slug": "timelab-technologies-ltd", - "name": "Timelab Technologies Ltd.", + "slug": "distributed-and-unified-numerics-environment-dune", + "name": "Distributed and Unified Numerics Environment (DUNE)", "first_year": 2016, "last_year": 2016, - "total_projects": 3, + "total_projects": 2, "is_currently_active": false, "active_years": [ 2016 ] + }, + { + "slug": "jgrapht", + "name": "JGraphT", + "first_year": 2018, + "last_year": 2018, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2018 + ] } ], "yearlyStats": { @@ -226,10 +233,14 @@ "2025": { "organizationCount": 6, "projectCount": 43 + }, + "2026": { + "organizationCount": 6, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.859Z" + "generated_at": "2026-02-19T13:36:00.570Z" } } \ No newline at end of file diff --git a/new-api-details/topics/matlab.json b/new-api-details/topics/matlab.json index 808a5c80..2faf1d00 100644 --- a/new-api-details/topics/matlab.json +++ b/new-api-details/topics/matlab.json @@ -1,10 +1,11 @@ { "slug": "matlab", "name": "matlab", - "published_at": "2026-01-25T16:06:29.041Z", + "published_at": "2026-02-19T13:36:01.674Z", "organizationCount": 1, "projectCount": 23, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "gnu-octave", "name": "GNU Octave", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 23, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.041Z" + "generated_at": "2026-02-19T13:36:01.674Z" } } \ No newline at end of file diff --git a/new-api-details/topics/mechanical-engineering.json b/new-api-details/topics/mechanical-engineering.json index 6bd1ccc4..64570069 100644 --- a/new-api-details/topics/mechanical-engineering.json +++ b/new-api-details/topics/mechanical-engineering.json @@ -1,7 +1,7 @@ { "slug": "mechanical-engineering", "name": "mechanical engineering", - "published_at": "2026-01-25T16:06:29.292Z", + "published_at": "2026-02-19T13:36:02.241Z", "organizationCount": 1, "projectCount": 13, "years": [ @@ -21,7 +21,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 13, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -70,6 +70,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.292Z" + "generated_at": "2026-02-19T13:36:02.241Z" } } \ No newline at end of file diff --git a/new-api-details/topics/mechanics.json b/new-api-details/topics/mechanics.json index 0da1fc96..100c93e6 100644 --- a/new-api-details/topics/mechanics.json +++ b/new-api-details/topics/mechanics.json @@ -1,7 +1,7 @@ { "slug": "mechanics", "name": "mechanics", - "published_at": "2026-01-25T16:06:29.289Z", + "published_at": "2026-02-19T13:36:02.239Z", "organizationCount": 2, "projectCount": 27, "years": [ @@ -16,13 +16,26 @@ 2016 ], "organizations": [ + { + "slug": "scilab", + "name": "Scilab", + "first_year": 2016, + "last_year": 2018, + "total_projects": 14, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2018 + ] + }, { "slug": "mbdyn", "name": "MBDyn", "first_year": 2016, "last_year": 2025, "total_projects": 13, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -33,19 +46,6 @@ 2024, 2025 ] - }, - { - "slug": "scilab", - "name": "Scilab", - "first_year": 2016, - "last_year": 2018, - "total_projects": 14, - "is_currently_active": false, - "active_years": [ - 2016, - 2017, - 2018 - ] } ], "yearlyStats": { @@ -88,6 +88,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.289Z" + "generated_at": "2026-02-19T13:36:02.239Z" } } \ No newline at end of file diff --git a/new-api-details/topics/media-acceleration.json b/new-api-details/topics/media-acceleration.json index 223ad885..fa5156ab 100644 --- a/new-api-details/topics/media-acceleration.json +++ b/new-api-details/topics/media-acceleration.json @@ -1,7 +1,7 @@ { "slug": "media-acceleration", "name": "media acceleration", - "published_at": "2026-01-25T16:06:29.788Z", + "published_at": "2026-02-19T13:36:03.158Z", "organizationCount": 1, "projectCount": 19, "years": [ @@ -64,6 +64,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.788Z" + "generated_at": "2026-02-19T13:36:03.158Z" } } \ No newline at end of file diff --git a/new-api-details/topics/media-analysis.json b/new-api-details/topics/media-analysis.json index 9777ed19..d01f7198 100644 --- a/new-api-details/topics/media-analysis.json +++ b/new-api-details/topics/media-analysis.json @@ -1,10 +1,11 @@ { "slug": "media-analysis", "name": "media analysis", - "published_at": "2026-01-25T16:06:28.634Z", + "published_at": "2026-02-19T13:36:00.937Z", "organizationCount": 1, "projectCount": 80, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "ccextractor-development", "name": "CCExtractor Development", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 80, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 10 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.634Z" + "generated_at": "2026-02-19T13:36:00.937Z" } } \ No newline at end of file diff --git a/new-api-details/topics/media-analytics.json b/new-api-details/topics/media-analytics.json index 92585e80..bc51d256 100644 --- a/new-api-details/topics/media-analytics.json +++ b/new-api-details/topics/media-analytics.json @@ -1,7 +1,7 @@ { "slug": "media-analytics", "name": "media-analytics", - "published_at": "2026-01-25T16:06:29.337Z", + "published_at": "2026-02-19T13:36:02.272Z", "organizationCount": 1, "projectCount": 0, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.337Z" + "generated_at": "2026-02-19T13:36:02.272Z" } } \ No newline at end of file diff --git a/new-api-details/topics/media-center.json b/new-api-details/topics/media-center.json index 3ae4b01d..b5b43d6c 100644 --- a/new-api-details/topics/media-center.json +++ b/new-api-details/topics/media-center.json @@ -1,7 +1,7 @@ { "slug": "media-center", "name": "media center", - "published_at": "2026-01-25T16:06:29.243Z", + "published_at": "2026-02-19T13:36:02.112Z", "organizationCount": 1, "projectCount": 12, "years": [ @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.243Z" + "generated_at": "2026-02-19T13:36:02.112Z" } } \ No newline at end of file diff --git a/new-api-details/topics/media-database.json b/new-api-details/topics/media-database.json index 048a2296..ff654dfd 100644 --- a/new-api-details/topics/media-database.json +++ b/new-api-details/topics/media-database.json @@ -1,10 +1,11 @@ { "slug": "media-database", "name": "media database", - "published_at": "2026-01-25T16:06:29.768Z", + "published_at": "2026-02-19T13:36:03.118Z", "organizationCount": 1, "projectCount": 92, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "videolan", "name": "VideoLAN", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 92, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 15 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.768Z" + "generated_at": "2026-02-19T13:36:03.118Z" } } \ No newline at end of file diff --git a/new-api-details/topics/media-management.json b/new-api-details/topics/media-management.json index 9f76dd16..f2a8eef8 100644 --- a/new-api-details/topics/media-management.json +++ b/new-api-details/topics/media-management.json @@ -1,7 +1,7 @@ { "slug": "media-management", "name": "media management", - "published_at": "2026-01-25T16:06:29.246Z", + "published_at": "2026-02-19T13:36:02.118Z", "organizationCount": 1, "projectCount": 12, "years": [ @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.246Z" + "generated_at": "2026-02-19T13:36:02.118Z" } } \ No newline at end of file diff --git a/new-api-details/topics/media-server.json b/new-api-details/topics/media-server.json index 7ebf7443..cd59288f 100644 --- a/new-api-details/topics/media-server.json +++ b/new-api-details/topics/media-server.json @@ -1,7 +1,7 @@ { "slug": "media-server", "name": "media server", - "published_at": "2026-01-25T16:06:28.453Z", + "published_at": "2026-02-19T13:36:00.429Z", "organizationCount": 1, "projectCount": 18, "years": [ @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.453Z" + "generated_at": "2026-02-19T13:36:00.429Z" } } \ No newline at end of file diff --git a/new-api-details/topics/media.json b/new-api-details/topics/media.json index d6d1395f..375879a7 100644 --- a/new-api-details/topics/media.json +++ b/new-api-details/topics/media.json @@ -1,10 +1,11 @@ { "slug": "media", "name": "media", - "published_at": "2026-01-25T16:06:28.430Z", + "published_at": "2026-02-19T13:36:00.368Z", "organizationCount": 9, "projectCount": 336, "years": [ + 2026, 2025, 2024, 2023, @@ -18,22 +19,50 @@ ], "organizations": [ { - "slug": "academy-software-foundation", - "name": "Academy Software Foundation", - "first_year": 2020, - "last_year": 2022, - "total_projects": 3, + "slug": "sugar-labs", + "name": "Sugar Labs", + "first_year": 2016, + "last_year": 2026, + "total_projects": 89, + "is_currently_active": true, + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ] + }, + { + "slug": "red-hen-lab", + "name": "Red Hen Lab", + "first_year": 2016, + "last_year": 2024, + "total_projects": 88, "is_currently_active": false, "active_years": [ + 2016, + 2017, + 2018, + 2019, 2020, - 2022 + 2021, + 2022, + 2023, + 2024 ] }, { "slug": "ccextractor-development", "name": "CCExtractor Development", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 80, "is_currently_active": true, "active_years": [ @@ -46,16 +75,17 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "haiku", "name": "Haiku", "first_year": 2017, - "last_year": 2024, + "last_year": 2026, "total_projects": 26, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, @@ -64,41 +94,43 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { - "slug": "intel-video-and-audio-for-linux", - "name": "Intel Video and Audio for Linux", + "slug": "internet-archive", + "name": "Internet Archive", "first_year": 2017, - "last_year": 2022, - "total_projects": 12, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 26, + "is_currently_active": true, "active_years": [ 2017, 2018, 2019, 2020, 2021, - 2022 + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "internet-archive", - "name": "Internet Archive", + "slug": "intel-video-and-audio-for-linux", + "name": "Intel Video and Audio for Linux", "first_year": 2017, - "last_year": 2025, - "total_projects": 26, - "is_currently_active": true, + "last_year": 2022, + "total_projects": 12, + "is_currently_active": false, "active_years": [ 2017, 2018, 2019, 2020, 2021, - 2023, - 2024, - 2025 + 2022 ] }, { @@ -117,6 +149,18 @@ 2022 ] }, + { + "slug": "academy-software-foundation", + "name": "Academy Software Foundation", + "first_year": 2020, + "last_year": 2022, + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2020, + 2022 + ] + }, { "slug": "media-cloud", "name": "Media Cloud", @@ -127,45 +171,6 @@ "active_years": [ 2021 ] - }, - { - "slug": "red-hen-lab", - "name": "Red Hen Lab", - "first_year": 2016, - "last_year": 2024, - "total_projects": 88, - "is_currently_active": false, - "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024 - ] - }, - { - "slug": "sugar-labs", - "name": "Sugar Labs", - "first_year": 2016, - "last_year": 2025, - "total_projects": 89, - "is_currently_active": true, - "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 - ] } ], "yearlyStats": { @@ -208,10 +213,14 @@ "2025": { "organizationCount": 3, "projectCount": 26 + }, + "2026": { + "organizationCount": 4, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.430Z" + "generated_at": "2026-02-19T13:36:00.368Z" } } \ No newline at end of file diff --git a/new-api-details/topics/mediawiki.json b/new-api-details/topics/mediawiki.json index 78ce9a71..38b32ec9 100644 --- a/new-api-details/topics/mediawiki.json +++ b/new-api-details/topics/mediawiki.json @@ -1,10 +1,11 @@ { "slug": "mediawiki", "name": "mediawiki", - "published_at": "2026-01-25T16:06:29.777Z", + "published_at": "2026-02-19T13:36:03.136Z", "organizationCount": 1, "projectCount": 85, "years": [ + 2026, 2024, 2023, 2022, @@ -20,9 +21,9 @@ "slug": "wikimedia-foundation", "name": "Wikimedia Foundation", "first_year": 2016, - "last_year": 2024, + "last_year": 2026, "total_projects": 85, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -32,7 +33,8 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] } ], @@ -72,10 +74,14 @@ "2024": { "organizationCount": 1, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.777Z" + "generated_at": "2026-02-19T13:36:03.136Z" } } \ No newline at end of file diff --git a/new-api-details/topics/medical-imaging.json b/new-api-details/topics/medical-imaging.json index 7f91c6e2..520872a2 100644 --- a/new-api-details/topics/medical-imaging.json +++ b/new-api-details/topics/medical-imaging.json @@ -1,10 +1,11 @@ { "slug": "medical-imaging", "name": "medical imaging", - "published_at": "2026-01-25T16:06:29.189Z", + "published_at": "2026-02-19T13:36:01.969Z", "organizationCount": 3, "projectCount": 31, "years": [ + 2026, 2025, 2024, 2023, @@ -17,25 +18,27 @@ "slug": "invesalius", "name": "Invesalius", "first_year": 2023, - "last_year": 2025, + "last_year": 2026, "total_projects": 13, "is_currently_active": true, "active_years": [ 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "open-science-initiative-for-perfusion-imaging", "name": "Open Science Initiative for Perfusion Imaging", "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "total_projects": 9, "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -76,10 +79,14 @@ "2025": { "organizationCount": 2, "projectCount": 11 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.189Z" + "generated_at": "2026-02-19T13:36:01.969Z" } } \ No newline at end of file diff --git a/new-api-details/topics/medical-practice-management-solution.json b/new-api-details/topics/medical-practice-management-solution.json index 3ce39651..bc25986a 100644 --- a/new-api-details/topics/medical-practice-management-solution.json +++ b/new-api-details/topics/medical-practice-management-solution.json @@ -1,7 +1,7 @@ { "slug": "medical-practice-management-solution", "name": "medical practice management solution", - "published_at": "2026-01-25T16:06:29.473Z", + "published_at": "2026-02-19T13:36:02.567Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.473Z" + "generated_at": "2026-02-19T13:36:02.567Z" } } \ No newline at end of file diff --git a/new-api-details/topics/medical-record.json b/new-api-details/topics/medical-record.json index 468abfd6..3731aad9 100644 --- a/new-api-details/topics/medical-record.json +++ b/new-api-details/topics/medical-record.json @@ -1,10 +1,11 @@ { "slug": "medical-record", "name": "medical record", - "published_at": "2026-01-25T16:06:29.481Z", + "published_at": "2026-02-19T13:36:02.583Z", "organizationCount": 1, "projectCount": 94, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "openmrs", "name": "OpenMRS", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 94, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 8 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.481Z" + "generated_at": "2026-02-19T13:36:02.583Z" } } \ No newline at end of file diff --git a/new-api-details/topics/medical-records.json b/new-api-details/topics/medical-records.json index 2845a2d9..9ef6cc2d 100644 --- a/new-api-details/topics/medical-records.json +++ b/new-api-details/topics/medical-records.json @@ -1,10 +1,11 @@ { "slug": "medical-records", "name": "medical records", - "published_at": "2026-01-25T16:06:29.472Z", + "published_at": "2026-02-19T13:36:02.561Z", "organizationCount": 2, "projectCount": 97, "years": [ + 2026, 2025, 2024, 2023, @@ -17,22 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "openemr", - "name": "OpenEMR", - "first_year": 2020, - "last_year": 2020, - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2020 - ] - }, { "slug": "openmrs", "name": "OpenMRS", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 94, "is_currently_active": true, "active_years": [ @@ -45,7 +35,19 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "openemr", + "name": "OpenEMR", + "first_year": 2020, + "last_year": 2020, + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2020 ] } ], @@ -89,10 +91,14 @@ "2025": { "organizationCount": 1, "projectCount": 8 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.472Z" + "generated_at": "2026-02-19T13:36:02.561Z" } } \ No newline at end of file diff --git a/new-api-details/topics/medical-research.json b/new-api-details/topics/medical-research.json index 169bb5be..456ecae9 100644 --- a/new-api-details/topics/medical-research.json +++ b/new-api-details/topics/medical-research.json @@ -1,7 +1,7 @@ { "slug": "medical-research", "name": "medical research", - "published_at": "2026-01-25T16:06:29.148Z", + "published_at": "2026-02-19T13:36:01.806Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.148Z" + "generated_at": "2026-02-19T13:36:01.806Z" } } \ No newline at end of file diff --git a/new-api-details/topics/medical-simulation.json b/new-api-details/topics/medical-simulation.json index 8e7af661..ee5aae55 100644 --- a/new-api-details/topics/medical-simulation.json +++ b/new-api-details/topics/medical-simulation.json @@ -1,7 +1,7 @@ { "slug": "medical-simulation", "name": "medical simulation", - "published_at": "2026-01-25T16:06:29.147Z", + "published_at": "2026-02-19T13:36:01.805Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.147Z" + "generated_at": "2026-02-19T13:36:01.805Z" } } \ No newline at end of file diff --git a/new-api-details/topics/medicine.json b/new-api-details/topics/medicine.json index 825ef611..a3215dae 100644 --- a/new-api-details/topics/medicine.json +++ b/new-api-details/topics/medicine.json @@ -1,10 +1,11 @@ { "slug": "medicine", "name": "medicine", - "published_at": "2026-01-25T16:06:29.278Z", + "published_at": "2026-02-19T13:36:02.185Z", "organizationCount": 2, "projectCount": 34, "years": [ + 2026, 2023, 2022, 2021, @@ -18,9 +19,9 @@ "slug": "librehealth", "name": "LibreHealth", "first_year": 2017, - "last_year": 2023, + "last_year": 2026, "total_projects": 31, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, @@ -28,7 +29,8 @@ 2020, 2021, 2022, - 2023 + 2023, + 2026 ] }, { @@ -71,10 +73,14 @@ "2023": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.278Z" + "generated_at": "2026-02-19T13:36:02.185Z" } } \ No newline at end of file diff --git a/new-api-details/topics/membership-management.json b/new-api-details/topics/membership-management.json index 3b55a8f0..20d66614 100644 --- a/new-api-details/topics/membership-management.json +++ b/new-api-details/topics/membership-management.json @@ -1,7 +1,7 @@ { "slug": "membership-management", "name": "membership management", - "published_at": "2026-01-25T16:06:28.774Z", + "published_at": "2026-02-19T13:36:01.027Z", "organizationCount": 1, "projectCount": 22, "years": [ @@ -52,6 +52,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.774Z" + "generated_at": "2026-02-19T13:36:01.027Z" } } \ No newline at end of file diff --git a/new-api-details/topics/mentoring.json b/new-api-details/topics/mentoring.json index 0a7568b1..2078495d 100644 --- a/new-api-details/topics/mentoring.json +++ b/new-api-details/topics/mentoring.json @@ -1,7 +1,7 @@ { "slug": "mentoring", "name": "mentoring", - "published_at": "2026-01-25T16:06:29.253Z", + "published_at": "2026-02-19T13:36:02.152Z", "organizationCount": 1, "projectCount": 4, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.253Z" + "generated_at": "2026-02-19T13:36:02.152Z" } } \ No newline at end of file diff --git a/new-api-details/topics/mesh-generation.json b/new-api-details/topics/mesh-generation.json index b7077452..87b53f4c 100644 --- a/new-api-details/topics/mesh-generation.json +++ b/new-api-details/topics/mesh-generation.json @@ -1,7 +1,7 @@ { "slug": "mesh-generation", "name": "mesh generation", - "published_at": "2026-01-25T16:06:28.794Z", + "published_at": "2026-02-19T13:36:01.076Z", "organizationCount": 1, "projectCount": 10, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.794Z" + "generated_at": "2026-02-19T13:36:01.076Z" } } \ No newline at end of file diff --git a/new-api-details/topics/mesh-networks.json b/new-api-details/topics/mesh-networks.json index 26da69ae..8cc18185 100644 --- a/new-api-details/topics/mesh-networks.json +++ b/new-api-details/topics/mesh-networks.json @@ -1,10 +1,11 @@ { "slug": "mesh-networks", "name": "mesh-networks", - "published_at": "2026-01-25T16:06:29.504Z", + "published_at": "2026-02-19T13:36:02.643Z", "organizationCount": 1, "projectCount": 26, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "openwisp", "name": "OpenWISP", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 26, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.504Z" + "generated_at": "2026-02-19T13:36:02.643Z" } } \ No newline at end of file diff --git a/new-api-details/topics/mesh-processing.json b/new-api-details/topics/mesh-processing.json index b94b9835..4e4d1e9f 100644 --- a/new-api-details/topics/mesh-processing.json +++ b/new-api-details/topics/mesh-processing.json @@ -1,10 +1,11 @@ { "slug": "mesh-processing", "name": "mesh processing", - "published_at": "2026-01-25T16:06:28.651Z", + "published_at": "2026-02-19T13:36:00.981Z", "organizationCount": 1, "projectCount": 58, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "cgal-project", "name": "CGAL Project", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 58, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.651Z" + "generated_at": "2026-02-19T13:36:00.981Z" } } \ No newline at end of file diff --git a/new-api-details/topics/mesh.json b/new-api-details/topics/mesh.json index 7833c6de..b2734d15 100644 --- a/new-api-details/topics/mesh.json +++ b/new-api-details/topics/mesh.json @@ -1,10 +1,11 @@ { "slug": "mesh", "name": "mesh", - "published_at": "2026-01-25T16:06:29.510Z", + "published_at": "2026-02-19T13:36:01.552Z", "organizationCount": 2, "projectCount": 100, "years": [ + 2026, 2025, 2024, 2023, @@ -23,7 +24,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 74, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -40,7 +41,7 @@ "slug": "openwisp", "name": "OpenWISP", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 26, "is_currently_active": true, "active_years": [ @@ -52,7 +53,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -96,10 +98,14 @@ "2025": { "organizationCount": 2, "projectCount": 10 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.510Z" + "generated_at": "2026-02-19T13:36:01.552Z" } } \ No newline at end of file diff --git a/new-api-details/topics/message-correlation.json b/new-api-details/topics/message-correlation.json index e98c4a31..62f13040 100644 --- a/new-api-details/topics/message-correlation.json +++ b/new-api-details/topics/message-correlation.json @@ -1,7 +1,7 @@ { "slug": "message-correlation", "name": "message correlation", - "published_at": "2026-01-25T16:06:29.879Z", + "published_at": "2026-02-19T13:36:02.882Z", "organizationCount": 1, "projectCount": 12, "years": [ @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.879Z" + "generated_at": "2026-02-19T13:36:02.882Z" } } \ No newline at end of file diff --git a/new-api-details/topics/message-queue.json b/new-api-details/topics/message-queue.json index 8a7399aa..27ea5f03 100644 --- a/new-api-details/topics/message-queue.json +++ b/new-api-details/topics/message-queue.json @@ -1,7 +1,7 @@ { "slug": "message-queue", "name": "message queue", - "published_at": "2026-01-25T16:06:29.878Z", + "published_at": "2026-02-19T13:36:02.879Z", "organizationCount": 1, "projectCount": 12, "years": [ @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.878Z" + "generated_at": "2026-02-19T13:36:02.879Z" } } \ No newline at end of file diff --git a/new-api-details/topics/messaging.json b/new-api-details/topics/messaging.json index 08a9d3d9..15a35fc1 100644 --- a/new-api-details/topics/messaging.json +++ b/new-api-details/topics/messaging.json @@ -1,10 +1,11 @@ { "slug": "messaging", "name": "messaging", - "published_at": "2026-01-25T16:06:28.572Z", + "published_at": "2026-02-19T13:36:00.666Z", "organizationCount": 5, "projectCount": 188, "years": [ + 2026, 2025, 2024, 2023, @@ -18,36 +19,32 @@ ], "organizations": [ { - "slug": "beam-community", - "name": "Beam Community", - "first_year": 2016, - "last_year": 2018, - "total_projects": 19, - "is_currently_active": false, + "slug": "rocketchat", + "name": "rocket.chat", + "first_year": 2017, + "last_year": 2026, + "total_projects": 103, + "is_currently_active": true, "active_years": [ - 2016, 2017, - 2018 - ] - }, - { - "slug": "erlang-ecosystem-foundation", - "name": "Erlang Ecosystem Foundation", - "first_year": 2020, - "last_year": 2020, - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2020 + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { "slug": "jboss-community", "name": "JBoss Community", "first_year": 2016, - "last_year": 2022, + "last_year": 2026, "total_projects": 52, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -55,26 +52,21 @@ 2019, 2020, 2021, - 2022 + 2022, + 2026 ] }, { - "slug": "rocketchat", - "name": "rocket.chat", - "first_year": 2017, - "last_year": 2025, - "total_projects": 103, - "is_currently_active": true, + "slug": "beam-community", + "name": "Beam Community", + "first_year": 2016, + "last_year": 2018, + "total_projects": 19, + "is_currently_active": false, "active_years": [ + 2016, 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2018 ] }, { @@ -92,6 +84,17 @@ 2023, 2024 ] + }, + { + "slug": "erlang-ecosystem-foundation", + "name": "Erlang Ecosystem Foundation", + "first_year": 2020, + "last_year": 2020, + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2020 + ] } ], "yearlyStats": { @@ -134,10 +137,14 @@ "2025": { "organizationCount": 1, "projectCount": 19 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.572Z" + "generated_at": "2026-02-19T13:36:00.666Z" } } \ No newline at end of file diff --git a/new-api-details/topics/metadata.json b/new-api-details/topics/metadata.json index b45c2499..5e3ae519 100644 --- a/new-api-details/topics/metadata.json +++ b/new-api-details/topics/metadata.json @@ -1,10 +1,11 @@ { "slug": "metadata", "name": "metadata", - "published_at": "2026-01-25T16:06:29.341Z", + "published_at": "2026-02-19T13:36:02.282Z", "organizationCount": 3, "projectCount": 164, "years": [ + 2026, 2025, 2024, 2023, @@ -18,12 +19,12 @@ ], "organizations": [ { - "slug": "metabrainz-foundation-inc", - "name": "MetaBrainz Foundation Inc", + "slug": "red-hen-lab", + "name": "Red Hen Lab", "first_year": 2016, - "last_year": 2025, - "total_projects": 60, - "is_currently_active": true, + "last_year": 2024, + "total_projects": 88, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -33,44 +34,46 @@ 2021, 2022, 2023, - 2024, - 2025 + 2024 ] }, { - "slug": "mixxx", - "name": "Mixxx", + "slug": "metabrainz-foundation-inc", + "name": "MetaBrainz Foundation Inc", "first_year": 2016, - "last_year": 2025, - "total_projects": 16, + "last_year": 2026, + "total_projects": 60, "is_currently_active": true, "active_years": [ 2016, 2017, 2018, + 2019, 2020, + 2021, 2022, + 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "red-hen-lab", - "name": "Red Hen Lab", + "slug": "mixxx", + "name": "Mixxx", "first_year": 2016, - "last_year": 2024, - "total_projects": 88, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 16, + "is_currently_active": true, "active_years": [ 2016, 2017, 2018, - 2019, 2020, - 2021, 2022, - 2023, - 2024 + 2024, + 2025, + 2026 ] } ], @@ -114,10 +117,14 @@ "2025": { "organizationCount": 2, "projectCount": 9 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.341Z" + "generated_at": "2026-02-19T13:36:02.282Z" } } \ No newline at end of file diff --git a/new-api-details/topics/metrics.json b/new-api-details/topics/metrics.json index 5c5eb253..d76bd066 100644 --- a/new-api-details/topics/metrics.json +++ b/new-api-details/topics/metrics.json @@ -1,7 +1,7 @@ { "slug": "metrics", "name": "metrics", - "published_at": "2026-01-25T16:06:28.657Z", + "published_at": "2026-02-19T13:36:00.989Z", "organizationCount": 4, "projectCount": 78, "years": [ @@ -21,7 +21,7 @@ "first_year": 2018, "last_year": 2025, "total_projects": 29, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2018, 2019, @@ -37,7 +37,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -47,18 +47,6 @@ 2025 ] }, - { - "slug": "percona", - "name": "Percona", - "first_year": 2019, - "last_year": 2020, - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2019, - 2020 - ] - }, { "slug": "performance-co-pilot", "name": "Performance Co-Pilot", @@ -74,6 +62,18 @@ 2020, 2022 ] + }, + { + "slug": "percona", + "name": "Percona", + "first_year": 2019, + "last_year": 2020, + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2019, + 2020 + ] } ], "yearlyStats": { @@ -112,6 +112,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.657Z" + "generated_at": "2026-02-19T13:36:00.989Z" } } \ No newline at end of file diff --git a/new-api-details/topics/mhealth.json b/new-api-details/topics/mhealth.json index 22f91800..a5d10934 100644 --- a/new-api-details/topics/mhealth.json +++ b/new-api-details/topics/mhealth.json @@ -1,7 +1,7 @@ { "slug": "mhealth", "name": "mhealth", - "published_at": "2026-01-25T16:06:29.577Z", + "published_at": "2026-02-19T13:36:02.772Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.577Z" + "generated_at": "2026-02-19T13:36:02.773Z" } } \ No newline at end of file diff --git a/new-api-details/topics/micro-services.json b/new-api-details/topics/micro-services.json index adc0cfe6..7d352c23 100644 --- a/new-api-details/topics/micro-services.json +++ b/new-api-details/topics/micro-services.json @@ -1,7 +1,7 @@ { "slug": "micro-services", "name": "micro services", - "published_at": "2026-01-25T16:06:28.897Z", + "published_at": "2026-02-19T13:36:01.242Z", "organizationCount": 4, "projectCount": 32, "years": [ @@ -11,6 +11,18 @@ 2016 ], "organizations": [ + { + "slug": "wso2", + "name": "WSO2", + "first_year": 2016, + "last_year": 2017, + "total_projects": 20, + "is_currently_active": false, + "active_years": [ + 2016, + 2017 + ] + }, { "slug": "eclipse-vertx", "name": "Eclipse Vert.x", @@ -45,18 +57,6 @@ "active_years": [ 2022 ] - }, - { - "slug": "wso2", - "name": "WSO2", - "first_year": 2016, - "last_year": 2017, - "total_projects": 20, - "is_currently_active": false, - "active_years": [ - 2016, - 2017 - ] } ], "yearlyStats": { @@ -79,6 +79,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.897Z" + "generated_at": "2026-02-19T13:36:01.242Z" } } \ No newline at end of file diff --git a/new-api-details/topics/microfinance.json b/new-api-details/topics/microfinance.json index 7afc4086..92220d15 100644 --- a/new-api-details/topics/microfinance.json +++ b/new-api-details/topics/microfinance.json @@ -1,10 +1,11 @@ { "slug": "microfinance", "name": "microfinance", - "published_at": "2026-01-25T16:06:29.707Z", + "published_at": "2026-02-19T13:36:02.944Z", "organizationCount": 1, "projectCount": 102, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "the-mifos-initiative", "name": "The Mifos Initiative", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 102, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 13 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.707Z" + "generated_at": "2026-02-19T13:36:02.944Z" } } \ No newline at end of file diff --git a/new-api-details/topics/microkernel.json b/new-api-details/topics/microkernel.json index 1a1c1988..925de552 100644 --- a/new-api-details/topics/microkernel.json +++ b/new-api-details/topics/microkernel.json @@ -1,7 +1,7 @@ { "slug": "microkernel", "name": "microkernel", - "published_at": "2026-01-25T16:06:29.355Z", + "published_at": "2026-02-19T13:36:02.307Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.355Z" + "generated_at": "2026-02-19T13:36:02.307Z" } } \ No newline at end of file diff --git a/new-api-details/topics/microscopy.json b/new-api-details/topics/microscopy.json index 718643d7..41abccfa 100644 --- a/new-api-details/topics/microscopy.json +++ b/new-api-details/topics/microscopy.json @@ -1,7 +1,7 @@ { "slug": "microscopy", "name": "microscopy", - "published_at": "2026-01-25T16:06:29.821Z", + "published_at": "2026-02-19T13:36:00.904Z", "organizationCount": 1, "projectCount": 13, "years": [ @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.821Z" + "generated_at": "2026-02-19T13:36:00.904Z" } } \ No newline at end of file diff --git a/new-api-details/topics/microservices.json b/new-api-details/topics/microservices.json index ca59caca..0cc07ad7 100644 --- a/new-api-details/topics/microservices.json +++ b/new-api-details/topics/microservices.json @@ -1,10 +1,11 @@ { "slug": "microservices", "name": "microservices", - "published_at": "2026-01-25T16:06:29.201Z", + "published_at": "2026-02-19T13:36:01.748Z", "organizationCount": 3, "projectCount": 59, "years": [ + 2026, 2022, 2021, 2020, @@ -14,25 +15,13 @@ 2016 ], "organizations": [ - { - "slug": "grpc", - "name": "gRPC", - "first_year": 2016, - "last_year": 2018, - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2016, - 2018 - ] - }, { "slug": "jboss-community", "name": "JBoss Community", "first_year": 2016, - "last_year": 2022, + "last_year": 2026, "total_projects": 52, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -40,7 +29,8 @@ 2019, 2020, 2021, - 2022 + 2022, + 2026 ] }, { @@ -54,6 +44,18 @@ 2019, 2020 ] + }, + { + "slug": "grpc", + "name": "gRPC", + "first_year": 2016, + "last_year": 2018, + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2016, + 2018 + ] } ], "yearlyStats": { @@ -84,10 +86,14 @@ "2022": { "organizationCount": 1, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.201Z" + "generated_at": "2026-02-19T13:36:01.748Z" } } \ No newline at end of file diff --git a/new-api-details/topics/middleware.json b/new-api-details/topics/middleware.json index 6dc59f05..f59380b6 100644 --- a/new-api-details/topics/middleware.json +++ b/new-api-details/topics/middleware.json @@ -1,10 +1,11 @@ { "slug": "middleware", "name": "middleware", - "published_at": "2026-01-25T16:06:29.018Z", + "published_at": "2026-02-19T13:36:01.205Z", "organizationCount": 5, "projectCount": 54, "years": [ + 2026, 2025, 2024, 2023, @@ -18,14 +19,23 @@ ], "organizations": [ { - "slug": "dora-rs", - "name": "dora-rs", - "first_year": 2025, - "last_year": 2025, - "total_projects": 2, + "slug": "open-robotics", + "name": "Open Robotics", + "first_year": 2016, + "last_year": 2026, + "total_projects": 46, "is_currently_active": true, "active_years": [ - 2025 + 2016, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { @@ -54,22 +64,15 @@ ] }, { - "slug": "open-robotics", - "name": "Open Robotics", - "first_year": 2016, - "last_year": 2025, - "total_projects": 46, + "slug": "dora-rs", + "name": "dora-rs", + "first_year": 2025, + "last_year": 2026, + "total_projects": 2, "is_currently_active": true, "active_years": [ - 2016, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2025, + 2026 ] }, { @@ -124,10 +127,14 @@ "2025": { "organizationCount": 2, "projectCount": 11 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.018Z" + "generated_at": "2026-02-19T13:36:01.205Z" } } \ No newline at end of file diff --git a/new-api-details/topics/midi.json b/new-api-details/topics/midi.json index 1109374a..2dc0710b 100644 --- a/new-api-details/topics/midi.json +++ b/new-api-details/topics/midi.json @@ -1,7 +1,7 @@ { "slug": "midi", "name": "midi", - "published_at": "2026-01-25T16:06:29.382Z", + "published_at": "2026-02-19T13:36:02.369Z", "organizationCount": 1, "projectCount": 24, "years": [ @@ -76,6 +76,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.382Z" + "generated_at": "2026-02-19T13:36:02.369Z" } } \ No newline at end of file diff --git a/new-api-details/topics/migration.json b/new-api-details/topics/migration.json index 48904fde..65b46712 100644 --- a/new-api-details/topics/migration.json +++ b/new-api-details/topics/migration.json @@ -1,10 +1,11 @@ { "slug": "migration", "name": "migration", - "published_at": "2026-01-25T16:06:28.683Z", + "published_at": "2026-02-19T13:36:01.091Z", "organizationCount": 1, "projectCount": 18, "years": [ + 2026, 2025, 2024, 2023, @@ -18,7 +19,7 @@ "slug": "criu", "name": "CRIU", "first_year": 2019, - "last_year": 2025, + "last_year": 2026, "total_projects": 18, "is_currently_active": true, "active_years": [ @@ -28,7 +29,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -60,10 +62,14 @@ "2025": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.683Z" + "generated_at": "2026-02-19T13:36:01.091Z" } } \ No newline at end of file diff --git a/new-api-details/topics/minecraft.json b/new-api-details/topics/minecraft.json index f7a1c2a5..44e0657e 100644 --- a/new-api-details/topics/minecraft.json +++ b/new-api-details/topics/minecraft.json @@ -1,7 +1,7 @@ { "slug": "minecraft", "name": "minecraft", - "published_at": "2026-01-25T16:06:29.722Z", + "published_at": "2026-02-19T13:36:02.983Z", "organizationCount": 1, "projectCount": 43, "years": [ @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.722Z" + "generated_at": "2026-02-19T13:36:02.984Z" } } \ No newline at end of file diff --git a/new-api-details/topics/minifier.json b/new-api-details/topics/minifier.json index 4e0d6052..47631274 100644 --- a/new-api-details/topics/minifier.json +++ b/new-api-details/topics/minifier.json @@ -1,7 +1,7 @@ { "slug": "minifier", "name": "minifier", - "published_at": "2026-01-25T16:06:28.558Z", + "published_at": "2026-02-19T13:36:00.644Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.558Z" + "generated_at": "2026-02-19T13:36:00.644Z" } } \ No newline at end of file diff --git a/new-api-details/topics/misinformation.json b/new-api-details/topics/misinformation.json index fa7b5e6d..55554889 100644 --- a/new-api-details/topics/misinformation.json +++ b/new-api-details/topics/misinformation.json @@ -1,7 +1,7 @@ { "slug": "misinformation", "name": "misinformation", - "published_at": "2026-01-25T16:06:29.783Z", + "published_at": "2026-02-19T13:36:03.141Z", "organizationCount": 1, "projectCount": 4, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.783Z" + "generated_at": "2026-02-19T13:36:03.141Z" } } \ No newline at end of file diff --git a/new-api-details/topics/mission-control.json b/new-api-details/topics/mission-control.json index b7905153..84f29a59 100644 --- a/new-api-details/topics/mission-control.json +++ b/new-api-details/topics/mission-control.json @@ -1,10 +1,11 @@ { "slug": "mission-control", "name": "mission control", - "published_at": "2026-01-25T16:06:29.273Z", + "published_at": "2026-02-19T13:36:02.174Z", "organizationCount": 1, "projectCount": 7, "years": [ + 2026, 2024, 2022, 2021 @@ -14,13 +15,14 @@ "slug": "librecube-initiative", "name": "LibreCube Initiative", "first_year": 2021, - "last_year": 2024, + "last_year": 2026, "total_projects": 7, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2021, 2022, - 2024 + 2024, + 2026 ] } ], @@ -36,10 +38,14 @@ "2024": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.273Z" + "generated_at": "2026-02-19T13:36:02.174Z" } } \ No newline at end of file diff --git a/new-api-details/topics/ml-al.json b/new-api-details/topics/ml-al.json index 58e226c1..85d5aca2 100644 --- a/new-api-details/topics/ml-al.json +++ b/new-api-details/topics/ml-al.json @@ -1,7 +1,7 @@ { "slug": "ml-al", "name": "ML/AL", - "published_at": "2026-01-25T16:06:28.843Z", + "published_at": "2026-02-19T13:36:01.182Z", "organizationCount": 1, "projectCount": 27, "years": [ @@ -18,7 +18,7 @@ "first_year": 2021, "last_year": 2025, "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2021, 2022, @@ -52,6 +52,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.843Z" + "generated_at": "2026-02-19T13:36:01.183Z" } } \ No newline at end of file diff --git a/new-api-details/topics/ml-inference.json b/new-api-details/topics/ml-inference.json index d337dad8..fdbe4b36 100644 --- a/new-api-details/topics/ml-inference.json +++ b/new-api-details/topics/ml-inference.json @@ -1,7 +1,7 @@ { "slug": "ml-inference", "name": "ml-inference", - "published_at": "2026-01-25T16:06:29.337Z", + "published_at": "2026-02-19T13:36:02.273Z", "organizationCount": 1, "projectCount": 6, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.337Z" + "generated_at": "2026-02-19T13:36:02.273Z" } } \ No newline at end of file diff --git a/new-api-details/topics/ml-ops.json b/new-api-details/topics/ml-ops.json new file mode 100644 index 00000000..9aca2d7c --- /dev/null +++ b/new-api-details/topics/ml-ops.json @@ -0,0 +1,33 @@ +{ + "slug": "ml-ops", + "name": "ML Ops", + "published_at": "2026-02-19T13:36:02.291Z", + "organizationCount": 1, + "projectCount": 0, + "years": [ + 2026 + ], + "organizations": [ + { + "slug": "metaflow", + "name": "Metaflow", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + } + ], + "yearlyStats": { + "2026": { + "organizationCount": 1, + "projectCount": 0 + } + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:36:02.291Z" + } +} \ No newline at end of file diff --git a/new-api-details/topics/mlearning.json b/new-api-details/topics/mlearning.json index 2aba71f7..164de898 100644 --- a/new-api-details/topics/mlearning.json +++ b/new-api-details/topics/mlearning.json @@ -1,7 +1,7 @@ { "slug": "mlearning", "name": "mlearning", - "published_at": "2026-01-25T16:06:28.624Z", + "published_at": "2026-02-19T13:36:00.891Z", "organizationCount": 1, "projectCount": 4, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.624Z" + "generated_at": "2026-02-19T13:36:00.891Z" } } \ No newline at end of file diff --git a/new-api-details/topics/mlops.json b/new-api-details/topics/mlops.json index d813142f..c293236e 100644 --- a/new-api-details/topics/mlops.json +++ b/new-api-details/topics/mlops.json @@ -1,7 +1,7 @@ { "slug": "mlops", "name": "MLOps", - "published_at": "2026-01-25T16:06:28.712Z", + "published_at": "2026-02-19T13:36:00.967Z", "organizationCount": 1, "projectCount": 6, "years": [ @@ -15,7 +15,7 @@ "first_year": 2022, "last_year": 2025, "total_projects": 6, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2025 @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.712Z" + "generated_at": "2026-02-19T13:36:00.967Z" } } \ No newline at end of file diff --git a/new-api-details/topics/mobian.json b/new-api-details/topics/mobian.json index c6487214..5003bfc0 100644 --- a/new-api-details/topics/mobian.json +++ b/new-api-details/topics/mobian.json @@ -1,10 +1,11 @@ { "slug": "mobian", "name": "mobian", - "published_at": "2026-01-25T16:06:28.833Z", + "published_at": "2026-02-19T13:36:01.171Z", "organizationCount": 1, "projectCount": 78, "years": [ + 2026, 2025, 2024, 2022, @@ -19,7 +20,7 @@ "slug": "debian", "name": "Debian", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 78, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.833Z" + "generated_at": "2026-02-19T13:36:01.171Z" } } \ No newline at end of file diff --git a/new-api-details/topics/mobile-app.json b/new-api-details/topics/mobile-app.json index 0ad2d6e1..57fba5c0 100644 --- a/new-api-details/topics/mobile-app.json +++ b/new-api-details/topics/mobile-app.json @@ -1,7 +1,7 @@ { "slug": "mobile-app", "name": "mobile app", - "published_at": "2026-01-25T16:06:28.625Z", + "published_at": "2026-02-19T13:36:00.892Z", "organizationCount": 1, "projectCount": 4, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.625Z" + "generated_at": "2026-02-19T13:36:00.892Z" } } \ No newline at end of file diff --git a/new-api-details/topics/mobile-applications.json b/new-api-details/topics/mobile-applications.json index 7e70239e..5381c1f5 100644 --- a/new-api-details/topics/mobile-applications.json +++ b/new-api-details/topics/mobile-applications.json @@ -1,10 +1,11 @@ { "slug": "mobile-applications", "name": "mobile applications", - "published_at": "2026-01-25T16:06:29.603Z", + "published_at": "2026-02-19T13:36:02.818Z", "organizationCount": 3, "projectCount": 295, "years": [ + 2026, 2025, 2024, 2023, @@ -35,22 +36,11 @@ 2023 ] }, - { - "slug": "systers-community", - "name": "Systers Community", - "first_year": 2018, - "last_year": 2018, - "total_projects": 11, - "is_currently_active": false, - "active_years": [ - 2018 - ] - }, { "slug": "zulip", "name": "Zulip", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 135, "is_currently_active": true, "active_years": [ @@ -63,7 +53,19 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "systers-community", + "name": "Systers Community", + "first_year": 2018, + "last_year": 2018, + "total_projects": 11, + "is_currently_active": false, + "active_years": [ + 2018 ] } ], @@ -107,10 +109,14 @@ "2025": { "organizationCount": 1, "projectCount": 14 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.603Z" + "generated_at": "2026-02-19T13:36:02.818Z" } } \ No newline at end of file diff --git a/new-api-details/topics/mobile-apps.json b/new-api-details/topics/mobile-apps.json index b1da72e6..7530cdcc 100644 --- a/new-api-details/topics/mobile-apps.json +++ b/new-api-details/topics/mobile-apps.json @@ -1,10 +1,11 @@ { "slug": "mobile-apps", "name": "mobile-apps", - "published_at": "2026-01-25T16:06:28.457Z", + "published_at": "2026-02-19T13:36:00.440Z", "organizationCount": 6, "projectCount": 191, "years": [ + 2026, 2025, 2024, 2023, @@ -18,40 +19,30 @@ ], "organizations": [ { - "slug": "amahi", - "name": "Amahi", - "first_year": 2017, - "last_year": 2020, - "total_projects": 18, - "is_currently_active": false, + "slug": "mit-app-inventor", + "name": "MIT App Inventor", + "first_year": 2016, + "last_year": 2026, + "total_projects": 45, + "is_currently_active": true, "active_years": [ + 2016, 2017, - 2018, 2019, - 2020 - ] - }, - { - "slug": "dart", - "name": "Dart", - "first_year": 2020, - "last_year": 2025, - "total_projects": 22, - "is_currently_active": true, - "active_years": [ 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "drupal-association", "name": "Drupal Association", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 39, "is_currently_active": true, "active_years": [ @@ -63,6 +54,22 @@ 2022, 2023, 2024, + 2025, + 2026 + ] + }, + { + "slug": "the-palisadoes-foundation", + "name": "The Palisadoes Foundation", + "first_year": 2021, + "last_year": 2025, + "total_projects": 36, + "is_currently_active": false, + "active_years": [ + 2021, + 2022, + 2023, + 2024, 2025 ] }, @@ -70,9 +77,9 @@ "slug": "librehealth", "name": "LibreHealth", "first_year": 2017, - "last_year": 2023, + "last_year": 2026, "total_projects": 31, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, @@ -80,41 +87,39 @@ 2020, 2021, 2022, - 2023 + 2023, + 2026 ] }, { - "slug": "mit-app-inventor", - "name": "MIT App Inventor", - "first_year": 2016, - "last_year": 2025, - "total_projects": 45, + "slug": "dart", + "name": "Dart", + "first_year": 2020, + "last_year": 2026, + "total_projects": 22, "is_currently_active": true, "active_years": [ - 2016, - 2017, - 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "the-palisadoes-foundation", - "name": "The Palisadoes Foundation", - "first_year": 2021, - "last_year": 2025, - "total_projects": 36, - "is_currently_active": true, + "slug": "amahi", + "name": "Amahi", + "first_year": 2017, + "last_year": 2020, + "total_projects": 18, + "is_currently_active": false, "active_years": [ - 2021, - 2022, - 2023, - 2024, - 2025 + 2017, + 2018, + 2019, + 2020 ] } ], @@ -158,10 +163,14 @@ "2025": { "organizationCount": 5, "projectCount": 29 + }, + "2026": { + "organizationCount": 6, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.457Z" + "generated_at": "2026-02-19T13:36:00.440Z" } } \ No newline at end of file diff --git a/new-api-details/topics/mobile-banking.json b/new-api-details/topics/mobile-banking.json index ad8799cb..eb13c84a 100644 --- a/new-api-details/topics/mobile-banking.json +++ b/new-api-details/topics/mobile-banking.json @@ -1,10 +1,11 @@ { "slug": "mobile-banking", "name": "mobile banking", - "published_at": "2026-01-25T16:06:29.705Z", + "published_at": "2026-02-19T13:36:02.941Z", "organizationCount": 1, "projectCount": 102, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "the-mifos-initiative", "name": "The Mifos Initiative", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 102, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 13 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.705Z" + "generated_at": "2026-02-19T13:36:02.941Z" } } \ No newline at end of file diff --git a/new-api-details/topics/mobile-development.json b/new-api-details/topics/mobile-development.json index 668e82dc..fd464cdf 100644 --- a/new-api-details/topics/mobile-development.json +++ b/new-api-details/topics/mobile-development.json @@ -1,10 +1,11 @@ { "slug": "mobile-development", "name": "mobile development", - "published_at": "2026-01-25T16:06:29.200Z", + "published_at": "2026-02-19T13:36:02.021Z", "organizationCount": 2, "projectCount": 61, "years": [ + 2026, 2022, 2021, 2020, @@ -18,9 +19,9 @@ "slug": "jboss-community", "name": "JBoss Community", "first_year": 2016, - "last_year": 2022, + "last_year": 2026, "total_projects": 52, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -28,7 +29,8 @@ 2019, 2020, 2021, - 2022 + 2022, + 2026 ] }, { @@ -71,10 +73,14 @@ "2022": { "organizationCount": 1, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.200Z" + "generated_at": "2026-02-19T13:36:02.021Z" } } \ No newline at end of file diff --git a/new-api-details/topics/mobile-programming.json b/new-api-details/topics/mobile-programming.json index 294b14ea..d8333fa7 100644 --- a/new-api-details/topics/mobile-programming.json +++ b/new-api-details/topics/mobile-programming.json @@ -1,10 +1,11 @@ { "slug": "mobile-programming", "name": "mobile programming", - "published_at": "2026-01-25T16:06:28.460Z", + "published_at": "2026-02-19T13:36:00.452Z", "organizationCount": 2, "projectCount": 88, "years": [ + 2026, 2025, 2024, 2023, @@ -17,22 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "anitaborg-open-source", - "name": "AnitaB.org Open Source", - "first_year": 2020, - "last_year": 2020, - "total_projects": 4, - "is_currently_active": false, - "active_years": [ - 2020 - ] - }, { "slug": "international-catrobat-association", "name": "International Catrobat Association", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 84, "is_currently_active": true, "active_years": [ @@ -45,7 +35,19 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "anitaborg-open-source", + "name": "AnitaB.org Open Source", + "first_year": 2020, + "last_year": 2020, + "total_projects": 4, + "is_currently_active": false, + "active_years": [ + 2020 ] } ], @@ -89,10 +91,14 @@ "2025": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.460Z" + "generated_at": "2026-02-19T13:36:00.452Z" } } \ No newline at end of file diff --git a/new-api-details/topics/mobile-robots.json b/new-api-details/topics/mobile-robots.json index f0840ef0..99d4a16f 100644 --- a/new-api-details/topics/mobile-robots.json +++ b/new-api-details/topics/mobile-robots.json @@ -1,7 +1,7 @@ { "slug": "mobile-robots", "name": "mobile robots", - "published_at": "2026-01-25T16:06:29.363Z", + "published_at": "2026-02-19T13:36:02.326Z", "organizationCount": 1, "projectCount": 8, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.363Z" + "generated_at": "2026-02-19T13:36:02.326Z" } } \ No newline at end of file diff --git a/new-api-details/topics/mobile-security.json b/new-api-details/topics/mobile-security.json index e32876f9..9b5bb4f4 100644 --- a/new-api-details/topics/mobile-security.json +++ b/new-api-details/topics/mobile-security.json @@ -1,10 +1,11 @@ { "slug": "mobile-security", "name": "mobile security", - "published_at": "2026-01-25T16:06:29.421Z", + "published_at": "2026-02-19T13:36:02.670Z", "organizationCount": 1, "projectCount": 102, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "owasp-foundation", "name": "OWASP Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 102, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 15 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.422Z" + "generated_at": "2026-02-19T13:36:02.670Z" } } \ No newline at end of file diff --git a/new-api-details/topics/mobile-streaming.json b/new-api-details/topics/mobile-streaming.json index 894df96c..5e0d61c4 100644 --- a/new-api-details/topics/mobile-streaming.json +++ b/new-api-details/topics/mobile-streaming.json @@ -1,7 +1,7 @@ { "slug": "mobile-streaming", "name": "mobile streaming", - "published_at": "2026-01-25T16:06:28.451Z", + "published_at": "2026-02-19T13:36:00.424Z", "organizationCount": 1, "projectCount": 18, "years": [ @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.451Z" + "generated_at": "2026-02-19T13:36:00.424Z" } } \ No newline at end of file diff --git a/new-api-details/topics/mobile.json b/new-api-details/topics/mobile.json index d25e429d..1d7beb13 100644 --- a/new-api-details/topics/mobile.json +++ b/new-api-details/topics/mobile.json @@ -1,10 +1,11 @@ { "slug": "mobile", "name": "mobile", - "published_at": "2026-01-25T16:06:28.390Z", + "published_at": "2026-02-19T13:36:00.453Z", "organizationCount": 24, "projectCount": 1167, "years": [ + 2026, 2025, 2024, 2023, @@ -18,38 +19,14 @@ ], "organizations": [ { - "slug": "anitaborg-open-source", - "name": "AnitaB.org Open Source", - "first_year": 2020, - "last_year": 2020, - "total_projects": 4, - "is_currently_active": false, - "active_years": [ - 2020 - ] - }, - { - "slug": "ankidroid", - "name": "AnkiDroid", - "first_year": 2021, - "last_year": 2025, - "total_projects": 10, - "is_currently_active": true, - "active_years": [ - 2021, - 2022, - 2024, - 2025 - ] - }, - { - "slug": "aossie", - "name": "AOSSIE", - "first_year": 2017, - "last_year": 2025, - "total_projects": 117, + "slug": "kde-community", + "name": "KDE Community", + "first_year": 2016, + "last_year": 2026, + "total_projects": 167, "is_currently_active": true, "active_years": [ + 2016, 2017, 2018, 2019, @@ -58,38 +35,51 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "beeware-project", - "name": "BeeWare Project", - "first_year": 2017, - "last_year": 2018, - "total_projects": 5, + "slug": "score-lab", + "name": "SCoRe Lab", + "first_year": 2016, + "last_year": 2023, + "total_projects": 149, "is_currently_active": false, "active_years": [ + 2016, 2017, - 2018 + 2018, + 2019, + 2020, + 2021, + 2022, + 2023 ] }, { - "slug": "c2si", - "name": "C2SI", - "first_year": 2024, - "last_year": 2024, - "total_projects": 12, - "is_currently_active": false, + "slug": "fossasia", + "name": "FOSSASIA", + "first_year": 2016, + "last_year": 2026, + "total_projects": 140, + "is_currently_active": true, "active_years": [ - 2024 + 2016, + 2017, + 2018, + 2019, + 2024, + 2025, + 2026 ] }, { - "slug": "ccextractor-development", - "name": "CCExtractor Development", + "slug": "zulip", + "name": "Zulip", "first_year": 2016, - "last_year": 2025, - "total_projects": 80, + "last_year": 2026, + "total_projects": 135, "is_currently_active": true, "active_years": [ 2016, @@ -101,27 +91,36 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "conversationsim", - "name": "Conversations.im", + "slug": "aossie", + "name": "AOSSIE", "first_year": 2017, - "last_year": 2018, - "total_projects": 4, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 117, + "is_currently_active": true, "active_years": [ 2017, - 2018 + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "fedora-project", - "name": "Fedora Project", + "slug": "the-mifos-initiative", + "name": "The Mifos Initiative", "first_year": 2016, - "last_year": 2025, - "total_projects": 27, + "last_year": 2026, + "total_projects": 102, "is_currently_active": true, "active_years": [ 2016, @@ -129,55 +128,41 @@ 2018, 2019, 2020, - 2025 + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "fossasia", - "name": "FOSSASIA", + "slug": "ccextractor-development", + "name": "CCExtractor Development", "first_year": 2016, - "last_year": 2025, - "total_projects": 140, + "last_year": 2026, + "total_projects": 80, "is_currently_active": true, "active_years": [ 2016, 2017, 2018, 2019, + 2020, + 2021, + 2022, + 2023, 2024, - 2025 - ] - }, - { - "slug": "green-navigation", - "name": "Green Navigation", - "first_year": 2016, - "last_year": 2017, - "total_projects": 8, - "is_currently_active": false, - "active_years": [ - 2016, - 2017 - ] - }, - { - "slug": "health-information-systems-programme", - "name": "Health Information Systems Programme", - "first_year": 2016, - "last_year": 2016, - "total_projects": 6, - "is_currently_active": false, - "active_years": [ - 2016 + 2025, + 2026 ] }, { "slug": "jboss-community", "name": "JBoss Community", "first_year": 2016, - "last_year": 2022, + "last_year": 2026, "total_projects": 52, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -185,41 +170,38 @@ 2019, 2020, 2021, - 2022 + 2022, + 2026 ] }, { - "slug": "kde-community", - "name": "KDE Community", + "slug": "mit-app-inventor", + "name": "MIT App Inventor", "first_year": 2016, - "last_year": 2025, - "total_projects": 167, + "last_year": 2026, + "total_projects": 45, "is_currently_active": true, "active_years": [ 2016, 2017, - 2018, 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "mit-app-inventor", - "name": "MIT App Inventor", - "first_year": 2016, + "slug": "the-palisadoes-foundation", + "name": "The Palisadoes Foundation", + "first_year": 2021, "last_year": 2025, - "total_projects": 45, - "is_currently_active": true, + "total_projects": 36, + "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2019, - 2020, 2021, 2022, 2023, @@ -228,29 +210,72 @@ ] }, { - "slug": "open-data-kit", - "name": "Open Data Kit", - "first_year": 2017, - "last_year": 2019, - "total_projects": 5, + "slug": "systers-an-anita-borg-institute-community", + "name": "Systers, an Anita Borg Institute community", + "first_year": 2016, + "last_year": 2017, + "total_projects": 30, + "is_currently_active": false, + "active_years": [ + 2016, + 2017 + ] + }, + { + "slug": "fedora-project", + "name": "Fedora Project", + "first_year": 2016, + "last_year": 2025, + "total_projects": 27, "is_currently_active": false, "active_years": [ + 2016, 2017, 2018, - 2019 + 2019, + 2020, + 2025 + ] + }, + { + "slug": "c2si", + "name": "C2SI", + "first_year": 2024, + "last_year": 2026, + "total_projects": 12, + "is_currently_active": true, + "active_years": [ + 2024, + 2026 + ] + }, + { + "slug": "ankidroid", + "name": "AnkiDroid", + "first_year": 2021, + "last_year": 2026, + "total_projects": 10, + "is_currently_active": true, + "active_years": [ + 2021, + 2022, + 2024, + 2025, + 2026 ] }, { "slug": "open-food-facts", "name": "Open Food Facts", "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "total_projects": 10, "is_currently_active": true, "active_years": [ 2018, 2022, - 2025 + 2025, + 2026 ] }, { @@ -259,7 +284,7 @@ "first_year": 2022, "last_year": 2025, "total_projects": 10, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2023, @@ -268,8 +293,8 @@ ] }, { - "slug": "physical-web-project", - "name": "Physical Web Project", + "slug": "green-navigation", + "name": "Green Navigation", "first_year": 2016, "last_year": 2017, "total_projects": 8, @@ -280,99 +305,86 @@ ] }, { - "slug": "robolectric", - "name": "Robolectric", - "first_year": 2022, - "last_year": 2024, - "total_projects": 5, + "slug": "physical-web-project", + "name": "Physical Web Project", + "first_year": 2016, + "last_year": 2017, + "total_projects": 8, "is_currently_active": false, "active_years": [ - 2022, - 2024 + 2016, + 2017 ] }, { - "slug": "score-lab", - "name": "SCoRe Lab", + "slug": "health-information-systems-programme", + "name": "Health Information Systems Programme", "first_year": 2016, - "last_year": 2023, - "total_projects": 149, + "last_year": 2016, + "total_projects": 6, "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023 + 2016 ] }, { - "slug": "systers-an-anita-borg-institute-community", - "name": "Systers, an Anita Borg Institute community", - "first_year": 2016, - "last_year": 2017, - "total_projects": 30, + "slug": "beeware-project", + "name": "BeeWare Project", + "first_year": 2017, + "last_year": 2018, + "total_projects": 5, "is_currently_active": false, "active_years": [ - 2016, - 2017 + 2017, + 2018 ] }, { - "slug": "the-mifos-initiative", - "name": "The Mifos Initiative", - "first_year": 2016, - "last_year": 2025, - "total_projects": 102, - "is_currently_active": true, + "slug": "open-data-kit", + "name": "Open Data Kit", + "first_year": 2017, + "last_year": 2019, + "total_projects": 5, + "is_currently_active": false, "active_years": [ - 2016, 2017, 2018, - 2019, - 2020, - 2022, - 2023, - 2024, - 2025 + 2019 ] }, { - "slug": "the-palisadoes-foundation", - "name": "The Palisadoes Foundation", - "first_year": 2021, - "last_year": 2025, - "total_projects": 36, - "is_currently_active": true, + "slug": "robolectric", + "name": "Robolectric", + "first_year": 2022, + "last_year": 2024, + "total_projects": 5, + "is_currently_active": false, "active_years": [ - 2021, 2022, - 2023, - 2024, - 2025 + 2024 ] }, { - "slug": "zulip", - "name": "Zulip", - "first_year": 2016, - "last_year": 2025, - "total_projects": 135, - "is_currently_active": true, + "slug": "anitaborg-open-source", + "name": "AnitaB.org Open Source", + "first_year": 2020, + "last_year": 2020, + "total_projects": 4, + "is_currently_active": false, + "active_years": [ + 2020 + ] + }, + { + "slug": "conversationsim", + "name": "Conversations.im", + "first_year": 2017, + "last_year": 2018, + "total_projects": 4, + "is_currently_active": false, "active_years": [ - 2016, 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2018 ] } ], @@ -416,10 +428,14 @@ "2025": { "organizationCount": 12, "projectCount": 116 + }, + "2026": { + "organizationCount": 11, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.390Z" + "generated_at": "2026-02-19T13:36:00.453Z" } } \ No newline at end of file diff --git a/new-api-details/topics/mock-and-stubs-generation.json b/new-api-details/topics/mock-and-stubs-generation.json index 25a7fb2e..17853992 100644 --- a/new-api-details/topics/mock-and-stubs-generation.json +++ b/new-api-details/topics/mock-and-stubs-generation.json @@ -1,7 +1,7 @@ { "slug": "mock-and-stubs-generation", "name": "Mock and Stubs Generation", - "published_at": "2026-01-25T16:06:29.237Z", + "published_at": "2026-02-19T13:36:02.100Z", "organizationCount": 1, "projectCount": 11, "years": [ @@ -16,7 +16,7 @@ "first_year": 2023, "last_year": 2025, "total_projects": 11, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2023, 2024, @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.237Z" + "generated_at": "2026-02-19T13:36:02.100Z" } } \ No newline at end of file diff --git a/new-api-details/topics/modding.json b/new-api-details/topics/modding.json index 1d395a58..6754df1d 100644 --- a/new-api-details/topics/modding.json +++ b/new-api-details/topics/modding.json @@ -1,7 +1,7 @@ { "slug": "modding", "name": "modding", - "published_at": "2026-01-25T16:06:29.723Z", + "published_at": "2026-02-19T13:36:02.985Z", "organizationCount": 1, "projectCount": 43, "years": [ @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.723Z" + "generated_at": "2026-02-19T13:36:02.985Z" } } \ No newline at end of file diff --git a/new-api-details/topics/model-checking.json b/new-api-details/topics/model-checking.json index e67530cb..d235888f 100644 --- a/new-api-details/topics/model-checking.json +++ b/new-api-details/topics/model-checking.json @@ -1,10 +1,11 @@ { "slug": "model-checking", "name": "model checking", - "published_at": "2026-01-25T16:06:29.685Z", + "published_at": "2026-02-19T13:36:02.917Z", "organizationCount": 1, "projectCount": 46, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "the-jpf-team", "name": "The JPF team", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 46, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.685Z" + "generated_at": "2026-02-19T13:36:02.917Z" } } \ No newline at end of file diff --git a/new-api-details/topics/model-serving.json b/new-api-details/topics/model-serving.json new file mode 100644 index 00000000..23fcb09b --- /dev/null +++ b/new-api-details/topics/model-serving.json @@ -0,0 +1,57 @@ +{ + "slug": "model-serving", + "name": "Model Serving", + "published_at": "2026-02-19T13:36:02.641Z", + "organizationCount": 1, + "projectCount": 32, + "years": [ + 2026, + 2025, + 2024, + 2023, + 2022 + ], + "organizations": [ + { + "slug": "openvino-toolkit", + "name": "OpenVINO Toolkit", + "first_year": 2022, + "last_year": 2026, + "total_projects": 32, + "is_currently_active": true, + "active_years": [ + 2022, + 2023, + 2024, + 2025, + 2026 + ] + } + ], + "yearlyStats": { + "2022": { + "organizationCount": 1, + "projectCount": 3 + }, + "2023": { + "organizationCount": 1, + "projectCount": 5 + }, + "2024": { + "organizationCount": 1, + "projectCount": 8 + }, + "2025": { + "organizationCount": 1, + "projectCount": 16 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 + } + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:36:02.641Z" + } +} \ No newline at end of file diff --git a/new-api-details/topics/modeling-optimization.json b/new-api-details/topics/modeling-optimization.json index 980abefc..f308d8d9 100644 --- a/new-api-details/topics/modeling-optimization.json +++ b/new-api-details/topics/modeling-optimization.json @@ -1,7 +1,7 @@ { "slug": "modeling-optimization", "name": "modeling & optimization", - "published_at": "2026-01-25T16:06:29.763Z", + "published_at": "2026-02-19T13:36:03.110Z", "organizationCount": 1, "projectCount": 6, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.763Z" + "generated_at": "2026-02-19T13:36:03.110Z" } } \ No newline at end of file diff --git a/new-api-details/topics/modeling.json b/new-api-details/topics/modeling.json index 777684d0..1ced2a0a 100644 --- a/new-api-details/topics/modeling.json +++ b/new-api-details/topics/modeling.json @@ -1,10 +1,11 @@ { "slug": "modeling", "name": "modeling", - "published_at": "2026-01-25T16:06:28.609Z", + "published_at": "2026-02-19T13:36:00.779Z", "organizationCount": 2, "projectCount": 341, "years": [ + 2026, 2025, 2024, 2023, @@ -18,11 +19,11 @@ ], "organizations": [ { - "slug": "blender-foundation", - "name": "Blender Foundation", + "slug": "python-software-foundation", + "name": "Python Software Foundation", "first_year": 2016, - "last_year": 2025, - "total_projects": 64, + "last_year": 2026, + "total_projects": 277, "is_currently_active": true, "active_years": [ 2016, @@ -34,15 +35,16 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "python-software-foundation", - "name": "Python Software Foundation", + "slug": "blender-foundation", + "name": "Blender Foundation", "first_year": 2016, - "last_year": 2025, - "total_projects": 277, + "last_year": 2026, + "total_projects": 64, "is_currently_active": true, "active_years": [ 2016, @@ -54,7 +56,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -98,10 +101,14 @@ "2025": { "organizationCount": 2, "projectCount": 25 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.609Z" + "generated_at": "2026-02-19T13:36:00.779Z" } } \ No newline at end of file diff --git a/new-api-details/topics/modelling.json b/new-api-details/topics/modelling.json index edd79396..8e03915d 100644 --- a/new-api-details/topics/modelling.json +++ b/new-api-details/topics/modelling.json @@ -1,10 +1,11 @@ { "slug": "modelling", "name": "Modelling", - "published_at": "2026-01-25T16:06:29.538Z", + "published_at": "2026-02-19T13:36:02.702Z", "organizationCount": 1, "projectCount": 32, "years": [ + 2026, 2025, 2023, 2021, @@ -16,7 +17,7 @@ "slug": "pharo-consortium", "name": "Pharo Consortium", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 32, "is_currently_active": true, "active_years": [ @@ -24,7 +25,8 @@ 2019, 2021, 2023, - 2025 + 2025, + 2026 ] } ], @@ -48,10 +50,14 @@ "2025": { "organizationCount": 1, "projectCount": 8 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.538Z" + "generated_at": "2026-02-19T13:36:02.702Z" } } \ No newline at end of file diff --git a/new-api-details/topics/molecular-analysis.json b/new-api-details/topics/molecular-analysis.json index ce8fb918..ad5da898 100644 --- a/new-api-details/topics/molecular-analysis.json +++ b/new-api-details/topics/molecular-analysis.json @@ -1,7 +1,7 @@ { "slug": "molecular-analysis", "name": "molecular analysis", - "published_at": "2026-01-25T16:06:29.314Z", + "published_at": "2026-02-19T13:36:02.386Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.314Z" + "generated_at": "2026-02-19T13:36:02.386Z" } } \ No newline at end of file diff --git a/new-api-details/topics/molecular-dynamics.json b/new-api-details/topics/molecular-dynamics.json index 20e09927..d64dd979 100644 --- a/new-api-details/topics/molecular-dynamics.json +++ b/new-api-details/topics/molecular-dynamics.json @@ -1,10 +1,11 @@ { "slug": "molecular-dynamics", "name": "molecular dynamics", - "published_at": "2026-01-25T16:06:29.303Z", + "published_at": "2026-02-19T13:36:02.258Z", "organizationCount": 1, "projectCount": 16, "years": [ + 2026, 2025, 2024, 2023, @@ -17,7 +18,7 @@ "slug": "mdanalysis", "name": "MDAnalysis", "first_year": 2020, - "last_year": 2025, + "last_year": 2026, "total_projects": 16, "is_currently_active": true, "active_years": [ @@ -26,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -54,10 +56,14 @@ "2025": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.303Z" + "generated_at": "2026-02-19T13:36:02.258Z" } } \ No newline at end of file diff --git a/new-api-details/topics/molecular-networking.json b/new-api-details/topics/molecular-networking.json index 04ae517d..36327011 100644 --- a/new-api-details/topics/molecular-networking.json +++ b/new-api-details/topics/molecular-networking.json @@ -1,7 +1,7 @@ { "slug": "molecular-networking", "name": "molecular networking", - "published_at": "2026-01-25T16:06:29.314Z", + "published_at": "2026-02-19T13:36:02.387Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.314Z" + "generated_at": "2026-02-19T13:36:02.387Z" } } \ No newline at end of file diff --git a/new-api-details/topics/molecular-simulation.json b/new-api-details/topics/molecular-simulation.json index eaaa7c51..9324c337 100644 --- a/new-api-details/topics/molecular-simulation.json +++ b/new-api-details/topics/molecular-simulation.json @@ -1,10 +1,11 @@ { "slug": "molecular-simulation", "name": "molecular simulation", - "published_at": "2026-01-25T16:06:29.302Z", + "published_at": "2026-02-19T13:36:02.257Z", "organizationCount": 1, "projectCount": 16, "years": [ + 2026, 2025, 2024, 2023, @@ -17,7 +18,7 @@ "slug": "mdanalysis", "name": "MDAnalysis", "first_year": 2020, - "last_year": 2025, + "last_year": 2026, "total_projects": 16, "is_currently_active": true, "active_years": [ @@ -26,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -54,10 +56,14 @@ "2025": { "organizationCount": 2, "projectCount": 8 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.302Z" + "generated_at": "2026-02-19T13:36:02.257Z" } } \ No newline at end of file diff --git a/new-api-details/topics/monitoring.json b/new-api-details/topics/monitoring.json index 002496e7..cd312739 100644 --- a/new-api-details/topics/monitoring.json +++ b/new-api-details/topics/monitoring.json @@ -1,10 +1,11 @@ { "slug": "monitoring", "name": "monitoring", - "published_at": "2026-01-25T16:06:28.583Z", + "published_at": "2026-02-19T13:36:00.684Z", "organizationCount": 10, "projectCount": 276, "years": [ + 2026, 2025, 2024, 2023, @@ -17,22 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "bench-routes", - "name": "Bench-Routes", - "first_year": 2021, - "last_year": 2021, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2021 - ] - }, { "slug": "cncf", "name": "CNCF", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 113, "is_currently_active": true, "active_years": [ @@ -44,19 +34,8 @@ 2022, 2023, 2024, - 2025 - ] - }, - { - "slug": "elastic", - "name": "Elastic", - "first_year": 2018, - "last_year": 2020, - "total_projects": 4, - "is_currently_active": false, - "active_years": [ - 2018, - 2020 + 2025, + 2026 ] }, { @@ -65,7 +44,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 74, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -82,9 +61,9 @@ "slug": "jboss-community", "name": "JBoss Community", "first_year": 2016, - "last_year": 2022, + "last_year": 2026, "total_projects": 52, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -92,30 +71,60 @@ 2019, 2020, 2021, + 2022, + 2026 + ] + }, + { + "slug": "performance-co-pilot", + "name": "Performance Co-Pilot", + "first_year": 2016, + "last_year": 2022, + "total_projects": 19, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, 2022 ] }, { - "slug": "moira", - "name": "Moira", - "first_year": 2019, + "slug": "prometheus-operator", + "name": "Prometheus-Operator", + "first_year": 2024, + "last_year": 2025, + "total_projects": 5, + "is_currently_active": false, + "active_years": [ + 2024, + 2025 + ] + }, + { + "slug": "elastic", + "name": "Elastic", + "first_year": 2018, "last_year": 2020, - "total_projects": 3, + "total_projects": 4, "is_currently_active": false, "active_years": [ - 2019, + 2018, 2020 ] }, { - "slug": "opencensus", - "name": "OpenCensus", - "first_year": 2018, - "last_year": 2018, - "total_projects": 1, + "slug": "moira", + "name": "Moira", + "first_year": 2019, + "last_year": 2020, + "total_projects": 3, "is_currently_active": false, "active_years": [ - 2018 + 2019, + 2020 ] }, { @@ -131,31 +140,25 @@ ] }, { - "slug": "performance-co-pilot", - "name": "Performance Co-Pilot", - "first_year": 2016, - "last_year": 2022, - "total_projects": 19, + "slug": "bench-routes", + "name": "Bench-Routes", + "first_year": 2021, + "last_year": 2021, + "total_projects": 2, "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2022 + 2021 ] }, { - "slug": "prometheus-operator", - "name": "Prometheus-Operator", - "first_year": 2024, - "last_year": 2025, - "total_projects": 5, - "is_currently_active": true, + "slug": "opencensus", + "name": "OpenCensus", + "first_year": 2018, + "last_year": 2018, + "total_projects": 1, + "is_currently_active": false, "active_years": [ - 2024, - 2025 + 2018 ] } ], @@ -199,10 +202,14 @@ "2025": { "organizationCount": 3, "projectCount": 18 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.583Z" + "generated_at": "2026-02-19T13:36:00.684Z" } } \ No newline at end of file diff --git a/new-api-details/topics/monte-carlo-methods.json b/new-api-details/topics/monte-carlo-methods.json index d30a0c0c..e2672efc 100644 --- a/new-api-details/topics/monte-carlo-methods.json +++ b/new-api-details/topics/monte-carlo-methods.json @@ -1,7 +1,7 @@ { "slug": "monte-carlo-methods", "name": "monte carlo methods", - "published_at": "2026-01-25T16:06:29.662Z", + "published_at": "2026-02-19T13:36:02.893Z", "organizationCount": 1, "projectCount": 9, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.662Z" + "generated_at": "2026-02-19T13:36:02.893Z" } } \ No newline at end of file diff --git a/new-api-details/topics/morphological-analysis.json b/new-api-details/topics/morphological-analysis.json index eeda2b94..7240a34f 100644 --- a/new-api-details/topics/morphological-analysis.json +++ b/new-api-details/topics/morphological-analysis.json @@ -1,7 +1,7 @@ { "slug": "morphological-analysis", "name": "morphological analysis", - "published_at": "2026-01-25T16:06:28.500Z", + "published_at": "2026-02-19T13:36:00.491Z", "organizationCount": 1, "projectCount": 67, "years": [ @@ -70,6 +70,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.500Z" + "generated_at": "2026-02-19T13:36:00.491Z" } } \ No newline at end of file diff --git a/new-api-details/topics/motion-planning.json b/new-api-details/topics/motion-planning.json index 6f7075fc..88718740 100644 --- a/new-api-details/topics/motion-planning.json +++ b/new-api-details/topics/motion-planning.json @@ -1,7 +1,7 @@ { "slug": "motion-planning", "name": "motion planning", - "published_at": "2026-01-25T16:06:29.372Z", + "published_at": "2026-02-19T13:36:02.355Z", "organizationCount": 1, "projectCount": 10, "years": [ @@ -52,6 +52,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.372Z" + "generated_at": "2026-02-19T13:36:02.355Z" } } \ No newline at end of file diff --git a/new-api-details/topics/movies.json b/new-api-details/topics/movies.json index 1ba7a6af..7097f9f1 100644 --- a/new-api-details/topics/movies.json +++ b/new-api-details/topics/movies.json @@ -1,10 +1,11 @@ { "slug": "movies", "name": "movies", - "published_at": "2026-01-25T16:06:28.637Z", + "published_at": "2026-02-19T13:36:00.939Z", "organizationCount": 1, "projectCount": 80, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "ccextractor-development", "name": "CCExtractor Development", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 80, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 10 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.637Z" + "generated_at": "2026-02-19T13:36:00.939Z" } } \ No newline at end of file diff --git a/new-api-details/topics/mozilla.json b/new-api-details/topics/mozilla.json index 42f216e3..f0e55509 100644 --- a/new-api-details/topics/mozilla.json +++ b/new-api-details/topics/mozilla.json @@ -1,7 +1,7 @@ { "slug": "mozilla", "name": "mozilla", - "published_at": "2026-01-25T16:06:29.375Z", + "published_at": "2026-02-19T13:36:02.359Z", "organizationCount": 1, "projectCount": 75, "years": [ @@ -52,6 +52,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.375Z" + "generated_at": "2026-02-19T13:36:02.359Z" } } \ No newline at end of file diff --git a/new-api-details/topics/mulitmodel-data.json b/new-api-details/topics/mulitmodel-data.json index 8ff5172c..0b693feb 100644 --- a/new-api-details/topics/mulitmodel-data.json +++ b/new-api-details/topics/mulitmodel-data.json @@ -1,7 +1,7 @@ { "slug": "mulitmodel-data", "name": "Mulitmodel Data", - "published_at": "2026-01-25T16:06:29.219Z", + "published_at": "2026-02-19T13:36:02.046Z", "organizationCount": 1, "projectCount": 1, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.219Z" + "generated_at": "2026-02-19T13:36:02.046Z" } } \ No newline at end of file diff --git a/new-api-details/topics/multi-agent-system.json b/new-api-details/topics/multi-agent-system.json index 2fdb51a4..f80d5cca 100644 --- a/new-api-details/topics/multi-agent-system.json +++ b/new-api-details/topics/multi-agent-system.json @@ -1,7 +1,7 @@ { "slug": "multi-agent-system", "name": "multi-agent system", - "published_at": "2026-01-25T16:06:29.596Z", + "published_at": "2026-02-19T13:36:02.789Z", "organizationCount": 1, "projectCount": 57, "years": [ @@ -64,6 +64,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.596Z" + "generated_at": "2026-02-19T13:36:02.789Z" } } \ No newline at end of file diff --git a/new-api-details/topics/multi-agent-systems.json b/new-api-details/topics/multi-agent-systems.json index bb36a22f..3cb50f80 100644 --- a/new-api-details/topics/multi-agent-systems.json +++ b/new-api-details/topics/multi-agent-systems.json @@ -1,7 +1,7 @@ { "slug": "multi-agent-systems", "name": "Multi-agent Systems", - "published_at": "2026-01-25T16:06:29.597Z", + "published_at": "2026-02-19T13:36:02.791Z", "organizationCount": 1, "projectCount": 57, "years": [ @@ -64,6 +64,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.597Z" + "generated_at": "2026-02-19T13:36:02.791Z" } } \ No newline at end of file diff --git a/new-api-details/topics/multi-disciplinary-optimization.json b/new-api-details/topics/multi-disciplinary-optimization.json index 67ac8f43..5a01756a 100644 --- a/new-api-details/topics/multi-disciplinary-optimization.json +++ b/new-api-details/topics/multi-disciplinary-optimization.json @@ -1,10 +1,11 @@ { "slug": "multi-disciplinary-optimization", "name": "Multi-Disciplinary Optimization", - "published_at": "2026-01-25T16:06:29.645Z", + "published_at": "2026-02-19T13:36:02.855Z", "organizationCount": 1, "projectCount": 7, "years": [ + 2026, 2025, 2024 ], @@ -13,12 +14,13 @@ "slug": "stichting-su2", "name": "Stichting SU2", "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "total_projects": 7, "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -30,10 +32,14 @@ "2025": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.645Z" + "generated_at": "2026-02-19T13:36:02.855Z" } } \ No newline at end of file diff --git a/new-api-details/topics/multibody-dynamics.json b/new-api-details/topics/multibody-dynamics.json index 2c98f27c..58c6546c 100644 --- a/new-api-details/topics/multibody-dynamics.json +++ b/new-api-details/topics/multibody-dynamics.json @@ -1,7 +1,7 @@ { "slug": "multibody-dynamics", "name": "multibody dynamics", - "published_at": "2026-01-25T16:06:29.294Z", + "published_at": "2026-02-19T13:36:02.245Z", "organizationCount": 1, "projectCount": 13, "years": [ @@ -21,7 +21,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 13, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -70,6 +70,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.294Z" + "generated_at": "2026-02-19T13:36:02.245Z" } } \ No newline at end of file diff --git a/new-api-details/topics/multicloud.json b/new-api-details/topics/multicloud.json index f05b58dc..b710b8e6 100644 --- a/new-api-details/topics/multicloud.json +++ b/new-api-details/topics/multicloud.json @@ -1,7 +1,7 @@ { "slug": "multicloud", "name": "multicloud", - "published_at": "2026-01-25T16:06:29.746Z", + "published_at": "2026-02-19T13:36:03.087Z", "organizationCount": 1, "projectCount": 1, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.746Z" + "generated_at": "2026-02-19T13:36:03.087Z" } } \ No newline at end of file diff --git a/new-api-details/topics/multicore.json b/new-api-details/topics/multicore.json index 63229c4e..0627535b 100644 --- a/new-api-details/topics/multicore.json +++ b/new-api-details/topics/multicore.json @@ -1,10 +1,11 @@ { "slug": "multicore", "name": "multicore", - "published_at": "2026-01-25T16:06:29.581Z", + "published_at": "2026-02-19T13:36:02.802Z", "organizationCount": 1, "projectCount": 46, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "rtems-project", "name": "RTEMS Project", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 46, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 8 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.581Z" + "generated_at": "2026-02-19T13:36:02.802Z" } } \ No newline at end of file diff --git a/new-api-details/topics/multilingual-language-resources.json b/new-api-details/topics/multilingual-language-resources.json index 436d8055..391e11e4 100644 --- a/new-api-details/topics/multilingual-language-resources.json +++ b/new-api-details/topics/multilingual-language-resources.json @@ -1,7 +1,7 @@ { "slug": "multilingual-language-resources", "name": "multilingual language resources", - "published_at": "2026-01-25T16:06:29.756Z", + "published_at": "2026-02-19T13:36:03.103Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.756Z" + "generated_at": "2026-02-19T13:36:03.103Z" } } \ No newline at end of file diff --git a/new-api-details/topics/multilinguality.json b/new-api-details/topics/multilinguality.json index a17bdb49..ba416588 100644 --- a/new-api-details/topics/multilinguality.json +++ b/new-api-details/topics/multilinguality.json @@ -1,7 +1,7 @@ { "slug": "multilinguality", "name": "multilinguality", - "published_at": "2026-01-25T16:06:28.991Z", + "published_at": "2026-02-19T13:36:01.525Z", "organizationCount": 1, "projectCount": 5, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.991Z" + "generated_at": "2026-02-19T13:36:01.525Z" } } \ No newline at end of file diff --git a/new-api-details/topics/multimedia-retrieval.json b/new-api-details/topics/multimedia-retrieval.json index 97b0fbc5..fc4e464f 100644 --- a/new-api-details/topics/multimedia-retrieval.json +++ b/new-api-details/topics/multimedia-retrieval.json @@ -1,7 +1,7 @@ { "slug": "multimedia-retrieval", "name": "multimedia retrieval", - "published_at": "2026-01-25T16:06:29.881Z", + "published_at": "2026-02-19T13:36:03.119Z", "organizationCount": 1, "projectCount": 6, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.881Z" + "generated_at": "2026-02-19T13:36:03.119Z" } } \ No newline at end of file diff --git a/new-api-details/topics/multimedia.json b/new-api-details/topics/multimedia.json index 91fc30f6..6d92249e 100644 --- a/new-api-details/topics/multimedia.json +++ b/new-api-details/topics/multimedia.json @@ -1,10 +1,11 @@ { "slug": "multimedia", "name": "multimedia", - "published_at": "2026-01-25T16:06:28.911Z", + "published_at": "2026-02-19T13:36:01.336Z", "organizationCount": 9, "projectCount": 277, "years": [ + 2026, 2025, 2024, 2023, @@ -18,11 +19,11 @@ ], "organizations": [ { - "slug": "ffmpeg", - "name": "FFmpeg", + "slug": "videolan", + "name": "VideoLAN", "first_year": 2016, - "last_year": 2025, - "total_projects": 49, + "last_year": 2026, + "total_projects": 92, "is_currently_active": true, "active_years": [ 2016, @@ -34,56 +35,36 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "gpac", - "name": "GPAC", + "slug": "red-hen-lab", + "name": "Red Hen Lab", "first_year": 2016, - "last_year": 2020, - "total_projects": 1, + "last_year": 2024, + "total_projects": 88, "is_currently_active": false, "active_years": [ 2016, - 2020 - ] - }, - { - "slug": "jitsi", - "name": "Jitsi", - "first_year": 2017, - "last_year": 2025, - "total_projects": 21, - "is_currently_active": true, - "active_years": [ 2017, 2018, + 2019, + 2020, + 2021, 2022, - 2024, - 2025 - ] - }, - { - "slug": "p2psporg", - "name": "P2PSP.org", - "first_year": 2016, - "last_year": 2018, - "total_projects": 5, - "is_currently_active": false, - "active_years": [ - 2016, - 2017, - 2018 + 2023, + 2024 ] }, { - "slug": "red-hen-lab", - "name": "Red Hen Lab", + "slug": "ffmpeg", + "name": "FFmpeg", "first_year": 2016, - "last_year": 2024, - "total_projects": 88, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 49, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -93,39 +74,37 @@ 2021, 2022, 2023, - 2024 + 2024, + 2025, + 2026 ] }, { - "slug": "society-for-arts-and-technology-sat", - "name": "Society for Arts and Technology (SAT)", - "first_year": 2022, - "last_year": 2025, - "total_projects": 12, + "slug": "jitsi", + "name": "Jitsi", + "first_year": 2017, + "last_year": 2026, + "total_projects": 21, "is_currently_active": true, "active_years": [ + 2017, + 2018, 2022, - 2023, - 2025 + 2024, + 2025, + 2026 ] }, { - "slug": "videolan", - "name": "VideoLAN", - "first_year": 2016, + "slug": "society-for-arts-and-technology-sat", + "name": "Society for Arts and Technology (SAT)", + "first_year": 2022, "last_year": 2025, - "total_projects": 92, - "is_currently_active": true, + "total_projects": 12, + "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, 2022, 2023, - 2024, 2025 ] }, @@ -142,6 +121,19 @@ 2021 ] }, + { + "slug": "p2psporg", + "name": "P2PSP.org", + "first_year": 2016, + "last_year": 2018, + "total_projects": 5, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2018 + ] + }, { "slug": "xiphorg-foundation", "name": "Xiph.Org Foundation", @@ -152,6 +144,18 @@ "active_years": [ 2021 ] + }, + { + "slug": "gpac", + "name": "GPAC", + "first_year": 2016, + "last_year": 2020, + "total_projects": 1, + "is_currently_active": false, + "active_years": [ + 2016, + 2020 + ] } ], "yearlyStats": { @@ -194,10 +198,14 @@ "2025": { "organizationCount": 4, "projectCount": 27 + }, + "2026": { + "organizationCount": 3, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.911Z" + "generated_at": "2026-02-19T13:36:01.336Z" } } \ No newline at end of file diff --git a/new-api-details/topics/multimodal-communication.json b/new-api-details/topics/multimodal-communication.json index 5476539d..e8517ea7 100644 --- a/new-api-details/topics/multimodal-communication.json +++ b/new-api-details/topics/multimodal-communication.json @@ -1,7 +1,7 @@ { "slug": "multimodal-communication", "name": "multimodal communication", - "published_at": "2026-01-25T16:06:28.992Z", + "published_at": "2026-02-19T13:36:01.527Z", "organizationCount": 2, "projectCount": 93, "years": [ @@ -16,19 +16,6 @@ 2016 ], "organizations": [ - { - "slug": "framenet-brasil-ufjf", - "name": "FrameNet Brasil (UFJF)", - "first_year": 2019, - "last_year": 2021, - "total_projects": 5, - "is_currently_active": false, - "active_years": [ - 2019, - 2020, - 2021 - ] - }, { "slug": "red-hen-lab", "name": "Red Hen Lab", @@ -47,6 +34,19 @@ 2023, 2024 ] + }, + { + "slug": "framenet-brasil-ufjf", + "name": "FrameNet Brasil (UFJF)", + "first_year": 2019, + "last_year": 2021, + "total_projects": 5, + "is_currently_active": false, + "active_years": [ + 2019, + 2020, + 2021 + ] } ], "yearlyStats": { @@ -89,6 +89,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.992Z" + "generated_at": "2026-02-19T13:36:01.528Z" } } \ No newline at end of file diff --git a/new-api-details/topics/multimodality.json b/new-api-details/topics/multimodality.json index 14a76ae7..c517c17e 100644 --- a/new-api-details/topics/multimodality.json +++ b/new-api-details/topics/multimodality.json @@ -1,7 +1,7 @@ { "slug": "multimodality", "name": "multimodality", - "published_at": "2026-01-25T16:06:28.989Z", + "published_at": "2026-02-19T13:36:01.523Z", "organizationCount": 1, "projectCount": 5, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.989Z" + "generated_at": "2026-02-19T13:36:01.523Z" } } \ No newline at end of file diff --git a/new-api-details/topics/multiphysics.json b/new-api-details/topics/multiphysics.json index d66b5c91..dfd53550 100644 --- a/new-api-details/topics/multiphysics.json +++ b/new-api-details/topics/multiphysics.json @@ -1,7 +1,7 @@ { "slug": "multiphysics", "name": "multiphysics", - "published_at": "2026-01-25T16:06:29.299Z", + "published_at": "2026-02-19T13:36:02.252Z", "organizationCount": 1, "projectCount": 13, "years": [ @@ -21,7 +21,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 13, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -70,6 +70,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.299Z" + "generated_at": "2026-02-19T13:36:02.252Z" } } \ No newline at end of file diff --git a/new-api-details/topics/music-engraving.json b/new-api-details/topics/music-engraving.json index 307bf171..2a5d7342 100644 --- a/new-api-details/topics/music-engraving.json +++ b/new-api-details/topics/music-engraving.json @@ -1,7 +1,7 @@ { "slug": "music-engraving", "name": "music engraving", - "published_at": "2026-01-25T16:06:29.007Z", + "published_at": "2026-02-19T13:36:01.569Z", "organizationCount": 2, "projectCount": 26, "years": [ @@ -16,17 +16,6 @@ 2016 ], "organizations": [ - { - "slug": "frescobaldi", - "name": "Frescobaldi", - "first_year": 2017, - "last_year": 2017, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2017 - ] - }, { "slug": "musescore", "name": "MuseScore", @@ -45,6 +34,17 @@ 2023, 2024 ] + }, + { + "slug": "frescobaldi", + "name": "Frescobaldi", + "first_year": 2017, + "last_year": 2017, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2017 + ] } ], "yearlyStats": { @@ -87,6 +87,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.007Z" + "generated_at": "2026-02-19T13:36:01.569Z" } } \ No newline at end of file diff --git a/new-api-details/topics/music-information-retrieval.json b/new-api-details/topics/music-information-retrieval.json index c49d72d1..c27cb0e4 100644 --- a/new-api-details/topics/music-information-retrieval.json +++ b/new-api-details/topics/music-information-retrieval.json @@ -1,10 +1,11 @@ { "slug": "music-information-retrieval", "name": "music information retrieval", - "published_at": "2026-01-25T16:06:29.360Z", + "published_at": "2026-02-19T13:36:02.319Z", "organizationCount": 1, "projectCount": 16, "years": [ + 2026, 2025, 2024, 2022, @@ -18,7 +19,7 @@ "slug": "mixxx", "name": "Mixxx", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 16, "is_currently_active": true, "active_years": [ @@ -28,7 +29,8 @@ 2020, 2022, 2024, - 2025 + 2025, + 2026 ] } ], @@ -60,10 +62,14 @@ "2025": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.360Z" + "generated_at": "2026-02-19T13:36:02.319Z" } } \ No newline at end of file diff --git a/new-api-details/topics/music-notation.json b/new-api-details/topics/music-notation.json index 3f41b89b..d4f9343c 100644 --- a/new-api-details/topics/music-notation.json +++ b/new-api-details/topics/music-notation.json @@ -1,7 +1,7 @@ { "slug": "music-notation", "name": "music notation", - "published_at": "2026-01-25T16:06:29.385Z", + "published_at": "2026-02-19T13:36:02.373Z", "organizationCount": 1, "projectCount": 24, "years": [ @@ -76,6 +76,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.385Z" + "generated_at": "2026-02-19T13:36:02.373Z" } } \ No newline at end of file diff --git a/new-api-details/topics/music-recommendation.json b/new-api-details/topics/music-recommendation.json index ac0a8824..8e839be8 100644 --- a/new-api-details/topics/music-recommendation.json +++ b/new-api-details/topics/music-recommendation.json @@ -1,10 +1,11 @@ { "slug": "music-recommendation", "name": "Music recommendation", - "published_at": "2026-01-25T16:06:29.344Z", + "published_at": "2026-02-19T13:36:02.285Z", "organizationCount": 1, "projectCount": 60, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "metabrainz-foundation-inc", "name": "MetaBrainz Foundation Inc", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 60, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.344Z" + "generated_at": "2026-02-19T13:36:02.285Z" } } \ No newline at end of file diff --git a/new-api-details/topics/music-social-network.json b/new-api-details/topics/music-social-network.json index 5167d458..4a62f037 100644 --- a/new-api-details/topics/music-social-network.json +++ b/new-api-details/topics/music-social-network.json @@ -1,10 +1,11 @@ { "slug": "music-social-network", "name": "music social network", - "published_at": "2026-01-25T16:06:29.346Z", + "published_at": "2026-02-19T13:36:02.286Z", "organizationCount": 1, "projectCount": 60, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "metabrainz-foundation-inc", "name": "MetaBrainz Foundation Inc", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 60, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.346Z" + "generated_at": "2026-02-19T13:36:02.286Z" } } \ No newline at end of file diff --git a/new-api-details/topics/music.json b/new-api-details/topics/music.json index 52b92ce6..1e5d02eb 100644 --- a/new-api-details/topics/music.json +++ b/new-api-details/topics/music.json @@ -1,10 +1,11 @@ { "slug": "music", "name": "music", - "published_at": "2026-01-25T16:06:29.340Z", + "published_at": "2026-02-19T13:36:02.280Z", "organizationCount": 6, "projectCount": 117, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "metabrainz-foundation-inc", "name": "MetaBrainz Foundation Inc", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 60, "is_currently_active": true, "active_years": [ @@ -34,24 +35,8 @@ 2022, 2023, 2024, - 2025 - ] - }, - { - "slug": "mixxx", - "name": "Mixxx", - "first_year": 2016, - "last_year": 2025, - "total_projects": 16, - "is_currently_active": true, - "active_years": [ - 2016, - 2017, - 2018, - 2020, - 2022, - 2024, - 2025 + 2025, + 2026 ] }, { @@ -74,14 +59,21 @@ ] }, { - "slug": "navidrome", - "name": "Navidrome", - "first_year": 2021, - "last_year": 2021, - "total_projects": 1, - "is_currently_active": false, + "slug": "mixxx", + "name": "Mixxx", + "first_year": 2016, + "last_year": 2026, + "total_projects": 16, + "is_currently_active": true, "active_years": [ - 2021 + 2016, + 2017, + 2018, + 2020, + 2022, + 2024, + 2025, + 2026 ] }, { @@ -101,6 +93,17 @@ 2024 ] }, + { + "slug": "navidrome", + "name": "Navidrome", + "first_year": 2021, + "last_year": 2021, + "total_projects": 1, + "is_currently_active": false, + "active_years": [ + 2021 + ] + }, { "slug": "zynaddsubfx", "name": "ZynAddSubFX", @@ -153,10 +156,14 @@ "2025": { "organizationCount": 2, "projectCount": 9 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.340Z" + "generated_at": "2026-02-19T13:36:02.280Z" } } \ No newline at end of file diff --git a/new-api-details/topics/musicxml.json b/new-api-details/topics/musicxml.json index 6ccc7c51..0b3b4664 100644 --- a/new-api-details/topics/musicxml.json +++ b/new-api-details/topics/musicxml.json @@ -1,7 +1,7 @@ { "slug": "musicxml", "name": "musicxml", - "published_at": "2026-01-25T16:06:29.383Z", + "published_at": "2026-02-19T13:36:02.370Z", "organizationCount": 1, "projectCount": 24, "years": [ @@ -76,6 +76,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.383Z" + "generated_at": "2026-02-19T13:36:02.370Z" } } \ No newline at end of file diff --git a/new-api-details/topics/mvc.json b/new-api-details/topics/mvc.json index bb903414..f5a97297 100644 --- a/new-api-details/topics/mvc.json +++ b/new-api-details/topics/mvc.json @@ -1,10 +1,11 @@ { "slug": "mvc", "name": "mvc", - "published_at": "2026-01-25T16:06:29.222Z", + "published_at": "2026-02-19T13:36:02.053Z", "organizationCount": 1, "projectCount": 36, "years": [ + 2026, 2025, 2022, 2021, @@ -18,7 +19,7 @@ "slug": "joomla", "name": "Joomla!", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 36, "is_currently_active": true, "active_years": [ @@ -28,7 +29,8 @@ 2019, 2021, 2022, - 2025 + 2025, + 2026 ] } ], @@ -60,10 +62,14 @@ "2025": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.222Z" + "generated_at": "2026-02-19T13:36:02.053Z" } } \ No newline at end of file diff --git a/new-api-details/topics/mysql.json b/new-api-details/topics/mysql.json index 9f73d129..56224a3e 100644 --- a/new-api-details/topics/mysql.json +++ b/new-api-details/topics/mysql.json @@ -1,7 +1,7 @@ { "slug": "mysql", "name": "mysql", - "published_at": "2026-01-25T16:06:29.865Z", + "published_at": "2026-02-19T13:36:02.705Z", "organizationCount": 1, "projectCount": 9, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.865Z" + "generated_at": "2026-02-19T13:36:02.705Z" } } \ No newline at end of file diff --git a/new-api-details/topics/native-mobile-app-testing.json b/new-api-details/topics/native-mobile-app-testing.json index a1f1d2bc..1ad41036 100644 --- a/new-api-details/topics/native-mobile-app-testing.json +++ b/new-api-details/topics/native-mobile-app-testing.json @@ -1,7 +1,7 @@ { "slug": "native-mobile-app-testing", "name": "Native mobile app testing", - "published_at": "2026-01-25T16:06:29.410Z", + "published_at": "2026-02-19T13:36:02.420Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.410Z" + "generated_at": "2026-02-19T13:36:02.420Z" } } \ No newline at end of file diff --git a/new-api-details/topics/natural-language-processing.json b/new-api-details/topics/natural-language-processing.json index 5f4d5451..624476f5 100644 --- a/new-api-details/topics/natural-language-processing.json +++ b/new-api-details/topics/natural-language-processing.json @@ -1,10 +1,11 @@ { "slug": "natural-language-processing", "name": "natural language processing", - "published_at": "2026-01-25T16:06:28.383Z", + "published_at": "2026-02-19T13:36:00.381Z", "organizationCount": 13, "projectCount": 490, "years": [ + 2026, 2025, 2024, 2023, @@ -17,25 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "accord-project", - "name": "Accord Project", - "first_year": 2020, - "last_year": 2025, - "total_projects": 13, - "is_currently_active": true, - "active_years": [ - 2020, - 2021, - 2024, - 2025 - ] - }, { "slug": "aossie", "name": "AOSSIE", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 117, "is_currently_active": true, "active_years": [ @@ -47,15 +34,16 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "apertium", - "name": "Apertium", + "slug": "red-hen-lab", + "name": "Red Hen Lab", "first_year": 2016, "last_year": 2024, - "total_projects": 67, + "total_projects": 88, "is_currently_active": false, "active_years": [ 2016, @@ -64,56 +52,49 @@ 2019, 2020, 2021, + 2022, 2023, 2024 ] }, { - "slug": "classical-language-toolkit", - "name": "Classical Language Toolkit", - "first_year": 2016, - "last_year": 2018, - "total_projects": 7, + "slug": "tensorflow", + "name": "TensorFlow", + "first_year": 2019, + "last_year": 2023, + "total_projects": 81, "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018 + 2019, + 2020, + 2021, + 2022, + 2023 ] }, { - "slug": "clips-university-of-antwerp", - "name": "CLiPS, University of Antwerp", - "first_year": 2017, - "last_year": 2019, - "total_projects": 10, + "slug": "apertium", + "name": "Apertium", + "first_year": 2016, + "last_year": 2024, + "total_projects": 67, "is_currently_active": false, "active_years": [ + 2016, 2017, - 2018, - 2019 - ] - }, - { - "slug": "cuneiform-digital-library-initiative-cdli", - "name": "Cuneiform Digital Library Initiative (CDLI)", - "first_year": 2018, - "last_year": 2022, - "total_projects": 30, - "is_currently_active": false, - "active_years": [ 2018, 2019, 2020, 2021, - 2022 + 2023, + 2024 ] }, { "slug": "dbpedia", "name": "DBpedia", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 61, "is_currently_active": true, "active_years": [ @@ -126,20 +107,65 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "framenet-brasil-ufjf", - "name": "FrameNet Brasil (UFJF)", - "first_year": 2019, - "last_year": 2021, - "total_projects": 5, - "is_currently_active": false, + "slug": "cuneiform-digital-library-initiative-cdli", + "name": "Cuneiform Digital Library Initiative (CDLI)", + "first_year": 2018, + "last_year": 2026, + "total_projects": 30, + "is_currently_active": true, "active_years": [ + 2018, 2019, 2020, - 2021 + 2021, + 2022, + 2026 + ] + }, + { + "slug": "accord-project", + "name": "Accord Project", + "first_year": 2020, + "last_year": 2026, + "total_projects": 13, + "is_currently_active": true, + "active_years": [ + 2020, + 2021, + 2024, + 2025, + 2026 + ] + }, + { + "slug": "clips-university-of-antwerp", + "name": "CLiPS, University of Antwerp", + "first_year": 2017, + "last_year": 2019, + "total_projects": 10, + "is_currently_active": false, + "active_years": [ + 2017, + 2018, + 2019 + ] + }, + { + "slug": "classical-language-toolkit", + "name": "Classical Language Toolkit", + "first_year": 2016, + "last_year": 2018, + "total_projects": 7, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2018 ] }, { @@ -154,22 +180,16 @@ ] }, { - "slug": "red-hen-lab", - "name": "Red Hen Lab", - "first_year": 2016, - "last_year": 2024, - "total_projects": 88, + "slug": "framenet-brasil-ufjf", + "name": "FrameNet Brasil (UFJF)", + "first_year": 2019, + "last_year": 2021, + "total_projects": 5, "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, 2019, 2020, - 2021, - 2022, - 2023, - 2024 + 2021 ] }, { @@ -183,21 +203,6 @@ 2019 ] }, - { - "slug": "tensorflow", - "name": "TensorFlow", - "first_year": 2019, - "last_year": 2023, - "total_projects": 81, - "is_currently_active": false, - "active_years": [ - 2019, - 2020, - 2021, - 2022, - 2023 - ] - }, { "slug": "unitexgramlab", "name": "Unitex/GramLab", @@ -250,10 +255,14 @@ "2025": { "organizationCount": 3, "projectCount": 31 + }, + "2026": { + "organizationCount": 4, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.383Z" + "generated_at": "2026-02-19T13:36:00.381Z" } } \ No newline at end of file diff --git a/new-api-details/topics/natural-language-understanding.json b/new-api-details/topics/natural-language-understanding.json index 0707e773..058e3256 100644 --- a/new-api-details/topics/natural-language-understanding.json +++ b/new-api-details/topics/natural-language-understanding.json @@ -1,7 +1,7 @@ { "slug": "natural-language-understanding", "name": "natural language understanding", - "published_at": "2026-01-25T16:06:28.990Z", + "published_at": "2026-02-19T13:36:01.524Z", "organizationCount": 2, "projectCount": 9, "years": [ @@ -51,6 +51,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.990Z" + "generated_at": "2026-02-19T13:36:01.524Z" } } \ No newline at end of file diff --git a/new-api-details/topics/nature-based-solutions.json b/new-api-details/topics/nature-based-solutions.json index 2a2b0ade..9faf31fd 100644 --- a/new-api-details/topics/nature-based-solutions.json +++ b/new-api-details/topics/nature-based-solutions.json @@ -1,7 +1,7 @@ { "slug": "nature-based-solutions", "name": "nature based solutions", - "published_at": "2026-01-25T16:06:29.847Z", + "published_at": "2026-02-19T13:36:02.342Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.847Z" + "generated_at": "2026-02-19T13:36:02.342Z" } } \ No newline at end of file diff --git a/new-api-details/topics/navigation.json b/new-api-details/topics/navigation.json index 1359a080..3216fb99 100644 --- a/new-api-details/topics/navigation.json +++ b/new-api-details/topics/navigation.json @@ -1,7 +1,7 @@ { "slug": "navigation", "name": "navigation", - "published_at": "2026-01-25T16:06:29.029Z", + "published_at": "2026-02-19T13:36:01.654Z", "organizationCount": 2, "projectCount": 38, "years": [ @@ -23,7 +23,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 28, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -42,7 +42,7 @@ "first_year": 2022, "last_year": 2025, "total_projects": 10, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2023, @@ -95,6 +95,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.029Z" + "generated_at": "2026-02-19T13:36:01.654Z" } } \ No newline at end of file diff --git a/new-api-details/topics/neighbor-search.json b/new-api-details/topics/neighbor-search.json index d9163304..e564da0d 100644 --- a/new-api-details/topics/neighbor-search.json +++ b/new-api-details/topics/neighbor-search.json @@ -1,7 +1,7 @@ { "slug": "neighbor-search", "name": "neighbor-search", - "published_at": "2026-01-25T16:06:29.845Z", + "published_at": "2026-02-19T13:36:02.322Z", "organizationCount": 1, "projectCount": 60, "years": [ @@ -76,6 +76,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.845Z" + "generated_at": "2026-02-19T13:36:02.322Z" } } \ No newline at end of file diff --git a/new-api-details/topics/network-analysis.json b/new-api-details/topics/network-analysis.json index bab5d3e7..5d3be0fc 100644 --- a/new-api-details/topics/network-analysis.json +++ b/new-api-details/topics/network-analysis.json @@ -1,10 +1,11 @@ { "slug": "network-analysis", "name": "network analysis", - "published_at": "2026-01-25T16:06:29.205Z", + "published_at": "2026-02-19T13:36:02.037Z", "organizationCount": 4, "projectCount": 256, "years": [ + 2026, 2025, 2024, 2023, @@ -17,22 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "jgrapht", - "name": "JGraphT", - "first_year": 2018, - "last_year": 2018, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2018 - ] - }, { "slug": "national-resource-for-network-biology-nrnb", "name": "National Resource for Network Biology (NRNB)", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 119, "is_currently_active": true, "active_years": [ @@ -45,14 +35,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "the-honeynet-project", "name": "The Honeynet Project", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 101, "is_currently_active": true, "active_years": [ @@ -65,14 +56,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "the-ns-3-network-simulator-project", "name": "The ns-3 Network Simulator Project", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 34, "is_currently_active": true, "active_years": [ @@ -84,7 +76,19 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "jgrapht", + "name": "JGraphT", + "first_year": 2018, + "last_year": 2018, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2018 ] } ], @@ -128,10 +132,14 @@ "2025": { "organizationCount": 3, "projectCount": 22 + }, + "2026": { + "organizationCount": 3, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.205Z" + "generated_at": "2026-02-19T13:36:02.037Z" } } \ No newline at end of file diff --git a/new-api-details/topics/network-automation.json b/new-api-details/topics/network-automation.json index 9f81eaa5..1538cb6c 100644 --- a/new-api-details/topics/network-automation.json +++ b/new-api-details/topics/network-automation.json @@ -1,10 +1,11 @@ { "slug": "network-automation", "name": "network automation", - "published_at": "2026-01-25T16:06:29.508Z", + "published_at": "2026-02-19T13:36:02.650Z", "organizationCount": 1, "projectCount": 26, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "openwisp", "name": "OpenWISP", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 26, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.508Z" + "generated_at": "2026-02-19T13:36:02.650Z" } } \ No newline at end of file diff --git a/new-api-details/topics/network-biology.json b/new-api-details/topics/network-biology.json index 7852c120..18145af5 100644 --- a/new-api-details/topics/network-biology.json +++ b/new-api-details/topics/network-biology.json @@ -1,10 +1,11 @@ { "slug": "network-biology", "name": "network biology", - "published_at": "2026-01-25T16:06:28.789Z", + "published_at": "2026-02-19T13:36:01.069Z", "organizationCount": 2, "projectCount": 137, "years": [ + 2026, 2025, 2024, 2023, @@ -17,25 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "computational-biology-university-of-nebraska-lincoln", - "name": "Computational Biology @ University of Nebraska-Lincoln", - "first_year": 2016, - "last_year": 2019, - "total_projects": 18, - "is_currently_active": false, - "active_years": [ - 2016, - 2017, - 2018, - 2019 - ] - }, { "slug": "national-resource-for-network-biology-nrnb", "name": "National Resource for Network Biology (NRNB)", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 119, "is_currently_active": true, "active_years": [ @@ -48,7 +35,22 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "computational-biology-university-of-nebraska-lincoln", + "name": "Computational Biology @ University of Nebraska-Lincoln", + "first_year": 2016, + "last_year": 2019, + "total_projects": 18, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2018, + 2019 ] } ], @@ -92,10 +94,14 @@ "2025": { "organizationCount": 1, "projectCount": 8 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.789Z" + "generated_at": "2026-02-19T13:36:01.069Z" } } \ No newline at end of file diff --git a/new-api-details/topics/network-management-system.json b/new-api-details/topics/network-management-system.json index ddad88b2..f7f5b8b7 100644 --- a/new-api-details/topics/network-management-system.json +++ b/new-api-details/topics/network-management-system.json @@ -1,10 +1,11 @@ { "slug": "network-management-system", "name": "network management system", - "published_at": "2026-01-25T16:06:29.509Z", + "published_at": "2026-02-19T13:36:02.651Z", "organizationCount": 1, "projectCount": 26, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "openwisp", "name": "OpenWISP", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 26, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.509Z" + "generated_at": "2026-02-19T13:36:02.651Z" } } \ No newline at end of file diff --git a/new-api-details/topics/network-mapping.json b/new-api-details/topics/network-mapping.json index 2974317b..5b69de88 100644 --- a/new-api-details/topics/network-mapping.json +++ b/new-api-details/topics/network-mapping.json @@ -1,7 +1,7 @@ { "slug": "network-mapping", "name": "network mapping", - "published_at": "2026-01-25T16:06:29.415Z", + "published_at": "2026-02-19T13:36:02.424Z", "organizationCount": 1, "projectCount": 9, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.415Z" + "generated_at": "2026-02-19T13:36:02.424Z" } } \ No newline at end of file diff --git a/new-api-details/topics/network-monitoring.json b/new-api-details/topics/network-monitoring.json index ba0ff2ad..1359c668 100644 --- a/new-api-details/topics/network-monitoring.json +++ b/new-api-details/topics/network-monitoring.json @@ -1,7 +1,7 @@ { "slug": "network-monitoring", "name": "network monitoring", - "published_at": "2026-01-25T16:06:29.402Z", + "published_at": "2026-02-19T13:36:02.402Z", "organizationCount": 2, "projectCount": 12, "years": [ @@ -62,6 +62,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.402Z" + "generated_at": "2026-02-19T13:36:02.402Z" } } \ No newline at end of file diff --git a/new-api-details/topics/network-programming.json b/new-api-details/topics/network-programming.json index 96e55840..98278fe9 100644 --- a/new-api-details/topics/network-programming.json +++ b/new-api-details/topics/network-programming.json @@ -1,10 +1,11 @@ { "slug": "network-programming", "name": "network programming", - "published_at": "2026-01-25T16:06:29.541Z", + "published_at": "2026-02-19T13:36:02.716Z", "organizationCount": 2, "projectCount": 94, "years": [ + 2026, 2025, 2024, 2023, @@ -17,22 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "plan-9-foundation", - "name": "Plan 9 Foundation", - "first_year": 2021, - "last_year": 2021, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2021 - ] - }, { "slug": "videolan", "name": "VideoLAN", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 92, "is_currently_active": true, "active_years": [ @@ -45,7 +35,19 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "plan-9-foundation", + "name": "Plan 9 Foundation", + "first_year": 2021, + "last_year": 2021, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2021 ] } ], @@ -89,10 +91,14 @@ "2025": { "organizationCount": 1, "projectCount": 15 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.541Z" + "generated_at": "2026-02-19T13:36:02.716Z" } } \ No newline at end of file diff --git a/new-api-details/topics/network-security.json b/new-api-details/topics/network-security.json index d0e06cd5..add7920d 100644 --- a/new-api-details/topics/network-security.json +++ b/new-api-details/topics/network-security.json @@ -1,7 +1,7 @@ { "slug": "network-security", "name": "network security", - "published_at": "2026-01-25T16:06:29.403Z", + "published_at": "2026-02-19T13:36:02.403Z", "organizationCount": 3, "projectCount": 14, "years": [ @@ -84,6 +84,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.403Z" + "generated_at": "2026-02-19T13:36:02.403Z" } } \ No newline at end of file diff --git a/new-api-details/topics/network-simulation.json b/new-api-details/topics/network-simulation.json index eced4198..380d5586 100644 --- a/new-api-details/topics/network-simulation.json +++ b/new-api-details/topics/network-simulation.json @@ -1,10 +1,11 @@ { "slug": "network-simulation", "name": "network simulation", - "published_at": "2026-01-25T16:06:28.790Z", + "published_at": "2026-02-19T13:36:01.071Z", "organizationCount": 2, "projectCount": 52, "years": [ + 2026, 2025, 2024, 2023, @@ -17,25 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "computational-biology-university-of-nebraska-lincoln", - "name": "Computational Biology @ University of Nebraska-Lincoln", - "first_year": 2016, - "last_year": 2019, - "total_projects": 18, - "is_currently_active": false, - "active_years": [ - 2016, - 2017, - 2018, - 2019 - ] - }, { "slug": "the-ns-3-network-simulator-project", "name": "The ns-3 Network Simulator Project", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 34, "is_currently_active": true, "active_years": [ @@ -47,7 +34,22 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "computational-biology-university-of-nebraska-lincoln", + "name": "Computational Biology @ University of Nebraska-Lincoln", + "first_year": 2016, + "last_year": 2019, + "total_projects": 18, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2018, + 2019 ] } ], @@ -91,10 +93,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.790Z" + "generated_at": "2026-02-19T13:36:01.071Z" } } \ No newline at end of file diff --git a/new-api-details/topics/network-storage.json b/new-api-details/topics/network-storage.json index 5aa36098..60465418 100644 --- a/new-api-details/topics/network-storage.json +++ b/new-api-details/topics/network-storage.json @@ -1,10 +1,11 @@ { "slug": "network-storage", "name": "network storage", - "published_at": "2026-01-25T16:06:28.712Z", + "published_at": "2026-02-19T13:36:00.968Z", "organizationCount": 1, "projectCount": 31, "years": [ + 2026, 2025, 2024, 2023, @@ -19,7 +20,7 @@ "slug": "ceph-foundation", "name": "Ceph Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 31, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.712Z" + "generated_at": "2026-02-19T13:36:00.968Z" } } \ No newline at end of file diff --git a/new-api-details/topics/network-visualization.json b/new-api-details/topics/network-visualization.json index 256cbd53..6cbbaca6 100644 --- a/new-api-details/topics/network-visualization.json +++ b/new-api-details/topics/network-visualization.json @@ -1,10 +1,11 @@ { "slug": "network-visualization", "name": "network visualization", - "published_at": "2026-01-25T16:06:29.507Z", + "published_at": "2026-02-19T13:36:02.648Z", "organizationCount": 1, "projectCount": 26, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "openwisp", "name": "OpenWISP", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 26, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.507Z" + "generated_at": "2026-02-19T13:36:02.648Z" } } \ No newline at end of file diff --git a/new-api-details/topics/network.json b/new-api-details/topics/network.json index 9a321ef1..3f25ae32 100644 --- a/new-api-details/topics/network.json +++ b/new-api-details/topics/network.json @@ -1,10 +1,11 @@ { "slug": "network", "name": "network", - "published_at": "2026-01-25T16:06:29.112Z", + "published_at": "2026-02-19T13:36:01.558Z", "organizationCount": 5, "projectCount": 106, "years": [ + 2026, 2025, 2024, 2023, @@ -23,7 +24,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 74, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -40,9 +41,9 @@ "slug": "haiku", "name": "Haiku", "first_year": 2017, - "last_year": 2024, + "last_year": 2026, "total_projects": 26, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, @@ -51,7 +52,21 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 + ] + }, + { + "slug": "openafs", + "name": "OpenAFS", + "first_year": 2022, + "last_year": 2026, + "total_projects": 4, + "is_currently_active": true, + "active_years": [ + 2022, + 2025, + 2026 ] }, { @@ -65,18 +80,6 @@ 2020 ] }, - { - "slug": "openafs", - "name": "OpenAFS", - "first_year": 2022, - "last_year": 2025, - "total_projects": 4, - "is_currently_active": true, - "active_years": [ - 2022, - 2025 - ] - }, { "slug": "seastar", "name": "Seastar", @@ -129,10 +132,14 @@ "2025": { "organizationCount": 2, "projectCount": 7 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.112Z" + "generated_at": "2026-02-19T13:36:01.558Z" } } \ No newline at end of file diff --git a/new-api-details/topics/networking-security.json b/new-api-details/topics/networking-security.json index 5b61f71c..7e52ad58 100644 --- a/new-api-details/topics/networking-security.json +++ b/new-api-details/topics/networking-security.json @@ -1,10 +1,11 @@ { "slug": "networking-security", "name": "networking security", - "published_at": "2026-01-25T16:06:29.718Z", + "published_at": "2026-02-19T13:36:02.975Z", "organizationCount": 1, "projectCount": 9, "years": [ + 2026, 2025, 2024 ], @@ -13,12 +14,13 @@ "slug": "the-p4-language-consortium", "name": "The P4 Language Consortium", "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "total_projects": 9, "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -30,10 +32,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.718Z" + "generated_at": "2026-02-19T13:36:02.975Z" } } \ No newline at end of file diff --git a/new-api-details/topics/networking.json b/new-api-details/topics/networking.json index bae63c3e..e793676a 100644 --- a/new-api-details/topics/networking.json +++ b/new-api-details/topics/networking.json @@ -1,10 +1,11 @@ { "slug": "networking", "name": "networking", - "published_at": "2026-01-25T16:06:28.448Z", + "published_at": "2026-02-19T13:36:00.420Z", "organizationCount": 22, "projectCount": 403, "years": [ + 2026, 2025, 2024, 2023, @@ -18,111 +19,106 @@ ], "organizations": [ { - "slug": "amahi", - "name": "Amahi", - "first_year": 2017, - "last_year": 2020, - "total_projects": 18, - "is_currently_active": false, + "slug": "the-honeynet-project", + "name": "The Honeynet Project", + "first_year": 2016, + "last_year": 2026, + "total_projects": 101, + "is_currently_active": true, "active_years": [ + 2016, 2017, 2018, 2019, - 2020 - ] - }, - { - "slug": "center-for-research-in-open-source-software-cross", - "name": "Center for Research in Open Source Software (CROSS)", - "first_year": 2018, - "last_year": 2022, - "total_projects": 20, - "is_currently_active": false, - "active_years": [ - 2018, - 2019, + 2020, 2021, - 2022 - ] - }, - { - "slug": "cilium", - "name": "Cilium", - "first_year": 2021, - "last_year": 2021, - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2021 + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "copyleft-games", - "name": "Copyleft Games", + "slug": "liquid-galaxy-project", + "name": "Liquid Galaxy project", "first_year": 2016, - "last_year": 2017, - "total_projects": 4, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 75, + "is_currently_active": true, "active_years": [ 2016, - 2017 - ] - }, - { - "slug": "frrouting", - "name": "FRRouting", - "first_year": 2020, - "last_year": 2022, - "total_projects": 3, - "is_currently_active": false, - "active_years": [ + 2017, + 2019, 2020, 2021, - 2022 + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "illumosorg", - "name": "illumos.org", - "first_year": 2017, - "last_year": 2017, - "total_projects": 0, + "slug": "the-palisadoes-foundation", + "name": "The Palisadoes Foundation", + "first_year": 2021, + "last_year": 2025, + "total_projects": 36, "is_currently_active": false, "active_years": [ - 2017 + 2021, + 2022, + 2023, + 2024, + 2025 ] }, { - "slug": "internet-health-report", - "name": "Internet Health Report", - "first_year": 2022, - "last_year": 2025, - "total_projects": 15, + "slug": "the-ns-3-network-simulator-project", + "name": "The ns-3 Network Simulator Project", + "first_year": 2017, + "last_year": 2026, + "total_projects": 34, "is_currently_active": true, "active_years": [ + 2017, + 2018, + 2019, + 2020, + 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "internet-systems-consortium", - "name": "Internet Systems Consortium", - "first_year": 2018, - "last_year": 2019, - "total_projects": 3, - "is_currently_active": false, + "slug": "openwisp", + "name": "OpenWISP", + "first_year": 2017, + "last_year": 2026, + "total_projects": 26, + "is_currently_active": true, "active_years": [ + 2017, 2018, - 2019 + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { "slug": "jitsi", "name": "Jitsi", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 21, "is_currently_active": true, "active_years": [ @@ -130,49 +126,50 @@ 2018, 2022, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "linkerd", - "name": "Linkerd", - "first_year": 2019, - "last_year": 2020, - "total_projects": 4, + "slug": "center-for-research-in-open-source-software-cross", + "name": "Center for Research in Open Source Software (CROSS)", + "first_year": 2018, + "last_year": 2022, + "total_projects": 20, "is_currently_active": false, "active_years": [ + 2018, 2019, - 2020 + 2021, + 2022 ] }, { - "slug": "liquid-galaxy-project", - "name": "Liquid Galaxy project", - "first_year": 2016, - "last_year": 2025, - "total_projects": 75, - "is_currently_active": true, + "slug": "amahi", + "name": "Amahi", + "first_year": 2017, + "last_year": 2020, + "total_projects": 18, + "is_currently_active": false, "active_years": [ - 2016, 2017, + 2018, 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2020 ] }, { - "slug": "named-data-networking-project", - "name": "Named Data Networking Project", - "first_year": 2019, - "last_year": 2019, - "total_projects": 2, + "slug": "internet-health-report", + "name": "Internet Health Report", + "first_year": 2022, + "last_year": 2025, + "total_projects": 15, "is_currently_active": false, "active_years": [ - 2019 + 2022, + 2023, + 2024, + 2025 ] }, { @@ -202,22 +199,16 @@ ] }, { - "slug": "openwisp", - "name": "OpenWISP", - "first_year": 2017, - "last_year": 2025, - "total_projects": 26, + "slug": "the-p4-language-consortium", + "name": "The P4 Language Consortium", + "first_year": 2024, + "last_year": 2026, + "total_projects": 9, "is_currently_active": true, "active_years": [ - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -234,83 +225,88 @@ ] }, { - "slug": "samba", - "name": "Samba", - "first_year": 2017, + "slug": "copyleft-games", + "name": "Copyleft Games", + "first_year": 2016, + "last_year": 2017, + "total_projects": 4, + "is_currently_active": false, + "active_years": [ + 2016, + 2017 + ] + }, + { + "slug": "linkerd", + "name": "Linkerd", + "first_year": 2019, + "last_year": 2020, + "total_projects": 4, + "is_currently_active": false, + "active_years": [ + 2019, + 2020 + ] + }, + { + "slug": "cilium", + "name": "Cilium", + "first_year": 2021, "last_year": 2021, "total_projects": 3, "is_currently_active": false, "active_years": [ - 2017, - 2019, - 2020, 2021 ] }, { - "slug": "the-honeynet-project", - "name": "The Honeynet Project", - "first_year": 2016, - "last_year": 2025, - "total_projects": 101, - "is_currently_active": true, + "slug": "frrouting", + "name": "FRRouting", + "first_year": 2020, + "last_year": 2022, + "total_projects": 3, + "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2019, 2020, 2021, - 2022, - 2023, - 2024, - 2025 + 2022 ] }, { - "slug": "the-ns-3-network-simulator-project", - "name": "The ns-3 Network Simulator Project", - "first_year": 2017, - "last_year": 2025, - "total_projects": 34, - "is_currently_active": true, + "slug": "internet-systems-consortium", + "name": "Internet Systems Consortium", + "first_year": 2018, + "last_year": 2019, + "total_projects": 3, + "is_currently_active": false, "active_years": [ - 2017, 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2019 ] }, { - "slug": "the-p4-language-consortium", - "name": "The P4 Language Consortium", - "first_year": 2024, - "last_year": 2025, - "total_projects": 9, - "is_currently_active": true, + "slug": "samba", + "name": "Samba", + "first_year": 2017, + "last_year": 2021, + "total_projects": 3, + "is_currently_active": false, "active_years": [ - 2024, - 2025 + 2017, + 2019, + 2020, + 2021 ] }, { - "slug": "the-palisadoes-foundation", - "name": "The Palisadoes Foundation", - "first_year": 2021, - "last_year": 2025, - "total_projects": 36, - "is_currently_active": true, + "slug": "named-data-networking-project", + "name": "Named Data Networking Project", + "first_year": 2019, + "last_year": 2019, + "total_projects": 2, + "is_currently_active": false, "active_years": [ - 2021, - 2022, - 2023, - 2024, - 2025 + 2019 ] }, { @@ -323,6 +319,17 @@ "active_years": [ 2019 ] + }, + { + "slug": "illumosorg", + "name": "illumos.org", + "first_year": 2017, + "last_year": 2017, + "total_projects": 0, + "is_currently_active": false, + "active_years": [ + 2017 + ] } ], "yearlyStats": { @@ -365,10 +372,14 @@ "2025": { "organizationCount": 8, "projectCount": 51 + }, + "2026": { + "organizationCount": 6, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.448Z" + "generated_at": "2026-02-19T13:36:00.420Z" } } \ No newline at end of file diff --git a/new-api-details/topics/networkmanager.json b/new-api-details/topics/networkmanager.json index fef52f2a..a4c0c3b2 100644 --- a/new-api-details/topics/networkmanager.json +++ b/new-api-details/topics/networkmanager.json @@ -1,7 +1,7 @@ { "slug": "networkmanager", "name": "NetworkManager", - "published_at": "2026-01-25T16:06:28.974Z", + "published_at": "2026-02-19T13:36:01.329Z", "organizationCount": 1, "projectCount": 27, "years": [ @@ -19,7 +19,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.974Z" + "generated_at": "2026-02-19T13:36:01.329Z" } } \ No newline at end of file diff --git a/new-api-details/topics/networks.json b/new-api-details/topics/networks.json index a7380a46..48d72b57 100644 --- a/new-api-details/topics/networks.json +++ b/new-api-details/topics/networks.json @@ -1,7 +1,7 @@ { "slug": "networks", "name": "networks", - "published_at": "2026-01-25T16:06:28.787Z", + "published_at": "2026-02-19T13:36:01.067Z", "organizationCount": 2, "projectCount": 21, "years": [ @@ -70,6 +70,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.787Z" + "generated_at": "2026-02-19T13:36:01.067Z" } } \ No newline at end of file diff --git a/new-api-details/topics/neural-network.json b/new-api-details/topics/neural-network.json index a42001b8..abf01f46 100644 --- a/new-api-details/topics/neural-network.json +++ b/new-api-details/topics/neural-network.json @@ -1,10 +1,11 @@ { "slug": "neural-network", "name": "neural network", - "published_at": "2026-01-25T16:06:29.498Z", + "published_at": "2026-02-19T13:36:02.636Z", "organizationCount": 1, "projectCount": 32, "years": [ + 2026, 2025, 2024, 2023, @@ -15,14 +16,15 @@ "slug": "openvino-toolkit", "name": "OpenVINO Toolkit", "first_year": 2022, - "last_year": 2025, + "last_year": 2026, "total_projects": 32, "is_currently_active": true, "active_years": [ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -42,10 +44,14 @@ "2025": { "organizationCount": 1, "projectCount": 16 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.498Z" + "generated_at": "2026-02-19T13:36:02.636Z" } } \ No newline at end of file diff --git a/new-api-details/topics/neural-networks.json b/new-api-details/topics/neural-networks.json index 836c07e1..896c03f5 100644 --- a/new-api-details/topics/neural-networks.json +++ b/new-api-details/topics/neural-networks.json @@ -1,10 +1,11 @@ { "slug": "neural-networks", "name": "Neural networks", - "published_at": "2026-01-25T16:06:29.495Z", + "published_at": "2026-02-19T13:36:02.324Z", "organizationCount": 2, "projectCount": 92, "years": [ + 2026, 2025, 2024, 2023, @@ -40,14 +41,15 @@ "slug": "openvino-toolkit", "name": "OpenVINO Toolkit", "first_year": 2022, - "last_year": 2025, + "last_year": 2026, "total_projects": 32, "is_currently_active": true, "active_years": [ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -91,10 +93,14 @@ "2025": { "organizationCount": 1, "projectCount": 16 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.495Z" + "generated_at": "2026-02-19T13:36:02.324Z" } } \ No newline at end of file diff --git a/new-api-details/topics/neural-search.json b/new-api-details/topics/neural-search.json index 6a85d65e..388bc096 100644 --- a/new-api-details/topics/neural-search.json +++ b/new-api-details/topics/neural-search.json @@ -1,7 +1,7 @@ { "slug": "neural-search", "name": "neural search", - "published_at": "2026-01-25T16:06:29.217Z", + "published_at": "2026-02-19T13:36:02.040Z", "organizationCount": 1, "projectCount": 1, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.217Z" + "generated_at": "2026-02-19T13:36:02.040Z" } } \ No newline at end of file diff --git a/new-api-details/topics/neuroanatomy.json b/new-api-details/topics/neuroanatomy.json index 863ddbec..2a59d481 100644 --- a/new-api-details/topics/neuroanatomy.json +++ b/new-api-details/topics/neuroanatomy.json @@ -1,10 +1,11 @@ { "slug": "neuroanatomy", "name": "neuroanatomy", - "published_at": "2026-01-25T16:06:29.405Z", + "published_at": "2026-02-19T13:36:02.407Z", "organizationCount": 1, "projectCount": 2, "years": [ + 2026, 2025 ], "organizations": [ @@ -12,11 +13,12 @@ "slug": "neuroinformatics-unit", "name": "Neuroinformatics Unit", "first_year": 2025, - "last_year": 2025, + "last_year": 2026, "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] } ], @@ -24,10 +26,14 @@ "2025": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.405Z" + "generated_at": "2026-02-19T13:36:02.407Z" } } \ No newline at end of file diff --git a/new-api-details/topics/neuroimage-processing.json b/new-api-details/topics/neuroimage-processing.json index cefd393a..ea139912 100644 --- a/new-api-details/topics/neuroimage-processing.json +++ b/new-api-details/topics/neuroimage-processing.json @@ -1,10 +1,11 @@ { "slug": "neuroimage-processing", "name": "neuroimage processing", - "published_at": "2026-01-25T16:06:29.136Z", + "published_at": "2026-02-19T13:36:01.793Z", "organizationCount": 1, "projectCount": 211, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "incf", "name": "INCF", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 211, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 27 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.136Z" + "generated_at": "2026-02-19T13:36:01.793Z" } } \ No newline at end of file diff --git a/new-api-details/topics/neuroimaging.json b/new-api-details/topics/neuroimaging.json index 8113748d..ddb6ad0e 100644 --- a/new-api-details/topics/neuroimaging.json +++ b/new-api-details/topics/neuroimaging.json @@ -1,10 +1,11 @@ { "slug": "neuroimaging", "name": "neuroimaging", - "published_at": "2026-01-25T16:06:29.137Z", + "published_at": "2026-02-19T13:36:01.795Z", "organizationCount": 1, "projectCount": 211, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "incf", "name": "INCF", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 211, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 27 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.137Z" + "generated_at": "2026-02-19T13:36:01.795Z" } } \ No newline at end of file diff --git a/new-api-details/topics/neuronavigation.json b/new-api-details/topics/neuronavigation.json index a0e50826..07cd25cf 100644 --- a/new-api-details/topics/neuronavigation.json +++ b/new-api-details/topics/neuronavigation.json @@ -1,10 +1,11 @@ { "slug": "neuronavigation", "name": "Neuronavigation", - "published_at": "2026-01-25T16:06:29.191Z", + "published_at": "2026-02-19T13:36:01.980Z", "organizationCount": 1, "projectCount": 13, "years": [ + 2026, 2025, 2024, 2023 @@ -14,13 +15,14 @@ "slug": "invesalius", "name": "Invesalius", "first_year": 2023, - "last_year": 2025, + "last_year": 2026, "total_projects": 13, "is_currently_active": true, "active_years": [ 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -36,10 +38,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.191Z" + "generated_at": "2026-02-19T13:36:01.980Z" } } \ No newline at end of file diff --git a/new-api-details/topics/neuroscience.json b/new-api-details/topics/neuroscience.json index 78727c90..00908bf9 100644 --- a/new-api-details/topics/neuroscience.json +++ b/new-api-details/topics/neuroscience.json @@ -1,10 +1,11 @@ { "slug": "neuroscience", "name": "neuroscience", - "published_at": "2026-01-25T16:06:28.445Z", + "published_at": "2026-02-19T13:36:00.415Z", "organizationCount": 5, "projectCount": 231, "years": [ + 2026, 2025, 2024, 2023, @@ -17,16 +18,38 @@ 2016 ], "organizations": [ + { + "slug": "incf", + "name": "INCF", + "first_year": 2016, + "last_year": 2026, + "total_projects": 211, + "is_currently_active": true, + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ] + }, { "slug": "alaska", "name": "Alaska", "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "total_projects": 12, "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -40,35 +63,16 @@ 2022 ] }, - { - "slug": "incf", - "name": "INCF", - "first_year": 2016, - "last_year": 2025, - "total_projects": 211, - "is_currently_active": true, - "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 - ] - }, { "slug": "neuroinformatics-unit", "name": "Neuroinformatics Unit", "first_year": 2025, - "last_year": 2025, + "last_year": 2026, "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] }, { @@ -123,10 +127,14 @@ "2025": { "organizationCount": 3, "projectCount": 37 + }, + "2026": { + "organizationCount": 3, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.445Z" + "generated_at": "2026-02-19T13:36:00.415Z" } } \ No newline at end of file diff --git a/new-api-details/topics/new-projects.json b/new-api-details/topics/new-projects.json index e467a6d2..cb041ac8 100644 --- a/new-api-details/topics/new-projects.json +++ b/new-api-details/topics/new-projects.json @@ -1,7 +1,7 @@ { "slug": "new-projects", "name": "new projects", - "published_at": "2026-01-25T16:06:29.551Z", + "published_at": "2026-02-19T13:36:02.734Z", "organizationCount": 1, "projectCount": 13, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.551Z" + "generated_at": "2026-02-19T13:36:02.734Z" } } \ No newline at end of file diff --git a/new-api-details/topics/news-media.json b/new-api-details/topics/news-media.json index b384258c..31eab98c 100644 --- a/new-api-details/topics/news-media.json +++ b/new-api-details/topics/news-media.json @@ -1,7 +1,7 @@ { "slug": "news-media", "name": "news-media", - "published_at": "2026-01-25T16:06:29.336Z", + "published_at": "2026-02-19T13:36:02.271Z", "organizationCount": 1, "projectCount": 0, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.336Z" + "generated_at": "2026-02-19T13:36:02.271Z" } } \ No newline at end of file diff --git a/new-api-details/topics/next-generation-sequencing.json b/new-api-details/topics/next-generation-sequencing.json index a6456126..203d4d9b 100644 --- a/new-api-details/topics/next-generation-sequencing.json +++ b/new-api-details/topics/next-generation-sequencing.json @@ -1,7 +1,7 @@ { "slug": "next-generation-sequencing", "name": "next-generation sequencing", - "published_at": "2026-01-25T16:06:28.693Z", + "published_at": "2026-02-19T13:36:00.914Z", "organizationCount": 1, "projectCount": 15, "years": [ @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.693Z" + "generated_at": "2026-02-19T13:36:00.914Z" } } \ No newline at end of file diff --git a/new-api-details/topics/nlp.json b/new-api-details/topics/nlp.json index 8fd1fb8d..bc00f7d6 100644 --- a/new-api-details/topics/nlp.json +++ b/new-api-details/topics/nlp.json @@ -1,10 +1,11 @@ { "slug": "nlp", "name": "nlp", - "published_at": "2026-01-25T16:06:28.778Z", + "published_at": "2026-02-19T13:36:01.034Z", "organizationCount": 7, "projectCount": 117, "years": [ + 2026, 2025, 2024, 2023, @@ -18,31 +19,67 @@ ], "organizations": [ { - "slug": "classical-language-toolkit", - "name": "Classical Language Toolkit", - "first_year": 2016, - "last_year": 2018, - "total_projects": 7, - "is_currently_active": false, + "slug": "fossology", + "name": "FOSSology", + "first_year": 2018, + "last_year": 2026, + "total_projects": 42, + "is_currently_active": true, + "active_years": [ + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ] + }, + { + "slug": "pharo-consortium", + "name": "Pharo Consortium", + "first_year": 2017, + "last_year": 2026, + "total_projects": 32, + "is_currently_active": true, "active_years": [ - 2016, 2017, - 2018 + 2019, + 2021, + 2023, + 2025, + 2026 ] }, { "slug": "cuneiform-digital-library-initiative-cdli", "name": "Cuneiform Digital Library Initiative (CDLI)", "first_year": 2018, - "last_year": 2022, + "last_year": 2026, "total_projects": 30, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2018, 2019, 2020, 2021, - 2022 + 2022, + 2026 + ] + }, + { + "slug": "classical-language-toolkit", + "name": "Classical Language Toolkit", + "first_year": 2016, + "last_year": 2018, + "total_projects": 7, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2018 ] }, { @@ -56,24 +93,6 @@ 2021 ] }, - { - "slug": "fossology", - "name": "FOSSology", - "first_year": 2018, - "last_year": 2025, - "total_projects": 42, - "is_currently_active": true, - "active_years": [ - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 - ] - }, { "slug": "languagetoolorg", "name": "languagetool.org", @@ -85,21 +104,6 @@ 2018 ] }, - { - "slug": "pharo-consortium", - "name": "Pharo Consortium", - "first_year": 2017, - "last_year": 2025, - "total_projects": 32, - "is_currently_active": true, - "active_years": [ - 2017, - 2019, - 2021, - 2023, - 2025 - ] - }, { "slug": "quillorg", "name": "Quill.org", @@ -152,10 +156,14 @@ "2025": { "organizationCount": 2, "projectCount": 18 + }, + "2026": { + "organizationCount": 3, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.778Z" + "generated_at": "2026-02-19T13:36:01.034Z" } } \ No newline at end of file diff --git a/new-api-details/topics/no-code-platform.json b/new-api-details/topics/no-code-platform.json index 1984cbaa..22b1d392 100644 --- a/new-api-details/topics/no-code-platform.json +++ b/new-api-details/topics/no-code-platform.json @@ -1,7 +1,7 @@ { "slug": "no-code-platform", "name": "No code platform", - "published_at": "2026-01-25T16:06:29.235Z", + "published_at": "2026-02-19T13:36:02.091Z", "organizationCount": 1, "projectCount": 11, "years": [ @@ -16,7 +16,7 @@ "first_year": 2023, "last_year": 2025, "total_projects": 11, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2023, 2024, @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.235Z" + "generated_at": "2026-02-19T13:36:02.091Z" } } \ No newline at end of file diff --git a/new-api-details/topics/node-js.json b/new-api-details/topics/node-js.json index 81a2f456..20feeb43 100644 --- a/new-api-details/topics/node-js.json +++ b/new-api-details/topics/node-js.json @@ -1,10 +1,11 @@ { "slug": "node-js", "name": "Node.js", - "published_at": "2026-01-25T16:06:29.885Z", + "published_at": "2026-02-19T13:36:03.132Z", "organizationCount": 1, "projectCount": 10, "years": [ + 2026, 2025, 2024, 2020, @@ -16,7 +17,7 @@ "slug": "webpack", "name": "webpack", "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "total_projects": 10, "is_currently_active": true, "active_years": [ @@ -24,7 +25,8 @@ 2019, 2020, 2024, - 2025 + 2025, + 2026 ] } ], @@ -48,10 +50,14 @@ "2025": { "organizationCount": 1, "projectCount": 1 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.885Z" + "generated_at": "2026-02-19T13:36:03.132Z" } } \ No newline at end of file diff --git a/new-api-details/topics/nodered.json b/new-api-details/topics/nodered.json index 2542c614..8bdf97a5 100644 --- a/new-api-details/topics/nodered.json +++ b/new-api-details/topics/nodered.json @@ -1,10 +1,11 @@ { "slug": "nodered", "name": "nodered", - "published_at": "2026-01-25T16:06:29.457Z", + "published_at": "2026-02-19T13:36:02.530Z", "organizationCount": 1, "projectCount": 70, "years": [ + 2026, 2025, 2024, 2023, @@ -19,7 +20,7 @@ "slug": "open-technologies-alliance-gfoss", "name": "Open Technologies Alliance - GFOSS", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 70, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.457Z" + "generated_at": "2026-02-19T13:36:02.530Z" } } \ No newline at end of file diff --git a/new-api-details/topics/non-linear.json b/new-api-details/topics/non-linear.json index 810e537c..e37562b2 100644 --- a/new-api-details/topics/non-linear.json +++ b/new-api-details/topics/non-linear.json @@ -1,10 +1,11 @@ { "slug": "non-linear", "name": "non-linear", - "published_at": "2026-01-25T16:06:29.766Z", + "published_at": "2026-02-19T13:36:03.113Z", "organizationCount": 1, "projectCount": 92, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "videolan", "name": "VideoLAN", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 92, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 15 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.766Z" + "generated_at": "2026-02-19T13:36:03.113Z" } } \ No newline at end of file diff --git a/new-api-details/topics/non-profit.json b/new-api-details/topics/non-profit.json index 426ec4e2..a239fcba 100644 --- a/new-api-details/topics/non-profit.json +++ b/new-api-details/topics/non-profit.json @@ -1,10 +1,11 @@ { "slug": "non-profit", "name": "non-profit", - "published_at": "2026-01-25T16:06:29.177Z", + "published_at": "2026-02-19T13:36:01.885Z", "organizationCount": 1, "projectCount": 26, "years": [ + 2026, 2025, 2024, 2023, @@ -19,7 +20,7 @@ "slug": "internet-archive", "name": "Internet Archive", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 26, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2021, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.177Z" + "generated_at": "2026-02-19T13:36:01.885Z" } } \ No newline at end of file diff --git a/new-api-details/topics/nonblocking.json b/new-api-details/topics/nonblocking.json index 32628e81..cf0f5e1a 100644 --- a/new-api-details/topics/nonblocking.json +++ b/new-api-details/topics/nonblocking.json @@ -1,7 +1,7 @@ { "slug": "nonblocking", "name": "nonblocking", - "published_at": "2026-01-25T16:06:29.403Z", + "published_at": "2026-02-19T13:36:02.405Z", "organizationCount": 1, "projectCount": 1, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.403Z" + "generated_at": "2026-02-19T13:36:02.405Z" } } \ No newline at end of file diff --git a/new-api-details/topics/nonprofit.json b/new-api-details/topics/nonprofit.json index c29fb053..7764b185 100644 --- a/new-api-details/topics/nonprofit.json +++ b/new-api-details/topics/nonprofit.json @@ -1,10 +1,11 @@ { "slug": "nonprofit", "name": "nonprofit", - "published_at": "2026-01-25T16:06:28.777Z", + "published_at": "2026-02-19T13:36:01.033Z", "organizationCount": 5, "projectCount": 149, "years": [ + 2026, 2025, 2024, 2023, @@ -17,6 +18,41 @@ 2016 ], "organizations": [ + { + "slug": "oppia-foundation", + "name": "Oppia Foundation", + "first_year": 2016, + "last_year": 2026, + "total_projects": 77, + "is_currently_active": true, + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ] + }, + { + "slug": "digital-impact-alliance-dial-at-un-foundation", + "name": "Digital Impact Alliance (DIAL) at UN Foundation", + "first_year": 2018, + "last_year": 2021, + "total_projects": 31, + "is_currently_active": false, + "active_years": [ + 2018, + 2019, + 2020, + 2021 + ] + }, { "slug": "civicrm", "name": "CiviCRM", @@ -46,20 +82,6 @@ 2024 ] }, - { - "slug": "digital-impact-alliance-dial-at-un-foundation", - "name": "Digital Impact Alliance (DIAL) at UN Foundation", - "first_year": 2018, - "last_year": 2021, - "total_projects": 31, - "is_currently_active": false, - "active_years": [ - 2018, - 2019, - 2020, - 2021 - ] - }, { "slug": "mathesar", "name": "Mathesar", @@ -71,26 +93,6 @@ 2022, 2023 ] - }, - { - "slug": "oppia-foundation", - "name": "Oppia Foundation", - "first_year": 2016, - "last_year": 2025, - "total_projects": 77, - "is_currently_active": true, - "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 - ] } ], "yearlyStats": { @@ -133,10 +135,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.777Z" + "generated_at": "2026-02-19T13:36:01.033Z" } } \ No newline at end of file diff --git a/new-api-details/topics/nonprofits.json b/new-api-details/topics/nonprofits.json index 3840a5cc..dfdd5548 100644 --- a/new-api-details/topics/nonprofits.json +++ b/new-api-details/topics/nonprofits.json @@ -1,7 +1,7 @@ { "slug": "nonprofits", "name": "nonprofits", - "published_at": "2026-01-25T16:06:28.777Z", + "published_at": "2026-02-19T13:36:01.032Z", "organizationCount": 2, "projectCount": 36, "years": [ @@ -76,6 +76,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.777Z" + "generated_at": "2026-02-19T13:36:01.032Z" } } \ No newline at end of file diff --git a/new-api-details/topics/nosql-database.json b/new-api-details/topics/nosql-database.json index bb29cca6..3973f328 100644 --- a/new-api-details/topics/nosql-database.json +++ b/new-api-details/topics/nosql-database.json @@ -1,7 +1,7 @@ { "slug": "nosql-database", "name": "NoSQL Database", - "published_at": "2026-01-25T16:06:29.672Z", + "published_at": "2026-02-19T13:36:02.892Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.672Z" + "generated_at": "2026-02-19T13:36:02.892Z" } } \ No newline at end of file diff --git a/new-api-details/topics/nosql.json b/new-api-details/topics/nosql.json index c4518e0e..4e984c2c 100644 --- a/new-api-details/topics/nosql.json +++ b/new-api-details/topics/nosql.json @@ -1,7 +1,7 @@ { "slug": "nosql", "name": "nosql", - "published_at": "2026-01-25T16:06:29.551Z", + "published_at": "2026-02-19T13:36:02.732Z", "organizationCount": 1, "projectCount": 9, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.551Z" + "generated_at": "2026-02-19T13:36:02.732Z" } } \ No newline at end of file diff --git a/new-api-details/topics/notation-software.json b/new-api-details/topics/notation-software.json index f7636775..e1decb5a 100644 --- a/new-api-details/topics/notation-software.json +++ b/new-api-details/topics/notation-software.json @@ -1,7 +1,7 @@ { "slug": "notation-software", "name": "notation software", - "published_at": "2026-01-25T16:06:29.387Z", + "published_at": "2026-02-19T13:36:02.375Z", "organizationCount": 1, "projectCount": 24, "years": [ @@ -76,6 +76,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.387Z" + "generated_at": "2026-02-19T13:36:02.375Z" } } \ No newline at end of file diff --git a/new-api-details/topics/notation.json b/new-api-details/topics/notation.json index b2e9431f..1dd69410 100644 --- a/new-api-details/topics/notation.json +++ b/new-api-details/topics/notation.json @@ -1,7 +1,7 @@ { "slug": "notation", "name": "notation", - "published_at": "2026-01-25T16:06:29.382Z", + "published_at": "2026-02-19T13:36:02.368Z", "organizationCount": 1, "projectCount": 24, "years": [ @@ -76,6 +76,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.382Z" + "generated_at": "2026-02-19T13:36:02.368Z" } } \ No newline at end of file diff --git a/new-api-details/topics/note-taking.json b/new-api-details/topics/note-taking.json index 414f55b5..ec0b197f 100644 --- a/new-api-details/topics/note-taking.json +++ b/new-api-details/topics/note-taking.json @@ -1,10 +1,11 @@ { "slug": "note-taking", "name": "note-taking", - "published_at": "2026-01-25T16:06:29.227Z", + "published_at": "2026-02-19T13:36:02.066Z", "organizationCount": 1, "projectCount": 17, "years": [ + 2026, 2024, 2022, 2021, @@ -15,14 +16,15 @@ "slug": "joplin", "name": "Joplin", "first_year": 2020, - "last_year": 2024, + "last_year": 2026, "total_projects": 17, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2020, 2021, 2022, - 2024 + 2024, + 2026 ] } ], @@ -42,10 +44,14 @@ "2024": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.227Z" + "generated_at": "2026-02-19T13:36:02.067Z" } } \ No newline at end of file diff --git a/new-api-details/topics/notes.json b/new-api-details/topics/notes.json index 353514a3..e4eb2036 100644 --- a/new-api-details/topics/notes.json +++ b/new-api-details/topics/notes.json @@ -1,10 +1,11 @@ { "slug": "notes", "name": "notes", - "published_at": "2026-01-25T16:06:29.224Z", + "published_at": "2026-02-19T13:36:02.056Z", "organizationCount": 1, "projectCount": 17, "years": [ + 2026, 2024, 2022, 2021, @@ -15,14 +16,15 @@ "slug": "joplin", "name": "Joplin", "first_year": 2020, - "last_year": 2024, + "last_year": 2026, "total_projects": 17, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2020, 2021, 2022, - 2024 + 2024, + 2026 ] } ], @@ -42,10 +44,14 @@ "2024": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.224Z" + "generated_at": "2026-02-19T13:36:02.056Z" } } \ No newline at end of file diff --git a/new-api-details/topics/numerical-algorithms.json b/new-api-details/topics/numerical-algorithms.json index e29d1234..a9fb00b5 100644 --- a/new-api-details/topics/numerical-algorithms.json +++ b/new-api-details/topics/numerical-algorithms.json @@ -1,10 +1,11 @@ { "slug": "numerical-algorithms", "name": "numerical algorithms", - "published_at": "2026-01-25T16:06:29.572Z", + "published_at": "2026-02-19T13:36:02.768Z", "organizationCount": 1, "projectCount": 7, "years": [ + 2026, 2025, 2024 ], @@ -13,12 +14,13 @@ "slug": "qc-devs", "name": "QC-Devs", "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "total_projects": 7, "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -30,10 +32,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.572Z" + "generated_at": "2026-02-19T13:36:02.768Z" } } \ No newline at end of file diff --git a/new-api-details/topics/numerical-and-data-analysis-software.json b/new-api-details/topics/numerical-and-data-analysis-software.json index 742a9463..d6056299 100644 --- a/new-api-details/topics/numerical-and-data-analysis-software.json +++ b/new-api-details/topics/numerical-and-data-analysis-software.json @@ -1,10 +1,11 @@ { "slug": "numerical-and-data-analysis-software", "name": "numerical and data analysis software", - "published_at": "2026-01-25T16:06:28.643Z", + "published_at": "2026-02-19T13:36:00.975Z", "organizationCount": 2, "projectCount": 33, "years": [ + 2026, 2025, 2024, 2023, @@ -17,22 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "cern-sft", - "name": "CERN SFT", - "first_year": 2016, - "last_year": 2016, - "total_projects": 10, - "is_currently_active": false, - "active_years": [ - 2016 - ] - }, { "slug": "gnu-octave", "name": "GNU Octave", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 23, "is_currently_active": true, "active_years": [ @@ -45,7 +35,19 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "cern-sft", + "name": "CERN SFT", + "first_year": 2016, + "last_year": 2016, + "total_projects": 10, + "is_currently_active": false, + "active_years": [ + 2016 ] } ], @@ -89,10 +91,14 @@ "2025": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.643Z" + "generated_at": "2026-02-19T13:36:00.975Z" } } \ No newline at end of file diff --git a/new-api-details/topics/numerical-computation.json b/new-api-details/topics/numerical-computation.json index 349a0d0c..3daaf60d 100644 --- a/new-api-details/topics/numerical-computation.json +++ b/new-api-details/topics/numerical-computation.json @@ -1,10 +1,11 @@ { "slug": "numerical-computation", "name": "numerical computation", - "published_at": "2026-01-25T16:06:29.040Z", + "published_at": "2026-02-19T13:36:01.673Z", "organizationCount": 4, "projectCount": 454, "years": [ + 2026, 2025, 2024, 2023, @@ -18,11 +19,11 @@ ], "organizations": [ { - "slug": "gnu-octave", - "name": "GNU Octave", + "slug": "numfocus", + "name": "NumFOCUS", "first_year": 2016, - "last_year": 2025, - "total_projects": 23, + "last_year": 2026, + "total_projects": 277, "is_currently_active": true, "active_years": [ 2016, @@ -34,59 +35,62 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "numfocus", - "name": "NumFOCUS", + "slug": "the-julia-language", + "name": "The Julia Language", "first_year": 2016, - "last_year": 2025, - "total_projects": 277, + "last_year": 2026, + "total_projects": 140, "is_currently_active": true, "active_years": [ 2016, 2017, - 2018, 2019, 2020, 2021, 2022, 2023, 2024, - 2025 - ] - }, - { - "slug": "scilab", - "name": "Scilab", - "first_year": 2016, - "last_year": 2018, - "total_projects": 14, - "is_currently_active": false, - "active_years": [ - 2016, - 2017, - 2018 + 2025, + 2026 ] }, { - "slug": "the-julia-language", - "name": "The Julia Language", + "slug": "gnu-octave", + "name": "GNU Octave", "first_year": 2016, - "last_year": 2025, - "total_projects": 140, + "last_year": 2026, + "total_projects": 23, "is_currently_active": true, "active_years": [ 2016, 2017, + 2018, 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "scilab", + "name": "Scilab", + "first_year": 2016, + "last_year": 2018, + "total_projects": 14, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2018 ] } ], @@ -130,10 +134,14 @@ "2025": { "organizationCount": 3, "projectCount": 48 + }, + "2026": { + "organizationCount": 3, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.040Z" + "generated_at": "2026-02-19T13:36:01.673Z" } } \ No newline at end of file diff --git a/new-api-details/topics/numerical-computing.json b/new-api-details/topics/numerical-computing.json index 7bc95544..74677095 100644 --- a/new-api-details/topics/numerical-computing.json +++ b/new-api-details/topics/numerical-computing.json @@ -1,10 +1,11 @@ { "slug": "numerical-computing", "name": "numerical computing", - "published_at": "2026-01-25T16:06:28.986Z", + "published_at": "2026-02-19T13:36:01.428Z", "organizationCount": 5, "projectCount": 461, "years": [ + 2026, 2025, 2024, 2023, @@ -18,38 +19,60 @@ ], "organizations": [ { - "slug": "fortran-lang", - "name": "Fortran-lang", - "first_year": 2021, - "last_year": 2025, - "total_projects": 21, + "slug": "numfocus", + "name": "NumFOCUS", + "first_year": 2016, + "last_year": 2026, + "total_projects": 277, "is_currently_active": true, "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "numfocus", - "name": "NumFOCUS", + "slug": "the-julia-language", + "name": "The Julia Language", "first_year": 2016, - "last_year": 2025, - "total_projects": 277, + "last_year": 2026, + "total_projects": 140, "is_currently_active": true, "active_years": [ 2016, 2017, - 2018, 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "fortran-lang", + "name": "Fortran-lang", + "first_year": 2021, + "last_year": 2026, + "total_projects": 21, + "is_currently_active": true, + "active_years": [ + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { @@ -69,31 +92,13 @@ "slug": "stdlib", "name": "stdlib", "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "total_projects": 9, "is_currently_active": true, "active_years": [ 2024, - 2025 - ] - }, - { - "slug": "the-julia-language", - "name": "The Julia Language", - "first_year": 2016, - "last_year": 2025, - "total_projects": 140, - "is_currently_active": true, - "active_years": [ - 2016, - 2017, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2025, + 2026 ] } ], @@ -137,10 +142,14 @@ "2025": { "organizationCount": 4, "projectCount": 56 + }, + "2026": { + "organizationCount": 4, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.986Z" + "generated_at": "2026-02-19T13:36:01.428Z" } } \ No newline at end of file diff --git a/new-api-details/topics/numerical-methods.json b/new-api-details/topics/numerical-methods.json index 6fc42422..e9f262dd 100644 --- a/new-api-details/topics/numerical-methods.json +++ b/new-api-details/topics/numerical-methods.json @@ -1,10 +1,11 @@ { "slug": "numerical-methods", "name": "numerical methods", - "published_at": "2026-01-25T16:06:29.042Z", + "published_at": "2026-02-19T13:36:01.676Z", "organizationCount": 2, "projectCount": 36, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "gnu-octave", "name": "GNU Octave", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 23, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -43,7 +45,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 13, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -96,10 +98,14 @@ "2025": { "organizationCount": 2, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.042Z" + "generated_at": "2026-02-19T13:36:01.676Z" } } \ No newline at end of file diff --git a/new-api-details/topics/object-oriented-programming.json b/new-api-details/topics/object-oriented-programming.json index 41fcf171..bdc44f17 100644 --- a/new-api-details/topics/object-oriented-programming.json +++ b/new-api-details/topics/object-oriented-programming.json @@ -1,10 +1,11 @@ { "slug": "object-oriented-programming", "name": "object-oriented programming", - "published_at": "2026-01-25T16:06:28.812Z", + "published_at": "2026-02-19T13:36:01.142Z", "organizationCount": 3, "projectCount": 82, "years": [ + 2026, 2025, 2024, 2023, @@ -17,24 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "d-language-foundation", - "name": "D Language Foundation", - "first_year": 2016, - "last_year": 2025, - "total_projects": 11, - "is_currently_active": true, - "active_years": [ - 2016, - 2019, - 2025 - ] - }, { "slug": "drupal-association", "name": "Drupal Association", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 39, "is_currently_active": true, "active_years": [ @@ -46,14 +34,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "pharo-consortium", "name": "Pharo Consortium", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 32, "is_currently_active": true, "active_years": [ @@ -61,7 +50,22 @@ 2019, 2021, 2023, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "d-language-foundation", + "name": "D Language Foundation", + "first_year": 2016, + "last_year": 2026, + "total_projects": 11, + "is_currently_active": true, + "active_years": [ + 2016, + 2019, + 2025, + 2026 ] } ], @@ -105,10 +109,14 @@ "2025": { "organizationCount": 3, "projectCount": 17 + }, + "2026": { + "organizationCount": 3, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.812Z" + "generated_at": "2026-02-19T13:36:01.142Z" } } \ No newline at end of file diff --git a/new-api-details/topics/object-oriented.json b/new-api-details/topics/object-oriented.json index 9fe148f7..a9121bb4 100644 --- a/new-api-details/topics/object-oriented.json +++ b/new-api-details/topics/object-oriented.json @@ -1,10 +1,11 @@ { "slug": "object-oriented", "name": "object-oriented", - "published_at": "2026-01-25T16:06:28.863Z", + "published_at": "2026-02-19T13:36:01.214Z", "organizationCount": 2, "projectCount": 75, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "drupal-association", "name": "Drupal Association", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 39, "is_currently_active": true, "active_years": [ @@ -33,14 +34,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "joomla", "name": "Joomla!", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 36, "is_currently_active": true, "active_years": [ @@ -50,7 +52,8 @@ 2019, 2021, 2022, - 2025 + 2025, + 2026 ] } ], @@ -94,10 +97,14 @@ "2025": { "organizationCount": 2, "projectCount": 11 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.863Z" + "generated_at": "2026-02-19T13:36:01.214Z" } } \ No newline at end of file diff --git a/new-api-details/topics/observability.json b/new-api-details/topics/observability.json index 338e8320..cf3d55ad 100644 --- a/new-api-details/topics/observability.json +++ b/new-api-details/topics/observability.json @@ -1,10 +1,11 @@ { "slug": "observability", "name": "observability", - "published_at": "2026-01-25T16:06:28.680Z", + "published_at": "2026-02-19T13:36:01.058Z", "organizationCount": 4, "projectCount": 141, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "cncf", "name": "CNCF", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 113, "is_currently_active": true, "active_years": [ @@ -33,19 +34,8 @@ 2022, 2023, 2024, - 2025 - ] - }, - { - "slug": "elastic", - "name": "Elastic", - "first_year": 2018, - "last_year": 2020, - "total_projects": 4, - "is_currently_active": false, - "active_years": [ - 2018, - 2020 + 2025, + 2026 ] }, { @@ -70,11 +60,23 @@ "first_year": 2024, "last_year": 2025, "total_projects": 5, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2024, 2025 ] + }, + { + "slug": "elastic", + "name": "Elastic", + "first_year": 2018, + "last_year": 2020, + "total_projects": 4, + "is_currently_active": false, + "active_years": [ + 2018, + 2020 + ] } ], "yearlyStats": { @@ -117,10 +119,14 @@ "2025": { "organizationCount": 2, "projectCount": 13 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.680Z" + "generated_at": "2026-02-19T13:36:01.058Z" } } \ No newline at end of file diff --git a/new-api-details/topics/oceanography.json b/new-api-details/topics/oceanography.json index dbb7c8a8..fc9b4e8d 100644 --- a/new-api-details/topics/oceanography.json +++ b/new-api-details/topics/oceanography.json @@ -1,10 +1,11 @@ { "slug": "oceanography", "name": "Oceanography", - "published_at": "2026-01-25T16:06:29.139Z", + "published_at": "2026-02-19T13:36:01.989Z", "organizationCount": 1, "projectCount": 22, "years": [ + 2026, 2025, 2024, 2022, @@ -15,14 +16,15 @@ "slug": "ioos", "name": "IOOS", "first_year": 2021, - "last_year": 2025, + "last_year": 2026, "total_projects": 22, "is_currently_active": true, "active_years": [ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] } ], @@ -42,10 +44,14 @@ "2025": { "organizationCount": 1, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.139Z" + "generated_at": "2026-02-19T13:36:01.989Z" } } \ No newline at end of file diff --git a/new-api-details/topics/offensive-security.json b/new-api-details/topics/offensive-security.json index 8a6be34d..5226efa1 100644 --- a/new-api-details/topics/offensive-security.json +++ b/new-api-details/topics/offensive-security.json @@ -1,10 +1,11 @@ { "slug": "offensive-security", "name": "offensive security", - "published_at": "2026-01-25T16:06:29.352Z", + "published_at": "2026-02-19T13:36:02.298Z", "organizationCount": 1, "projectCount": 12, "years": [ + 2026, 2023, 2022, 2021, @@ -17,16 +18,17 @@ "slug": "metasploit", "name": "Metasploit", "first_year": 2017, - "last_year": 2023, + "last_year": 2026, "total_projects": 12, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, 2020, 2021, 2022, - 2023 + 2023, + 2026 ] } ], @@ -54,10 +56,14 @@ "2023": { "organizationCount": 1, "projectCount": 1 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.352Z" + "generated_at": "2026-02-19T13:36:02.298Z" } } \ No newline at end of file diff --git a/new-api-details/topics/office-suite.json b/new-api-details/topics/office-suite.json index 686c14c3..be39e913 100644 --- a/new-api-details/topics/office-suite.json +++ b/new-api-details/topics/office-suite.json @@ -1,10 +1,11 @@ { "slug": "office-suite", "name": "office suite", - "published_at": "2026-01-25T16:06:29.282Z", + "published_at": "2026-02-19T13:36:02.188Z", "organizationCount": 1, "projectCount": 65, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "libreoffice", "name": "LibreOffice", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 65, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.282Z" + "generated_at": "2026-02-19T13:36:02.188Z" } } \ No newline at end of file diff --git a/new-api-details/topics/office.json b/new-api-details/topics/office.json index b3f5c161..c0d91aa0 100644 --- a/new-api-details/topics/office.json +++ b/new-api-details/topics/office.json @@ -1,10 +1,11 @@ { "slug": "office", "name": "office", - "published_at": "2026-01-25T16:06:29.229Z", + "published_at": "2026-02-19T13:36:02.069Z", "organizationCount": 1, "projectCount": 17, "years": [ + 2026, 2024, 2022, 2021, @@ -15,14 +16,15 @@ "slug": "joplin", "name": "Joplin", "first_year": 2020, - "last_year": 2024, + "last_year": 2026, "total_projects": 17, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2020, 2021, 2022, - 2024 + 2024, + 2026 ] } ], @@ -42,10 +44,14 @@ "2024": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.229Z" + "generated_at": "2026-02-19T13:36:02.069Z" } } \ No newline at end of file diff --git a/new-api-details/topics/offline-access.json b/new-api-details/topics/offline-access.json index dba7dcad..b242021d 100644 --- a/new-api-details/topics/offline-access.json +++ b/new-api-details/topics/offline-access.json @@ -1,10 +1,11 @@ { "slug": "offline-access", "name": "offline access", - "published_at": "2026-01-25T16:06:29.242Z", + "published_at": "2026-02-19T13:36:02.109Z", "organizationCount": 1, "projectCount": 18, "years": [ + 2026, 2025, 2024, 2023, @@ -18,7 +19,7 @@ "slug": "kiwix", "name": "Kiwix", "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "total_projects": 18, "is_currently_active": true, "active_years": [ @@ -28,7 +29,8 @@ 2021, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -60,10 +62,14 @@ "2025": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.242Z" + "generated_at": "2026-02-19T13:36:02.109Z" } } \ No newline at end of file diff --git a/new-api-details/topics/offline.json b/new-api-details/topics/offline.json index 03dd4b5e..af96c3fd 100644 --- a/new-api-details/topics/offline.json +++ b/new-api-details/topics/offline.json @@ -1,10 +1,11 @@ { "slug": "offline", "name": "offline", - "published_at": "2026-01-25T16:06:29.241Z", + "published_at": "2026-02-19T13:36:02.108Z", "organizationCount": 3, "projectCount": 44, "years": [ + 2026, 2025, 2024, 2023, @@ -19,7 +20,7 @@ "slug": "kiwix", "name": "Kiwix", "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "total_projects": 18, "is_currently_active": true, "active_years": [ @@ -29,14 +30,15 @@ 2021, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "learning-equality", "name": "Learning Equality", "first_year": 2021, - "last_year": 2025, + "last_year": 2026, "total_projects": 16, "is_currently_active": true, "active_years": [ @@ -44,7 +46,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -53,7 +56,7 @@ "first_year": 2022, "last_year": 2025, "total_projects": 10, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2023, @@ -94,10 +97,14 @@ "2025": { "organizationCount": 3, "projectCount": 11 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.241Z" + "generated_at": "2026-02-19T13:36:02.108Z" } } \ No newline at end of file diff --git a/new-api-details/topics/ogc-standards.json b/new-api-details/topics/ogc-standards.json index 5d189296..83219a40 100644 --- a/new-api-details/topics/ogc-standards.json +++ b/new-api-details/topics/ogc-standards.json @@ -1,10 +1,11 @@ { "slug": "ogc-standards", "name": "ogc standards", - "published_at": "2026-01-25T16:06:28.362Z", + "published_at": "2026-02-19T13:36:00.283Z", "organizationCount": 1, "projectCount": 25, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "52north-spatial-information-research-gmbh", "name": "52°North Spatial Information Research GmbH", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 25, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.362Z" + "generated_at": "2026-02-19T13:36:00.283Z" } } \ No newline at end of file diff --git a/new-api-details/topics/ogc.json b/new-api-details/topics/ogc.json index 55c50979..62edbac8 100644 --- a/new-api-details/topics/ogc.json +++ b/new-api-details/topics/ogc.json @@ -1,10 +1,11 @@ { "slug": "ogc", "name": "ogc", - "published_at": "2026-01-25T16:06:28.358Z", + "published_at": "2026-02-19T13:36:00.271Z", "organizationCount": 1, "projectCount": 25, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "52north-spatial-information-research-gmbh", "name": "52°North Spatial Information Research GmbH", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 25, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.358Z" + "generated_at": "2026-02-19T13:36:00.271Z" } } \ No newline at end of file diff --git a/new-api-details/topics/olap.json b/new-api-details/topics/olap.json index fb9f7381..c64734bd 100644 --- a/new-api-details/topics/olap.json +++ b/new-api-details/topics/olap.json @@ -1,7 +1,7 @@ { "slug": "olap", "name": "OLAP", - "published_at": "2026-01-25T16:06:28.468Z", + "published_at": "2026-02-19T13:36:00.485Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -14,7 +14,7 @@ "first_year": 2025, "last_year": 2025, "total_projects": 2, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2025 ] @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.468Z" + "generated_at": "2026-02-19T13:36:00.485Z" } } \ No newline at end of file diff --git a/new-api-details/topics/omics-data.json b/new-api-details/topics/omics-data.json index ad97bc4f..5f09516b 100644 --- a/new-api-details/topics/omics-data.json +++ b/new-api-details/topics/omics-data.json @@ -1,7 +1,7 @@ { "slug": "omics-data", "name": "omics data", - "published_at": "2026-01-25T16:06:28.791Z", + "published_at": "2026-02-19T13:36:01.072Z", "organizationCount": 1, "projectCount": 18, "years": [ @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.791Z" + "generated_at": "2026-02-19T13:36:01.072Z" } } \ No newline at end of file diff --git a/new-api-details/topics/on-device-machine-learning.json b/new-api-details/topics/on-device-machine-learning.json index c8577a8d..5a81c2fc 100644 --- a/new-api-details/topics/on-device-machine-learning.json +++ b/new-api-details/topics/on-device-machine-learning.json @@ -1,7 +1,7 @@ { "slug": "on-device-machine-learning", "name": "on-device machine learning", - "published_at": "2026-01-25T16:06:29.673Z", + "published_at": "2026-02-19T13:36:02.902Z", "organizationCount": 1, "projectCount": 81, "years": [ @@ -52,6 +52,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.673Z" + "generated_at": "2026-02-19T13:36:02.903Z" } } \ No newline at end of file diff --git a/new-api-details/topics/ontologies.json b/new-api-details/topics/ontologies.json index 2e00520e..7f2c03f8 100644 --- a/new-api-details/topics/ontologies.json +++ b/new-api-details/topics/ontologies.json @@ -1,10 +1,11 @@ { "slug": "ontologies", "name": "ontologies", - "published_at": "2026-01-25T16:06:28.817Z", + "published_at": "2026-02-19T13:36:01.156Z", "organizationCount": 1, "projectCount": 61, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "dbpedia", "name": "DBpedia", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 61, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.817Z" + "generated_at": "2026-02-19T13:36:01.156Z" } } \ No newline at end of file diff --git a/new-api-details/topics/open-data.json b/new-api-details/topics/open-data.json index 66d04ad3..4c006c7c 100644 --- a/new-api-details/topics/open-data.json +++ b/new-api-details/topics/open-data.json @@ -1,10 +1,11 @@ { "slug": "open-data", "name": "open data", - "published_at": "2026-01-25T16:06:28.844Z", + "published_at": "2026-02-19T13:36:01.184Z", "organizationCount": 8, "projectCount": 148, "years": [ + 2026, 2025, 2024, 2023, @@ -18,59 +19,32 @@ ], "organizations": [ { - "slug": "developers-italia", - "name": "Developers Italia", - "first_year": 2018, - "last_year": 2019, - "total_projects": 5, - "is_currently_active": false, - "active_years": [ - 2018, - 2019 - ] - }, - { - "slug": "environmental-data-and-governance-initiative", - "name": "Environmental Data And Governance Initiative", - "first_year": 2017, - "last_year": 2017, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2017 - ] - }, - { - "slug": "free-uk-genealogy", - "name": "Free UK Genealogy", - "first_year": 2018, - "last_year": 2018, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2018 - ] - }, - { - "slug": "ioos", - "name": "IOOS", - "first_year": 2021, - "last_year": 2025, - "total_projects": 22, + "slug": "metabrainz-foundation-inc", + "name": "MetaBrainz Foundation Inc", + "first_year": 2016, + "last_year": 2026, + "total_projects": 60, "is_currently_active": true, "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, 2021, 2022, + 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "metabrainz-foundation-inc", - "name": "MetaBrainz Foundation Inc", + "slug": "openstreetmap", + "name": "OpenStreetMap", "first_year": 2016, - "last_year": 2025, - "total_projects": 60, + "last_year": 2026, + "total_projects": 45, "is_currently_active": true, "active_years": [ 2016, @@ -82,40 +56,71 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "ioos", + "name": "IOOS", + "first_year": 2021, + "last_year": 2026, + "total_projects": 22, + "is_currently_active": true, + "active_years": [ + 2021, + 2022, + 2024, + 2025, + 2026 ] }, { "slug": "open-food-facts", "name": "Open Food Facts", "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "total_projects": 10, "is_currently_active": true, "active_years": [ 2018, 2022, - 2025 + 2025, + 2026 ] }, { - "slug": "openstreetmap", - "name": "OpenStreetMap", - "first_year": 2016, - "last_year": 2025, - "total_projects": 45, - "is_currently_active": true, + "slug": "developers-italia", + "name": "Developers Italia", + "first_year": 2018, + "last_year": 2019, + "total_projects": 5, + "is_currently_active": false, "active_years": [ - 2016, - 2017, 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2019 + ] + }, + { + "slug": "environmental-data-and-governance-initiative", + "name": "Environmental Data And Governance Initiative", + "first_year": 2017, + "last_year": 2017, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2017 + ] + }, + { + "slug": "free-uk-genealogy", + "name": "Free UK Genealogy", + "first_year": 2018, + "last_year": 2018, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2018 ] }, { @@ -170,10 +175,14 @@ "2025": { "organizationCount": 4, "projectCount": 25 + }, + "2026": { + "organizationCount": 4, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.844Z" + "generated_at": "2026-02-19T13:36:01.184Z" } } \ No newline at end of file diff --git a/new-api-details/topics/open-eda.json b/new-api-details/topics/open-eda.json new file mode 100644 index 00000000..256b67e7 --- /dev/null +++ b/new-api-details/topics/open-eda.json @@ -0,0 +1,33 @@ +{ + "slug": "open-eda", + "name": "Open EDA", + "published_at": "2026-02-19T13:36:02.956Z", + "organizationCount": 1, + "projectCount": 0, + "years": [ + 2026 + ], + "organizations": [ + { + "slug": "the-openroad-initiative", + "name": "The OpenROAD Initiative", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + } + ], + "yearlyStats": { + "2026": { + "organizationCount": 1, + "projectCount": 0 + } + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:36:02.956Z" + } +} \ No newline at end of file diff --git a/new-api-details/topics/open-education.json b/new-api-details/topics/open-education.json index 0ee6692a..025d596b 100644 --- a/new-api-details/topics/open-education.json +++ b/new-api-details/topics/open-education.json @@ -1,10 +1,11 @@ { "slug": "open-education", "name": "open education", - "published_at": "2026-01-25T16:06:29.454Z", + "published_at": "2026-02-19T13:36:00.410Z", "organizationCount": 2, "projectCount": 86, "years": [ + 2026, 2025, 2024, 2023, @@ -16,25 +17,11 @@ 2016 ], "organizations": [ - { - "slug": "aimacode", - "name": "aimacode", - "first_year": 2016, - "last_year": 2019, - "total_projects": 16, - "is_currently_active": false, - "active_years": [ - 2016, - 2017, - 2018, - 2019 - ] - }, { "slug": "open-technologies-alliance-gfoss", "name": "Open Technologies Alliance - GFOSS", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 70, "is_currently_active": true, "active_years": [ @@ -45,7 +32,22 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "aimacode", + "name": "aimacode", + "first_year": 2016, + "last_year": 2019, + "total_projects": 16, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2018, + 2019 ] } ], @@ -85,10 +87,14 @@ "2025": { "organizationCount": 1, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.454Z" + "generated_at": "2026-02-19T13:36:00.410Z" } } \ No newline at end of file diff --git a/new-api-details/topics/open-event.json b/new-api-details/topics/open-event.json index 98ec13ed..7f668d22 100644 --- a/new-api-details/topics/open-event.json +++ b/new-api-details/topics/open-event.json @@ -1,7 +1,7 @@ { "slug": "open-event", "name": "open event", - "published_at": "2026-01-25T16:06:29.514Z", + "published_at": "2026-02-19T13:36:02.654Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.514Z" + "generated_at": "2026-02-19T13:36:02.654Z" } } \ No newline at end of file diff --git a/new-api-details/topics/open-government.json b/new-api-details/topics/open-government.json index b51d6d9a..55724f04 100644 --- a/new-api-details/topics/open-government.json +++ b/new-api-details/topics/open-government.json @@ -1,7 +1,7 @@ { "slug": "open-government", "name": "open government", - "published_at": "2026-01-25T16:06:28.847Z", + "published_at": "2026-02-19T13:36:01.187Z", "organizationCount": 1, "projectCount": 5, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.847Z" + "generated_at": "2026-02-19T13:36:01.187Z" } } \ No newline at end of file diff --git a/new-api-details/topics/open-hardware.json b/new-api-details/topics/open-hardware.json index a80e0dd2..2a126963 100644 --- a/new-api-details/topics/open-hardware.json +++ b/new-api-details/topics/open-hardware.json @@ -1,10 +1,11 @@ { "slug": "open-hardware", "name": "open hardware", - "published_at": "2026-01-25T16:06:28.570Z", + "published_at": "2026-02-19T13:36:00.661Z", "organizationCount": 6, "projectCount": 263, "years": [ + 2026, 2025, 2024, 2023, @@ -18,18 +19,17 @@ ], "organizations": [ { - "slug": "beagleboardorg", - "name": "BeagleBoard.org", + "slug": "freifunk", + "name": "freifunk", "first_year": 2016, "last_year": 2025, - "total_projects": 44, - "is_currently_active": true, + "total_projects": 74, + "is_currently_active": false, "active_years": [ 2016, 2017, 2018, 2019, - 2020, 2021, 2022, 2023, @@ -37,11 +37,30 @@ 2025 ] }, + { + "slug": "open-technologies-alliance-gfoss", + "name": "Open Technologies Alliance - GFOSS", + "first_year": 2017, + "last_year": 2026, + "total_projects": 70, + "is_currently_active": true, + "active_years": [ + 2017, + 2018, + 2019, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ] + }, { "slug": "free-and-open-source-silicon-foundation", "name": "Free and Open Source Silicon Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 60, "is_currently_active": true, "active_years": [ @@ -54,21 +73,23 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "freifunk", - "name": "freifunk", + "slug": "beagleboardorg", + "name": "BeagleBoard.org", "first_year": 2016, "last_year": 2025, - "total_projects": 74, - "is_currently_active": true, + "total_projects": 44, + "is_currently_active": false, "active_years": [ 2016, 2017, 2018, 2019, + 2020, 2021, 2022, 2023, @@ -89,24 +110,6 @@ 2020 ] }, - { - "slug": "open-technologies-alliance-gfoss", - "name": "Open Technologies Alliance - GFOSS", - "first_year": 2017, - "last_year": 2025, - "total_projects": 70, - "is_currently_active": true, - "active_years": [ - 2017, - 2018, - 2019, - 2021, - 2022, - 2023, - 2024, - 2025 - ] - }, { "slug": "symbiflow", "name": "SymbiFlow", @@ -161,10 +164,14 @@ "2025": { "organizationCount": 4, "projectCount": 25 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.570Z" + "generated_at": "2026-02-19T13:36:00.661Z" } } \ No newline at end of file diff --git a/new-api-details/topics/open-science.json b/new-api-details/topics/open-science.json index 9eb53512..075d4416 100644 --- a/new-api-details/topics/open-science.json +++ b/new-api-details/topics/open-science.json @@ -1,10 +1,11 @@ { "slug": "open-science", "name": "open science", - "published_at": "2026-01-25T16:06:28.906Z", - "organizationCount": 8, - "projectCount": 328, + "published_at": "2026-02-19T13:36:01.257Z", + "organizationCount": 9, + "projectCount": 330, "years": [ + 2026, 2025, 2024, 2023, @@ -17,22 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "environmental-data-and-governance-initiative", - "name": "Environmental Data And Governance Initiative", - "first_year": 2017, - "last_year": 2017, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2017 - ] - }, { "slug": "fossasia", "name": "FOSSASIA", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 140, "is_currently_active": true, "active_years": [ @@ -41,33 +31,29 @@ 2018, 2019, 2024, - 2025 - ] - }, - { - "slug": "intermine", - "name": "InterMine", - "first_year": 2018, - "last_year": 2019, - "total_projects": 12, - "is_currently_active": false, - "active_years": [ - 2018, - 2019 + 2025, + 2026 ] }, { - "slug": "ioos", - "name": "IOOS", - "first_year": 2021, - "last_year": 2025, - "total_projects": 22, + "slug": "osgeo-open-source-geospatial-foundation", + "name": "OSGeo (Open Source Geospatial Foundation)", + "first_year": 2016, + "last_year": 2026, + "total_projects": 101, "is_currently_active": true, "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, 2021, 2022, + 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -87,35 +73,66 @@ 2022 ] }, + { + "slug": "ioos", + "name": "IOOS", + "first_year": 2021, + "last_year": 2026, + "total_projects": 22, + "is_currently_active": true, + "active_years": [ + 2021, + 2022, + 2024, + 2025, + 2026 + ] + }, + { + "slug": "intermine", + "name": "InterMine", + "first_year": 2018, + "last_year": 2019, + "total_projects": 12, + "is_currently_active": false, + "active_years": [ + 2018, + 2019 + ] + }, { "slug": "open-science-labs", "name": "Open Science Labs", "first_year": 2025, - "last_year": 2025, + "last_year": 2026, "total_projects": 4, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] }, { - "slug": "osgeo-open-source-geospatial-foundation", - "name": "OSGeo (Open Source Geospatial Foundation)", - "first_year": 2016, - "last_year": 2025, - "total_projects": 101, + "slug": "environmental-data-and-governance-initiative", + "name": "Environmental Data And Governance Initiative", + "first_year": 2017, + "last_year": 2017, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2017 + ] + }, + { + "slug": "openms", + "name": "OpenMS", + "first_year": 2025, + "last_year": 2026, + "total_projects": 2, "is_currently_active": true, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2025, + 2026 ] }, { @@ -168,12 +185,16 @@ "projectCount": 18 }, "2025": { - "organizationCount": 4, - "projectCount": 42 + "organizationCount": 5, + "projectCount": 44 + }, + "2026": { + "organizationCount": 5, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.906Z" + "generated_at": "2026-02-19T13:36:01.257Z" } } \ No newline at end of file diff --git a/new-api-details/topics/open-source-bioinformatics.json b/new-api-details/topics/open-source-bioinformatics.json index 2517f5ef..b97e8b10 100644 --- a/new-api-details/topics/open-source-bioinformatics.json +++ b/new-api-details/topics/open-source-bioinformatics.json @@ -1,7 +1,7 @@ { "slug": "open-source-bioinformatics", "name": "Open Source Bioinformatics", - "published_at": "2026-01-25T16:06:29.427Z", + "published_at": "2026-02-19T13:36:02.483Z", "organizationCount": 1, "projectCount": 45, "years": [ @@ -64,6 +64,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.427Z" + "generated_at": "2026-02-19T13:36:02.483Z" } } \ No newline at end of file diff --git a/new-api-details/topics/open-source-design.json b/new-api-details/topics/open-source-design.json new file mode 100644 index 00000000..fd82c80b --- /dev/null +++ b/new-api-details/topics/open-source-design.json @@ -0,0 +1,33 @@ +{ + "slug": "open-source-design", + "name": "Open-source Design", + "published_at": "2026-02-19T13:36:02.957Z", + "organizationCount": 1, + "projectCount": 0, + "years": [ + 2026 + ], + "organizations": [ + { + "slug": "the-openroad-initiative", + "name": "The OpenROAD Initiative", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + } + ], + "yearlyStats": { + "2026": { + "organizationCount": 1, + "projectCount": 0 + } + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:36:02.957Z" + } +} \ No newline at end of file diff --git a/new-api-details/topics/open-source-medical-records.json b/new-api-details/topics/open-source-medical-records.json index 115c7fdf..3089200e 100644 --- a/new-api-details/topics/open-source-medical-records.json +++ b/new-api-details/topics/open-source-medical-records.json @@ -1,10 +1,11 @@ { "slug": "open-source-medical-records", "name": "open source medical records", - "published_at": "2026-01-25T16:06:29.482Z", + "published_at": "2026-02-19T13:36:02.584Z", "organizationCount": 1, "projectCount": 94, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "openmrs", "name": "OpenMRS", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 94, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 8 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.482Z" + "generated_at": "2026-02-19T13:36:02.584Z" } } \ No newline at end of file diff --git a/new-api-details/topics/open-source-software-metrics.json b/new-api-details/topics/open-source-software-metrics.json index 4324cf4f..167e7469 100644 --- a/new-api-details/topics/open-source-software-metrics.json +++ b/new-api-details/topics/open-source-software-metrics.json @@ -1,7 +1,7 @@ { "slug": "open-source-software-metrics", "name": "open source software metrics", - "published_at": "2026-01-25T16:06:28.662Z", + "published_at": "2026-02-19T13:36:00.995Z", "organizationCount": 1, "projectCount": 29, "years": [ @@ -19,7 +19,7 @@ "first_year": 2018, "last_year": 2025, "total_projects": 29, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2018, 2019, @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.662Z" + "generated_at": "2026-02-19T13:36:00.995Z" } } \ No newline at end of file diff --git a/new-api-details/topics/open-source.json b/new-api-details/topics/open-source.json index 34edbfd2..d90c0878 100644 --- a/new-api-details/topics/open-source.json +++ b/new-api-details/topics/open-source.json @@ -1,10 +1,11 @@ { "slug": "open-source", "name": "open source", - "published_at": "2026-01-25T16:06:28.821Z", + "published_at": "2026-02-19T13:36:01.150Z", "organizationCount": 8, "projectCount": 450, "years": [ + 2026, 2025, 2024, 2023, @@ -18,36 +19,36 @@ ], "organizations": [ { - "slug": "datenlord", - "name": "DatenLord", - "first_year": 2024, - "last_year": 2024, - "total_projects": 1, - "is_currently_active": false, - "active_years": [ - 2024 - ] - }, - { - "slug": "developers-italia", - "name": "Developers Italia", - "first_year": 2018, - "last_year": 2019, - "total_projects": 5, - "is_currently_active": false, + "slug": "gnome-foundation", + "name": "GNOME Foundation", + "first_year": 2016, + "last_year": 2026, + "total_projects": 115, + "is_currently_active": true, "active_years": [ + 2016, + 2017, 2018, - 2019 + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "fossology", - "name": "FOSSology", - "first_year": 2018, - "last_year": 2025, - "total_projects": 42, + "slug": "openmrs", + "name": "OpenMRS", + "first_year": 2016, + "last_year": 2026, + "total_projects": 94, "is_currently_active": true, "active_years": [ + 2016, + 2017, 2018, 2019, 2020, @@ -55,15 +56,16 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "gnome-foundation", - "name": "GNOME Foundation", + "slug": "sugar-labs", + "name": "Sugar Labs", "first_year": 2016, - "last_year": 2025, - "total_projects": 115, + "last_year": 2026, + "total_projects": 89, "is_currently_active": true, "active_years": [ 2016, @@ -75,7 +77,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -94,15 +97,13 @@ ] }, { - "slug": "openmrs", - "name": "OpenMRS", - "first_year": 2016, - "last_year": 2025, - "total_projects": 94, + "slug": "fossology", + "name": "FOSSology", + "first_year": 2018, + "last_year": 2026, + "total_projects": 42, "is_currently_active": true, "active_years": [ - 2016, - 2017, 2018, 2019, 2020, @@ -110,7 +111,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -131,23 +133,26 @@ ] }, { - "slug": "sugar-labs", - "name": "Sugar Labs", - "first_year": 2016, - "last_year": 2025, - "total_projects": 89, - "is_currently_active": true, + "slug": "developers-italia", + "name": "Developers Italia", + "first_year": 2018, + "last_year": 2019, + "total_projects": 5, + "is_currently_active": false, "active_years": [ - 2016, - 2017, 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2019 + ] + }, + { + "slug": "datenlord", + "name": "DatenLord", + "first_year": 2024, + "last_year": 2024, + "total_projects": 1, + "is_currently_active": false, + "active_years": [ + 2024 ] } ], @@ -191,10 +196,14 @@ "2025": { "organizationCount": 4, "projectCount": 34 + }, + "2026": { + "organizationCount": 4, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.821Z" + "generated_at": "2026-02-19T13:36:01.150Z" } } \ No newline at end of file diff --git a/new-api-details/topics/open-standards.json b/new-api-details/topics/open-standards.json index c5d3e228..283ef92a 100644 --- a/new-api-details/topics/open-standards.json +++ b/new-api-details/topics/open-standards.json @@ -1,10 +1,11 @@ { "slug": "open-standards", "name": "open standards", - "published_at": "2026-01-25T16:06:28.366Z", + "published_at": "2026-02-19T13:36:00.289Z", "organizationCount": 1, "projectCount": 25, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "52north-spatial-information-research-gmbh", "name": "52°North Spatial Information Research GmbH", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 25, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.366Z" + "generated_at": "2026-02-19T13:36:00.289Z" } } \ No newline at end of file diff --git a/new-api-details/topics/open-system-firmware.json b/new-api-details/topics/open-system-firmware.json index a71e3d9e..effe82ee 100644 --- a/new-api-details/topics/open-system-firmware.json +++ b/new-api-details/topics/open-system-firmware.json @@ -1,7 +1,7 @@ { "slug": "open-system-firmware", "name": "open system firmware", - "published_at": "2026-01-25T16:06:29.739Z", + "published_at": "2026-02-19T13:36:03.070Z", "organizationCount": 1, "projectCount": 8, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.739Z" + "generated_at": "2026-02-19T13:36:03.070Z" } } \ No newline at end of file diff --git a/new-api-details/topics/open-web.json b/new-api-details/topics/open-web.json index 6a0efd3d..04710d45 100644 --- a/new-api-details/topics/open-web.json +++ b/new-api-details/topics/open-web.json @@ -1,7 +1,7 @@ { "slug": "open-web", "name": "open web", - "published_at": "2026-01-25T16:06:29.380Z", + "published_at": "2026-02-19T13:36:02.364Z", "organizationCount": 1, "projectCount": 75, "years": [ @@ -52,6 +52,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.380Z" + "generated_at": "2026-02-19T13:36:02.364Z" } } \ No newline at end of file diff --git a/new-api-details/topics/opendata.json b/new-api-details/topics/opendata.json index 50a42f7f..a2831d86 100644 --- a/new-api-details/topics/opendata.json +++ b/new-api-details/topics/opendata.json @@ -1,7 +1,7 @@ { "slug": "opendata", "name": "opendata", - "published_at": "2026-01-25T16:06:28.704Z", + "published_at": "2026-02-19T13:36:00.956Z", "organizationCount": 1, "projectCount": 20, "years": [ @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.704Z" + "generated_at": "2026-02-19T13:36:00.956Z" } } \ No newline at end of file diff --git a/new-api-details/topics/opengl.json b/new-api-details/topics/opengl.json index 0c6e8b33..12605f3c 100644 --- a/new-api-details/topics/opengl.json +++ b/new-api-details/topics/opengl.json @@ -1,7 +1,7 @@ { "slug": "opengl", "name": "opengl", - "published_at": "2026-01-25T16:06:29.734Z", + "published_at": "2026-02-19T13:36:03.025Z", "organizationCount": 1, "projectCount": 4, "years": [ @@ -52,6 +52,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.734Z" + "generated_at": "2026-02-19T13:36:03.025Z" } } \ No newline at end of file diff --git a/new-api-details/topics/openmp.json b/new-api-details/topics/openmp.json index 88655b2e..94b5b867 100644 --- a/new-api-details/topics/openmp.json +++ b/new-api-details/topics/openmp.json @@ -1,10 +1,11 @@ { "slug": "openmp", "name": "openmp", - "published_at": "2026-01-25T16:06:29.034Z", + "published_at": "2026-02-19T13:36:01.660Z", "organizationCount": 1, "projectCount": 34, "years": [ + 2026, 2025, 2024, 2023, @@ -19,7 +20,7 @@ "slug": "gnu-compiler-collection-gcc", "name": "GNU Compiler Collection (GCC)", "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "total_projects": 34, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.034Z" + "generated_at": "2026-02-19T13:36:01.660Z" } } \ No newline at end of file diff --git a/new-api-details/topics/openroad-chip-design.json b/new-api-details/topics/openroad-chip-design.json new file mode 100644 index 00000000..49200fa4 --- /dev/null +++ b/new-api-details/topics/openroad-chip-design.json @@ -0,0 +1,33 @@ +{ + "slug": "openroad-chip-design", + "name": "OpenROAD chip design", + "published_at": "2026-02-19T13:36:02.956Z", + "organizationCount": 1, + "projectCount": 0, + "years": [ + 2026 + ], + "organizations": [ + { + "slug": "the-openroad-initiative", + "name": "The OpenROAD Initiative", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + } + ], + "yearlyStats": { + "2026": { + "organizationCount": 1, + "projectCount": 0 + } + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:36:02.956Z" + } +} \ No newline at end of file diff --git a/new-api-details/topics/openshift.json b/new-api-details/topics/openshift.json index c315689f..c66d1631 100644 --- a/new-api-details/topics/openshift.json +++ b/new-api-details/topics/openshift.json @@ -1,10 +1,11 @@ { "slug": "openshift", "name": "openshift", - "published_at": "2026-01-25T16:06:29.199Z", + "published_at": "2026-02-19T13:36:02.020Z", "organizationCount": 1, "projectCount": 52, "years": [ + 2026, 2022, 2021, 2020, @@ -18,9 +19,9 @@ "slug": "jboss-community", "name": "JBoss Community", "first_year": 2016, - "last_year": 2022, + "last_year": 2026, "total_projects": 52, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -28,7 +29,8 @@ 2019, 2020, 2021, - 2022 + 2022, + 2026 ] } ], @@ -60,10 +62,14 @@ "2022": { "organizationCount": 1, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.199Z" + "generated_at": "2026-02-19T13:36:02.020Z" } } \ No newline at end of file diff --git a/new-api-details/topics/opensource-audio-firmware.json b/new-api-details/topics/opensource-audio-firmware.json index d57a466e..45e6e858 100644 --- a/new-api-details/topics/opensource-audio-firmware.json +++ b/new-api-details/topics/opensource-audio-firmware.json @@ -1,7 +1,7 @@ { "slug": "opensource-audio-firmware", "name": "opensource audio firmware", - "published_at": "2026-01-25T16:06:29.168Z", + "published_at": "2026-02-19T13:36:01.850Z", "organizationCount": 1, "projectCount": 12, "years": [ @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.168Z" + "generated_at": "2026-02-19T13:36:01.850Z" } } \ No newline at end of file diff --git a/new-api-details/topics/opensource.json b/new-api-details/topics/opensource.json index 37a4c2b0..2b060c36 100644 --- a/new-api-details/topics/opensource.json +++ b/new-api-details/topics/opensource.json @@ -1,7 +1,7 @@ { "slug": "opensource", "name": "opensource", - "published_at": "2026-01-25T16:06:29.604Z", + "published_at": "2026-02-19T13:36:02.845Z", "organizationCount": 1, "projectCount": 29, "years": [ @@ -64,6 +64,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.604Z" + "generated_at": "2026-02-19T13:36:02.845Z" } } \ No newline at end of file diff --git a/new-api-details/topics/opentype.json b/new-api-details/topics/opentype.json index e64ed83d..c41dad50 100644 --- a/new-api-details/topics/opentype.json +++ b/new-api-details/topics/opentype.json @@ -1,7 +1,7 @@ { "slug": "opentype", "name": "opentype", - "published_at": "2026-01-25T16:06:29.005Z", + "published_at": "2026-02-19T13:36:01.549Z", "organizationCount": 1, "projectCount": 17, "years": [ @@ -70,6 +70,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.005Z" + "generated_at": "2026-02-19T13:36:01.549Z" } } \ No newline at end of file diff --git a/new-api-details/topics/operating-system-developer-tools.json b/new-api-details/topics/operating-system-developer-tools.json index 1e0ab03f..10b27828 100644 --- a/new-api-details/topics/operating-system-developer-tools.json +++ b/new-api-details/topics/operating-system-developer-tools.json @@ -1,10 +1,11 @@ { "slug": "operating-system-developer-tools", "name": "operating system developer tools", - "published_at": "2026-01-25T16:06:29.858Z", + "published_at": "2026-02-19T13:36:02.608Z", "organizationCount": 1, "projectCount": 52, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "opensuse-project", "name": "openSUSE Project", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 52, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.858Z" + "generated_at": "2026-02-19T13:36:02.608Z" } } \ No newline at end of file diff --git a/new-api-details/topics/operating-system.json b/new-api-details/topics/operating-system.json index f8db9393..a529ed24 100644 --- a/new-api-details/topics/operating-system.json +++ b/new-api-details/topics/operating-system.json @@ -1,10 +1,11 @@ { "slug": "operating-system", "name": "operating-system", - "published_at": "2026-01-25T16:06:28.756Z", - "organizationCount": 12, + "published_at": "2026-02-19T13:36:01.017Z", + "organizationCount": 13, "projectCount": 552, "years": [ + 2026, 2025, 2024, 2023, @@ -18,25 +19,31 @@ ], "organizations": [ { - "slug": "chromium", - "name": "Chromium", - "first_year": 2021, - "last_year": 2025, - "total_projects": 71, + "slug": "gnome-foundation", + "name": "GNOME Foundation", + "first_year": 2016, + "last_year": 2026, + "total_projects": 115, "is_currently_active": true, "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "debian", "name": "Debian", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 78, "is_currently_active": true, "active_years": [ @@ -47,32 +54,17 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "fedora-project", - "name": "Fedora Project", + "slug": "the-freebsd-project", + "name": "The FreeBSD Project", "first_year": 2016, - "last_year": 2025, - "total_projects": 27, + "last_year": 2026, + "total_projects": 76, "is_currently_active": true, - "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2025 - ] - }, - { - "slug": "gentoo-foundation", - "name": "Gentoo Foundation", - "first_year": 2016, - "last_year": 2023, - "total_projects": 25, - "is_currently_active": false, "active_years": [ 2016, 2017, @@ -81,22 +73,20 @@ 2020, 2021, 2022, - 2023 + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "gnome-foundation", - "name": "GNOME Foundation", - "first_year": 2016, + "slug": "chromium", + "name": "Chromium", + "first_year": 2021, "last_year": 2025, - "total_projects": 115, - "is_currently_active": true, + "total_projects": 71, + "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, 2021, 2022, 2023, @@ -108,9 +98,9 @@ "slug": "gnu-project", "name": "GNU Project", "first_year": 2016, - "last_year": 2024, + "last_year": 2026, "total_projects": 59, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -118,17 +108,19 @@ 2019, 2020, 2023, - 2024 + 2024, + 2026 ] }, { - "slug": "haiku", - "name": "Haiku", - "first_year": 2017, - "last_year": 2024, - "total_projects": 26, - "is_currently_active": false, + "slug": "rtems-project", + "name": "RTEMS Project", + "first_year": 2016, + "last_year": 2026, + "total_projects": 46, + "is_currently_active": true, "active_years": [ + 2016, 2017, 2018, 2019, @@ -136,43 +128,35 @@ 2021, 2022, 2023, - 2024 + 2024, + 2025, + 2026 ] }, { - "slug": "kolibrios-project-team", - "name": "KolibriOS Project Team", + "slug": "fedora-project", + "name": "Fedora Project", "first_year": 2016, - "last_year": 2024, - "total_projects": 6, + "last_year": 2025, + "total_projects": 27, "is_currently_active": false, "active_years": [ 2016, - 2024 - ] - }, - { - "slug": "qubes-os", - "name": "Qubes OS", - "first_year": 2017, - "last_year": 2021, - "total_projects": 4, - "is_currently_active": false, - "active_years": [ 2017, + 2018, + 2019, 2020, - 2021 + 2025 ] }, { - "slug": "rtems-project", - "name": "RTEMS Project", - "first_year": 2016, - "last_year": 2025, - "total_projects": 46, + "slug": "haiku", + "name": "Haiku", + "first_year": 2017, + "last_year": 2026, + "total_projects": 26, "is_currently_active": true, "active_years": [ - 2016, 2017, 2018, 2019, @@ -181,16 +165,16 @@ 2022, 2023, 2024, - 2025 + 2026 ] }, { - "slug": "the-freebsd-project", - "name": "The FreeBSD Project", + "slug": "gentoo-foundation", + "name": "Gentoo Foundation", "first_year": 2016, - "last_year": 2025, - "total_projects": 76, - "is_currently_active": true, + "last_year": 2023, + "total_projects": 25, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -199,9 +183,7 @@ 2020, 2021, 2022, - 2023, - 2024, - 2025 + 2023 ] }, { @@ -220,6 +202,44 @@ 2022, 2023 ] + }, + { + "slug": "kolibrios-project-team", + "name": "KolibriOS Project Team", + "first_year": 2016, + "last_year": 2026, + "total_projects": 6, + "is_currently_active": true, + "active_years": [ + 2016, + 2024, + 2026 + ] + }, + { + "slug": "qubes-os", + "name": "Qubes OS", + "first_year": 2017, + "last_year": 2026, + "total_projects": 4, + "is_currently_active": true, + "active_years": [ + 2017, + 2020, + 2021, + 2026 + ] + }, + { + "slug": "erofs-filesystem", + "name": "EROFS filesystem", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] } ], "yearlyStats": { @@ -262,10 +282,14 @@ "2025": { "organizationCount": 6, "projectCount": 52 + }, + "2026": { + "organizationCount": 9, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.756Z" + "generated_at": "2026-02-19T13:36:01.017Z" } } \ No newline at end of file diff --git a/new-api-details/topics/operating-systems.json b/new-api-details/topics/operating-systems.json index 00cbc93e..d5304253 100644 --- a/new-api-details/topics/operating-systems.json +++ b/new-api-details/topics/operating-systems.json @@ -1,10 +1,11 @@ { "slug": "operating-systems", "name": "operating systems", - "published_at": "2026-01-25T16:06:28.456Z", + "published_at": "2026-02-19T13:36:00.437Z", "organizationCount": 19, "projectCount": 611, "years": [ + 2026, 2025, 2024, 2023, @@ -18,65 +19,31 @@ ], "organizations": [ { - "slug": "amahi", - "name": "Amahi", - "first_year": 2017, - "last_year": 2020, - "total_projects": 18, - "is_currently_active": false, + "slug": "gnome-foundation", + "name": "GNOME Foundation", + "first_year": 2016, + "last_year": 2026, + "total_projects": 115, + "is_currently_active": true, "active_years": [ + 2016, 2017, 2018, - 2019, - 2020 - ] - }, - { - "slug": "cockpit-project", - "name": "Cockpit Project", - "first_year": 2023, - "last_year": 2023, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2023 - ] - }, - { - "slug": "criu", - "name": "CRIU", - "first_year": 2019, - "last_year": 2025, - "total_projects": 18, - "is_currently_active": true, - "active_years": [ 2019, 2020, 2021, 2022, 2023, 2024, - 2025 - ] - }, - { - "slug": "d-language-foundation", - "name": "D Language Foundation", - "first_year": 2016, - "last_year": 2025, - "total_projects": 11, - "is_currently_active": true, - "active_years": [ - 2016, - 2019, - 2025 + 2025, + 2026 ] }, { "slug": "debian", "name": "Debian", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 78, "is_currently_active": true, "active_years": [ @@ -87,33 +54,16 @@ 2021, 2022, 2024, - 2025 - ] - }, - { - "slug": "gentoo-foundation", - "name": "Gentoo Foundation", - "first_year": 2016, - "last_year": 2023, - "total_projects": 25, - "is_currently_active": false, - "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023 + 2025, + 2026 ] }, { - "slug": "gnome-foundation", - "name": "GNOME Foundation", + "slug": "the-freebsd-project", + "name": "The FreeBSD Project", "first_year": 2016, - "last_year": 2025, - "total_projects": 115, + "last_year": 2026, + "total_projects": 76, "is_currently_active": true, "active_years": [ 2016, @@ -125,16 +75,17 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "gnu-project", "name": "GNU Project", "first_year": 2016, - "last_year": 2024, + "last_year": 2026, "total_projects": 59, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -142,26 +93,35 @@ 2019, 2020, 2023, - 2024 + 2024, + 2026 ] }, { - "slug": "kolibrios-project-team", - "name": "KolibriOS Project Team", + "slug": "opensuse-project", + "name": "openSUSE Project", "first_year": 2016, - "last_year": 2024, - "total_projects": 6, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 52, + "is_currently_active": true, "active_years": [ 2016, - 2024 + 2017, + 2018, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { "slug": "lablua", "name": "LabLua", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 43, "is_currently_active": true, "active_years": [ @@ -172,71 +132,58 @@ 2020, 2021, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "macports", - "name": "MacPorts", - "first_year": 2017, - "last_year": 2020, - "total_projects": 7, - "is_currently_active": false, + "slug": "qemu", + "name": "QEMU", + "first_year": 2016, + "last_year": 2026, + "total_projects": 41, + "is_currently_active": true, "active_years": [ + 2016, 2017, 2018, 2019, - 2020 + 2020, + 2021, + 2022, + 2023, + 2025, + 2026 ] }, { - "slug": "opensuse-project", - "name": "openSUSE Project", + "slug": "the-netbsd-foundation", + "name": "The NetBSD Foundation", "first_year": 2016, - "last_year": 2025, - "total_projects": 52, + "last_year": 2026, + "total_projects": 38, "is_currently_active": true, "active_years": [ 2016, 2017, 2018, + 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "plan-9-foundation", - "name": "Plan 9 Foundation", - "first_year": 2021, - "last_year": 2021, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2021 - ] - }, - { - "slug": "plasma-umass", - "name": "PLASMA-UMass", + "slug": "gentoo-foundation", + "name": "Gentoo Foundation", "first_year": 2016, - "last_year": 2016, - "total_projects": 1, + "last_year": 2023, + "total_projects": 25, "is_currently_active": false, - "active_years": [ - 2016 - ] - }, - { - "slug": "qemu", - "name": "QEMU", - "first_year": 2016, - "last_year": 2025, - "total_projects": 41, - "is_currently_active": true, "active_years": [ 2016, 2017, @@ -245,21 +192,39 @@ 2020, 2021, 2022, - 2023, - 2025 + 2023 ] }, { - "slug": "qubes-os", - "name": "Qubes OS", + "slug": "amahi", + "name": "Amahi", "first_year": 2017, - "last_year": 2021, - "total_projects": 4, + "last_year": 2020, + "total_projects": 18, "is_currently_active": false, "active_years": [ 2017, + 2018, + 2019, + 2020 + ] + }, + { + "slug": "criu", + "name": "CRIU", + "first_year": 2019, + "last_year": 2026, + "total_projects": 18, + "is_currently_active": true, + "active_years": [ + 2019, 2020, - 2021 + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { @@ -280,43 +245,91 @@ ] }, { - "slug": "the-freebsd-project", - "name": "The FreeBSD Project", + "slug": "d-language-foundation", + "name": "D Language Foundation", "first_year": 2016, - "last_year": 2025, - "total_projects": 76, + "last_year": 2026, + "total_projects": 11, "is_currently_active": true, "active_years": [ 2016, + 2019, + 2025, + 2026 + ] + }, + { + "slug": "macports", + "name": "MacPorts", + "first_year": 2017, + "last_year": 2020, + "total_projects": 7, + "is_currently_active": false, + "active_years": [ 2017, 2018, 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2020 ] }, { - "slug": "the-netbsd-foundation", - "name": "The NetBSD Foundation", + "slug": "kolibrios-project-team", + "name": "KolibriOS Project Team", "first_year": 2016, - "last_year": 2025, - "total_projects": 38, + "last_year": 2026, + "total_projects": 6, "is_currently_active": true, "active_years": [ 2016, + 2024, + 2026 + ] + }, + { + "slug": "qubes-os", + "name": "Qubes OS", + "first_year": 2017, + "last_year": 2026, + "total_projects": 4, + "is_currently_active": true, + "active_years": [ 2017, - 2018, - 2019, 2020, 2021, - 2022, - 2023, - 2024, - 2025 + 2026 + ] + }, + { + "slug": "cockpit-project", + "name": "Cockpit Project", + "first_year": 2023, + "last_year": 2023, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2023 + ] + }, + { + "slug": "plan-9-foundation", + "name": "Plan 9 Foundation", + "first_year": 2021, + "last_year": 2021, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2021 + ] + }, + { + "slug": "plasma-umass", + "name": "PLASMA-UMass", + "first_year": 2016, + "last_year": 2016, + "total_projects": 1, + "is_currently_active": false, + "active_years": [ + 2016 ] } ], @@ -360,10 +373,14 @@ "2025": { "organizationCount": 9, "projectCount": 51 + }, + "2026": { + "organizationCount": 12, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.456Z" + "generated_at": "2026-02-19T13:36:00.437Z" } } \ No newline at end of file diff --git a/new-api-details/topics/operational-analytics.json b/new-api-details/topics/operational-analytics.json index 6c4cca27..a28a077d 100644 --- a/new-api-details/topics/operational-analytics.json +++ b/new-api-details/topics/operational-analytics.json @@ -1,7 +1,7 @@ { "slug": "operational-analytics", "name": "Operational Analytics", - "published_at": "2026-01-25T16:06:29.318Z", + "published_at": "2026-02-19T13:36:02.211Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.318Z" + "generated_at": "2026-02-19T13:36:02.211Z" } } \ No newline at end of file diff --git a/new-api-details/topics/operations.json b/new-api-details/topics/operations.json index 7011df87..130cb512 100644 --- a/new-api-details/topics/operations.json +++ b/new-api-details/topics/operations.json @@ -1,7 +1,7 @@ { "slug": "operations", "name": "Operations", - "published_at": "2026-01-25T16:06:29.240Z", + "published_at": "2026-02-19T13:36:02.106Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.240Z" + "generated_at": "2026-02-19T13:36:02.106Z" } } \ No newline at end of file diff --git a/new-api-details/topics/optimisation.json b/new-api-details/topics/optimisation.json index 66761f59..19df1509 100644 --- a/new-api-details/topics/optimisation.json +++ b/new-api-details/topics/optimisation.json @@ -1,10 +1,11 @@ { "slug": "optimisation", "name": "optimisation", - "published_at": "2026-01-25T16:06:29.839Z", + "published_at": "2026-02-19T13:36:01.734Z", "organizationCount": 1, "projectCount": 18, "years": [ + 2026, 2025, 2024, 2023, @@ -16,7 +17,7 @@ "slug": "gprmax", "name": "gprMax", "first_year": 2019, - "last_year": 2025, + "last_year": 2026, "total_projects": 18, "is_currently_active": true, "active_years": [ @@ -24,7 +25,8 @@ 2021, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -48,10 +50,14 @@ "2025": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.839Z" + "generated_at": "2026-02-19T13:36:01.734Z" } } \ No newline at end of file diff --git a/new-api-details/topics/optimization.json b/new-api-details/topics/optimization.json index 3a1f5ebe..de95129e 100644 --- a/new-api-details/topics/optimization.json +++ b/new-api-details/topics/optimization.json @@ -1,10 +1,11 @@ { "slug": "optimization", "name": "optimization", - "published_at": "2026-01-25T16:06:28.628Z", + "published_at": "2026-02-19T13:36:00.923Z", "organizationCount": 7, "projectCount": 257, "years": [ + 2026, 2025, 2024, 2023, @@ -17,49 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "castor", - "name": "CASTOR", - "first_year": 2021, - "last_year": 2021, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2021 - ] - }, - { - "slug": "cvxpy", - "name": "CVXPY", - "first_year": 2016, - "last_year": 2016, - "total_projects": 1, - "is_currently_active": false, - "active_years": [ - 2016 - ] - }, - { - "slug": "geomscale", - "name": "GeomScale", - "first_year": 2020, - "last_year": 2025, - "total_projects": 30, - "is_currently_active": true, - "active_years": [ - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 - ] - }, { "slug": "llvm-compiler-infrastructure", "name": "LLVM Compiler Infrastructure", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 122, "is_currently_active": true, "active_years": [ @@ -72,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -94,23 +58,11 @@ 2024 ] }, - { - "slug": "polly-labs", - "name": "Polly Labs", - "first_year": 2017, - "last_year": 2018, - "total_projects": 4, - "is_currently_active": false, - "active_years": [ - 2017, - 2018 - ] - }, { "slug": "stear-group", "name": "Ste||ar group", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 38, "is_currently_active": true, "active_years": [ @@ -122,7 +74,59 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "geomscale", + "name": "GeomScale", + "first_year": 2020, + "last_year": 2026, + "total_projects": 30, + "is_currently_active": true, + "active_years": [ + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ] + }, + { + "slug": "polly-labs", + "name": "Polly Labs", + "first_year": 2017, + "last_year": 2018, + "total_projects": 4, + "is_currently_active": false, + "active_years": [ + 2017, + 2018 + ] + }, + { + "slug": "castor", + "name": "CASTOR", + "first_year": 2021, + "last_year": 2021, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2021 + ] + }, + { + "slug": "cvxpy", + "name": "CVXPY", + "first_year": 2016, + "last_year": 2016, + "total_projects": 1, + "is_currently_active": false, + "active_years": [ + 2016 ] } ], @@ -166,10 +170,14 @@ "2025": { "organizationCount": 3, "projectCount": 27 + }, + "2026": { + "organizationCount": 3, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.628Z" + "generated_at": "2026-02-19T13:36:00.923Z" } } \ No newline at end of file diff --git a/new-api-details/topics/optimizations.json b/new-api-details/topics/optimizations.json index c3b2d8c5..c8575887 100644 --- a/new-api-details/topics/optimizations.json +++ b/new-api-details/topics/optimizations.json @@ -1,10 +1,11 @@ { "slug": "optimizations", "name": "optimizations", - "published_at": "2026-01-25T16:06:28.814Z", + "published_at": "2026-02-19T13:36:01.146Z", "organizationCount": 1, "projectCount": 11, "years": [ + 2026, 2025, 2019, 2016 @@ -14,13 +15,14 @@ "slug": "d-language-foundation", "name": "D Language Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 11, "is_currently_active": true, "active_years": [ 2016, 2019, - 2025 + 2025, + 2026 ] } ], @@ -36,10 +38,14 @@ "2025": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.814Z" + "generated_at": "2026-02-19T13:36:01.146Z" } } \ No newline at end of file diff --git a/new-api-details/topics/orbital-dynamics.json b/new-api-details/topics/orbital-dynamics.json index d2fbced5..5fadc973 100644 --- a/new-api-details/topics/orbital-dynamics.json +++ b/new-api-details/topics/orbital-dynamics.json @@ -1,7 +1,7 @@ { "slug": "orbital-dynamics", "name": "orbital dynamics", - "published_at": "2026-01-25T16:06:29.270Z", + "published_at": "2026-02-19T13:36:02.169Z", "organizationCount": 1, "projectCount": 7, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.270Z" + "generated_at": "2026-02-19T13:36:02.169Z" } } \ No newline at end of file diff --git a/new-api-details/topics/orbital-mechanics.json b/new-api-details/topics/orbital-mechanics.json index f6e46a46..0534ad8b 100644 --- a/new-api-details/topics/orbital-mechanics.json +++ b/new-api-details/topics/orbital-mechanics.json @@ -1,10 +1,11 @@ { "slug": "orbital-mechanics", "name": "orbital mechanics", - "published_at": "2026-01-25T16:06:29.468Z", + "published_at": "2026-02-19T13:36:02.553Z", "organizationCount": 1, "projectCount": 77, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "openastronomy", "name": "OpenAstronomy", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 77, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.468Z" + "generated_at": "2026-02-19T13:36:02.553Z" } } \ No newline at end of file diff --git a/new-api-details/topics/orchestrator.json b/new-api-details/topics/orchestrator.json new file mode 100644 index 00000000..d8fa9b63 --- /dev/null +++ b/new-api-details/topics/orchestrator.json @@ -0,0 +1,33 @@ +{ + "slug": "orchestrator", + "name": "Orchestrator", + "published_at": "2026-02-19T13:36:02.292Z", + "organizationCount": 1, + "projectCount": 0, + "years": [ + 2026 + ], + "organizations": [ + { + "slug": "metaflow", + "name": "Metaflow", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + } + ], + "yearlyStats": { + "2026": { + "organizationCount": 1, + "projectCount": 0 + } + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:36:02.292Z" + } +} \ No newline at end of file diff --git a/new-api-details/topics/os.json b/new-api-details/topics/os.json index 0eee2918..3ca95351 100644 --- a/new-api-details/topics/os.json +++ b/new-api-details/topics/os.json @@ -1,12 +1,14 @@ { "slug": "os", "name": "OS", - "published_at": "2026-01-25T16:06:29.052Z", - "organizationCount": 3, - "projectCount": 67, + "published_at": "2026-02-19T13:36:01.269Z", + "organizationCount": 4, + "projectCount": 71, "years": [ + 2026, 2024, 2023, + 2021, 2020, 2019, 2018, @@ -14,24 +16,13 @@ 2016 ], "organizations": [ - { - "slug": "eunomia-bpf", - "name": "eunomia-bpf", - "first_year": 2024, - "last_year": 2024, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2024 - ] - }, { "slug": "gnu-project", "name": "GNU Project", "first_year": 2016, - "last_year": 2024, + "last_year": 2026, "total_projects": 59, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -39,18 +30,45 @@ 2019, 2020, 2023, - 2024 + 2024, + 2026 ] }, { "slug": "kolibrios-project-team", "name": "KolibriOS Project Team", "first_year": 2016, - "last_year": 2024, + "last_year": 2026, "total_projects": 6, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, + 2024, + 2026 + ] + }, + { + "slug": "qubes-os", + "name": "Qubes OS", + "first_year": 2017, + "last_year": 2026, + "total_projects": 4, + "is_currently_active": true, + "active_years": [ + 2017, + 2020, + 2021, + 2026 + ] + }, + { + "slug": "eunomia-bpf", + "name": "eunomia-bpf", + "first_year": 2024, + "last_year": 2024, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ 2024 ] } @@ -61,8 +79,8 @@ "projectCount": 19 }, "2017": { - "organizationCount": 1, - "projectCount": 13 + "organizationCount": 2, + "projectCount": 15 }, "2018": { "organizationCount": 1, @@ -73,8 +91,12 @@ "projectCount": 5 }, "2020": { + "organizationCount": 2, + "projectCount": 8 + }, + "2021": { "organizationCount": 1, - "projectCount": 7 + "projectCount": 1 }, "2023": { "organizationCount": 1, @@ -83,10 +105,14 @@ "2024": { "organizationCount": 3, "projectCount": 7 + }, + "2026": { + "organizationCount": 3, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.052Z" + "generated_at": "2026-02-19T13:36:01.269Z" } } \ No newline at end of file diff --git a/new-api-details/topics/oss-compliance.json b/new-api-details/topics/oss-compliance.json index 62a8776c..896aaafb 100644 --- a/new-api-details/topics/oss-compliance.json +++ b/new-api-details/topics/oss-compliance.json @@ -1,10 +1,11 @@ { "slug": "oss-compliance", "name": "oss compliance", - "published_at": "2026-01-25T16:06:28.940Z", + "published_at": "2026-02-19T13:36:01.515Z", "organizationCount": 1, "projectCount": 42, "years": [ + 2026, 2025, 2024, 2023, @@ -19,7 +20,7 @@ "slug": "fossology", "name": "FOSSology", "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "total_projects": 42, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 10 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.940Z" + "generated_at": "2026-02-19T13:36:01.515Z" } } \ No newline at end of file diff --git a/new-api-details/topics/oss-licencing.json b/new-api-details/topics/oss-licencing.json index 7986e334..ba407a7a 100644 --- a/new-api-details/topics/oss-licencing.json +++ b/new-api-details/topics/oss-licencing.json @@ -1,10 +1,11 @@ { "slug": "oss-licencing", "name": "oss licencing", - "published_at": "2026-01-25T16:06:28.941Z", + "published_at": "2026-02-19T13:36:01.519Z", "organizationCount": 1, "projectCount": 42, "years": [ + 2026, 2025, 2024, 2023, @@ -19,7 +20,7 @@ "slug": "fossology", "name": "FOSSology", "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "total_projects": 42, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 10 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.941Z" + "generated_at": "2026-02-19T13:36:01.519Z" } } \ No newline at end of file diff --git a/new-api-details/topics/oss-licensing.json b/new-api-details/topics/oss-licensing.json index c85e5e5c..e760f2e4 100644 --- a/new-api-details/topics/oss-licensing.json +++ b/new-api-details/topics/oss-licensing.json @@ -1,10 +1,11 @@ { "slug": "oss-licensing", "name": "oss licensing", - "published_at": "2026-01-25T16:06:28.414Z", + "published_at": "2026-02-19T13:36:00.315Z", "organizationCount": 2, "projectCount": 74, "years": [ + 2026, 2025, 2024, 2023, @@ -17,39 +18,41 @@ ], "organizations": [ { - "slug": "aboutcode", - "name": "AboutCode", - "first_year": 2017, - "last_year": 2025, - "total_projects": 32, + "slug": "fossology", + "name": "FOSSology", + "first_year": 2018, + "last_year": 2026, + "total_projects": 42, "is_currently_active": true, "active_years": [ - 2017, + 2018, 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "fossology", - "name": "FOSSology", - "first_year": 2018, - "last_year": 2025, - "total_projects": 42, + "slug": "aboutcode", + "name": "AboutCode", + "first_year": 2017, + "last_year": 2026, + "total_projects": 32, "is_currently_active": true, "active_years": [ - 2018, + 2017, 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -89,10 +92,14 @@ "2025": { "organizationCount": 2, "projectCount": 15 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.414Z" + "generated_at": "2026-02-19T13:36:00.315Z" } } \ No newline at end of file diff --git a/new-api-details/topics/other.json b/new-api-details/topics/other.json index 98b65cdc..e1d717c4 100644 --- a/new-api-details/topics/other.json +++ b/new-api-details/topics/other.json @@ -1,10 +1,11 @@ { "slug": "other", "name": "other", - "published_at": "2026-01-25T16:06:29.674Z", - "organizationCount": 1, + "published_at": "2026-02-19T13:36:00.488Z", + "organizationCount": 2, "projectCount": 248, "years": [ + 2026, 2025, 2024, 2023, @@ -23,7 +24,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 248, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -36,6 +37,17 @@ 2024, 2025 ] + }, + { + "slug": "apache-software-foundation", + "name": "Apache Software Foundation", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] } ], "yearlyStats": { @@ -78,10 +90,14 @@ "2025": { "organizationCount": 1, "projectCount": 27 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.674Z" + "generated_at": "2026-02-19T13:36:00.488Z" } } \ No newline at end of file diff --git a/new-api-details/topics/outreach.json b/new-api-details/topics/outreach.json new file mode 100644 index 00000000..ad87c9b2 --- /dev/null +++ b/new-api-details/topics/outreach.json @@ -0,0 +1,33 @@ +{ + "slug": "outreach", + "name": "Outreach", + "published_at": "2026-02-19T13:36:02.159Z", + "organizationCount": 1, + "projectCount": 0, + "years": [ + 2026 + ], + "organizations": [ + { + "slug": "learning-unlimited", + "name": "Learning Unlimited", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + } + ], + "yearlyStats": { + "2026": { + "organizationCount": 1, + "projectCount": 0 + } + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:36:02.159Z" + } +} \ No newline at end of file diff --git a/new-api-details/topics/p2p.json b/new-api-details/topics/p2p.json index 2df5082a..e3c4b18e 100644 --- a/new-api-details/topics/p2p.json +++ b/new-api-details/topics/p2p.json @@ -1,7 +1,7 @@ { "slug": "p2p", "name": "p2p", - "published_at": "2026-01-25T16:06:29.520Z", + "published_at": "2026-02-19T13:36:02.679Z", "organizationCount": 1, "projectCount": 5, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.520Z" + "generated_at": "2026-02-19T13:36:02.679Z" } } \ No newline at end of file diff --git a/new-api-details/topics/package-and-dependencies-licensing-and-origin.json b/new-api-details/topics/package-and-dependencies-licensing-and-origin.json index b5f51e0a..088065a2 100644 --- a/new-api-details/topics/package-and-dependencies-licensing-and-origin.json +++ b/new-api-details/topics/package-and-dependencies-licensing-and-origin.json @@ -1,10 +1,11 @@ { "slug": "package-and-dependencies-licensing-and-origin", "name": "package and dependencies licensing and origin", - "published_at": "2026-01-25T16:06:28.409Z", + "published_at": "2026-02-19T13:36:00.302Z", "organizationCount": 1, "projectCount": 32, "years": [ + 2026, 2025, 2024, 2023, @@ -19,7 +20,7 @@ "slug": "aboutcode", "name": "AboutCode", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 32, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.409Z" + "generated_at": "2026-02-19T13:36:00.302Z" } } \ No newline at end of file diff --git a/new-api-details/topics/package-management.json b/new-api-details/topics/package-management.json index 2f605a97..dbf8d417 100644 --- a/new-api-details/topics/package-management.json +++ b/new-api-details/topics/package-management.json @@ -1,10 +1,11 @@ { "slug": "package-management", "name": "package management", - "published_at": "2026-01-25T16:06:29.077Z", + "published_at": "2026-02-19T13:36:01.603Z", "organizationCount": 7, "projectCount": 125, "years": [ + 2026, 2025, 2024, 2023, @@ -17,6 +18,46 @@ 2016 ], "organizations": [ + { + "slug": "the-netbsd-foundation", + "name": "The NetBSD Foundation", + "first_year": 2016, + "last_year": 2026, + "total_projects": 38, + "is_currently_active": true, + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ] + }, + { + "slug": "swift", + "name": "Swift", + "first_year": 2018, + "last_year": 2026, + "total_projects": 26, + "is_currently_active": true, + "active_years": [ + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ] + }, { "slug": "gentoo-foundation", "name": "Gentoo Foundation", @@ -36,31 +77,32 @@ ] }, { - "slug": "homebrew", - "name": "Homebrew", + "slug": "ruby-science-foundation", + "name": "Ruby Science Foundation", "first_year": 2016, - "last_year": 2022, - "total_projects": 11, + "last_year": 2019, + "total_projects": 13, "is_currently_active": false, "active_years": [ 2016, 2017, 2018, - 2020, - 2022 + 2019 ] }, { - "slug": "luarocks", - "name": "LuaRocks", - "first_year": 2017, - "last_year": 2019, - "total_projects": 5, + "slug": "homebrew", + "name": "Homebrew", + "first_year": 2016, + "last_year": 2022, + "total_projects": 11, "is_currently_active": false, "active_years": [ + 2016, 2017, 2018, - 2019 + 2020, + 2022 ] }, { @@ -78,56 +120,17 @@ ] }, { - "slug": "ruby-science-foundation", - "name": "Ruby Science Foundation", - "first_year": 2016, + "slug": "luarocks", + "name": "LuaRocks", + "first_year": 2017, "last_year": 2019, - "total_projects": 13, + "total_projects": 5, "is_currently_active": false, "active_years": [ - 2016, 2017, 2018, 2019 ] - }, - { - "slug": "swift", - "name": "Swift", - "first_year": 2018, - "last_year": 2025, - "total_projects": 26, - "is_currently_active": true, - "active_years": [ - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 - ] - }, - { - "slug": "the-netbsd-foundation", - "name": "The NetBSD Foundation", - "first_year": 2016, - "last_year": 2025, - "total_projects": 38, - "is_currently_active": true, - "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 - ] } ], "yearlyStats": { @@ -170,10 +173,14 @@ "2025": { "organizationCount": 2, "projectCount": 7 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.077Z" + "generated_at": "2026-02-19T13:36:01.603Z" } } \ No newline at end of file diff --git a/new-api-details/topics/package-manager.json b/new-api-details/topics/package-manager.json index a849db87..f8d1adbd 100644 --- a/new-api-details/topics/package-manager.json +++ b/new-api-details/topics/package-manager.json @@ -1,7 +1,7 @@ { "slug": "package-manager", "name": "package manager", - "published_at": "2026-01-25T16:06:29.124Z", + "published_at": "2026-02-19T13:36:01.778Z", "organizationCount": 3, "projectCount": 23, "years": [ @@ -29,30 +29,30 @@ ] }, { - "slug": "luarocks", - "name": "LuaRocks", + "slug": "macports", + "name": "MacPorts", "first_year": 2017, - "last_year": 2019, - "total_projects": 5, + "last_year": 2020, + "total_projects": 7, "is_currently_active": false, "active_years": [ 2017, 2018, - 2019 + 2019, + 2020 ] }, { - "slug": "macports", - "name": "MacPorts", + "slug": "luarocks", + "name": "LuaRocks", "first_year": 2017, - "last_year": 2020, - "total_projects": 7, + "last_year": 2019, + "total_projects": 5, "is_currently_active": false, "active_years": [ 2017, 2018, - 2019, - 2020 + 2019 ] } ], @@ -84,6 +84,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.124Z" + "generated_at": "2026-02-19T13:36:01.778Z" } } \ No newline at end of file diff --git a/new-api-details/topics/package-managers.json b/new-api-details/topics/package-managers.json index a2803831..1dcd7f59 100644 --- a/new-api-details/topics/package-managers.json +++ b/new-api-details/topics/package-managers.json @@ -1,10 +1,11 @@ { "slug": "package-managers", "name": "package managers", - "published_at": "2026-01-25T16:06:28.412Z", + "published_at": "2026-02-19T13:36:00.310Z", "organizationCount": 5, "projectCount": 185, "years": [ + 2026, 2025, 2024, 2023, @@ -17,29 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "aboutcode", - "name": "AboutCode", - "first_year": 2017, - "last_year": 2025, - "total_projects": 32, - "is_currently_active": true, - "active_years": [ - 2017, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 - ] - }, { "slug": "debian", "name": "Debian", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 78, "is_currently_active": true, "active_years": [ @@ -50,16 +33,17 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "gnu-project", "name": "GNU Project", "first_year": 2016, - "last_year": 2024, + "last_year": 2026, "total_projects": 59, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -67,7 +51,27 @@ 2019, 2020, 2023, - 2024 + 2024, + 2026 + ] + }, + { + "slug": "aboutcode", + "name": "AboutCode", + "first_year": 2017, + "last_year": 2026, + "total_projects": 32, + "is_currently_active": true, + "active_years": [ + 2017, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { @@ -139,10 +143,14 @@ "2025": { "organizationCount": 2, "projectCount": 14 + }, + "2026": { + "organizationCount": 3, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.412Z" + "generated_at": "2026-02-19T13:36:00.310Z" } } \ No newline at end of file diff --git a/new-api-details/topics/package-system.json b/new-api-details/topics/package-system.json index d71b6156..88816b41 100644 --- a/new-api-details/topics/package-system.json +++ b/new-api-details/topics/package-system.json @@ -1,10 +1,11 @@ { "slug": "package-system", "name": "package system", - "published_at": "2026-01-25T16:06:29.120Z", + "published_at": "2026-02-19T13:36:01.770Z", "organizationCount": 2, "projectCount": 49, "years": [ + 2026, 2025, 2024, 2023, @@ -17,26 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "homebrew", - "name": "Homebrew", - "first_year": 2016, - "last_year": 2022, - "total_projects": 11, - "is_currently_active": false, - "active_years": [ - 2016, - 2017, - 2018, - 2020, - 2022 - ] - }, { "slug": "the-netbsd-foundation", "name": "The NetBSD Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 38, "is_currently_active": true, "active_years": [ @@ -49,7 +35,23 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "homebrew", + "name": "Homebrew", + "first_year": 2016, + "last_year": 2022, + "total_projects": 11, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2018, + 2020, + 2022 ] } ], @@ -93,10 +95,14 @@ "2025": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.120Z" + "generated_at": "2026-02-19T13:36:01.770Z" } } \ No newline at end of file diff --git a/new-api-details/topics/package-vulnerabilities-and-security.json b/new-api-details/topics/package-vulnerabilities-and-security.json index 697b4059..aba05d49 100644 --- a/new-api-details/topics/package-vulnerabilities-and-security.json +++ b/new-api-details/topics/package-vulnerabilities-and-security.json @@ -1,10 +1,11 @@ { "slug": "package-vulnerabilities-and-security", "name": "package vulnerabilities and security", - "published_at": "2026-01-25T16:06:28.410Z", + "published_at": "2026-02-19T13:36:00.303Z", "organizationCount": 1, "projectCount": 32, "years": [ + 2026, 2025, 2024, 2023, @@ -19,7 +20,7 @@ "slug": "aboutcode", "name": "AboutCode", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 32, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.410Z" + "generated_at": "2026-02-19T13:36:00.303Z" } } \ No newline at end of file diff --git a/new-api-details/topics/package.json b/new-api-details/topics/package.json index 893dc49d..b94a7a36 100644 --- a/new-api-details/topics/package.json +++ b/new-api-details/topics/package.json @@ -1,7 +1,7 @@ { "slug": "package", "name": "package", - "published_at": "2026-01-25T16:06:29.081Z", + "published_at": "2026-02-19T13:36:01.608Z", "organizationCount": 1, "projectCount": 25, "years": [ @@ -70,6 +70,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.081Z" + "generated_at": "2026-02-19T13:36:01.608Z" } } \ No newline at end of file diff --git a/new-api-details/topics/packages.json b/new-api-details/topics/packages.json index 94891869..917a64cd 100644 --- a/new-api-details/topics/packages.json +++ b/new-api-details/topics/packages.json @@ -1,10 +1,11 @@ { "slug": "packages", "name": "Packages", - "published_at": "2026-01-25T16:06:29.654Z", + "published_at": "2026-02-19T13:36:02.871Z", "organizationCount": 1, "projectCount": 26, "years": [ + 2026, 2025, 2024, 2023, @@ -19,7 +20,7 @@ "slug": "swift", "name": "Swift", "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "total_projects": 26, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.654Z" + "generated_at": "2026-02-19T13:36:02.871Z" } } \ No newline at end of file diff --git a/new-api-details/topics/packaging.json b/new-api-details/topics/packaging.json index cec93bc4..08833779 100644 --- a/new-api-details/topics/packaging.json +++ b/new-api-details/topics/packaging.json @@ -1,10 +1,11 @@ { "slug": "packaging", "name": "packaging", - "published_at": "2026-01-25T16:06:28.824Z", + "published_at": "2026-02-19T13:36:01.164Z", "organizationCount": 4, "projectCount": 169, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "debian", "name": "Debian", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 78, "is_currently_active": true, "active_years": [ @@ -32,26 +33,15 @@ 2021, 2022, 2024, - 2025 - ] - }, - { - "slug": "gpac", - "name": "GPAC", - "first_year": 2016, - "last_year": 2020, - "total_projects": 1, - "is_currently_active": false, - "active_years": [ - 2016, - 2020 + 2025, + 2026 ] }, { "slug": "opensuse-project", "name": "openSUSE Project", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 52, "is_currently_active": true, "active_years": [ @@ -63,14 +53,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "the-netbsd-foundation", "name": "The NetBSD Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 38, "is_currently_active": true, "active_years": [ @@ -83,7 +74,20 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "gpac", + "name": "GPAC", + "first_year": 2016, + "last_year": 2020, + "total_projects": 1, + "is_currently_active": false, + "active_years": [ + 2016, + 2020 ] } ], @@ -127,10 +131,14 @@ "2025": { "organizationCount": 3, "projectCount": 19 + }, + "2026": { + "organizationCount": 3, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.824Z" + "generated_at": "2026-02-19T13:36:01.164Z" } } \ No newline at end of file diff --git a/new-api-details/topics/parallel-algorithms.json b/new-api-details/topics/parallel-algorithms.json index fcd3a9b2..e62aab87 100644 --- a/new-api-details/topics/parallel-algorithms.json +++ b/new-api-details/topics/parallel-algorithms.json @@ -1,10 +1,11 @@ { "slug": "parallel-algorithms", "name": "parallel algorithms", - "published_at": "2026-01-25T16:06:29.600Z", + "published_at": "2026-02-19T13:36:02.805Z", "organizationCount": 2, "projectCount": 51, "years": [ + 2026, 2025, 2024, 2023, @@ -17,25 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "ruby-science-foundation", - "name": "Ruby Science Foundation", - "first_year": 2016, - "last_year": 2019, - "total_projects": 13, - "is_currently_active": false, - "active_years": [ - 2016, - 2017, - 2018, - 2019 - ] - }, { "slug": "stear-group", "name": "Ste||ar group", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 38, "is_currently_active": true, "active_years": [ @@ -47,7 +34,22 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "ruby-science-foundation", + "name": "Ruby Science Foundation", + "first_year": 2016, + "last_year": 2019, + "total_projects": 13, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2018, + 2019 ] } ], @@ -91,10 +93,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.600Z" + "generated_at": "2026-02-19T13:36:02.805Z" } } \ No newline at end of file diff --git a/new-api-details/topics/parallel-computing.json b/new-api-details/topics/parallel-computing.json index 4c62c265..21544e67 100644 --- a/new-api-details/topics/parallel-computing.json +++ b/new-api-details/topics/parallel-computing.json @@ -1,10 +1,11 @@ { "slug": "parallel-computing", "name": "parallel computing", - "published_at": "2026-01-25T16:06:28.747Z", + "published_at": "2026-02-19T13:36:01.001Z", "organizationCount": 3, "projectCount": 60, "years": [ + 2026, 2025, 2024, 2023, @@ -17,6 +18,26 @@ 2016 ], "organizations": [ + { + "slug": "stear-group", + "name": "Ste||ar group", + "first_year": 2016, + "last_year": 2026, + "total_projects": 38, + "is_currently_active": true, + "active_years": [ + 2016, + 2017, + 2018, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ] + }, { "slug": "chapel", "name": "Chapel", @@ -43,25 +64,6 @@ 2023, 2024 ] - }, - { - "slug": "stear-group", - "name": "Ste||ar group", - "first_year": 2016, - "last_year": 2025, - "total_projects": 38, - "is_currently_active": true, - "active_years": [ - 2016, - 2017, - 2018, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 - ] } ], "yearlyStats": { @@ -104,10 +106,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.747Z" + "generated_at": "2026-02-19T13:36:01.001Z" } } \ No newline at end of file diff --git a/new-api-details/topics/parallel.json b/new-api-details/topics/parallel.json index f89cf51f..26b90582 100644 --- a/new-api-details/topics/parallel.json +++ b/new-api-details/topics/parallel.json @@ -1,7 +1,7 @@ { "slug": "parallel", "name": "parallel", - "published_at": "2026-01-25T16:06:28.699Z", + "published_at": "2026-02-19T13:36:00.950Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.699Z" + "generated_at": "2026-02-19T13:36:00.950Z" } } \ No newline at end of file diff --git a/new-api-details/topics/parallelism.json b/new-api-details/topics/parallelism.json index 839fb6bd..b0752f17 100644 --- a/new-api-details/topics/parallelism.json +++ b/new-api-details/topics/parallelism.json @@ -1,10 +1,11 @@ { "slug": "parallelism", "name": "parallelism", - "published_at": "2026-01-25T16:06:29.643Z", + "published_at": "2026-02-19T13:36:02.854Z", "organizationCount": 1, "projectCount": 38, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "stear-group", "name": "Ste||ar group", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 38, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.643Z" + "generated_at": "2026-02-19T13:36:02.854Z" } } \ No newline at end of file diff --git a/new-api-details/topics/parallelization.json b/new-api-details/topics/parallelization.json index 0a77dae2..28692d93 100644 --- a/new-api-details/topics/parallelization.json +++ b/new-api-details/topics/parallelization.json @@ -1,7 +1,7 @@ { "slug": "parallelization", "name": "parallelization", - "published_at": "2026-01-25T16:06:29.548Z", + "published_at": "2026-02-19T13:36:02.724Z", "organizationCount": 1, "projectCount": 4, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.548Z" + "generated_at": "2026-02-19T13:36:02.724Z" } } \ No newline at end of file diff --git a/new-api-details/topics/parser.json b/new-api-details/topics/parser.json index 9bbd2070..1d687ddd 100644 --- a/new-api-details/topics/parser.json +++ b/new-api-details/topics/parser.json @@ -1,10 +1,11 @@ { "slug": "parser", "name": "parser", - "published_at": "2026-01-25T16:06:28.903Z", + "published_at": "2026-02-19T13:36:01.254Z", "organizationCount": 2, "projectCount": 12, "years": [ + 2026, 2025, 2024, 2021, @@ -13,22 +14,11 @@ 2018 ], "organizations": [ - { - "slug": "elm-tooling", - "name": "Elm Tooling", - "first_year": 2021, - "last_year": 2021, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2021 - ] - }, { "slug": "webpack", "name": "webpack", "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "total_projects": 10, "is_currently_active": true, "active_years": [ @@ -36,7 +26,19 @@ 2019, 2020, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "elm-tooling", + "name": "Elm Tooling", + "first_year": 2021, + "last_year": 2021, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2021 ] } ], @@ -64,10 +66,14 @@ "2025": { "organizationCount": 1, "projectCount": 1 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.903Z" + "generated_at": "2026-02-19T13:36:01.254Z" } } \ No newline at end of file diff --git a/new-api-details/topics/partial-differential-equations.json b/new-api-details/topics/partial-differential-equations.json index 04d4928e..1c0ef372 100644 --- a/new-api-details/topics/partial-differential-equations.json +++ b/new-api-details/topics/partial-differential-equations.json @@ -1,7 +1,7 @@ { "slug": "partial-differential-equations", "name": "partial differential equations", - "published_at": "2026-01-25T16:06:28.861Z", + "published_at": "2026-02-19T13:36:01.204Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.861Z" + "generated_at": "2026-02-19T13:36:01.204Z" } } \ No newline at end of file diff --git a/new-api-details/topics/particle-physics.json b/new-api-details/topics/particle-physics.json index 93088b60..69d0d2ae 100644 --- a/new-api-details/topics/particle-physics.json +++ b/new-api-details/topics/particle-physics.json @@ -1,10 +1,11 @@ { "slug": "particle-physics", "name": "particle physics", - "published_at": "2026-01-25T16:06:28.646Z", + "published_at": "2026-02-19T13:36:00.970Z", "organizationCount": 1, "projectCount": 214, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "cern-hsf", "name": "CERN-HSF", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 214, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 26 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.646Z" + "generated_at": "2026-02-19T13:36:00.970Z" } } \ No newline at end of file diff --git a/new-api-details/topics/pdf.json b/new-api-details/topics/pdf.json index 362a9581..be5757f3 100644 --- a/new-api-details/topics/pdf.json +++ b/new-api-details/topics/pdf.json @@ -1,10 +1,11 @@ { "slug": "pdf", "name": "pdf", - "published_at": "2026-01-25T16:06:29.213Z", + "published_at": "2026-02-19T13:36:02.004Z", "organizationCount": 1, "projectCount": 11, "years": [ + 2026, 2025, 2024, 2022, @@ -16,7 +17,7 @@ "slug": "jabref-ev", "name": "JabRef e.V.", "first_year": 2019, - "last_year": 2025, + "last_year": 2026, "total_projects": 11, "is_currently_active": true, "active_years": [ @@ -24,7 +25,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] } ], @@ -48,10 +50,14 @@ "2025": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.213Z" + "generated_at": "2026-02-19T13:36:02.004Z" } } \ No newline at end of file diff --git a/new-api-details/topics/peace-corps.json b/new-api-details/topics/peace-corps.json index 48025dfd..a30452e7 100644 --- a/new-api-details/topics/peace-corps.json +++ b/new-api-details/topics/peace-corps.json @@ -1,7 +1,7 @@ { "slug": "peace-corps", "name": "peace corps", - "published_at": "2026-01-25T16:06:29.661Z", + "published_at": "2026-02-19T13:36:02.888Z", "organizationCount": 1, "projectCount": 30, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.661Z" + "generated_at": "2026-02-19T13:36:02.888Z" } } \ No newline at end of file diff --git a/new-api-details/topics/pedagogy.json b/new-api-details/topics/pedagogy.json index dde53f6e..0409e6ee 100644 --- a/new-api-details/topics/pedagogy.json +++ b/new-api-details/topics/pedagogy.json @@ -1,10 +1,11 @@ { "slug": "pedagogy", "name": "pedagogy", - "published_at": "2026-01-25T16:06:28.760Z", + "published_at": "2026-02-19T13:36:01.020Z", "organizationCount": 1, "projectCount": 32, "years": [ + 2026, 2025, 2024, 2023, @@ -18,7 +19,7 @@ "slug": "circuitverseorg", "name": "CircuitVerse.org", "first_year": 2019, - "last_year": 2025, + "last_year": 2026, "total_projects": 32, "is_currently_active": true, "active_years": [ @@ -28,7 +29,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -60,10 +62,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.760Z" + "generated_at": "2026-02-19T13:36:01.020Z" } } \ No newline at end of file diff --git a/new-api-details/topics/peer-feedback.json b/new-api-details/topics/peer-feedback.json index 09659d2b..e8387c0a 100644 --- a/new-api-details/topics/peer-feedback.json +++ b/new-api-details/topics/peer-feedback.json @@ -1,7 +1,7 @@ { "slug": "peer-feedback", "name": "peer feedback", - "published_at": "2026-01-25T16:06:29.667Z", + "published_at": "2026-02-19T13:36:02.900Z", "organizationCount": 1, "projectCount": 20, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.667Z" + "generated_at": "2026-02-19T13:36:02.900Z" } } \ No newline at end of file diff --git a/new-api-details/topics/peer-reviewed-libraries.json b/new-api-details/topics/peer-reviewed-libraries.json index 45c844f8..69fd072c 100644 --- a/new-api-details/topics/peer-reviewed-libraries.json +++ b/new-api-details/topics/peer-reviewed-libraries.json @@ -1,7 +1,7 @@ { "slug": "peer-reviewed-libraries", "name": "peer-reviewed libraries", - "published_at": "2026-01-25T16:06:28.619Z", + "published_at": "2026-02-19T13:36:00.844Z", "organizationCount": 1, "projectCount": 41, "years": [ @@ -52,6 +52,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.619Z" + "generated_at": "2026-02-19T13:36:00.844Z" } } \ No newline at end of file diff --git a/new-api-details/topics/peer-to-peer.json b/new-api-details/topics/peer-to-peer.json index 1f642990..2773a082 100644 --- a/new-api-details/topics/peer-to-peer.json +++ b/new-api-details/topics/peer-to-peer.json @@ -1,10 +1,11 @@ { "slug": "peer-to-peer", "name": "peer to peer", - "published_at": "2026-01-25T16:06:28.642Z", + "published_at": "2026-02-19T13:36:00.946Z", "organizationCount": 1, "projectCount": 80, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "ccextractor-development", "name": "CCExtractor Development", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 80, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 10 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.642Z" + "generated_at": "2026-02-19T13:36:00.946Z" } } \ No newline at end of file diff --git a/new-api-details/topics/penetration-testing.json b/new-api-details/topics/penetration-testing.json index d40aea38..4fe375c0 100644 --- a/new-api-details/topics/penetration-testing.json +++ b/new-api-details/topics/penetration-testing.json @@ -1,10 +1,11 @@ { "slug": "penetration-testing", "name": "penetration testing", - "published_at": "2026-01-25T16:06:29.351Z", + "published_at": "2026-02-19T13:36:02.296Z", "organizationCount": 1, "projectCount": 12, "years": [ + 2026, 2023, 2022, 2021, @@ -17,16 +18,17 @@ "slug": "metasploit", "name": "Metasploit", "first_year": 2017, - "last_year": 2023, + "last_year": 2026, "total_projects": 12, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, 2020, 2021, 2022, - 2023 + 2023, + 2026 ] } ], @@ -54,10 +56,14 @@ "2023": { "organizationCount": 1, "projectCount": 1 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.351Z" + "generated_at": "2026-02-19T13:36:02.296Z" } } \ No newline at end of file diff --git a/new-api-details/topics/pentesting.json b/new-api-details/topics/pentesting.json index 4da524d9..7c995e1b 100644 --- a/new-api-details/topics/pentesting.json +++ b/new-api-details/topics/pentesting.json @@ -1,10 +1,11 @@ { "slug": "pentesting", "name": "pentesting", - "published_at": "2026-01-25T16:06:29.424Z", + "published_at": "2026-02-19T13:36:02.673Z", "organizationCount": 1, "projectCount": 102, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "owasp-foundation", "name": "OWASP Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 102, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 15 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.425Z" + "generated_at": "2026-02-19T13:36:02.673Z" } } \ No newline at end of file diff --git a/new-api-details/topics/perception.json b/new-api-details/topics/perception.json index 01802e9d..4d26bd03 100644 --- a/new-api-details/topics/perception.json +++ b/new-api-details/topics/perception.json @@ -1,7 +1,7 @@ { "slug": "perception", "name": "perception", - "published_at": "2026-01-25T16:06:29.153Z", + "published_at": "2026-02-19T13:36:01.820Z", "organizationCount": 2, "projectCount": 16, "years": [ @@ -56,6 +56,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.153Z" + "generated_at": "2026-02-19T13:36:01.820Z" } } \ No newline at end of file diff --git a/new-api-details/topics/performance-optimisation.json b/new-api-details/topics/performance-optimisation.json index 7717fd14..790163a8 100644 --- a/new-api-details/topics/performance-optimisation.json +++ b/new-api-details/topics/performance-optimisation.json @@ -1,10 +1,11 @@ { "slug": "performance-optimisation", "name": "Performance Optimisation", - "published_at": "2026-01-25T16:06:28.649Z", + "published_at": "2026-02-19T13:36:00.974Z", "organizationCount": 1, "projectCount": 214, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "cern-hsf", "name": "CERN-HSF", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 214, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 26 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.649Z" + "generated_at": "2026-02-19T13:36:00.974Z" } } \ No newline at end of file diff --git a/new-api-details/topics/performance-optimization.json b/new-api-details/topics/performance-optimization.json index 220715e5..f9fa6da8 100644 --- a/new-api-details/topics/performance-optimization.json +++ b/new-api-details/topics/performance-optimization.json @@ -1,10 +1,11 @@ { "slug": "performance-optimization", "name": "performance optimization", - "published_at": "2026-01-25T16:06:28.647Z", + "published_at": "2026-02-19T13:36:00.972Z", "organizationCount": 2, "projectCount": 252, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "cern-hsf", "name": "CERN-HSF", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 214, "is_currently_active": true, "active_years": [ @@ -33,16 +34,17 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "ruby", "name": "Ruby", "first_year": 2016, - "last_year": 2023, + "last_year": 2026, "total_projects": 38, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2018, @@ -50,7 +52,8 @@ 2020, 2021, 2022, - 2023 + 2023, + 2026 ] } ], @@ -94,10 +97,14 @@ "2025": { "organizationCount": 1, "projectCount": 26 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.647Z" + "generated_at": "2026-02-19T13:36:00.972Z" } } \ No newline at end of file diff --git a/new-api-details/topics/performance.json b/new-api-details/topics/performance.json index 9e0dd82c..cd660f3d 100644 --- a/new-api-details/topics/performance.json +++ b/new-api-details/topics/performance.json @@ -1,10 +1,11 @@ { "slug": "performance", "name": "performance", - "published_at": "2026-01-25T16:06:28.549Z", - "organizationCount": 4, + "published_at": "2026-02-19T13:36:00.805Z", + "organizationCount": 5, "projectCount": 134, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "brl-cad", "name": "BRL-CAD", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 73, "is_currently_active": true, "active_years": [ @@ -34,27 +35,15 @@ 2022, 2023, 2024, - 2025 - ] - }, - { - "slug": "frrouting", - "name": "FRRouting", - "first_year": 2020, - "last_year": 2022, - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2020, - 2021, - 2022 + 2025, + 2026 ] }, { "slug": "mariadb", "name": "MariaDB", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 39, "is_currently_active": true, "active_years": [ @@ -67,7 +56,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -85,6 +75,30 @@ 2020, 2022 ] + }, + { + "slug": "frrouting", + "name": "FRRouting", + "first_year": 2020, + "last_year": 2022, + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2020, + 2021, + 2022 + ] + }, + { + "slug": "boa", + "name": "Boa", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] } ], "yearlyStats": { @@ -127,10 +141,14 @@ "2025": { "organizationCount": 2, "projectCount": 13 + }, + "2026": { + "organizationCount": 3, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.549Z" + "generated_at": "2026-02-19T13:36:00.805Z" } } \ No newline at end of file diff --git a/new-api-details/topics/perl.json b/new-api-details/topics/perl.json index 9afaf902..609362f2 100644 --- a/new-api-details/topics/perl.json +++ b/new-api-details/topics/perl.json @@ -1,10 +1,11 @@ { "slug": "perl", "name": "perl", - "published_at": "2026-01-25T16:06:29.456Z", + "published_at": "2026-02-19T13:36:02.524Z", "organizationCount": 1, "projectCount": 70, "years": [ + 2026, 2025, 2024, 2023, @@ -19,7 +20,7 @@ "slug": "open-technologies-alliance-gfoss", "name": "Open Technologies Alliance - GFOSS", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 70, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.456Z" + "generated_at": "2026-02-19T13:36:02.524Z" } } \ No newline at end of file diff --git a/new-api-details/topics/personal-assistants.json b/new-api-details/topics/personal-assistants.json index bb6a7f52..2ffff1df 100644 --- a/new-api-details/topics/personal-assistants.json +++ b/new-api-details/topics/personal-assistants.json @@ -1,10 +1,11 @@ { "slug": "personal-assistants", "name": "personal assistants", - "published_at": "2026-01-25T16:06:28.934Z", + "published_at": "2026-02-19T13:36:01.485Z", "organizationCount": 1, "projectCount": 140, "years": [ + 2026, 2025, 2024, 2019, @@ -17,7 +18,7 @@ "slug": "fossasia", "name": "FOSSASIA", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 140, "is_currently_active": true, "active_years": [ @@ -26,7 +27,8 @@ 2018, 2019, 2024, - 2025 + 2025, + 2026 ] } ], @@ -54,10 +56,14 @@ "2025": { "organizationCount": 1, "projectCount": 20 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.934Z" + "generated_at": "2026-02-19T13:36:01.485Z" } } \ No newline at end of file diff --git a/new-api-details/topics/personal-server.json b/new-api-details/topics/personal-server.json index 3c1a2fe8..8695c68c 100644 --- a/new-api-details/topics/personal-server.json +++ b/new-api-details/topics/personal-server.json @@ -1,7 +1,7 @@ { "slug": "personal-server", "name": "Personal Server", - "published_at": "2026-01-25T16:06:28.571Z", + "published_at": "2026-02-19T13:36:00.664Z", "organizationCount": 1, "projectCount": 44, "years": [ @@ -23,7 +23,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 44, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -82,6 +82,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.571Z" + "generated_at": "2026-02-19T13:36:00.664Z" } } \ No newline at end of file diff --git a/new-api-details/topics/pharmacological-modeling.json b/new-api-details/topics/pharmacological-modeling.json index 3f0abae6..56cf2854 100644 --- a/new-api-details/topics/pharmacological-modeling.json +++ b/new-api-details/topics/pharmacological-modeling.json @@ -1,7 +1,7 @@ { "slug": "pharmacological-modeling", "name": "pharmacological modeling", - "published_at": "2026-01-25T16:06:28.595Z", + "published_at": "2026-02-19T13:36:00.733Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.595Z" + "generated_at": "2026-02-19T13:36:00.733Z" } } \ No newline at end of file diff --git a/new-api-details/topics/philosophy.json b/new-api-details/topics/philosophy.json index a28caf48..a48a1df9 100644 --- a/new-api-details/topics/philosophy.json +++ b/new-api-details/topics/philosophy.json @@ -1,10 +1,11 @@ { "slug": "philosophy", "name": "philosophy", - "published_at": "2026-01-25T16:06:28.385Z", + "published_at": "2026-02-19T13:36:00.471Z", "organizationCount": 1, "projectCount": 117, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "aossie", "name": "AOSSIE", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 117, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 21 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.385Z" + "generated_at": "2026-02-19T13:36:00.471Z" } } \ No newline at end of file diff --git a/new-api-details/topics/photography.json b/new-api-details/topics/photography.json index 8e3554dd..02f79ba1 100644 --- a/new-api-details/topics/photography.json +++ b/new-api-details/topics/photography.json @@ -1,10 +1,11 @@ { "slug": "photography", "name": "photography", - "published_at": "2026-01-25T16:06:28.514Z", + "published_at": "2026-02-19T13:36:00.508Z", "organizationCount": 2, "projectCount": 28, "years": [ + 2026, 2025, 2024, 2023, @@ -36,14 +37,15 @@ "slug": "gnu-image-manipulation-program", "name": "GNU Image Manipulation Program", "first_year": 2022, - "last_year": 2025, + "last_year": 2026, "total_projects": 10, "is_currently_active": true, "active_years": [ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -83,10 +85,14 @@ "2025": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.514Z" + "generated_at": "2026-02-19T13:36:00.508Z" } } \ No newline at end of file diff --git a/new-api-details/topics/php.json b/new-api-details/topics/php.json index 6bd980cc..5907313a 100644 --- a/new-api-details/topics/php.json +++ b/new-api-details/topics/php.json @@ -1,10 +1,11 @@ { "slug": "php", "name": "php", - "published_at": "2026-01-25T16:06:28.865Z", + "published_at": "2026-02-19T13:36:01.217Z", "organizationCount": 2, "projectCount": 40, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "drupal-association", "name": "Drupal Association", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 39, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -83,10 +85,14 @@ "2025": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.865Z" + "generated_at": "2026-02-19T13:36:01.217Z" } } \ No newline at end of file diff --git a/new-api-details/topics/physical-computing.json b/new-api-details/topics/physical-computing.json index 8b7d3a57..fb01e38c 100644 --- a/new-api-details/topics/physical-computing.json +++ b/new-api-details/topics/physical-computing.json @@ -1,7 +1,7 @@ { "slug": "physical-computing", "name": "physical computing", - "published_at": "2026-01-25T16:06:28.563Z", + "published_at": "2026-02-19T13:36:00.652Z", "organizationCount": 1, "projectCount": 44, "years": [ @@ -23,7 +23,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 44, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -82,6 +82,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.563Z" + "generated_at": "2026-02-19T13:36:00.652Z" } } \ No newline at end of file diff --git a/new-api-details/topics/physically-based-rendering.json b/new-api-details/topics/physically-based-rendering.json index aa74b2ae..f69b2d2c 100644 --- a/new-api-details/topics/physically-based-rendering.json +++ b/new-api-details/topics/physically-based-rendering.json @@ -1,7 +1,7 @@ { "slug": "physically-based-rendering", "name": "physically based rendering", - "published_at": "2026-01-25T16:06:29.466Z", + "published_at": "2026-02-19T13:36:02.547Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.466Z" + "generated_at": "2026-02-19T13:36:02.547Z" } } \ No newline at end of file diff --git a/new-api-details/topics/physics.json b/new-api-details/topics/physics.json index 2013b7ff..15c289ed 100644 --- a/new-api-details/topics/physics.json +++ b/new-api-details/topics/physics.json @@ -1,10 +1,11 @@ { "slug": "physics", "name": "physics", - "published_at": "2026-01-25T16:06:28.645Z", + "published_at": "2026-02-19T13:36:00.572Z", "organizationCount": 8, "projectCount": 701, "years": [ + 2026, 2025, 2024, 2023, @@ -18,24 +19,31 @@ ], "organizations": [ { - "slug": "appleseed", - "name": "appleseed", - "first_year": 2017, - "last_year": 2020, - "total_projects": 11, - "is_currently_active": false, + "slug": "python-software-foundation", + "name": "Python Software Foundation", + "first_year": 2016, + "last_year": 2026, + "total_projects": 277, + "is_currently_active": true, "active_years": [ + 2016, 2017, 2018, 2019, - 2020 + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { "slug": "cern-hsf", "name": "CERN-HSF", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 214, "is_currently_active": true, "active_years": [ @@ -47,36 +55,15 @@ 2022, 2023, 2024, - 2025 - ] - }, - { - "slug": "distributed-and-unified-numerics-environment-dune", - "name": "Distributed and Unified Numerics Environment (DUNE)", - "first_year": 2016, - "last_year": 2016, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2016 - ] - }, - { - "slug": "inria-foundation", - "name": "Inria Foundation", - "first_year": 2018, - "last_year": 2018, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2018 + 2025, + 2026 ] }, { "slug": "machine-learning-for-science-ml4sci", "name": "Machine Learning for Science (ML4SCI)", "first_year": 2021, - "last_year": 2025, + "last_year": 2026, "total_projects": 119, "is_currently_active": true, "active_years": [ @@ -84,65 +71,83 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "mbdyn", - "name": "MBDyn", + "slug": "sympy", + "name": "SymPy", "first_year": 2016, - "last_year": 2025, - "total_projects": 13, + "last_year": 2026, + "total_projects": 63, "is_currently_active": true, "active_years": [ 2016, 2017, + 2018, 2019, 2020, 2021, 2022, + 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "python-software-foundation", - "name": "Python Software Foundation", + "slug": "mbdyn", + "name": "MBDyn", "first_year": 2016, "last_year": 2025, - "total_projects": 277, - "is_currently_active": true, + "total_projects": 13, + "is_currently_active": false, "active_years": [ 2016, 2017, - 2018, 2019, 2020, 2021, 2022, - 2023, 2024, 2025 ] }, { - "slug": "sympy", - "name": "SymPy", - "first_year": 2016, - "last_year": 2025, - "total_projects": 63, - "is_currently_active": true, + "slug": "appleseed", + "name": "appleseed", + "first_year": 2017, + "last_year": 2020, + "total_projects": 11, + "is_currently_active": false, "active_years": [ - 2016, 2017, 2018, 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2020 + ] + }, + { + "slug": "distributed-and-unified-numerics-environment-dune", + "name": "Distributed and Unified Numerics Environment (DUNE)", + "first_year": 2016, + "last_year": 2016, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2016 + ] + }, + { + "slug": "inria-foundation", + "name": "Inria Foundation", + "first_year": 2018, + "last_year": 2018, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2018 ] } ], @@ -186,10 +191,14 @@ "2025": { "organizationCount": 5, "projectCount": 82 + }, + "2026": { + "organizationCount": 4, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.645Z" + "generated_at": "2026-02-19T13:36:00.572Z" } } \ No newline at end of file diff --git a/new-api-details/topics/physiology.json b/new-api-details/topics/physiology.json index 8e9846c1..0a66fd5b 100644 --- a/new-api-details/topics/physiology.json +++ b/new-api-details/topics/physiology.json @@ -1,7 +1,7 @@ { "slug": "physiology", "name": "physiology", - "published_at": "2026-01-25T16:06:28.594Z", + "published_at": "2026-02-19T13:36:00.729Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.594Z" + "generated_at": "2026-02-19T13:36:00.729Z" } } \ No newline at end of file diff --git a/new-api-details/topics/piano.json b/new-api-details/topics/piano.json index 2ed26a2b..b6ab6a3b 100644 --- a/new-api-details/topics/piano.json +++ b/new-api-details/topics/piano.json @@ -1,7 +1,7 @@ { "slug": "piano", "name": "piano", - "published_at": "2026-01-25T16:06:29.387Z", + "published_at": "2026-02-19T13:36:02.377Z", "organizationCount": 1, "projectCount": 24, "years": [ @@ -76,6 +76,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.387Z" + "generated_at": "2026-02-19T13:36:02.377Z" } } \ No newline at end of file diff --git a/new-api-details/topics/pipeline-automation.json b/new-api-details/topics/pipeline-automation.json index 468fc39a..94822d62 100644 --- a/new-api-details/topics/pipeline-automation.json +++ b/new-api-details/topics/pipeline-automation.json @@ -1,7 +1,7 @@ { "slug": "pipeline-automation", "name": "pipeline automation", - "published_at": "2026-01-25T16:06:29.529Z", + "published_at": "2026-02-19T13:36:02.688Z", "organizationCount": 1, "projectCount": 0, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.529Z" + "generated_at": "2026-02-19T13:36:02.688Z" } } \ No newline at end of file diff --git a/new-api-details/topics/platform-engineering.json b/new-api-details/topics/platform-engineering.json index 5b916e07..828e43c3 100644 --- a/new-api-details/topics/platform-engineering.json +++ b/new-api-details/topics/platform-engineering.json @@ -1,10 +1,11 @@ { "slug": "platform-engineering", "name": "Platform Engineering", - "published_at": "2026-01-25T16:06:29.338Z", + "published_at": "2026-02-19T13:36:02.275Z", "organizationCount": 1, "projectCount": 2, "years": [ + 2026, 2025 ], "organizations": [ @@ -12,11 +13,12 @@ "slug": "meshery", "name": "Meshery", "first_year": 2025, - "last_year": 2025, + "last_year": 2026, "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] } ], @@ -24,10 +26,14 @@ "2025": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.338Z" + "generated_at": "2026-02-19T13:36:02.275Z" } } \ No newline at end of file diff --git a/new-api-details/topics/platform.json b/new-api-details/topics/platform.json index 8f40246e..b8c11418 100644 --- a/new-api-details/topics/platform.json +++ b/new-api-details/topics/platform.json @@ -1,10 +1,11 @@ { "slug": "platform", "name": "platform", - "published_at": "2026-01-25T16:06:28.958Z", + "published_at": "2026-02-19T13:36:01.309Z", "organizationCount": 3, "projectCount": 133, "years": [ + 2026, 2025, 2024, 2023, @@ -18,11 +19,11 @@ ], "organizations": [ { - "slug": "fedora-project", - "name": "Fedora Project", + "slug": "openmrs", + "name": "OpenMRS", "first_year": 2016, - "last_year": 2025, - "total_projects": 27, + "last_year": 2026, + "total_projects": 94, "is_currently_active": true, "active_years": [ 2016, @@ -30,26 +31,27 @@ 2018, 2019, 2020, - 2025 + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "openmrs", - "name": "OpenMRS", + "slug": "fedora-project", + "name": "Fedora Project", "first_year": 2016, "last_year": 2025, - "total_projects": 94, - "is_currently_active": true, + "total_projects": 27, + "is_currently_active": false, "active_years": [ 2016, 2017, 2018, 2019, 2020, - 2021, - 2022, - 2023, - 2024, 2025 ] }, @@ -112,10 +114,14 @@ "2025": { "organizationCount": 2, "projectCount": 10 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.958Z" + "generated_at": "2026-02-19T13:36:01.309Z" } } \ No newline at end of file diff --git a/new-api-details/topics/playback.json b/new-api-details/topics/playback.json index e6d01f68..bcc9caf3 100644 --- a/new-api-details/topics/playback.json +++ b/new-api-details/topics/playback.json @@ -1,7 +1,7 @@ { "slug": "playback", "name": "playback", - "published_at": "2026-01-25T16:06:29.066Z", + "published_at": "2026-02-19T13:36:01.724Z", "organizationCount": 1, "projectCount": 1, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.066Z" + "generated_at": "2026-02-19T13:36:01.724Z" } } \ No newline at end of file diff --git a/new-api-details/topics/plotting-tools.json b/new-api-details/topics/plotting-tools.json index 662602ac..a6361ad3 100644 --- a/new-api-details/topics/plotting-tools.json +++ b/new-api-details/topics/plotting-tools.json @@ -1,7 +1,7 @@ { "slug": "plotting-tools", "name": "plotting tools", - "published_at": "2026-01-25T16:06:29.731Z", + "published_at": "2026-02-19T13:36:02.995Z", "organizationCount": 1, "projectCount": 4, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.731Z" + "generated_at": "2026-02-19T13:36:02.995Z" } } \ No newline at end of file diff --git a/new-api-details/topics/plotting.json b/new-api-details/topics/plotting.json index 4849d93d..fff66bdf 100644 --- a/new-api-details/topics/plotting.json +++ b/new-api-details/topics/plotting.json @@ -1,10 +1,11 @@ { "slug": "plotting", "name": "plotting", - "published_at": "2026-01-25T16:06:29.692Z", + "published_at": "2026-02-19T13:36:02.925Z", "organizationCount": 1, "projectCount": 140, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "the-julia-language", "name": "The Julia Language", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 140, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 14 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.693Z" + "generated_at": "2026-02-19T13:36:02.925Z" } } \ No newline at end of file diff --git a/new-api-details/topics/point-clouds.json b/new-api-details/topics/point-clouds.json index 3a2702aa..cb8538df 100644 --- a/new-api-details/topics/point-clouds.json +++ b/new-api-details/topics/point-clouds.json @@ -1,7 +1,7 @@ { "slug": "point-clouds", "name": "point clouds", - "published_at": "2026-01-25T16:06:28.345Z", + "published_at": "2026-02-19T13:36:00.248Z", "organizationCount": 2, "projectCount": 3, "years": [ @@ -44,6 +44,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.345Z" + "generated_at": "2026-02-19T13:36:00.248Z" } } \ No newline at end of file diff --git a/new-api-details/topics/point-set-processing.json b/new-api-details/topics/point-set-processing.json index 8f9516c9..3d21fc34 100644 --- a/new-api-details/topics/point-set-processing.json +++ b/new-api-details/topics/point-set-processing.json @@ -1,10 +1,11 @@ { "slug": "point-set-processing", "name": "point set processing", - "published_at": "2026-01-25T16:06:28.654Z", + "published_at": "2026-02-19T13:36:00.986Z", "organizationCount": 1, "projectCount": 58, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "cgal-project", "name": "CGAL Project", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 58, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.654Z" + "generated_at": "2026-02-19T13:36:00.986Z" } } \ No newline at end of file diff --git a/new-api-details/topics/polar-science.json b/new-api-details/topics/polar-science.json index cba48324..d1b5ee89 100644 --- a/new-api-details/topics/polar-science.json +++ b/new-api-details/topics/polar-science.json @@ -1,10 +1,11 @@ { "slug": "polar-science", "name": "Polar Science", - "published_at": "2026-01-25T16:06:28.448Z", + "published_at": "2026-02-19T13:36:00.419Z", "organizationCount": 1, "projectCount": 12, "years": [ + 2026, 2025, 2024 ], @@ -13,12 +14,13 @@ "slug": "alaska", "name": "Alaska", "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "total_projects": 12, "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -30,10 +32,14 @@ "2025": { "organizationCount": 1, "projectCount": 8 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.448Z" + "generated_at": "2026-02-19T13:36:00.419Z" } } \ No newline at end of file diff --git a/new-api-details/topics/pollution.json b/new-api-details/topics/pollution.json index 04e108fd..60ffd00e 100644 --- a/new-api-details/topics/pollution.json +++ b/new-api-details/topics/pollution.json @@ -1,7 +1,7 @@ { "slug": "pollution", "name": "pollution", - "published_at": "2026-01-25T16:06:29.566Z", + "published_at": "2026-02-19T13:36:02.756Z", "organizationCount": 1, "projectCount": 38, "years": [ @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.566Z" + "generated_at": "2026-02-19T13:36:02.756Z" } } \ No newline at end of file diff --git a/new-api-details/topics/polyglot.json b/new-api-details/topics/polyglot.json index 7eb19d97..8f451667 100644 --- a/new-api-details/topics/polyglot.json +++ b/new-api-details/topics/polyglot.json @@ -1,10 +1,11 @@ { "slug": "polyglot", "name": "polyglot", - "published_at": "2026-01-25T16:06:28.898Z", + "published_at": "2026-02-19T13:36:01.243Z", "organizationCount": 2, "projectCount": 25, "years": [ + 2026, 2024, 2023, 2022, @@ -13,6 +14,21 @@ 2016 ], "organizations": [ + { + "slug": "metacall", + "name": "MetaCall", + "first_year": 2021, + "last_year": 2026, + "total_projects": 19, + "is_currently_active": true, + "active_years": [ + 2021, + 2022, + 2023, + 2024, + 2026 + ] + }, { "slug": "eclipse-vertx", "name": "Eclipse Vert.x", @@ -24,20 +40,6 @@ 2016, 2017 ] - }, - { - "slug": "metacall", - "name": "MetaCall", - "first_year": 2021, - "last_year": 2024, - "total_projects": 19, - "is_currently_active": false, - "active_years": [ - 2021, - 2022, - 2023, - 2024 - ] } ], "yearlyStats": { @@ -64,10 +66,14 @@ "2024": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.898Z" + "generated_at": "2026-02-19T13:36:01.243Z" } } \ No newline at end of file diff --git a/new-api-details/topics/polyhedral-compilation.json b/new-api-details/topics/polyhedral-compilation.json index b5210137..2b199a81 100644 --- a/new-api-details/topics/polyhedral-compilation.json +++ b/new-api-details/topics/polyhedral-compilation.json @@ -1,7 +1,7 @@ { "slug": "polyhedral-compilation", "name": "polyhedral compilation", - "published_at": "2026-01-25T16:06:29.547Z", + "published_at": "2026-02-19T13:36:02.723Z", "organizationCount": 1, "projectCount": 4, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.547Z" + "generated_at": "2026-02-19T13:36:02.723Z" } } \ No newline at end of file diff --git a/new-api-details/topics/polyhedral-model.json b/new-api-details/topics/polyhedral-model.json index 7edfb5cd..8a86af24 100644 --- a/new-api-details/topics/polyhedral-model.json +++ b/new-api-details/topics/polyhedral-model.json @@ -1,7 +1,7 @@ { "slug": "polyhedral-model", "name": "polyhedral model", - "published_at": "2026-01-25T16:06:29.549Z", + "published_at": "2026-02-19T13:36:02.728Z", "organizationCount": 1, "projectCount": 4, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.549Z" + "generated_at": "2026-02-19T13:36:02.728Z" } } \ No newline at end of file diff --git a/new-api-details/topics/polystore.json b/new-api-details/topics/polystore.json index 56f4e405..a1462b7c 100644 --- a/new-api-details/topics/polystore.json +++ b/new-api-details/topics/polystore.json @@ -1,7 +1,7 @@ { "slug": "polystore", "name": "polystore", - "published_at": "2026-01-25T16:06:29.550Z", + "published_at": "2026-02-19T13:36:02.730Z", "organizationCount": 1, "projectCount": 9, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.550Z" + "generated_at": "2026-02-19T13:36:02.730Z" } } \ No newline at end of file diff --git a/new-api-details/topics/population-genetics.json b/new-api-details/topics/population-genetics.json index 22d4e134..724a5f4c 100644 --- a/new-api-details/topics/population-genetics.json +++ b/new-api-details/topics/population-genetics.json @@ -1,7 +1,7 @@ { "slug": "population-genetics", "name": "population genetics", - "published_at": "2026-01-25T16:06:28.692Z", + "published_at": "2026-02-19T13:36:00.910Z", "organizationCount": 1, "projectCount": 15, "years": [ @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.692Z" + "generated_at": "2026-02-19T13:36:00.910Z" } } \ No newline at end of file diff --git a/new-api-details/topics/portable.json b/new-api-details/topics/portable.json index cd8cdece..e90ec9a7 100644 --- a/new-api-details/topics/portable.json +++ b/new-api-details/topics/portable.json @@ -1,7 +1,7 @@ { "slug": "portable", "name": "portable", - "published_at": "2026-01-25T16:06:29.637Z", + "published_at": "2026-02-19T13:36:02.843Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.637Z" + "generated_at": "2026-02-19T13:36:02.843Z" } } \ No newline at end of file diff --git a/new-api-details/topics/posix.json b/new-api-details/topics/posix.json index 3c89f63c..88c99c24 100644 --- a/new-api-details/topics/posix.json +++ b/new-api-details/topics/posix.json @@ -1,10 +1,11 @@ { "slug": "posix", "name": "posix", - "published_at": "2026-01-25T16:06:29.580Z", + "published_at": "2026-02-19T13:36:02.802Z", "organizationCount": 1, "projectCount": 46, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "rtems-project", "name": "RTEMS Project", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 46, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 8 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.580Z" + "generated_at": "2026-02-19T13:36:02.802Z" } } \ No newline at end of file diff --git a/new-api-details/topics/postgresql.json b/new-api-details/topics/postgresql.json index d47a08d7..d0426f67 100644 --- a/new-api-details/topics/postgresql.json +++ b/new-api-details/topics/postgresql.json @@ -1,10 +1,11 @@ { "slug": "postgresql", "name": "postgresql", - "published_at": "2026-01-25T16:06:29.554Z", + "published_at": "2026-02-19T13:36:02.738Z", "organizationCount": 1, "projectCount": 51, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "postgresql", "name": "PostgreSQL", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 51, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.554Z" + "generated_at": "2026-02-19T13:36:02.738Z" } } \ No newline at end of file diff --git a/new-api-details/topics/pragrammer-productivity.json b/new-api-details/topics/pragrammer-productivity.json index dd9246c9..d2361534 100644 --- a/new-api-details/topics/pragrammer-productivity.json +++ b/new-api-details/topics/pragrammer-productivity.json @@ -1,7 +1,7 @@ { "slug": "pragrammer-productivity", "name": "pragrammer productivity", - "published_at": "2026-01-25T16:06:28.751Z", + "published_at": "2026-02-19T13:36:01.004Z", "organizationCount": 1, "projectCount": 17, "years": [ @@ -18,7 +18,7 @@ "first_year": 2017, "last_year": 2025, "total_projects": 17, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2017, 2018, @@ -52,6 +52,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.751Z" + "generated_at": "2026-02-19T13:36:01.004Z" } } \ No newline at end of file diff --git a/new-api-details/topics/precision-health.json b/new-api-details/topics/precision-health.json index dc9c66ed..1f303b5e 100644 --- a/new-api-details/topics/precision-health.json +++ b/new-api-details/topics/precision-health.json @@ -1,7 +1,7 @@ { "slug": "precision-health", "name": "precision health", - "published_at": "2026-01-25T16:06:29.104Z", + "published_at": "2026-02-19T13:36:01.721Z", "organizationCount": 1, "projectCount": 5, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.104Z" + "generated_at": "2026-02-19T13:36:01.721Z" } } \ No newline at end of file diff --git a/new-api-details/topics/precision-medicine.json b/new-api-details/topics/precision-medicine.json index 6257b92b..683bd746 100644 --- a/new-api-details/topics/precision-medicine.json +++ b/new-api-details/topics/precision-medicine.json @@ -1,10 +1,11 @@ { "slug": "precision-medicine", "name": "precision medicine", - "published_at": "2026-01-25T16:06:28.600Z", + "published_at": "2026-02-19T13:36:00.753Z", "organizationCount": 3, "projectCount": 60, "years": [ + 2026, 2025, 2024, 2023, @@ -17,15 +18,21 @@ ], "organizations": [ { - "slug": "biomedical-informatics-emory-university", - "name": "Biomedical Informatics, Emory University", + "slug": "cbioportal-for-cancer-genomics", + "name": "cBioPortal for Cancer Genomics", "first_year": 2016, - "last_year": 2019, - "total_projects": 9, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 38, + "is_currently_active": true, "active_years": [ 2016, - 2019 + 2017, + 2019, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { @@ -43,20 +50,15 @@ ] }, { - "slug": "cbioportal-for-cancer-genomics", - "name": "cBioPortal for Cancer Genomics", + "slug": "biomedical-informatics-emory-university", + "name": "Biomedical Informatics, Emory University", "first_year": 2016, - "last_year": 2025, - "total_projects": 38, - "is_currently_active": true, + "last_year": 2019, + "total_projects": 9, + "is_currently_active": false, "active_years": [ 2016, - 2017, - 2019, - 2022, - 2023, - 2024, - 2025 + 2019 ] } ], @@ -96,10 +98,14 @@ "2025": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.600Z" + "generated_at": "2026-02-19T13:36:00.753Z" } } \ No newline at end of file diff --git a/new-api-details/topics/printing.json b/new-api-details/topics/printing.json index 61dc6137..04a641e8 100644 --- a/new-api-details/topics/printing.json +++ b/new-api-details/topics/printing.json @@ -1,10 +1,11 @@ { "slug": "printing", "name": "printing", - "published_at": "2026-01-25T16:06:29.697Z", + "published_at": "2026-02-19T13:36:02.934Z", "organizationCount": 1, "projectCount": 137, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "the-linux-foundation", "name": "The Linux Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 137, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 21 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.697Z" + "generated_at": "2026-02-19T13:36:02.935Z" } } \ No newline at end of file diff --git a/new-api-details/topics/privacy-security.json b/new-api-details/topics/privacy-security.json index 5780c226..920eb228 100644 --- a/new-api-details/topics/privacy-security.json +++ b/new-api-details/topics/privacy-security.json @@ -1,10 +1,11 @@ { "slug": "privacy-security", "name": "privacy/security", - "published_at": "2026-01-25T16:06:28.567Z", + "published_at": "2026-02-19T13:36:00.657Z", "organizationCount": 3, "projectCount": 138, "years": [ + 2026, 2025, 2024, 2023, @@ -18,54 +19,55 @@ ], "organizations": [ { - "slug": "beagleboardorg", - "name": "BeagleBoard.org", + "slug": "mozilla", + "name": "Mozilla", "first_year": 2016, - "last_year": 2025, - "total_projects": 44, - "is_currently_active": true, + "last_year": 2020, + "total_projects": 75, + "is_currently_active": false, "active_years": [ 2016, 2017, 2018, 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2020 ] }, { - "slug": "mozilla", - "name": "Mozilla", + "slug": "beagleboardorg", + "name": "BeagleBoard.org", "first_year": 2016, - "last_year": 2020, - "total_projects": 75, + "last_year": 2025, + "total_projects": 44, "is_currently_active": false, "active_years": [ 2016, 2017, 2018, 2019, - 2020 + 2020, + 2021, + 2022, + 2023, + 2024, + 2025 ] }, { "slug": "submitty", "name": "Submitty", "first_year": 2018, - "last_year": 2024, + "last_year": 2026, "total_projects": 19, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2018, 2019, 2020, 2022, 2023, - 2024 + 2024, + 2026 ] } ], @@ -109,10 +111,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.567Z" + "generated_at": "2026-02-19T13:36:00.657Z" } } \ No newline at end of file diff --git a/new-api-details/topics/privacy.json b/new-api-details/topics/privacy.json index 6e482500..e6b7c1f7 100644 --- a/new-api-details/topics/privacy.json +++ b/new-api-details/topics/privacy.json @@ -1,10 +1,11 @@ { "slug": "privacy", "name": "privacy", - "published_at": "2026-01-25T16:06:28.392Z", + "published_at": "2026-02-19T13:36:00.462Z", "organizationCount": 7, "projectCount": 217, "years": [ + 2026, 2025, 2024, 2023, @@ -17,22 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "aossie-the-australian-national-universitys-open-source-software-innovation-and-education", - "name": "AOSSIE - The Australian National University's Open-Source Software Innovation and Education", - "first_year": 2016, - "last_year": 2016, - "total_projects": 6, - "is_currently_active": false, - "active_years": [ - 2016 - ] - }, { "slug": "kde-community", "name": "KDE Community", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 167, "is_currently_active": true, "active_years": [ @@ -45,19 +35,37 @@ 2022, 2023, 2024, + 2025, + 2026 + ] + }, + { + "slug": "the-tor-project", + "name": "The Tor Project", + "first_year": 2016, + "last_year": 2025, + "total_projects": 19, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2022, + 2023, 2025 ] }, { - "slug": "leap-encryption-access-project", - "name": "LEAP Encryption Access Project", - "first_year": 2018, - "last_year": 2022, - "total_projects": 2, + "slug": "organic-maps", + "name": "Organic Maps", + "first_year": 2022, + "last_year": 2025, + "total_projects": 10, "is_currently_active": false, "active_years": [ - 2018, - 2022 + 2022, + 2023, + 2024, + 2025 ] }, { @@ -73,45 +81,40 @@ ] }, { - "slug": "organic-maps", - "name": "Organic Maps", - "first_year": 2022, - "last_year": 2025, - "total_projects": 10, - "is_currently_active": true, + "slug": "aossie-the-australian-national-universitys-open-source-software-innovation-and-education", + "name": "AOSSIE - The Australian National University's Open-Source Software Innovation and Education", + "first_year": 2016, + "last_year": 2016, + "total_projects": 6, + "is_currently_active": false, "active_years": [ - 2022, - 2023, - 2024, - 2025 + 2016 ] }, { "slug": "qubes-os", "name": "Qubes OS", "first_year": 2017, - "last_year": 2021, + "last_year": 2026, "total_projects": 4, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2020, - 2021 + 2021, + 2026 ] }, { - "slug": "the-tor-project", - "name": "The Tor Project", - "first_year": 2016, - "last_year": 2025, - "total_projects": 19, - "is_currently_active": true, + "slug": "leap-encryption-access-project", + "name": "LEAP Encryption Access Project", + "first_year": 2018, + "last_year": 2022, + "total_projects": 2, + "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2022, - 2023, - 2025 + 2018, + 2022 ] } ], @@ -155,10 +158,14 @@ "2025": { "organizationCount": 3, "projectCount": 21 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.392Z" + "generated_at": "2026-02-19T13:36:00.462Z" } } \ No newline at end of file diff --git a/new-api-details/topics/probabilistic-models.json b/new-api-details/topics/probabilistic-models.json index 13809b0c..b07add6c 100644 --- a/new-api-details/topics/probabilistic-models.json +++ b/new-api-details/topics/probabilistic-models.json @@ -1,7 +1,7 @@ { "slug": "probabilistic-models", "name": "probabilistic models", - "published_at": "2026-01-25T16:06:29.525Z", + "published_at": "2026-02-19T13:36:02.746Z", "organizationCount": 1, "projectCount": 5, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.525Z" + "generated_at": "2026-02-19T13:36:02.746Z" } } \ No newline at end of file diff --git a/new-api-details/topics/process-automation.json b/new-api-details/topics/process-automation.json index d01e7734..96acc627 100644 --- a/new-api-details/topics/process-automation.json +++ b/new-api-details/topics/process-automation.json @@ -1,7 +1,7 @@ { "slug": "process-automation", "name": "process automation", - "published_at": "2026-01-25T16:06:28.571Z", + "published_at": "2026-02-19T13:36:00.663Z", "organizationCount": 1, "projectCount": 44, "years": [ @@ -23,7 +23,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 44, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -82,6 +82,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.571Z" + "generated_at": "2026-02-19T13:36:00.663Z" } } \ No newline at end of file diff --git a/new-api-details/topics/processor-design.json b/new-api-details/topics/processor-design.json index 12274365..b7e3683d 100644 --- a/new-api-details/topics/processor-design.json +++ b/new-api-details/topics/processor-design.json @@ -1,7 +1,7 @@ { "slug": "processor-design", "name": "processor design", - "published_at": "2026-01-25T16:06:28.523Z", + "published_at": "2026-02-19T13:36:00.580Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.523Z" + "generated_at": "2026-02-19T13:36:00.580Z" } } \ No newline at end of file diff --git a/new-api-details/topics/processor.json b/new-api-details/topics/processor.json index 1b98abaa..fba737dc 100644 --- a/new-api-details/topics/processor.json +++ b/new-api-details/topics/processor.json @@ -1,7 +1,7 @@ { "slug": "processor", "name": "Processor", - "published_at": "2026-01-25T16:06:29.352Z", + "published_at": "2026-02-19T13:36:02.304Z", "organizationCount": 1, "projectCount": 12, "years": [ @@ -17,7 +17,7 @@ "first_year": 2022, "last_year": 2025, "total_projects": 12, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2023, @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.352Z" + "generated_at": "2026-02-19T13:36:02.304Z" } } \ No newline at end of file diff --git a/new-api-details/topics/productivity.json b/new-api-details/topics/productivity.json index f4217638..24f908ed 100644 --- a/new-api-details/topics/productivity.json +++ b/new-api-details/topics/productivity.json @@ -1,10 +1,11 @@ { "slug": "productivity", "name": "productivity", - "published_at": "2026-01-25T16:06:29.024Z", + "published_at": "2026-02-19T13:36:01.652Z", "organizationCount": 2, "projectCount": 134, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "gnome-foundation", "name": "GNOME Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 115, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -92,10 +94,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.024Z" + "generated_at": "2026-02-19T13:36:01.652Z" } } \ No newline at end of file diff --git a/new-api-details/topics/profiling.json b/new-api-details/topics/profiling.json index bb70029e..79ae1792 100644 --- a/new-api-details/topics/profiling.json +++ b/new-api-details/topics/profiling.json @@ -1,7 +1,7 @@ { "slug": "profiling", "name": "profiling", - "published_at": "2026-01-25T16:06:28.459Z", + "published_at": "2026-02-19T13:36:00.449Z", "organizationCount": 1, "projectCount": 8, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.459Z" + "generated_at": "2026-02-19T13:36:00.449Z" } } \ No newline at end of file diff --git a/new-api-details/topics/program-analysis.json b/new-api-details/topics/program-analysis.json index a52e8742..372425d8 100644 --- a/new-api-details/topics/program-analysis.json +++ b/new-api-details/topics/program-analysis.json @@ -1,10 +1,11 @@ { "slug": "program-analysis", "name": "program analysis", - "published_at": "2026-01-25T16:06:29.584Z", + "published_at": "2026-02-19T13:36:02.777Z", "organizationCount": 3, "projectCount": 75, "years": [ + 2026, 2025, 2024, 2023, @@ -17,6 +18,27 @@ 2016 ], "organizations": [ + { + "slug": "the-jpf-team", + "name": "The JPF team", + "first_year": 2016, + "last_year": 2026, + "total_projects": 46, + "is_currently_active": true, + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ] + }, { "slug": "radare", "name": "Radare", @@ -37,30 +59,10 @@ "first_year": 2018, "last_year": 2025, "total_projects": 14, - "is_currently_active": true, - "active_years": [ - 2018, - 2019, - 2023, - 2024, - 2025 - ] - }, - { - "slug": "the-jpf-team", - "name": "The JPF team", - "first_year": 2016, - "last_year": 2025, - "total_projects": 46, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ - 2016, - 2017, 2018, 2019, - 2020, - 2021, - 2022, 2023, 2024, 2025 @@ -107,10 +109,14 @@ "2025": { "organizationCount": 2, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.584Z" + "generated_at": "2026-02-19T13:36:02.777Z" } } \ No newline at end of file diff --git a/new-api-details/topics/program-verification.json b/new-api-details/topics/program-verification.json index b022415a..f9f35838 100644 --- a/new-api-details/topics/program-verification.json +++ b/new-api-details/topics/program-verification.json @@ -1,7 +1,7 @@ { "slug": "program-verification", "name": "program verification", - "published_at": "2026-01-25T16:06:29.548Z", + "published_at": "2026-02-19T13:36:02.726Z", "organizationCount": 1, "projectCount": 4, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.548Z" + "generated_at": "2026-02-19T13:36:02.726Z" } } \ No newline at end of file diff --git a/new-api-details/topics/programmer-productivity.json b/new-api-details/topics/programmer-productivity.json index 6563d5fc..fee7c2e2 100644 --- a/new-api-details/topics/programmer-productivity.json +++ b/new-api-details/topics/programmer-productivity.json @@ -1,7 +1,7 @@ { "slug": "programmer-productivity", "name": "programmer productivity", - "published_at": "2026-01-25T16:06:28.750Z", + "published_at": "2026-02-19T13:36:01.002Z", "organizationCount": 2, "projectCount": 36, "years": [ @@ -15,21 +15,6 @@ 2017 ], "organizations": [ - { - "slug": "checker-framework", - "name": "Checker Framework", - "first_year": 2017, - "last_year": 2025, - "total_projects": 17, - "is_currently_active": true, - "active_years": [ - 2017, - 2018, - 2019, - 2020, - 2025 - ] - }, { "slug": "postman", "name": "Postman", @@ -43,6 +28,21 @@ 2023, 2024 ] + }, + { + "slug": "checker-framework", + "name": "Checker Framework", + "first_year": 2017, + "last_year": 2025, + "total_projects": 17, + "is_currently_active": false, + "active_years": [ + 2017, + 2018, + 2019, + 2020, + 2025 + ] } ], "yearlyStats": { @@ -81,6 +81,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.750Z" + "generated_at": "2026-02-19T13:36:01.002Z" } } \ No newline at end of file diff --git a/new-api-details/topics/programming-build-tools.json b/new-api-details/topics/programming-build-tools.json index c6ef3cef..e722c5e1 100644 --- a/new-api-details/topics/programming-build-tools.json +++ b/new-api-details/topics/programming-build-tools.json @@ -1,10 +1,11 @@ { "slug": "programming-build-tools", "name": "Programming & Build Tools", - "published_at": "2026-01-25T16:06:29.251Z", + "published_at": "2026-02-19T13:36:02.130Z", "organizationCount": 1, "projectCount": 16, "years": [ + 2026, 2025, 2024, 2023 @@ -14,13 +15,14 @@ "slug": "kotlin-foundation", "name": "Kotlin Foundation", "first_year": 2023, - "last_year": 2025, + "last_year": 2026, "total_projects": 16, "is_currently_active": true, "active_years": [ 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -36,10 +38,14 @@ "2025": { "organizationCount": 1, "projectCount": 8 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.251Z" + "generated_at": "2026-02-19T13:36:02.130Z" } } \ No newline at end of file diff --git a/new-api-details/topics/programming-language.json b/new-api-details/topics/programming-language.json index 7a9ec8fb..328d6394 100644 --- a/new-api-details/topics/programming-language.json +++ b/new-api-details/topics/programming-language.json @@ -1,10 +1,11 @@ { "slug": "programming-language", "name": "programming language", - "published_at": "2026-01-25T16:06:28.781Z", + "published_at": "2026-02-19T13:36:01.042Z", "organizationCount": 8, "projectCount": 211, "years": [ + 2026, 2025, 2024, 2023, @@ -17,22 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "clojure", - "name": "Clojure", - "first_year": 2017, - "last_year": 2017, - "total_projects": 0, - "is_currently_active": false, - "active_years": [ - 2017 - ] - }, { "slug": "international-catrobat-association", "name": "International Catrobat Association", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 84, "is_currently_active": true, "active_years": [ @@ -45,29 +35,35 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "luarocks", - "name": "LuaRocks", - "first_year": 2017, - "last_year": 2019, - "total_projects": 5, + "slug": "scala-center", + "name": "Scala Center", + "first_year": 2016, + "last_year": 2025, + "total_projects": 56, "is_currently_active": false, "active_years": [ + 2016, 2017, 2018, - 2019 + 2021, + 2022, + 2023, + 2024, + 2025 ] }, { "slug": "ruby", "name": "Ruby", "first_year": 2016, - "last_year": 2023, + "last_year": 2026, "total_projects": 38, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2018, @@ -75,25 +71,8 @@ 2020, 2021, 2022, - 2023 - ] - }, - { - "slug": "scala-center", - "name": "Scala Center", - "first_year": 2016, - "last_year": 2025, - "total_projects": 56, - "is_currently_active": true, - "active_years": [ - 2016, - 2017, - 2018, - 2021, - 2022, 2023, - 2024, - 2025 + 2026 ] }, { @@ -109,6 +88,32 @@ 2018 ] }, + { + "slug": "the-p4-language-consortium", + "name": "The P4 Language Consortium", + "first_year": 2024, + "last_year": 2026, + "total_projects": 9, + "is_currently_active": true, + "active_years": [ + 2024, + 2025, + 2026 + ] + }, + { + "slug": "luarocks", + "name": "LuaRocks", + "first_year": 2017, + "last_year": 2019, + "total_projects": 5, + "is_currently_active": false, + "active_years": [ + 2017, + 2018, + 2019 + ] + }, { "slug": "the-center-for-connected-learning-and-computer-based-modeling", "name": "The Center for Connected Learning and Computer-Based Modeling", @@ -124,15 +129,14 @@ ] }, { - "slug": "the-p4-language-consortium", - "name": "The P4 Language Consortium", - "first_year": 2024, - "last_year": 2025, - "total_projects": 9, - "is_currently_active": true, + "slug": "clojure", + "name": "Clojure", + "first_year": 2017, + "last_year": 2017, + "total_projects": 0, + "is_currently_active": false, "active_years": [ - 2024, - 2025 + 2017 ] } ], @@ -176,10 +180,14 @@ "2025": { "organizationCount": 3, "projectCount": 26 + }, + "2026": { + "organizationCount": 3, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.781Z" + "generated_at": "2026-02-19T13:36:01.042Z" } } \ No newline at end of file diff --git a/new-api-details/topics/programming-languages-and-development-tools.json b/new-api-details/topics/programming-languages-and-development-tools.json index 9da2b6a9..d307c419 100644 --- a/new-api-details/topics/programming-languages-and-development-tools.json +++ b/new-api-details/topics/programming-languages-and-development-tools.json @@ -1,10 +1,11 @@ { "slug": "programming-languages-and-development-tools", "name": "programming languages and development tools", - "published_at": "2026-01-25T16:06:29.203Z", + "published_at": "2026-02-19T13:36:02.025Z", "organizationCount": 8, "projectCount": 283, "years": [ + 2026, 2025, 2024, 2023, @@ -18,12 +19,12 @@ ], "organizations": [ { - "slug": "jboss-community", - "name": "JBoss Community", + "slug": "llvm-compiler-infrastructure", + "name": "LLVM Compiler Infrastructure", "first_year": 2016, - "last_year": 2022, - "total_projects": 52, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 122, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -31,15 +32,19 @@ 2019, 2020, 2021, - 2022 + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "llvm-compiler-infrastructure", - "name": "LLVM Compiler Infrastructure", + "slug": "jboss-community", + "name": "JBoss Community", "first_year": 2016, - "last_year": 2025, - "total_projects": 122, + "last_year": 2026, + "total_projects": 52, "is_currently_active": true, "active_years": [ 2016, @@ -49,16 +54,14 @@ 2020, 2021, 2022, - 2023, - 2024, - 2025 + 2026 ] }, { "slug": "mit-app-inventor", "name": "MIT App Inventor", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 45, "is_currently_active": true, "active_years": [ @@ -70,7 +73,27 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "swift", + "name": "Swift", + "first_year": 2018, + "last_year": 2026, + "total_projects": 26, + "is_currently_active": true, + "active_years": [ + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { @@ -88,21 +111,19 @@ ] }, { - "slug": "swift", - "name": "Swift", + "slug": "webpack", + "name": "webpack", "first_year": 2018, - "last_year": 2025, - "total_projects": 26, + "last_year": 2026, + "total_projects": 10, "is_currently_active": true, "active_years": [ 2018, 2019, 2020, - 2021, - 2022, - 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -128,21 +149,6 @@ "active_years": [ 2019 ] - }, - { - "slug": "webpack", - "name": "webpack", - "first_year": 2018, - "last_year": 2025, - "total_projects": 10, - "is_currently_active": true, - "active_years": [ - 2018, - 2019, - 2020, - 2024, - 2025 - ] } ], "yearlyStats": { @@ -185,10 +191,14 @@ "2025": { "organizationCount": 4, "projectCount": 25 + }, + "2026": { + "organizationCount": 5, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.203Z" + "generated_at": "2026-02-19T13:36:02.025Z" } } \ No newline at end of file diff --git a/new-api-details/topics/programming-languages.json b/new-api-details/topics/programming-languages.json index 3dd89d9b..cbe77760 100644 --- a/new-api-details/topics/programming-languages.json +++ b/new-api-details/topics/programming-languages.json @@ -1,10 +1,11 @@ { "slug": "programming-languages", "name": "programming languages", - "published_at": "2026-01-25T16:06:28.696Z", + "published_at": "2026-02-19T13:36:00.919Z", "organizationCount": 29, "projectCount": 928, "years": [ + 2026, 2025, 2024, 2023, @@ -18,148 +19,144 @@ ], "organizations": [ { - "slug": "carbon-language", - "name": "Carbon Language", - "first_year": 2023, - "last_year": 2023, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2023 - ] - }, - { - "slug": "chapel", - "name": "Chapel", + "slug": "python-software-foundation", + "name": "Python Software Foundation", "first_year": 2016, - "last_year": 2021, - "total_projects": 16, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 277, + "is_currently_active": true, "active_years": [ 2016, 2017, + 2018, 2019, 2020, - 2021 + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "checker-framework", - "name": "Checker Framework", - "first_year": 2017, - "last_year": 2025, - "total_projects": 17, + "slug": "sugar-labs", + "name": "Sugar Labs", + "first_year": 2016, + "last_year": 2026, + "total_projects": 89, "is_currently_active": true, "active_years": [ + 2016, 2017, 2018, 2019, 2020, - 2025 + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "d-language-foundation", - "name": "D Language Foundation", - "first_year": 2016, - "last_year": 2025, - "total_projects": 11, + "slug": "haskellorg", + "name": "Haskell.org", + "first_year": 2018, + "last_year": 2026, + "total_projects": 70, "is_currently_active": true, "active_years": [ - 2016, + 2018, 2019, - 2025 - ] - }, - { - "slug": "dart", - "name": "Dart", - "first_year": 2020, - "last_year": 2025, - "total_projects": 22, - "is_currently_active": true, - "active_years": [ 2020, 2021, 2022, - 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "elm-software-foundation", - "name": "Elm Software Foundation", + "slug": "open-technologies-alliance-gfoss", + "name": "Open Technologies Alliance - GFOSS", "first_year": 2017, - "last_year": 2017, - "total_projects": 1, - "is_currently_active": false, - "active_years": [ - 2017 - ] - }, - { - "slug": "fortran-lang", - "name": "Fortran-lang", - "first_year": 2021, - "last_year": 2025, - "total_projects": 21, + "last_year": 2026, + "total_projects": 70, "is_currently_active": true, "active_years": [ + 2017, + 2018, + 2019, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "fosdem", - "name": "FOSDEM", + "slug": "scala-center", + "name": "Scala Center", "first_year": 2016, - "last_year": 2019, - "total_projects": 4, + "last_year": 2025, + "total_projects": 56, "is_currently_active": false, "active_years": [ 2016, 2017, - 2019 + 2018, + 2021, + 2022, + 2023, + 2024, + 2025 ] }, { - "slug": "graphite", - "name": "Graphite", - "first_year": 2024, - "last_year": 2025, - "total_projects": 8, + "slug": "lablua", + "name": "LabLua", + "first_year": 2016, + "last_year": 2026, + "total_projects": 43, "is_currently_active": true, "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "haskellorg", - "name": "Haskell.org", - "first_year": 2018, - "last_year": 2025, - "total_projects": 70, + "slug": "ruby", + "name": "Ruby", + "first_year": 2016, + "last_year": 2026, + "total_projects": 38, "is_currently_active": true, "active_years": [ + 2016, 2018, 2019, 2020, 2021, 2022, - 2024, - 2025 + 2023, + 2026 ] }, { "slug": "joomla", "name": "Joomla!", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 36, "is_currently_active": true, "active_years": [ @@ -169,176 +166,175 @@ 2019, 2021, 2022, - 2025 + 2025, + 2026 ] }, { - "slug": "kapitan", - "name": "Kapitan", - "first_year": 2019, - "last_year": 2020, - "total_projects": 2, - "is_currently_active": false, + "slug": "pharo-consortium", + "name": "Pharo Consortium", + "first_year": 2017, + "last_year": 2026, + "total_projects": 32, + "is_currently_active": true, "active_years": [ + 2017, 2019, - 2020 + 2021, + 2023, + 2025, + 2026 ] }, { - "slug": "kotlin-foundation", - "name": "Kotlin Foundation", - "first_year": 2023, - "last_year": 2025, - "total_projects": 16, + "slug": "the-rust-foundation", + "name": "The Rust Foundation", + "first_year": 2024, + "last_year": 2026, + "total_projects": 28, "is_currently_active": true, "active_years": [ - 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "lablua", - "name": "LabLua", - "first_year": 2016, - "last_year": 2025, - "total_projects": 43, + "slug": "swift", + "name": "Swift", + "first_year": 2018, + "last_year": 2026, + "total_projects": 26, "is_currently_active": true, "active_years": [ - 2016, - 2017, 2018, 2019, 2020, 2021, + 2022, + 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "luarocks", - "name": "LuaRocks", - "first_year": 2017, - "last_year": 2019, - "total_projects": 5, - "is_currently_active": false, + "slug": "dart", + "name": "Dart", + "first_year": 2020, + "last_year": 2026, + "total_projects": 22, + "is_currently_active": true, "active_years": [ - 2017, - 2018, - 2019 + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "metacall", - "name": "MetaCall", + "slug": "fortran-lang", + "name": "Fortran-lang", "first_year": 2021, - "last_year": 2024, - "total_projects": 19, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 21, + "is_currently_active": true, "active_years": [ 2021, 2022, 2023, - 2024 + 2024, + 2025, + 2026 ] }, { - "slug": "open-technologies-alliance-gfoss", - "name": "Open Technologies Alliance - GFOSS", - "first_year": 2017, - "last_year": 2025, - "total_projects": 70, + "slug": "metacall", + "name": "MetaCall", + "first_year": 2021, + "last_year": 2026, + "total_projects": 19, "is_currently_active": true, "active_years": [ - 2017, - 2018, - 2019, 2021, 2022, 2023, 2024, - 2025 + 2026 ] }, { - "slug": "pharo-consortium", - "name": "Pharo Consortium", + "slug": "checker-framework", + "name": "Checker Framework", "first_year": 2017, "last_year": 2025, - "total_projects": 32, - "is_currently_active": true, + "total_projects": 17, + "is_currently_active": false, "active_years": [ 2017, + 2018, 2019, - 2021, - 2023, + 2020, 2025 ] }, { - "slug": "plasma-umass", - "name": "PLASMA-UMass", + "slug": "chapel", + "name": "Chapel", "first_year": 2016, - "last_year": 2016, - "total_projects": 1, + "last_year": 2021, + "total_projects": 16, "is_currently_active": false, "active_years": [ - 2016 + 2016, + 2017, + 2019, + 2020, + 2021 ] }, { - "slug": "python-software-foundation", - "name": "Python Software Foundation", - "first_year": 2016, - "last_year": 2025, - "total_projects": 277, + "slug": "kotlin-foundation", + "name": "Kotlin Foundation", + "first_year": 2023, + "last_year": 2026, + "total_projects": 16, "is_currently_active": true, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "ruby", - "name": "Ruby", + "slug": "d-language-foundation", + "name": "D Language Foundation", "first_year": 2016, - "last_year": 2023, - "total_projects": 38, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 11, + "is_currently_active": true, "active_years": [ 2016, - 2018, 2019, - 2020, - 2021, - 2022, - 2023 + 2025, + 2026 ] }, { - "slug": "scala-center", - "name": "Scala Center", - "first_year": 2016, - "last_year": 2025, - "total_projects": 56, + "slug": "graphite", + "name": "Graphite", + "first_year": 2024, + "last_year": 2026, + "total_projects": 8, "is_currently_active": true, "active_years": [ - 2016, - 2017, - 2018, - 2021, - 2022, - 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -354,52 +350,16 @@ ] }, { - "slug": "st-jude-childrens-research-hospital", - "name": "St. Jude Children's Research Hospital", - "first_year": 2025, - "last_year": 2025, - "total_projects": 2, - "is_currently_active": true, - "active_years": [ - 2025 - ] - }, - { - "slug": "sugar-labs", - "name": "Sugar Labs", - "first_year": 2016, - "last_year": 2025, - "total_projects": 89, - "is_currently_active": true, + "slug": "luarocks", + "name": "LuaRocks", + "first_year": 2017, + "last_year": 2019, + "total_projects": 5, + "is_currently_active": false, "active_years": [ - 2016, 2017, 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 - ] - }, - { - "slug": "swift", - "name": "Swift", - "first_year": 2018, - "last_year": 2025, - "total_projects": 26, - "is_currently_active": true, - "active_years": [ - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2019 ] }, { @@ -430,15 +390,73 @@ ] }, { - "slug": "the-rust-foundation", - "name": "The Rust Foundation", - "first_year": 2024, - "last_year": 2025, - "total_projects": 28, + "slug": "fosdem", + "name": "FOSDEM", + "first_year": 2016, + "last_year": 2019, + "total_projects": 4, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2019 + ] + }, + { + "slug": "carbon-language", + "name": "Carbon Language", + "first_year": 2023, + "last_year": 2023, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2023 + ] + }, + { + "slug": "kapitan", + "name": "Kapitan", + "first_year": 2019, + "last_year": 2020, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2019, + 2020 + ] + }, + { + "slug": "st-jude-childrens-research-hospital", + "name": "St. Jude Children's Research Hospital", + "first_year": 2025, + "last_year": 2026, + "total_projects": 2, "is_currently_active": true, "active_years": [ - 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "elm-software-foundation", + "name": "Elm Software Foundation", + "first_year": 2017, + "last_year": 2017, + "total_projects": 1, + "is_currently_active": false, + "active_years": [ + 2017 + ] + }, + { + "slug": "plasma-umass", + "name": "PLASMA-UMass", + "first_year": 2016, + "last_year": 2016, + "total_projects": 1, + "is_currently_active": false, + "active_years": [ + 2016 ] } ], @@ -482,10 +500,14 @@ "2025": { "organizationCount": 19, "projectCount": 142 + }, + "2026": { + "organizationCount": 18, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.696Z" + "generated_at": "2026-02-19T13:36:00.919Z" } } \ No newline at end of file diff --git a/new-api-details/topics/programming-libraries.json b/new-api-details/topics/programming-libraries.json index 775bf401..4c581e18 100644 --- a/new-api-details/topics/programming-libraries.json +++ b/new-api-details/topics/programming-libraries.json @@ -1,10 +1,11 @@ { "slug": "programming-libraries", "name": "programming libraries", - "published_at": "2026-01-25T16:06:28.618Z", + "published_at": "2026-02-19T13:36:00.841Z", "organizationCount": 2, "projectCount": 67, "years": [ + 2026, 2025, 2024, 2023, @@ -35,7 +36,7 @@ "slug": "swift", "name": "Swift", "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "total_projects": 26, "is_currently_active": true, "active_years": [ @@ -46,7 +47,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -86,10 +88,14 @@ "2025": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.618Z" + "generated_at": "2026-02-19T13:36:00.841Z" } } \ No newline at end of file diff --git a/new-api-details/topics/programming-tools.json b/new-api-details/topics/programming-tools.json index 0780a527..8d7807b7 100644 --- a/new-api-details/topics/programming-tools.json +++ b/new-api-details/topics/programming-tools.json @@ -1,10 +1,11 @@ { "slug": "programming-tools", "name": "programming-tools", - "published_at": "2026-01-25T16:06:28.907Z", + "published_at": "2026-02-19T13:36:01.268Z", "organizationCount": 8, "projectCount": 231, "years": [ + 2026, 2025, 2024, 2023, @@ -18,34 +19,31 @@ ], "organizations": [ { - "slug": "eta", - "name": "Eta", - "first_year": 2018, - "last_year": 2018, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2018 - ] - }, - { - "slug": "fosdem", - "name": "FOSDEM", + "slug": "international-catrobat-association", + "name": "International Catrobat Association", "first_year": 2016, - "last_year": 2019, - "total_projects": 4, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 84, + "is_currently_active": true, "active_years": [ 2016, 2017, - 2019 + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { "slug": "haskellorg", "name": "Haskell.org", "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "total_projects": 70, "is_currently_active": true, "active_years": [ @@ -55,22 +53,21 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "international-catrobat-association", - "name": "International Catrobat Association", + "slug": "scala-center", + "name": "Scala Center", "first_year": 2016, "last_year": 2025, - "total_projects": 84, - "is_currently_active": true, + "total_projects": 56, + "is_currently_active": false, "active_years": [ 2016, 2017, 2018, - 2019, - 2020, 2021, 2022, 2023, @@ -78,6 +75,17 @@ 2025 ] }, + { + "slug": "mono-project", + "name": "Mono Project", + "first_year": 2017, + "last_year": 2017, + "total_projects": 9, + "is_currently_active": false, + "active_years": [ + 2017 + ] + }, { "slug": "luarocks", "name": "LuaRocks", @@ -92,14 +100,27 @@ ] }, { - "slug": "mono-project", - "name": "Mono Project", - "first_year": 2017, - "last_year": 2017, - "total_projects": 9, + "slug": "fosdem", + "name": "FOSDEM", + "first_year": 2016, + "last_year": 2019, + "total_projects": 4, "is_currently_active": false, "active_years": [ - 2017 + 2016, + 2017, + 2019 + ] + }, + { + "slug": "eta", + "name": "Eta", + "first_year": 2018, + "last_year": 2018, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2018 ] }, { @@ -112,24 +133,6 @@ "active_years": [ 2016 ] - }, - { - "slug": "scala-center", - "name": "Scala Center", - "first_year": 2016, - "last_year": 2025, - "total_projects": 56, - "is_currently_active": true, - "active_years": [ - 2016, - 2017, - 2018, - 2021, - 2022, - 2023, - 2024, - 2025 - ] } ], "yearlyStats": { @@ -172,10 +175,14 @@ "2025": { "organizationCount": 6, "projectCount": 57 + }, + "2026": { + "organizationCount": 3, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.907Z" + "generated_at": "2026-02-19T13:36:01.268Z" } } \ No newline at end of file diff --git a/new-api-details/topics/programming.json b/new-api-details/topics/programming.json index 88af117d..55fc919b 100644 --- a/new-api-details/topics/programming.json +++ b/new-api-details/topics/programming.json @@ -1,10 +1,11 @@ { "slug": "programming", "name": "programming", - "published_at": "2026-01-25T16:06:28.924Z", + "published_at": "2026-02-19T13:36:01.442Z", "organizationCount": 7, "projectCount": 171, "years": [ + 2026, 2025, 2024, 2023, @@ -18,16 +19,24 @@ ], "organizations": [ { - "slug": "fosdem", - "name": "FOSDEM", + "slug": "sugar-labs", + "name": "Sugar Labs", "first_year": 2016, - "last_year": 2019, - "total_projects": 4, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 89, + "is_currently_active": true, "active_years": [ 2016, 2017, - 2019 + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { @@ -46,83 +55,78 @@ ] }, { - "slug": "neovim", - "name": "Neovim", + "slug": "swift", + "name": "Swift", "first_year": 2018, - "last_year": 2025, - "total_projects": 8, + "last_year": 2026, + "total_projects": 26, "is_currently_active": true, "active_years": [ 2018, 2019, 2020, - 2025 + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "open-roberta", - "name": "Open Roberta", - "first_year": 2018, - "last_year": 2021, - "total_projects": 8, + "slug": "the-enigma-team", + "name": "The ENIGMA Team", + "first_year": 2021, + "last_year": 2024, + "total_projects": 9, "is_currently_active": false, "active_years": [ - 2018, - 2019, - 2020, - 2021 + 2021, + 2022, + 2023, + 2024 ] }, { - "slug": "sugar-labs", - "name": "Sugar Labs", - "first_year": 2016, - "last_year": 2025, - "total_projects": 89, + "slug": "neovim", + "name": "Neovim", + "first_year": 2018, + "last_year": 2026, + "total_projects": 8, "is_currently_active": true, "active_years": [ - 2016, - 2017, 2018, 2019, 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "swift", - "name": "Swift", + "slug": "open-roberta", + "name": "Open Roberta", "first_year": 2018, - "last_year": 2025, - "total_projects": 26, - "is_currently_active": true, + "last_year": 2021, + "total_projects": 8, + "is_currently_active": false, "active_years": [ 2018, 2019, 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2021 ] }, { - "slug": "the-enigma-team", - "name": "The ENIGMA Team", - "first_year": 2021, - "last_year": 2024, - "total_projects": 9, + "slug": "fosdem", + "name": "FOSDEM", + "first_year": 2016, + "last_year": 2019, + "total_projects": 4, "is_currently_active": false, "active_years": [ - 2021, - 2022, - 2023, - 2024 + 2016, + 2017, + 2019 ] } ], @@ -166,10 +170,14 @@ "2025": { "organizationCount": 3, "projectCount": 18 + }, + "2026": { + "organizationCount": 3, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.924Z" + "generated_at": "2026-02-19T13:36:01.442Z" } } \ No newline at end of file diff --git a/new-api-details/topics/progressive-web-apps.json b/new-api-details/topics/progressive-web-apps.json index 03ff4b3a..df5535d2 100644 --- a/new-api-details/topics/progressive-web-apps.json +++ b/new-api-details/topics/progressive-web-apps.json @@ -1,10 +1,11 @@ { "slug": "progressive-web-apps", "name": "progressive web apps", - "published_at": "2026-01-25T16:06:29.869Z", + "published_at": "2026-02-19T13:36:02.791Z", "organizationCount": 1, "projectCount": 103, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "rocketchat", "name": "rocket.chat", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 103, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 19 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.869Z" + "generated_at": "2026-02-19T13:36:02.791Z" } } \ No newline at end of file diff --git a/new-api-details/topics/project-management.json b/new-api-details/topics/project-management.json index ba8859b8..9331acb5 100644 --- a/new-api-details/topics/project-management.json +++ b/new-api-details/topics/project-management.json @@ -1,7 +1,7 @@ { "slug": "project-management", "name": "project-management", - "published_at": "2026-01-25T16:06:29.623Z", + "published_at": "2026-02-19T13:36:02.825Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.623Z" + "generated_at": "2026-02-19T13:36:02.825Z" } } \ No newline at end of file diff --git a/new-api-details/topics/pronunciation.json b/new-api-details/topics/pronunciation.json index 01036cc1..26e9b438 100644 --- a/new-api-details/topics/pronunciation.json +++ b/new-api-details/topics/pronunciation.json @@ -1,7 +1,7 @@ { "slug": "pronunciation", "name": "pronunciation", - "published_at": "2026-01-25T16:06:28.674Z", + "published_at": "2026-02-19T13:36:01.053Z", "organizationCount": 1, "projectCount": 11, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.674Z" + "generated_at": "2026-02-19T13:36:01.053Z" } } \ No newline at end of file diff --git a/new-api-details/topics/public-code.json b/new-api-details/topics/public-code.json index de7db8f4..c7aaaf81 100644 --- a/new-api-details/topics/public-code.json +++ b/new-api-details/topics/public-code.json @@ -1,7 +1,7 @@ { "slug": "public-code", "name": "public code", - "published_at": "2026-01-25T16:06:28.848Z", + "published_at": "2026-02-19T13:36:01.188Z", "organizationCount": 1, "projectCount": 5, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.848Z" + "generated_at": "2026-02-19T13:36:01.188Z" } } \ No newline at end of file diff --git a/new-api-details/topics/pydata.json b/new-api-details/topics/pydata.json index 3cbe9c66..45d0c755 100644 --- a/new-api-details/topics/pydata.json +++ b/new-api-details/topics/pydata.json @@ -1,10 +1,11 @@ { "slug": "pydata", "name": "pydata", - "published_at": "2026-01-25T16:06:29.417Z", + "published_at": "2026-02-19T13:36:02.431Z", "organizationCount": 1, "projectCount": 277, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "numfocus", "name": "NumFOCUS", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 277, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 32 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.417Z" + "generated_at": "2026-02-19T13:36:02.431Z" } } \ No newline at end of file diff --git a/new-api-details/topics/python-library.json b/new-api-details/topics/python-library.json index c8867812..fad8edc9 100644 --- a/new-api-details/topics/python-library.json +++ b/new-api-details/topics/python-library.json @@ -1,7 +1,7 @@ { "slug": "python-library", "name": "PYTHON LIBRARY", - "published_at": "2026-01-25T16:06:29.197Z", + "published_at": "2026-02-19T13:36:02.013Z", "organizationCount": 1, "projectCount": 4, "years": [ @@ -14,7 +14,7 @@ "first_year": 2025, "last_year": 2025, "total_projects": 4, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2025 ] @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.197Z" + "generated_at": "2026-02-19T13:36:02.013Z" } } \ No newline at end of file diff --git a/new-api-details/topics/python-mlops-framework.json b/new-api-details/topics/python-mlops-framework.json index a27806fe..fc18f829 100644 --- a/new-api-details/topics/python-mlops-framework.json +++ b/new-api-details/topics/python-mlops-framework.json @@ -1,7 +1,7 @@ { "slug": "python-mlops-framework", "name": "Python MLOps Framework", - "published_at": "2026-01-25T16:06:29.218Z", + "published_at": "2026-02-19T13:36:02.043Z", "organizationCount": 1, "projectCount": 1, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.218Z" + "generated_at": "2026-02-19T13:36:02.043Z" } } \ No newline at end of file diff --git a/new-api-details/topics/python-robotics.json b/new-api-details/topics/python-robotics.json index 77a01cbd..3da90b53 100644 --- a/new-api-details/topics/python-robotics.json +++ b/new-api-details/topics/python-robotics.json @@ -1,10 +1,11 @@ { "slug": "python-robotics", "name": "Python Robotics", - "published_at": "2026-01-25T16:06:29.830Z", + "published_at": "2026-02-19T13:36:01.207Z", "organizationCount": 1, "projectCount": 2, "years": [ + 2026, 2025 ], "organizations": [ @@ -12,11 +13,12 @@ "slug": "dora-rs", "name": "dora-rs", "first_year": 2025, - "last_year": 2025, + "last_year": 2026, "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] } ], @@ -24,10 +26,14 @@ "2025": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.830Z" + "generated_at": "2026-02-19T13:36:01.207Z" } } \ No newline at end of file diff --git a/new-api-details/topics/python.json b/new-api-details/topics/python.json index 6f9875c3..3a42c239 100644 --- a/new-api-details/topics/python.json +++ b/new-api-details/topics/python.json @@ -1,10 +1,11 @@ { "slug": "python", "name": "python", - "published_at": "2026-01-25T16:06:28.782Z", + "published_at": "2026-02-19T13:36:01.043Z", "organizationCount": 7, "projectCount": 258, "years": [ + 2026, 2025, 2024, 2023, @@ -18,42 +19,37 @@ ], "organizations": [ { - "slug": "cloudcv", - "name": "CloudCV", - "first_year": 2016, - "last_year": 2025, - "total_projects": 28, - "is_currently_active": true, + "slug": "tensorflow", + "name": "TensorFlow", + "first_year": 2019, + "last_year": 2023, + "total_projects": 81, + "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, 2019, 2020, 2021, - 2023, - 2024, - 2025 + 2022, + 2023 ] }, { - "slug": "django-software-foundation", - "name": "Django Software Foundation", - "first_year": 2016, - "last_year": 2025, - "total_projects": 19, + "slug": "open-technologies-alliance-gfoss", + "name": "Open Technologies Alliance - GFOSS", + "first_year": 2017, + "last_year": 2026, + "total_projects": 70, "is_currently_active": true, "active_years": [ - 2016, 2017, 2018, 2019, - 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -62,38 +58,49 @@ "first_year": 2025, "last_year": 2025, "total_projects": 45, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2025 ] }, { - "slug": "open-chromosome-collective", - "name": "Open Chromosome Collective", - "first_year": 2024, - "last_year": 2024, - "total_projects": 3, + "slug": "cloudcv", + "name": "CloudCV", + "first_year": 2016, + "last_year": 2025, + "total_projects": 28, "is_currently_active": false, "active_years": [ - 2024 + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2023, + 2024, + 2025 ] }, { - "slug": "open-technologies-alliance-gfoss", - "name": "Open Technologies Alliance - GFOSS", - "first_year": 2017, - "last_year": 2025, - "total_projects": 70, + "slug": "django-software-foundation", + "name": "Django Software Foundation", + "first_year": 2016, + "last_year": 2026, + "total_projects": 19, "is_currently_active": true, "active_years": [ + 2016, 2017, 2018, 2019, + 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -113,18 +120,14 @@ ] }, { - "slug": "tensorflow", - "name": "TensorFlow", - "first_year": 2019, - "last_year": 2023, - "total_projects": 81, + "slug": "open-chromosome-collective", + "name": "Open Chromosome Collective", + "first_year": 2024, + "last_year": 2024, + "total_projects": 3, "is_currently_active": false, "active_years": [ - 2019, - 2020, - 2021, - 2022, - 2023 + 2024 ] } ], @@ -168,10 +171,14 @@ "2025": { "organizationCount": 4, "projectCount": 60 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.782Z" + "generated_at": "2026-02-19T13:36:01.043Z" } } \ No newline at end of file diff --git a/new-api-details/topics/qa-automation.json b/new-api-details/topics/qa-automation.json index 8e7c0d48..b317fca2 100644 --- a/new-api-details/topics/qa-automation.json +++ b/new-api-details/topics/qa-automation.json @@ -1,10 +1,11 @@ { "slug": "qa-automation", "name": "QA automation", - "published_at": "2026-01-25T16:06:29.484Z", + "published_at": "2026-02-19T13:36:02.587Z", "organizationCount": 1, "projectCount": 94, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "openmrs", "name": "OpenMRS", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 94, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 8 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.484Z" + "generated_at": "2026-02-19T13:36:02.587Z" } } \ No newline at end of file diff --git a/new-api-details/topics/qa.json b/new-api-details/topics/qa.json index ce7dc574..67c5f506 100644 --- a/new-api-details/topics/qa.json +++ b/new-api-details/topics/qa.json @@ -1,10 +1,11 @@ { "slug": "qa", "name": "qa", - "published_at": "2026-01-25T16:06:29.851Z", + "published_at": "2026-02-19T13:36:02.605Z", "organizationCount": 1, "projectCount": 52, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "opensuse-project", "name": "openSUSE Project", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 52, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.851Z" + "generated_at": "2026-02-19T13:36:02.605Z" } } \ No newline at end of file diff --git a/new-api-details/topics/quantum-chemistry.json b/new-api-details/topics/quantum-chemistry.json index d20da148..e9daa084 100644 --- a/new-api-details/topics/quantum-chemistry.json +++ b/new-api-details/topics/quantum-chemistry.json @@ -1,10 +1,11 @@ { "slug": "quantum-chemistry", "name": "quantum chemistry", - "published_at": "2026-01-25T16:06:29.429Z", + "published_at": "2026-02-19T13:36:02.484Z", "organizationCount": 2, "projectCount": 58, "years": [ + 2026, 2025, 2024, 2023, @@ -40,12 +41,13 @@ "slug": "qc-devs", "name": "QC-Devs", "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "total_projects": 7, "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -89,10 +91,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.429Z" + "generated_at": "2026-02-19T13:36:02.484Z" } } \ No newline at end of file diff --git a/new-api-details/topics/radar.json b/new-api-details/topics/radar.json index 25d5b173..86c4e746 100644 --- a/new-api-details/topics/radar.json +++ b/new-api-details/topics/radar.json @@ -1,10 +1,11 @@ { "slug": "radar", "name": "radar", - "published_at": "2026-01-25T16:06:29.060Z", + "published_at": "2026-02-19T13:36:01.699Z", "organizationCount": 1, "projectCount": 18, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "gnu-radio", "name": "GNU Radio", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 18, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.060Z" + "generated_at": "2026-02-19T13:36:01.699Z" } } \ No newline at end of file diff --git a/new-api-details/topics/radiative-transfer.json b/new-api-details/topics/radiative-transfer.json index a4f241e5..65fbebda 100644 --- a/new-api-details/topics/radiative-transfer.json +++ b/new-api-details/topics/radiative-transfer.json @@ -1,7 +1,7 @@ { "slug": "radiative-transfer", "name": "radiative transfer", - "published_at": "2026-01-25T16:06:29.663Z", + "published_at": "2026-02-19T13:36:02.894Z", "organizationCount": 1, "projectCount": 9, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.663Z" + "generated_at": "2026-02-19T13:36:02.894Z" } } \ No newline at end of file diff --git a/new-api-details/topics/radiology.json b/new-api-details/topics/radiology.json index ea8efc1d..314aabae 100644 --- a/new-api-details/topics/radiology.json +++ b/new-api-details/topics/radiology.json @@ -1,10 +1,11 @@ { "slug": "radiology", "name": "radiology", - "published_at": "2026-01-25T16:06:28.446Z", + "published_at": "2026-02-19T13:36:00.416Z", "organizationCount": 3, "projectCount": 70, "years": [ + 2026, 2025, 2024, 2023, @@ -17,15 +18,21 @@ ], "organizations": [ { - "slug": "alaska", - "name": "Alaska", - "first_year": 2024, - "last_year": 2025, - "total_projects": 12, + "slug": "librehealth", + "name": "LibreHealth", + "first_year": 2017, + "last_year": 2026, + "total_projects": 31, "is_currently_active": true, "active_years": [ - 2024, - 2025 + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2026 ] }, { @@ -34,7 +41,7 @@ "first_year": 2021, "last_year": 2025, "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2021, 2022, @@ -44,20 +51,16 @@ ] }, { - "slug": "librehealth", - "name": "LibreHealth", - "first_year": 2017, - "last_year": 2023, - "total_projects": 31, - "is_currently_active": false, + "slug": "alaska", + "name": "Alaska", + "first_year": 2024, + "last_year": 2026, + "total_projects": 12, + "is_currently_active": true, "active_years": [ - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023 + 2024, + 2025, + 2026 ] } ], @@ -97,10 +100,14 @@ "2025": { "organizationCount": 2, "projectCount": 11 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.446Z" + "generated_at": "2026-02-19T13:36:00.416Z" } } \ No newline at end of file diff --git a/new-api-details/topics/rails-application.json b/new-api-details/topics/rails-application.json index 18055d16..5c35a69f 100644 --- a/new-api-details/topics/rails-application.json +++ b/new-api-details/topics/rails-application.json @@ -1,7 +1,7 @@ { "slug": "rails-application", "name": "rails application", - "published_at": "2026-01-25T16:06:28.928Z", + "published_at": "2026-02-19T13:36:01.459Z", "organizationCount": 1, "projectCount": 4, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.928Z" + "generated_at": "2026-02-19T13:36:01.459Z" } } \ No newline at end of file diff --git a/new-api-details/topics/rails.json b/new-api-details/topics/rails.json index 8ee52bd6..28b93358 100644 --- a/new-api-details/topics/rails.json +++ b/new-api-details/topics/rails.json @@ -1,7 +1,7 @@ { "slug": "rails", "name": "rails", - "published_at": "2026-01-25T16:06:28.925Z", + "published_at": "2026-02-19T13:36:01.451Z", "organizationCount": 1, "projectCount": 4, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.925Z" + "generated_at": "2026-02-19T13:36:01.451Z" } } \ No newline at end of file diff --git a/new-api-details/topics/rare-disease.json b/new-api-details/topics/rare-disease.json index e95b3705..e38d85be 100644 --- a/new-api-details/topics/rare-disease.json +++ b/new-api-details/topics/rare-disease.json @@ -1,7 +1,7 @@ { "slug": "rare-disease", "name": "rare disease", - "published_at": "2026-01-25T16:06:29.710Z", + "published_at": "2026-02-19T13:36:02.948Z", "organizationCount": 1, "projectCount": 1, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.710Z" + "generated_at": "2026-02-19T13:36:02.948Z" } } \ No newline at end of file diff --git a/new-api-details/topics/raspberrypi-builds.json b/new-api-details/topics/raspberrypi-builds.json index 509a8177..41e5e23a 100644 --- a/new-api-details/topics/raspberrypi-builds.json +++ b/new-api-details/topics/raspberrypi-builds.json @@ -1,10 +1,11 @@ { "slug": "raspberrypi-builds", "name": "raspberrypi_builds", - "published_at": "2026-01-25T16:06:28.832Z", + "published_at": "2026-02-19T13:36:01.170Z", "organizationCount": 1, "projectCount": 78, "years": [ + 2026, 2025, 2024, 2022, @@ -19,7 +20,7 @@ "slug": "debian", "name": "Debian", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 78, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.832Z" + "generated_at": "2026-02-19T13:36:01.170Z" } } \ No newline at end of file diff --git a/new-api-details/topics/ray-tracing.json b/new-api-details/topics/ray-tracing.json index 99948f6a..75d5f139 100644 --- a/new-api-details/topics/ray-tracing.json +++ b/new-api-details/topics/ray-tracing.json @@ -1,10 +1,11 @@ { "slug": "ray-tracing", "name": "ray tracing", - "published_at": "2026-01-25T16:06:28.546Z", + "published_at": "2026-02-19T13:36:00.870Z", "organizationCount": 1, "projectCount": 73, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "brl-cad", "name": "BRL-CAD", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 73, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.546Z" + "generated_at": "2026-02-19T13:36:00.870Z" } } \ No newline at end of file diff --git a/new-api-details/topics/rdbms.json b/new-api-details/topics/rdbms.json index 8f5cee3c..fd67633b 100644 --- a/new-api-details/topics/rdbms.json +++ b/new-api-details/topics/rdbms.json @@ -1,10 +1,11 @@ { "slug": "rdbms", "name": "rdbms", - "published_at": "2026-01-25T16:06:29.553Z", + "published_at": "2026-02-19T13:36:02.736Z", "organizationCount": 1, "projectCount": 51, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "postgresql", "name": "PostgreSQL", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 51, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.553Z" + "generated_at": "2026-02-19T13:36:02.736Z" } } \ No newline at end of file diff --git a/new-api-details/topics/react.json b/new-api-details/topics/react.json index 4aaab187..2150833c 100644 --- a/new-api-details/topics/react.json +++ b/new-api-details/topics/react.json @@ -1,7 +1,7 @@ { "slug": "react", "name": "react", - "published_at": "2026-01-25T16:06:28.785Z", + "published_at": "2026-02-19T13:36:01.050Z", "organizationCount": 1, "projectCount": 28, "years": [ @@ -22,7 +22,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 28, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -76,6 +76,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.785Z" + "generated_at": "2026-02-19T13:36:01.050Z" } } \ No newline at end of file diff --git a/new-api-details/topics/reactive-languages.json b/new-api-details/topics/reactive-languages.json index de7e3e2d..d31761cb 100644 --- a/new-api-details/topics/reactive-languages.json +++ b/new-api-details/topics/reactive-languages.json @@ -1,10 +1,11 @@ { "slug": "reactive-languages", "name": "reactive languages", - "published_at": "2026-01-25T16:06:29.265Z", + "published_at": "2026-02-19T13:36:02.141Z", "organizationCount": 1, "projectCount": 43, "years": [ + 2026, 2025, 2024, 2021, @@ -19,7 +20,7 @@ "slug": "lablua", "name": "LabLua", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 43, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2020, 2021, 2024, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.265Z" + "generated_at": "2026-02-19T13:36:02.141Z" } } \ No newline at end of file diff --git a/new-api-details/topics/reactive-programming.json b/new-api-details/topics/reactive-programming.json index f78a67fd..a665cd45 100644 --- a/new-api-details/topics/reactive-programming.json +++ b/new-api-details/topics/reactive-programming.json @@ -1,10 +1,11 @@ { "slug": "reactive-programming", "name": "reactive programming", - "published_at": "2026-01-25T16:06:29.263Z", + "published_at": "2026-02-19T13:36:02.139Z", "organizationCount": 1, "projectCount": 43, "years": [ + 2026, 2025, 2024, 2021, @@ -19,7 +20,7 @@ "slug": "lablua", "name": "LabLua", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 43, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2020, 2021, 2024, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.263Z" + "generated_at": "2026-02-19T13:36:02.139Z" } } \ No newline at end of file diff --git a/new-api-details/topics/reactive.json b/new-api-details/topics/reactive.json index 17ac98fe..7a9c16bb 100644 --- a/new-api-details/topics/reactive.json +++ b/new-api-details/topics/reactive.json @@ -1,7 +1,7 @@ { "slug": "reactive", "name": "reactive", - "published_at": "2026-01-25T16:06:28.898Z", + "published_at": "2026-02-19T13:36:01.245Z", "organizationCount": 1, "projectCount": 6, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.898Z" + "generated_at": "2026-02-19T13:36:01.245Z" } } \ No newline at end of file diff --git a/new-api-details/topics/real-time-communication.json b/new-api-details/topics/real-time-communication.json index a1a7d7e4..752d6538 100644 --- a/new-api-details/topics/real-time-communication.json +++ b/new-api-details/topics/real-time-communication.json @@ -1,7 +1,7 @@ { "slug": "real-time-communication", "name": "Real-Time Communication", - "published_at": "2026-01-25T16:06:29.799Z", + "published_at": "2026-02-19T13:36:03.155Z", "organizationCount": 1, "projectCount": 11, "years": [ @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.799Z" + "generated_at": "2026-02-19T13:36:03.155Z" } } \ No newline at end of file diff --git a/new-api-details/topics/real-time-communications.json b/new-api-details/topics/real-time-communications.json index 6253af34..84473bf6 100644 --- a/new-api-details/topics/real-time-communications.json +++ b/new-api-details/topics/real-time-communications.json @@ -1,10 +1,11 @@ { "slug": "real-time-communications", "name": "real time communications", - "published_at": "2026-01-25T16:06:29.220Z", + "published_at": "2026-02-19T13:36:02.049Z", "organizationCount": 3, "projectCount": 50, "years": [ + 2026, 2025, 2024, 2022, @@ -16,21 +17,6 @@ 2016 ], "organizations": [ - { - "slug": "jitsi", - "name": "Jitsi", - "first_year": 2017, - "last_year": 2025, - "total_projects": 21, - "is_currently_active": true, - "active_years": [ - 2017, - 2018, - 2022, - 2024, - 2025 - ] - }, { "slug": "matrixorg", "name": "Matrix.org", @@ -48,6 +34,22 @@ 2022 ] }, + { + "slug": "jitsi", + "name": "Jitsi", + "first_year": 2017, + "last_year": 2026, + "total_projects": 21, + "is_currently_active": true, + "active_years": [ + 2017, + 2018, + 2022, + 2024, + 2025, + 2026 + ] + }, { "slug": "opensips", "name": "OpenSIPS", @@ -96,10 +98,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.220Z" + "generated_at": "2026-02-19T13:36:02.049Z" } } \ No newline at end of file diff --git a/new-api-details/topics/real-time-computer-graphics.json b/new-api-details/topics/real-time-computer-graphics.json index 4a743160..53d81385 100644 --- a/new-api-details/topics/real-time-computer-graphics.json +++ b/new-api-details/topics/real-time-computer-graphics.json @@ -1,10 +1,11 @@ { "slug": "real-time-computer-graphics", "name": "real-time computer graphics", - "published_at": "2026-01-25T16:06:28.554Z", + "published_at": "2026-02-19T13:36:00.888Z", "organizationCount": 1, "projectCount": 73, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "brl-cad", "name": "BRL-CAD", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 73, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.554Z" + "generated_at": "2026-02-19T13:36:00.888Z" } } \ No newline at end of file diff --git a/new-api-details/topics/real-time-os.json b/new-api-details/topics/real-time-os.json index 9809b875..c82a950a 100644 --- a/new-api-details/topics/real-time-os.json +++ b/new-api-details/topics/real-time-os.json @@ -1,10 +1,11 @@ { "slug": "real-time-os", "name": "real-time os", - "published_at": "2026-01-25T16:06:28.529Z", + "published_at": "2026-02-19T13:36:00.619Z", "organizationCount": 1, "projectCount": 38, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "ardupilot", "name": "ArduPilot", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 38, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.529Z" + "generated_at": "2026-02-19T13:36:00.619Z" } } \ No newline at end of file diff --git a/new-api-details/topics/real-time-system.json b/new-api-details/topics/real-time-system.json index a496b092..b3b22fed 100644 --- a/new-api-details/topics/real-time-system.json +++ b/new-api-details/topics/real-time-system.json @@ -1,7 +1,7 @@ { "slug": "real-time-system", "name": "real-time system", - "published_at": "2026-01-25T16:06:29.569Z", + "published_at": "2026-02-19T13:36:02.762Z", "organizationCount": 1, "projectCount": 15, "years": [ @@ -64,6 +64,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.569Z" + "generated_at": "2026-02-19T13:36:02.762Z" } } \ No newline at end of file diff --git a/new-api-details/topics/real-time.json b/new-api-details/topics/real-time.json index ba5cb7a8..7be0d91d 100644 --- a/new-api-details/topics/real-time.json +++ b/new-api-details/topics/real-time.json @@ -1,10 +1,11 @@ { "slug": "real-time", "name": "real time", - "published_at": "2026-01-25T16:06:28.510Z", + "published_at": "2026-02-19T13:36:00.502Z", "organizationCount": 27, "projectCount": 486, "years": [ + 2026, 2025, 2024, 2023, @@ -18,29 +19,33 @@ ], "organizations": [ { - "slug": "apertus-association", - "name": "Apertus Association", - "first_year": 2017, - "last_year": 2022, - "total_projects": 18, + "slug": "opencv", + "name": "OpenCV", + "first_year": 2016, + "last_year": 2025, + "total_projects": 93, "is_currently_active": false, "active_years": [ + 2016, 2017, - 2018, 2019, 2020, 2021, - 2022 + 2022, + 2023, + 2024, + 2025 ] }, { - "slug": "ardupilot", - "name": "ArduPilot", - "first_year": 2017, - "last_year": 2025, - "total_projects": 38, + "slug": "rtems-project", + "name": "RTEMS Project", + "first_year": 2016, + "last_year": 2026, + "total_projects": 46, "is_currently_active": true, "active_years": [ + 2016, 2017, 2018, 2019, @@ -49,7 +54,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -58,7 +64,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 44, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -73,87 +79,121 @@ ] }, { - "slug": "beam-community", - "name": "Beam Community", + "slug": "ardupilot", + "name": "ArduPilot", + "first_year": 2017, + "last_year": 2026, + "total_projects": 38, + "is_currently_active": true, + "active_years": [ + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ] + }, + { + "slug": "matrixorg", + "name": "Matrix.org", "first_year": 2016, - "last_year": 2018, - "total_projects": 19, + "last_year": 2022, + "total_projects": 29, "is_currently_active": false, "active_years": [ 2016, 2017, - 2018 + 2018, + 2019, + 2020, + 2021, + 2022 ] }, { - "slug": "cmu-sphinx", - "name": "CMU Sphinx", - "first_year": 2017, - "last_year": 2017, - "total_projects": 11, + "slug": "godot-engine", + "name": "Godot Engine", + "first_year": 2018, + "last_year": 2022, + "total_projects": 27, "is_currently_active": false, "active_years": [ - 2017 + 2018, + 2019, + 2020, + 2021, + 2022 ] }, { - "slug": "computational-biology-university-of-nebraska-lincoln", - "name": "Computational Biology @ University of Nebraska-Lincoln", - "first_year": 2016, - "last_year": 2019, - "total_projects": 18, - "is_currently_active": false, + "slug": "jitsi", + "name": "Jitsi", + "first_year": 2017, + "last_year": 2026, + "total_projects": 21, + "is_currently_active": true, "active_years": [ - 2016, 2017, 2018, - 2019 + 2022, + 2024, + 2025, + 2026 ] }, { - "slug": "conversationsim", - "name": "Conversations.im", - "first_year": 2017, + "slug": "beam-community", + "name": "Beam Community", + "first_year": 2016, "last_year": 2018, - "total_projects": 4, + "total_projects": 19, "is_currently_active": false, "active_years": [ + 2016, 2017, 2018 ] }, { - "slug": "coreboot", - "name": "coreboot", - "first_year": 2016, - "last_year": 2023, - "total_projects": 11, + "slug": "apertus-association", + "name": "Apertus Association", + "first_year": 2017, + "last_year": 2022, + "total_projects": 18, "is_currently_active": false, "active_years": [ - 2016, + 2017, + 2018, 2019, 2020, - 2022, - 2023 + 2021, + 2022 ] }, { - "slug": "discourse", - "name": "Discourse", + "slug": "computational-biology-university-of-nebraska-lincoln", + "name": "Computational Biology @ University of Nebraska-Lincoln", "first_year": 2016, - "last_year": 2017, - "total_projects": 6, + "last_year": 2019, + "total_projects": 18, "is_currently_active": false, "active_years": [ 2016, - 2017 + 2017, + 2018, + 2019 ] }, { "slug": "gnu-radio", "name": "GNU Radio", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 18, "is_currently_active": true, "active_years": [ @@ -166,65 +206,43 @@ 2022, 2023, 2024, - 2025 - ] - }, - { - "slug": "godot-engine", - "name": "Godot Engine", - "first_year": 2018, - "last_year": 2022, - "total_projects": 27, - "is_currently_active": false, - "active_years": [ - 2018, - 2019, - 2020, - 2021, - 2022 + 2025, + 2026 ] }, { - "slug": "inria-foundation", - "name": "Inria Foundation", - "first_year": 2018, - "last_year": 2018, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2018 - ] - }, - { - "slug": "jitsi", - "name": "Jitsi", - "first_year": 2017, - "last_year": 2025, - "total_projects": 21, + "slug": "mixxx", + "name": "Mixxx", + "first_year": 2016, + "last_year": 2026, + "total_projects": 16, "is_currently_active": true, "active_years": [ + 2016, 2017, 2018, + 2020, 2022, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "matrixorg", - "name": "Matrix.org", - "first_year": 2016, - "last_year": 2022, - "total_projects": 29, + "slug": "purr-data", + "name": "Purr Data", + "first_year": 2018, + "last_year": 2024, + "total_projects": 15, "is_currently_active": false, "active_years": [ - 2016, - 2017, 2018, 2019, 2020, 2021, - 2022 + 2022, + 2023, + 2024 ] }, { @@ -233,7 +251,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 13, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -246,31 +264,42 @@ ] }, { - "slug": "mediapipe", - "name": "MediaPipe", - "first_year": 2021, - "last_year": 2021, - "total_projects": 6, + "slug": "cmu-sphinx", + "name": "CMU Sphinx", + "first_year": 2017, + "last_year": 2017, + "total_projects": 11, "is_currently_active": false, "active_years": [ - 2021 + 2017 ] }, { - "slug": "mixxx", - "name": "Mixxx", + "slug": "coreboot", + "name": "coreboot", "first_year": 2016, - "last_year": 2025, - "total_projects": 16, - "is_currently_active": true, + "last_year": 2023, + "total_projects": 11, + "is_currently_active": false, "active_years": [ 2016, - 2017, - 2018, + 2019, 2020, 2022, - 2024, - 2025 + 2023 + ] + }, + { + "slug": "orcasound", + "name": "Orcasound", + "first_year": 2020, + "last_year": 2022, + "total_projects": 10, + "is_currently_active": false, + "active_years": [ + 2020, + 2021, + 2022 ] }, { @@ -287,47 +316,26 @@ ] }, { - "slug": "opencv", - "name": "OpenCV", + "slug": "discourse", + "name": "Discourse", "first_year": 2016, - "last_year": 2025, - "total_projects": 93, - "is_currently_active": true, - "active_years": [ - 2016, - 2017, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 - ] - }, - { - "slug": "openrefine", - "name": "OpenRefine", - "first_year": 2020, - "last_year": 2024, - "total_projects": 3, + "last_year": 2017, + "total_projects": 6, "is_currently_active": false, "active_years": [ - 2020, - 2024 + 2016, + 2017 ] }, { - "slug": "orcasound", - "name": "Orcasound", - "first_year": 2020, - "last_year": 2022, - "total_projects": 10, + "slug": "mediapipe", + "name": "MediaPipe", + "first_year": 2021, + "last_year": 2021, + "total_projects": 6, "is_currently_active": false, "active_years": [ - 2020, - 2021, - 2022 + 2021 ] }, { @@ -344,51 +352,38 @@ ] }, { - "slug": "pidgin-instant-messenger", - "name": "Pidgin Instant Messenger", - "first_year": 2021, - "last_year": 2021, - "total_projects": 1, + "slug": "conversationsim", + "name": "Conversations.im", + "first_year": 2017, + "last_year": 2018, + "total_projects": 4, "is_currently_active": false, "active_years": [ - 2021 + 2017, + 2018 ] }, { - "slug": "purr-data", - "name": "Purr Data", - "first_year": 2018, + "slug": "openrefine", + "name": "OpenRefine", + "first_year": 2020, "last_year": 2024, - "total_projects": 15, + "total_projects": 3, "is_currently_active": false, "active_years": [ - 2018, - 2019, 2020, - 2021, - 2022, - 2023, 2024 ] }, { - "slug": "rtems-project", - "name": "RTEMS Project", - "first_year": 2016, - "last_year": 2025, - "total_projects": 46, - "is_currently_active": true, + "slug": "inria-foundation", + "name": "Inria Foundation", + "first_year": 2018, + "last_year": 2018, + "total_projects": 2, + "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2018 ] }, { @@ -412,6 +407,17 @@ "active_years": [ 2021 ] + }, + { + "slug": "pidgin-instant-messenger", + "name": "Pidgin Instant Messenger", + "first_year": 2021, + "last_year": 2021, + "total_projects": 1, + "is_currently_active": false, + "active_years": [ + 2021 + ] } ], "yearlyStats": { @@ -454,10 +460,14 @@ "2025": { "organizationCount": 10, "projectCount": 54 + }, + "2026": { + "organizationCount": 6, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.510Z" + "generated_at": "2026-02-19T13:36:00.502Z" } } \ No newline at end of file diff --git a/new-api-details/topics/real-unix.json b/new-api-details/topics/real-unix.json index 06e41ce5..cfcb956d 100644 --- a/new-api-details/topics/real-unix.json +++ b/new-api-details/topics/real-unix.json @@ -1,10 +1,11 @@ { "slug": "real-unix", "name": "real unix", - "published_at": "2026-01-25T16:06:29.713Z", + "published_at": "2026-02-19T13:36:02.951Z", "organizationCount": 1, "projectCount": 38, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "the-netbsd-foundation", "name": "The NetBSD Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 38, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.713Z" + "generated_at": "2026-02-19T13:36:02.951Z" } } \ No newline at end of file diff --git a/new-api-details/topics/realtime-communication.json b/new-api-details/topics/realtime-communication.json index 0e0e3263..08e8f337 100644 --- a/new-api-details/topics/realtime-communication.json +++ b/new-api-details/topics/realtime-communication.json @@ -1,7 +1,7 @@ { "slug": "realtime-communication", "name": "realtime communication", - "published_at": "2026-01-25T16:06:29.328Z", + "published_at": "2026-02-19T13:36:02.229Z", "organizationCount": 2, "projectCount": 40, "years": [ @@ -90,6 +90,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.328Z" + "generated_at": "2026-02-19T13:36:02.229Z" } } \ No newline at end of file diff --git a/new-api-details/topics/realtime-communications.json b/new-api-details/topics/realtime-communications.json index d8977855..2b04af2a 100644 --- a/new-api-details/topics/realtime-communications.json +++ b/new-api-details/topics/realtime-communications.json @@ -1,10 +1,11 @@ { "slug": "realtime-communications", "name": "realtime communications", - "published_at": "2026-01-25T16:06:29.325Z", + "published_at": "2026-02-19T13:36:02.225Z", "organizationCount": 3, "projectCount": 143, "years": [ + 2026, 2025, 2024, 2023, @@ -18,39 +19,40 @@ ], "organizations": [ { - "slug": "matrixorg", - "name": "Matrix.org", - "first_year": 2016, - "last_year": 2022, - "total_projects": 29, - "is_currently_active": false, + "slug": "rocketchat", + "name": "rocket.chat", + "first_year": 2017, + "last_year": 2026, + "total_projects": 103, + "is_currently_active": true, "active_years": [ - 2016, 2017, 2018, 2019, 2020, 2021, - 2022 + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "rocketchat", - "name": "rocket.chat", - "first_year": 2017, - "last_year": 2025, - "total_projects": 103, - "is_currently_active": true, + "slug": "matrixorg", + "name": "Matrix.org", + "first_year": 2016, + "last_year": 2022, + "total_projects": 29, + "is_currently_active": false, "active_years": [ + 2016, 2017, 2018, 2019, 2020, 2021, - 2022, - 2023, - 2024, - 2025 + 2022 ] }, { @@ -110,10 +112,14 @@ "2025": { "organizationCount": 1, "projectCount": 19 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.325Z" + "generated_at": "2026-02-19T13:36:02.225Z" } } \ No newline at end of file diff --git a/new-api-details/topics/realtime-messaging.json b/new-api-details/topics/realtime-messaging.json index 8b2bd9fa..5479855c 100644 --- a/new-api-details/topics/realtime-messaging.json +++ b/new-api-details/topics/realtime-messaging.json @@ -1,7 +1,7 @@ { "slug": "realtime-messaging", "name": "realtime messaging", - "published_at": "2026-01-25T16:06:28.949Z", + "published_at": "2026-02-19T13:36:01.272Z", "organizationCount": 2, "projectCount": 46, "years": [ @@ -20,7 +20,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -79,6 +79,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.949Z" + "generated_at": "2026-02-19T13:36:01.272Z" } } \ No newline at end of file diff --git a/new-api-details/topics/realtime.json b/new-api-details/topics/realtime.json index 804d49fc..df17090b 100644 --- a/new-api-details/topics/realtime.json +++ b/new-api-details/topics/realtime.json @@ -1,10 +1,11 @@ { "slug": "realtime", "name": "realtime", - "published_at": "2026-01-25T16:06:28.575Z", + "published_at": "2026-02-19T13:36:00.670Z", "organizationCount": 4, "projectCount": 189, "years": [ + 2026, 2025, 2024, 2023, @@ -18,23 +19,30 @@ ], "organizations": [ { - "slug": "beam-community", - "name": "Beam Community", - "first_year": 2016, - "last_year": 2018, - "total_projects": 19, - "is_currently_active": false, + "slug": "rocketchat", + "name": "rocket.chat", + "first_year": 2017, + "last_year": 2026, + "total_projects": 103, + "is_currently_active": true, "active_years": [ - 2016, 2017, - 2018 + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { "slug": "opensuse-project", "name": "openSUSE Project", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 52, "is_currently_active": true, "active_years": [ @@ -46,7 +54,21 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "beam-community", + "name": "Beam Community", + "first_year": 2016, + "last_year": 2018, + "total_projects": 19, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2018 ] }, { @@ -65,25 +87,6 @@ 2023, 2024 ] - }, - { - "slug": "rocketchat", - "name": "rocket.chat", - "first_year": 2017, - "last_year": 2025, - "total_projects": 103, - "is_currently_active": true, - "active_years": [ - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 - ] } ], "yearlyStats": { @@ -126,10 +129,14 @@ "2025": { "organizationCount": 2, "projectCount": 26 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.575Z" + "generated_at": "2026-02-19T13:36:00.670Z" } } \ No newline at end of file diff --git a/new-api-details/topics/reconcilation.json b/new-api-details/topics/reconcilation.json index b0462c6c..50ca231f 100644 --- a/new-api-details/topics/reconcilation.json +++ b/new-api-details/topics/reconcilation.json @@ -1,7 +1,7 @@ { "slug": "reconcilation", "name": "reconcilation", - "published_at": "2026-01-25T16:06:29.489Z", + "published_at": "2026-02-19T13:36:02.590Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.489Z" + "generated_at": "2026-02-19T13:36:02.590Z" } } \ No newline at end of file diff --git a/new-api-details/topics/reference-manager.json b/new-api-details/topics/reference-manager.json index 7a268d35..73f7e33f 100644 --- a/new-api-details/topics/reference-manager.json +++ b/new-api-details/topics/reference-manager.json @@ -1,10 +1,11 @@ { "slug": "reference-manager", "name": "reference manager", - "published_at": "2026-01-25T16:06:29.210Z", + "published_at": "2026-02-19T13:36:02.003Z", "organizationCount": 1, "projectCount": 11, "years": [ + 2026, 2025, 2024, 2022, @@ -16,7 +17,7 @@ "slug": "jabref-ev", "name": "JabRef e.V.", "first_year": 2019, - "last_year": 2025, + "last_year": 2026, "total_projects": 11, "is_currently_active": true, "active_years": [ @@ -24,7 +25,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] } ], @@ -48,10 +50,14 @@ "2025": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.210Z" + "generated_at": "2026-02-19T13:36:02.003Z" } } \ No newline at end of file diff --git a/new-api-details/topics/reinforcement-learning.json b/new-api-details/topics/reinforcement-learning.json index 92d42f69..441ef354 100644 --- a/new-api-details/topics/reinforcement-learning.json +++ b/new-api-details/topics/reinforcement-learning.json @@ -1,7 +1,7 @@ { "slug": "reinforcement-learning", "name": "reinforcement learning", - "published_at": "2026-01-25T16:06:28.785Z", + "published_at": "2026-02-19T13:36:01.051Z", "organizationCount": 3, "projectCount": 90, "years": [ @@ -18,12 +18,12 @@ ], "organizations": [ { - "slug": "cloudcv", - "name": "CloudCV", + "slug": "mlpack", + "name": "mlpack", "first_year": 2016, - "last_year": 2025, - "total_projects": 28, - "is_currently_active": true, + "last_year": 2024, + "total_projects": 60, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -31,17 +31,17 @@ 2019, 2020, 2021, + 2022, 2023, - 2024, - 2025 + 2024 ] }, { - "slug": "mlpack", - "name": "mlpack", + "slug": "cloudcv", + "name": "CloudCV", "first_year": 2016, - "last_year": 2024, - "total_projects": 60, + "last_year": 2025, + "total_projects": 28, "is_currently_active": false, "active_years": [ 2016, @@ -50,9 +50,9 @@ 2019, 2020, 2021, - 2022, 2023, - 2024 + 2024, + 2025 ] }, { @@ -61,7 +61,7 @@ "first_year": 2025, "last_year": 2025, "total_projects": 2, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2025 ] @@ -111,6 +111,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.785Z" + "generated_at": "2026-02-19T13:36:01.051Z" } } \ No newline at end of file diff --git a/new-api-details/topics/relational-database.json b/new-api-details/topics/relational-database.json index cc3ba001..cf2b8b95 100644 --- a/new-api-details/topics/relational-database.json +++ b/new-api-details/topics/relational-database.json @@ -1,10 +1,11 @@ { "slug": "relational-database", "name": "relational database", - "published_at": "2026-01-25T16:06:29.554Z", + "published_at": "2026-02-19T13:36:02.737Z", "organizationCount": 1, "projectCount": 51, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "postgresql", "name": "PostgreSQL", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 51, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.554Z" + "generated_at": "2026-02-19T13:36:02.737Z" } } \ No newline at end of file diff --git a/new-api-details/topics/reliable-log-transfer.json b/new-api-details/topics/reliable-log-transfer.json index 94b11b7d..85d4a048 100644 --- a/new-api-details/topics/reliable-log-transfer.json +++ b/new-api-details/topics/reliable-log-transfer.json @@ -1,7 +1,7 @@ { "slug": "reliable-log-transfer", "name": "reliable log transfer", - "published_at": "2026-01-25T16:06:29.880Z", + "published_at": "2026-02-19T13:36:02.884Z", "organizationCount": 1, "projectCount": 12, "years": [ @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.880Z" + "generated_at": "2026-02-19T13:36:02.884Z" } } \ No newline at end of file diff --git a/new-api-details/topics/remote-access.json b/new-api-details/topics/remote-access.json index c951ed16..3d8884cf 100644 --- a/new-api-details/topics/remote-access.json +++ b/new-api-details/topics/remote-access.json @@ -1,7 +1,7 @@ { "slug": "remote-access", "name": "remote access", - "published_at": "2026-01-25T16:06:29.887Z", + "published_at": "2026-02-19T13:36:03.167Z", "organizationCount": 1, "projectCount": 0, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.887Z" + "generated_at": "2026-02-19T13:36:03.167Z" } } \ No newline at end of file diff --git a/new-api-details/topics/remote-patient-monitoring.json b/new-api-details/topics/remote-patient-monitoring.json index 6fdecec8..49f123e2 100644 --- a/new-api-details/topics/remote-patient-monitoring.json +++ b/new-api-details/topics/remote-patient-monitoring.json @@ -1,7 +1,7 @@ { "slug": "remote-patient-monitoring", "name": "remote patient monitoring", - "published_at": "2026-01-25T16:06:29.578Z", + "published_at": "2026-02-19T13:36:02.773Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.579Z" + "generated_at": "2026-02-19T13:36:02.773Z" } } \ No newline at end of file diff --git a/new-api-details/topics/remote-sensing.json b/new-api-details/topics/remote-sensing.json index ff03aadc..4bc46a30 100644 --- a/new-api-details/topics/remote-sensing.json +++ b/new-api-details/topics/remote-sensing.json @@ -1,10 +1,11 @@ { "slug": "remote-sensing", "name": "remote sensing", - "published_at": "2026-01-25T16:06:28.355Z", + "published_at": "2026-02-19T13:36:00.266Z", "organizationCount": 1, "projectCount": 25, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "52north-spatial-information-research-gmbh", "name": "52°North Spatial Information Research GmbH", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 25, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.355Z" + "generated_at": "2026-02-19T13:36:00.266Z" } } \ No newline at end of file diff --git a/new-api-details/topics/rendering.json b/new-api-details/topics/rendering.json index 0e602e9d..d16a8a48 100644 --- a/new-api-details/topics/rendering.json +++ b/new-api-details/topics/rendering.json @@ -1,10 +1,11 @@ { "slug": "rendering", "name": "rendering", - "published_at": "2026-01-25T16:06:28.606Z", + "published_at": "2026-02-19T13:36:00.567Z", "organizationCount": 5, "projectCount": 120, "years": [ + 2026, 2025, 2024, 2023, @@ -17,25 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "appleseed", - "name": "appleseed", - "first_year": 2017, - "last_year": 2020, - "total_projects": 11, - "is_currently_active": false, - "active_years": [ - 2017, - 2018, - 2019, - 2020 - ] - }, { "slug": "blender-foundation", "name": "Blender Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 64, "is_currently_active": true, "active_years": [ @@ -48,7 +35,23 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "godot-engine", + "name": "Godot Engine", + "first_year": 2018, + "last_year": 2022, + "total_projects": 27, + "is_currently_active": false, + "active_years": [ + 2018, + 2019, + 2020, + 2021, + 2022 ] }, { @@ -70,18 +73,17 @@ ] }, { - "slug": "godot-engine", - "name": "Godot Engine", - "first_year": 2018, - "last_year": 2022, - "total_projects": 27, + "slug": "appleseed", + "name": "appleseed", + "first_year": 2017, + "last_year": 2020, + "total_projects": 11, "is_currently_active": false, "active_years": [ + 2017, 2018, 2019, - 2020, - 2021, - 2022 + 2020 ] }, { @@ -137,10 +139,14 @@ "2025": { "organizationCount": 1, "projectCount": 8 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.606Z" + "generated_at": "2026-02-19T13:36:00.567Z" } } \ No newline at end of file diff --git a/new-api-details/topics/renewables.json b/new-api-details/topics/renewables.json index 239d97cb..723eca0a 100644 --- a/new-api-details/topics/renewables.json +++ b/new-api-details/topics/renewables.json @@ -1,7 +1,7 @@ { "slug": "renewables", "name": "renewables", - "published_at": "2026-01-25T16:06:29.432Z", + "published_at": "2026-02-19T13:36:02.487Z", "organizationCount": 1, "projectCount": 10, "years": [ @@ -15,7 +15,7 @@ "first_year": 2024, "last_year": 2025, "total_projects": 10, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2024, 2025 @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.432Z" + "generated_at": "2026-02-19T13:36:02.487Z" } } \ No newline at end of file diff --git a/new-api-details/topics/reproducibility.json b/new-api-details/topics/reproducibility.json index f7a7b2e7..58345059 100644 --- a/new-api-details/topics/reproducibility.json +++ b/new-api-details/topics/reproducibility.json @@ -1,10 +1,11 @@ { "slug": "reproducibility", "name": "reproducibility", - "published_at": "2026-01-25T16:06:28.702Z", + "published_at": "2026-02-19T13:36:00.953Z", "organizationCount": 2, "projectCount": 67, "years": [ + 2026, 2025, 2024, 2023, @@ -14,6 +15,20 @@ 2018 ], "organizations": [ + { + "slug": "uc-ospo", + "name": "UC OSPO", + "first_year": 2023, + "last_year": 2026, + "total_projects": 47, + "is_currently_active": true, + "active_years": [ + 2023, + 2024, + 2025, + 2026 + ] + }, { "slug": "center-for-research-in-open-source-software-cross", "name": "Center for Research in Open Source Software (CROSS)", @@ -27,19 +42,6 @@ 2021, 2022 ] - }, - { - "slug": "uc-ospo", - "name": "UC OSPO", - "first_year": 2023, - "last_year": 2025, - "total_projects": 47, - "is_currently_active": true, - "active_years": [ - 2023, - 2024, - 2025 - ] } ], "yearlyStats": { @@ -70,10 +72,14 @@ "2025": { "organizationCount": 1, "projectCount": 17 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.702Z" + "generated_at": "2026-02-19T13:36:00.954Z" } } \ No newline at end of file diff --git a/new-api-details/topics/reproducible-science.json b/new-api-details/topics/reproducible-science.json index 57de7044..52e20f0e 100644 --- a/new-api-details/topics/reproducible-science.json +++ b/new-api-details/topics/reproducible-science.json @@ -1,10 +1,11 @@ { "slug": "reproducible-science", "name": "reproducible science", - "published_at": "2026-01-25T16:06:29.449Z", + "published_at": "2026-02-19T13:36:02.512Z", "organizationCount": 1, "projectCount": 9, "years": [ + 2026, 2025, 2024 ], @@ -13,12 +14,13 @@ "slug": "open-science-initiative-for-perfusion-imaging", "name": "Open Science Initiative for Perfusion Imaging", "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "total_projects": 9, "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -30,10 +32,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.449Z" + "generated_at": "2026-02-19T13:36:02.512Z" } } \ No newline at end of file diff --git a/new-api-details/topics/reproducible.json b/new-api-details/topics/reproducible.json index 138378cc..185bed47 100644 --- a/new-api-details/topics/reproducible.json +++ b/new-api-details/topics/reproducible.json @@ -1,10 +1,11 @@ { "slug": "reproducible", "name": "reproducible", - "published_at": "2026-01-25T16:06:29.412Z", + "published_at": "2026-02-19T13:36:02.422Z", "organizationCount": 1, "projectCount": 3, "years": [ + 2026, 2024 ], "organizations": [ @@ -12,11 +13,12 @@ "slug": "nixos-foundation", "name": "NixOS Foundation", "first_year": 2024, - "last_year": 2024, + "last_year": 2026, "total_projects": 3, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ - 2024 + 2024, + 2026 ] } ], @@ -24,10 +26,14 @@ "2024": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.412Z" + "generated_at": "2026-02-19T13:36:02.422Z" } } \ No newline at end of file diff --git a/new-api-details/topics/research-and-development.json b/new-api-details/topics/research-and-development.json index 2183e162..484ef849 100644 --- a/new-api-details/topics/research-and-development.json +++ b/new-api-details/topics/research-and-development.json @@ -1,10 +1,11 @@ { "slug": "research-and-development", "name": "research and development", - "published_at": "2026-01-25T16:06:29.735Z", + "published_at": "2026-02-19T13:36:02.955Z", "organizationCount": 1, "projectCount": 34, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "the-ns-3-network-simulator-project", "name": "The ns-3 Network Simulator Project", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 34, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.735Z" + "generated_at": "2026-02-19T13:36:02.955Z" } } \ No newline at end of file diff --git a/new-api-details/topics/research-software.json b/new-api-details/topics/research-software.json new file mode 100644 index 00000000..f29a5d66 --- /dev/null +++ b/new-api-details/topics/research-software.json @@ -0,0 +1,51 @@ +{ + "slug": "research-software", + "name": "research software", + "published_at": "2026-02-19T13:36:03.090Z", + "organizationCount": 1, + "projectCount": 47, + "years": [ + 2026, + 2025, + 2024, + 2023 + ], + "organizations": [ + { + "slug": "uc-ospo", + "name": "UC OSPO", + "first_year": 2023, + "last_year": 2026, + "total_projects": 47, + "is_currently_active": true, + "active_years": [ + 2023, + 2024, + 2025, + 2026 + ] + } + ], + "yearlyStats": { + "2023": { + "organizationCount": 1, + "projectCount": 14 + }, + "2024": { + "organizationCount": 1, + "projectCount": 16 + }, + "2025": { + "organizationCount": 1, + "projectCount": 17 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 + } + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:36:03.090Z" + } +} \ No newline at end of file diff --git a/new-api-details/topics/research.json b/new-api-details/topics/research.json index 0ae6a412..9c7d52d9 100644 --- a/new-api-details/topics/research.json +++ b/new-api-details/topics/research.json @@ -1,10 +1,11 @@ { "slug": "research", "name": "research", - "published_at": "2026-01-25T16:06:28.591Z", + "published_at": "2026-02-19T13:36:00.721Z", "organizationCount": 11, "projectCount": 392, "years": [ + 2026, 2025, 2024, 2023, @@ -18,37 +19,46 @@ ], "organizations": [ { - "slug": "berkman-klein-center-for-internet-and-society", - "name": "Berkman Klein Center for Internet and Society", + "slug": "the-honeynet-project", + "name": "The Honeynet Project", "first_year": 2016, - "last_year": 2019, - "total_projects": 20, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 101, + "is_currently_active": true, "active_years": [ 2016, 2017, 2018, - 2019 + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "boston-university-xia", - "name": "Boston University / XIA", - "first_year": 2016, - "last_year": 2018, - "total_projects": 8, + "slug": "tensorflow", + "name": "TensorFlow", + "first_year": 2019, + "last_year": 2023, + "total_projects": 81, "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018 + 2019, + 2020, + 2021, + 2022, + 2023 ] }, { "slug": "eclipse-foundation", "name": "Eclipse Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 68, "is_currently_active": true, "active_years": [ @@ -60,37 +70,15 @@ 2022, 2023, 2024, - 2025 - ] - }, - { - "slug": "gpac", - "name": "GPAC", - "first_year": 2016, - "last_year": 2020, - "total_projects": 1, - "is_currently_active": false, - "active_years": [ - 2016, - 2020 - ] - }, - { - "slug": "media-cloud", - "name": "Media Cloud", - "first_year": 2021, - "last_year": 2021, - "total_projects": 0, - "is_currently_active": false, - "active_years": [ - 2021 + 2025, + 2026 ] }, { "slug": "sagemath", "name": "SageMath", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 55, "is_currently_active": true, "active_years": [ @@ -103,30 +91,36 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "tensorflow", - "name": "TensorFlow", - "first_year": 2019, - "last_year": 2023, - "total_projects": 81, - "is_currently_active": false, + "slug": "the-ns-3-network-simulator-project", + "name": "The ns-3 Network Simulator Project", + "first_year": 2017, + "last_year": 2026, + "total_projects": 34, + "is_currently_active": true, "active_years": [ + 2017, + 2018, 2019, 2020, 2021, 2022, - 2023 + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "the-center-for-connected-learning-and-computer-based-modeling", - "name": "The Center for Connected Learning and Computer-Based Modeling", + "slug": "berkman-klein-center-for-internet-and-society", + "name": "Berkman Klein Center for Internet and Society", "first_year": 2016, "last_year": 2019, - "total_projects": 5, + "total_projects": 20, "is_currently_active": false, "active_years": [ 2016, @@ -136,57 +130,68 @@ ] }, { - "slug": "the-honeynet-project", - "name": "The Honeynet Project", + "slug": "the-tor-project", + "name": "The Tor Project", "first_year": 2016, "last_year": 2025, - "total_projects": 101, - "is_currently_active": true, + "total_projects": 19, + "is_currently_active": false, "active_years": [ 2016, 2017, - 2018, - 2019, - 2020, - 2021, 2022, 2023, - 2024, 2025 ] }, { - "slug": "the-ns-3-network-simulator-project", - "name": "The ns-3 Network Simulator Project", - "first_year": 2017, - "last_year": 2025, - "total_projects": 34, - "is_currently_active": true, + "slug": "boston-university-xia", + "name": "Boston University / XIA", + "first_year": 2016, + "last_year": 2018, + "total_projects": 8, + "is_currently_active": false, "active_years": [ + 2016, 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2018 ] }, { - "slug": "the-tor-project", - "name": "The Tor Project", + "slug": "the-center-for-connected-learning-and-computer-based-modeling", + "name": "The Center for Connected Learning and Computer-Based Modeling", "first_year": 2016, - "last_year": 2025, - "total_projects": 19, - "is_currently_active": true, + "last_year": 2019, + "total_projects": 5, + "is_currently_active": false, "active_years": [ 2016, 2017, - 2022, - 2023, - 2025 + 2018, + 2019 + ] + }, + { + "slug": "gpac", + "name": "GPAC", + "first_year": 2016, + "last_year": 2020, + "total_projects": 1, + "is_currently_active": false, + "active_years": [ + 2016, + 2020 + ] + }, + { + "slug": "media-cloud", + "name": "Media Cloud", + "first_year": 2021, + "last_year": 2021, + "total_projects": 0, + "is_currently_active": false, + "active_years": [ + 2021 ] } ], @@ -230,10 +235,14 @@ "2025": { "organizationCount": 5, "projectCount": 31 + }, + "2026": { + "organizationCount": 4, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.591Z" + "generated_at": "2026-02-19T13:36:00.721Z" } } \ No newline at end of file diff --git a/new-api-details/topics/rest-apis.json b/new-api-details/topics/rest-apis.json index 4fca1d1f..a6d0ba61 100644 --- a/new-api-details/topics/rest-apis.json +++ b/new-api-details/topics/rest-apis.json @@ -1,7 +1,7 @@ { "slug": "rest-apis", "name": "rest apis", - "published_at": "2026-01-25T16:06:29.131Z", + "published_at": "2026-02-19T13:36:01.786Z", "organizationCount": 1, "projectCount": 8, "years": [ @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.131Z" + "generated_at": "2026-02-19T13:36:01.786Z" } } \ No newline at end of file diff --git a/new-api-details/topics/result-presentation.json b/new-api-details/topics/result-presentation.json index 07bfdd8d..64eedb5e 100644 --- a/new-api-details/topics/result-presentation.json +++ b/new-api-details/topics/result-presentation.json @@ -1,7 +1,7 @@ { "slug": "result-presentation", "name": "result presentation", - "published_at": "2026-01-25T16:06:29.635Z", + "published_at": "2026-02-19T13:36:02.835Z", "organizationCount": 1, "projectCount": 14, "years": [ @@ -18,7 +18,7 @@ "first_year": 2018, "last_year": 2025, "total_projects": 14, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2018, 2019, @@ -52,6 +52,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.635Z" + "generated_at": "2026-02-19T13:36:02.835Z" } } \ No newline at end of file diff --git a/new-api-details/topics/retrieval.json b/new-api-details/topics/retrieval.json index b4c119e1..e240c9d4 100644 --- a/new-api-details/topics/retrieval.json +++ b/new-api-details/topics/retrieval.json @@ -1,7 +1,7 @@ { "slug": "retrieval", "name": "retrieval", - "published_at": "2026-01-25T16:06:29.882Z", + "published_at": "2026-02-19T13:36:03.120Z", "organizationCount": 1, "projectCount": 6, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.882Z" + "generated_at": "2026-02-19T13:36:03.120Z" } } \ No newline at end of file diff --git a/new-api-details/topics/reverse-engineering.json b/new-api-details/topics/reverse-engineering.json index 2907d694..f3f8e648 100644 --- a/new-api-details/topics/reverse-engineering.json +++ b/new-api-details/topics/reverse-engineering.json @@ -1,10 +1,11 @@ { "slug": "reverse-engineering", "name": "reverse-engineering", - "published_at": "2026-01-25T16:06:28.922Z", + "published_at": "2026-02-19T13:36:01.393Z", "organizationCount": 5, "projectCount": 91, "years": [ + 2026, 2025, 2024, 2023, @@ -17,26 +18,13 @@ 2016 ], "organizations": [ - { - "slug": "flare", - "name": "FLARE", - "first_year": 2023, - "last_year": 2025, - "total_projects": 7, - "is_currently_active": true, - "active_years": [ - 2023, - 2024, - 2025 - ] - }, { "slug": "gnu-project", "name": "GNU Project", "first_year": 2016, - "last_year": 2024, + "last_year": 2026, "total_projects": 59, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -44,18 +32,8 @@ 2019, 2020, 2023, - 2024 - ] - }, - { - "slug": "openhmd", - "name": "OpenHMD", - "first_year": 2020, - "last_year": 2020, - "total_projects": 0, - "is_currently_active": false, - "active_years": [ - 2020 + 2024, + 2026 ] }, { @@ -76,7 +54,7 @@ "slug": "rizin", "name": "Rizin", "first_year": 2021, - "last_year": 2025, + "last_year": 2026, "total_projects": 10, "is_currently_active": true, "active_years": [ @@ -84,7 +62,33 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "flare", + "name": "FLARE", + "first_year": 2023, + "last_year": 2026, + "total_projects": 7, + "is_currently_active": true, + "active_years": [ + 2023, + 2024, + 2025, + 2026 + ] + }, + { + "slug": "openhmd", + "name": "OpenHMD", + "first_year": 2020, + "last_year": 2020, + "total_projects": 0, + "is_currently_active": false, + "active_years": [ + 2020 ] } ], @@ -128,10 +132,14 @@ "2025": { "organizationCount": 2, "projectCount": 5 + }, + "2026": { + "organizationCount": 3, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.922Z" + "generated_at": "2026-02-19T13:36:01.393Z" } } \ No newline at end of file diff --git a/new-api-details/topics/risc-v.json b/new-api-details/topics/risc-v.json index 2cf76457..1fbc3cce 100644 --- a/new-api-details/topics/risc-v.json +++ b/new-api-details/topics/risc-v.json @@ -1,7 +1,7 @@ { "slug": "risc-v", "name": "RISC-V", - "published_at": "2026-01-25T16:06:29.354Z", + "published_at": "2026-02-19T13:36:02.306Z", "organizationCount": 1, "projectCount": 12, "years": [ @@ -17,7 +17,7 @@ "first_year": 2022, "last_year": 2025, "total_projects": 12, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2023, @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.354Z" + "generated_at": "2026-02-19T13:36:02.306Z" } } \ No newline at end of file diff --git a/new-api-details/topics/robot-dataflow.json b/new-api-details/topics/robot-dataflow.json index 46ae51be..e946aad4 100644 --- a/new-api-details/topics/robot-dataflow.json +++ b/new-api-details/topics/robot-dataflow.json @@ -1,10 +1,11 @@ { "slug": "robot-dataflow", "name": "Robot Dataflow", - "published_at": "2026-01-25T16:06:29.832Z", + "published_at": "2026-02-19T13:36:01.209Z", "organizationCount": 1, "projectCount": 2, "years": [ + 2026, 2025 ], "organizations": [ @@ -12,11 +13,12 @@ "slug": "dora-rs", "name": "dora-rs", "first_year": 2025, - "last_year": 2025, + "last_year": 2026, "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] } ], @@ -24,10 +26,14 @@ "2025": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.832Z" + "generated_at": "2026-02-19T13:36:01.209Z" } } \ No newline at end of file diff --git a/new-api-details/topics/robot-perception.json b/new-api-details/topics/robot-perception.json index 3aee60b7..2860e236 100644 --- a/new-api-details/topics/robot-perception.json +++ b/new-api-details/topics/robot-perception.json @@ -1,7 +1,7 @@ { "slug": "robot-perception", "name": "robot perception", - "published_at": "2026-01-25T16:06:29.152Z", + "published_at": "2026-02-19T13:36:01.819Z", "organizationCount": 1, "projectCount": 11, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.152Z" + "generated_at": "2026-02-19T13:36:01.819Z" } } \ No newline at end of file diff --git a/new-api-details/topics/robot-simulator.json b/new-api-details/topics/robot-simulator.json index 5b960383..bc64b8c9 100644 --- a/new-api-details/topics/robot-simulator.json +++ b/new-api-details/topics/robot-simulator.json @@ -1,10 +1,11 @@ { "slug": "robot-simulator", "name": "robot simulator", - "published_at": "2026-01-25T16:06:29.216Z", + "published_at": "2026-02-19T13:36:02.035Z", "organizationCount": 1, "projectCount": 48, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "jderobot", "name": "JdeRobot", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 48, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.216Z" + "generated_at": "2026-02-19T13:36:02.035Z" } } \ No newline at end of file diff --git a/new-api-details/topics/robot.json b/new-api-details/topics/robot.json index 389e357e..6805f964 100644 --- a/new-api-details/topics/robot.json +++ b/new-api-details/topics/robot.json @@ -1,7 +1,7 @@ { "slug": "robot", "name": "robot", - "published_at": "2026-01-25T16:06:29.364Z", + "published_at": "2026-02-19T13:36:02.328Z", "organizationCount": 1, "projectCount": 8, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.364Z" + "generated_at": "2026-02-19T13:36:02.328Z" } } \ No newline at end of file diff --git a/new-api-details/topics/robotics-simulation.json b/new-api-details/topics/robotics-simulation.json index a7f5e356..17c9ea9c 100644 --- a/new-api-details/topics/robotics-simulation.json +++ b/new-api-details/topics/robotics-simulation.json @@ -1,7 +1,7 @@ { "slug": "robotics-simulation", "name": "robotics simulation", - "published_at": "2026-01-25T16:06:29.594Z", + "published_at": "2026-02-19T13:36:02.789Z", "organizationCount": 1, "projectCount": 57, "years": [ @@ -64,6 +64,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.594Z" + "generated_at": "2026-02-19T13:36:02.789Z" } } \ No newline at end of file diff --git a/new-api-details/topics/robotics.json b/new-api-details/topics/robotics.json index 7bb98f26..7220d3eb 100644 --- a/new-api-details/topics/robotics.json +++ b/new-api-details/topics/robotics.json @@ -1,10 +1,11 @@ { "slug": "robotics", "name": "robotics", - "published_at": "2026-01-25T16:06:28.335Z", + "published_at": "2026-02-19T13:36:00.213Z", "organizationCount": 25, "projectCount": 708, "years": [ + 2026, 2025, 2024, 2023, @@ -18,37 +19,15 @@ ], "organizations": [ { - "slug": "3dtk", - "name": "3DTK", - "first_year": 2018, - "last_year": 2018, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2018 - ] - }, - { - "slug": "arduino", - "name": "Arduino", - "first_year": 2020, - "last_year": 2020, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2020 - ] - }, - { - "slug": "ardupilot", - "name": "ArduPilot", - "first_year": 2017, + "slug": "opencv", + "name": "OpenCV", + "first_year": 2016, "last_year": 2025, - "total_projects": 38, - "is_currently_active": true, + "total_projects": 93, + "is_currently_active": false, "active_years": [ + 2016, 2017, - 2018, 2019, 2020, 2021, @@ -59,11 +38,11 @@ ] }, { - "slug": "beagleboardorg", - "name": "BeagleBoard.org", + "slug": "international-catrobat-association", + "name": "International Catrobat Association", "first_year": 2016, - "last_year": 2025, - "total_projects": 44, + "last_year": 2026, + "total_projects": 84, "is_currently_active": true, "active_years": [ 2016, @@ -75,14 +54,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "debian", "name": "Debian", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 78, "is_currently_active": true, "active_years": [ @@ -93,14 +73,34 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "open-technologies-alliance-gfoss", + "name": "Open Technologies Alliance - GFOSS", + "first_year": 2017, + "last_year": 2026, + "total_projects": 70, + "is_currently_active": true, + "active_years": [ + 2017, + 2018, + 2019, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { "slug": "eclipse-foundation", "name": "Eclipse Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 68, "is_currently_active": true, "active_years": [ @@ -112,28 +112,17 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "institute-for-artificial-intelligence", - "name": "Institute for Artificial Intelligence", - "first_year": 2017, - "last_year": 2018, - "total_projects": 11, - "is_currently_active": false, - "active_years": [ - 2017, - 2018 - ] - }, - { - "slug": "international-catrobat-association", - "name": "International Catrobat Association", + "slug": "robocomp", + "name": "RoboComp", "first_year": 2016, - "last_year": 2025, - "total_projects": 84, - "is_currently_active": true, + "last_year": 2022, + "total_projects": 57, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -141,17 +130,14 @@ 2019, 2020, 2021, - 2022, - 2023, - 2024, - 2025 + 2022 ] }, { "slug": "jderobot", "name": "JdeRobot", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 48, "is_currently_active": true, "active_years": [ @@ -163,45 +149,68 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "jsk-robotics-laboratory-the-university-of-tokyo", - "name": "JSK Robotics Laboratory / The University of Tokyo", + "slug": "open-robotics", + "name": "Open Robotics", "first_year": 2016, - "last_year": 2019, - "total_projects": 4, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 46, + "is_currently_active": true, "active_years": [ 2016, - 2017, 2018, - 2019 + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "kornia", - "name": "Kornia", - "first_year": 2025, + "slug": "beagleboardorg", + "name": "BeagleBoard.org", + "first_year": 2016, "last_year": 2025, - "total_projects": 2, - "is_currently_active": true, + "total_projects": 44, + "is_currently_active": false, "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, 2025 ] }, { - "slug": "librecube-initiative", - "name": "LibreCube Initiative", - "first_year": 2021, - "last_year": 2024, - "total_projects": 7, - "is_currently_active": false, + "slug": "ardupilot", + "name": "ArduPilot", + "first_year": 2017, + "last_year": 2026, + "total_projects": 38, + "is_currently_active": true, "active_years": [ + 2017, + 2018, + 2019, + 2020, 2021, 2022, - 2024 + 2023, + 2024, + 2025, + 2026 ] }, { @@ -210,7 +219,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 13, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -223,14 +232,13 @@ ] }, { - "slug": "mobile-robot-programming-toolkit-mrpt", - "name": "Mobile Robot Programming Toolkit (MRPT)", - "first_year": 2016, + "slug": "institute-for-artificial-intelligence", + "name": "Institute for Artificial Intelligence", + "first_year": 2017, "last_year": 2018, - "total_projects": 8, + "total_projects": 11, "is_currently_active": false, "active_years": [ - 2016, 2017, 2018 ] @@ -250,6 +258,19 @@ 2024 ] }, + { + "slug": "mobile-robot-programming-toolkit-mrpt", + "name": "Mobile Robot Programming Toolkit (MRPT)", + "first_year": 2016, + "last_year": 2018, + "total_projects": 8, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2018 + ] + }, { "slug": "open-roberta", "name": "Open Roberta", @@ -265,70 +286,17 @@ ] }, { - "slug": "open-robotics", - "name": "Open Robotics", - "first_year": 2016, - "last_year": 2025, - "total_projects": 46, - "is_currently_active": true, - "active_years": [ - 2016, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 - ] - }, - { - "slug": "open-technologies-alliance-gfoss", - "name": "Open Technologies Alliance - GFOSS", - "first_year": 2017, - "last_year": 2025, - "total_projects": 70, - "is_currently_active": true, - "active_years": [ - 2017, - 2018, - 2019, - 2021, - 2022, - 2023, - 2024, - 2025 - ] - }, - { - "slug": "opencv", - "name": "OpenCV", - "first_year": 2016, - "last_year": 2025, - "total_projects": 93, + "slug": "librecube-initiative", + "name": "LibreCube Initiative", + "first_year": 2021, + "last_year": 2026, + "total_projects": 7, "is_currently_active": true, "active_years": [ - 2016, - 2017, - 2019, - 2020, 2021, 2022, - 2023, 2024, - 2025 - ] - }, - { - "slug": "pal-robotics", - "name": "PAL Robotics", - "first_year": 2025, - "last_year": 2025, - "total_projects": 2, - "is_currently_active": true, - "active_years": [ - 2025 + 2026 ] }, { @@ -344,31 +312,17 @@ ] }, { - "slug": "project-panoptes", - "name": "Project PANOPTES", - "first_year": 2019, - "last_year": 2019, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2019 - ] - }, - { - "slug": "robocomp", - "name": "RoboComp", + "slug": "jsk-robotics-laboratory-the-university-of-tokyo", + "name": "JSK Robotics Laboratory / The University of Tokyo", "first_year": 2016, - "last_year": 2022, - "total_projects": 57, + "last_year": 2019, + "total_projects": 4, "is_currently_active": false, "active_years": [ 2016, 2017, 2018, - 2019, - 2020, - 2021, - 2022 + 2019 ] }, { @@ -393,6 +347,62 @@ 2017, 2018 ] + }, + { + "slug": "3dtk", + "name": "3DTK", + "first_year": 2018, + "last_year": 2018, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2018 + ] + }, + { + "slug": "arduino", + "name": "Arduino", + "first_year": 2020, + "last_year": 2020, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2020 + ] + }, + { + "slug": "kornia", + "name": "Kornia", + "first_year": 2025, + "last_year": 2026, + "total_projects": 2, + "is_currently_active": true, + "active_years": [ + 2025, + 2026 + ] + }, + { + "slug": "pal-robotics", + "name": "PAL Robotics", + "first_year": 2025, + "last_year": 2025, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2025 + ] + }, + { + "slug": "project-panoptes", + "name": "Project PANOPTES", + "first_year": 2019, + "last_year": 2019, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2019 + ] } ], "yearlyStats": { @@ -435,10 +445,14 @@ "2025": { "organizationCount": 12, "projectCount": 73 + }, + "2026": { + "organizationCount": 9, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.338Z" + "generated_at": "2026-02-19T13:36:00.213Z" } } \ No newline at end of file diff --git a/new-api-details/topics/robustness.json b/new-api-details/topics/robustness.json index 74b09248..88a65238 100644 --- a/new-api-details/topics/robustness.json +++ b/new-api-details/topics/robustness.json @@ -1,7 +1,7 @@ { "slug": "robustness", "name": "Robustness", - "published_at": "2026-01-25T16:06:29.590Z", + "published_at": "2026-02-19T13:36:02.786Z", "organizationCount": 1, "projectCount": 4, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.590Z" + "generated_at": "2026-02-19T13:36:02.786Z" } } \ No newline at end of file diff --git a/new-api-details/topics/ros.json b/new-api-details/topics/ros.json index 7811a622..c9eeed90 100644 --- a/new-api-details/topics/ros.json +++ b/new-api-details/topics/ros.json @@ -1,7 +1,7 @@ { "slug": "ros", "name": "ros", - "published_at": "2026-01-25T16:06:28.565Z", + "published_at": "2026-02-19T13:36:00.654Z", "organizationCount": 2, "projectCount": 48, "years": [ @@ -23,7 +23,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 44, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -96,6 +96,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.565Z" + "generated_at": "2026-02-19T13:36:00.654Z" } } \ No newline at end of file diff --git a/new-api-details/topics/routing-protocols.json b/new-api-details/topics/routing-protocols.json index 6c374d2a..adc75988 100644 --- a/new-api-details/topics/routing-protocols.json +++ b/new-api-details/topics/routing-protocols.json @@ -1,7 +1,7 @@ { "slug": "routing-protocols", "name": "routing protocols", - "published_at": "2026-01-25T16:06:29.834Z", + "published_at": "2026-02-19T13:36:01.553Z", "organizationCount": 1, "projectCount": 74, "years": [ @@ -22,7 +22,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 74, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -76,6 +76,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.834Z" + "generated_at": "2026-02-19T13:36:01.553Z" } } \ No newline at end of file diff --git a/new-api-details/topics/routing.json b/new-api-details/topics/routing.json index c57d241a..2e5e40bb 100644 --- a/new-api-details/topics/routing.json +++ b/new-api-details/topics/routing.json @@ -1,10 +1,11 @@ { "slug": "routing", "name": "routing", - "published_at": "2026-01-25T16:06:28.948Z", + "published_at": "2026-02-19T13:36:01.556Z", "organizationCount": 7, "projectCount": 247, "years": [ + 2026, 2025, 2024, 2023, @@ -18,57 +19,39 @@ ], "organizations": [ { - "slug": "freifunk", - "name": "freifunk", + "slug": "osgeo-open-source-geospatial-foundation", + "name": "OSGeo (Open Source Geospatial Foundation)", "first_year": 2016, - "last_year": 2025, - "total_projects": 74, + "last_year": 2026, + "total_projects": 101, "is_currently_active": true, "active_years": [ 2016, 2017, 2018, 2019, + 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "frrouting", - "name": "FRRouting", - "first_year": 2020, - "last_year": 2022, - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2020, - 2021, - 2022 - ] - }, - { - "slug": "green-navigation", - "name": "Green Navigation", + "slug": "freifunk", + "name": "freifunk", "first_year": 2016, - "last_year": 2017, - "total_projects": 8, + "last_year": 2025, + "total_projects": 74, "is_currently_active": false, "active_years": [ 2016, - 2017 - ] - }, - { - "slug": "internet-health-report", - "name": "Internet Health Report", - "first_year": 2022, - "last_year": 2025, - "total_projects": 15, - "is_currently_active": true, - "active_years": [ + 2017, + 2018, + 2019, + 2021, 2022, 2023, 2024, @@ -79,7 +62,7 @@ "slug": "openstreetmap", "name": "OpenStreetMap", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 45, "is_currently_active": true, "active_years": [ @@ -92,29 +75,49 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "osgeo-open-source-geospatial-foundation", - "name": "OSGeo (Open Source Geospatial Foundation)", - "first_year": 2016, + "slug": "internet-health-report", + "name": "Internet Health Report", + "first_year": 2022, "last_year": 2025, - "total_projects": 101, - "is_currently_active": true, + "total_projects": 15, + "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, 2022, 2023, 2024, 2025 ] }, + { + "slug": "green-navigation", + "name": "Green Navigation", + "first_year": 2016, + "last_year": 2017, + "total_projects": 8, + "is_currently_active": false, + "active_years": [ + 2016, + 2017 + ] + }, + { + "slug": "frrouting", + "name": "FRRouting", + "first_year": 2020, + "last_year": 2022, + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2020, + 2021, + 2022 + ] + }, { "slug": "tungsten-fabric", "name": "Tungsten Fabric", @@ -167,10 +170,14 @@ "2025": { "organizationCount": 4, "projectCount": 24 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.948Z" + "generated_at": "2026-02-19T13:36:01.556Z" } } \ No newline at end of file diff --git a/new-api-details/topics/rover.json b/new-api-details/topics/rover.json index 7380442b..238aa843 100644 --- a/new-api-details/topics/rover.json +++ b/new-api-details/topics/rover.json @@ -1,10 +1,11 @@ { "slug": "rover", "name": "Rover", - "published_at": "2026-01-25T16:06:29.275Z", + "published_at": "2026-02-19T13:36:02.180Z", "organizationCount": 1, "projectCount": 7, "years": [ + 2026, 2024, 2022, 2021 @@ -14,13 +15,14 @@ "slug": "librecube-initiative", "name": "LibreCube Initiative", "first_year": 2021, - "last_year": 2024, + "last_year": 2026, "total_projects": 7, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2021, 2022, - 2024 + 2024, + 2026 ] } ], @@ -36,10 +38,14 @@ "2024": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.275Z" + "generated_at": "2026-02-19T13:36:02.180Z" } } \ No newline at end of file diff --git a/new-api-details/topics/rovers.json b/new-api-details/topics/rovers.json index ea902b58..ea1ce69f 100644 --- a/new-api-details/topics/rovers.json +++ b/new-api-details/topics/rovers.json @@ -1,10 +1,11 @@ { "slug": "rovers", "name": "rovers", - "published_at": "2026-01-25T16:06:28.528Z", + "published_at": "2026-02-19T13:36:00.617Z", "organizationCount": 1, "projectCount": 38, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "ardupilot", "name": "ArduPilot", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 38, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.528Z" + "generated_at": "2026-02-19T13:36:00.617Z" } } \ No newline at end of file diff --git a/new-api-details/topics/rtos.json b/new-api-details/topics/rtos.json index a8f3e4b6..290d6c58 100644 --- a/new-api-details/topics/rtos.json +++ b/new-api-details/topics/rtos.json @@ -1,10 +1,11 @@ { "slug": "rtos", "name": "rtos", - "published_at": "2026-01-25T16:06:28.904Z", + "published_at": "2026-02-19T13:36:01.255Z", "organizationCount": 2, "projectCount": 48, "years": [ + 2026, 2025, 2024, 2023, @@ -17,22 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "embox", - "name": "Embox", - "first_year": 2020, - "last_year": 2020, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2020 - ] - }, { "slug": "rtems-project", "name": "RTEMS Project", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 46, "is_currently_active": true, "active_years": [ @@ -45,7 +35,19 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "embox", + "name": "Embox", + "first_year": 2020, + "last_year": 2020, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2020 ] } ], @@ -89,10 +91,14 @@ "2025": { "organizationCount": 1, "projectCount": 8 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.904Z" + "generated_at": "2026-02-19T13:36:01.255Z" } } \ No newline at end of file diff --git a/new-api-details/topics/ruby.json b/new-api-details/topics/ruby.json index ae4d319b..84b5d616 100644 --- a/new-api-details/topics/ruby.json +++ b/new-api-details/topics/ruby.json @@ -1,7 +1,7 @@ { "slug": "ruby", "name": "ruby", - "published_at": "2026-01-25T16:06:28.923Z", + "published_at": "2026-02-19T13:36:01.438Z", "organizationCount": 1, "projectCount": 4, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.923Z" + "generated_at": "2026-02-19T13:36:01.439Z" } } \ No newline at end of file diff --git a/new-api-details/topics/runtime-systems.json b/new-api-details/topics/runtime-systems.json index 4ff9ea79..18803850 100644 --- a/new-api-details/topics/runtime-systems.json +++ b/new-api-details/topics/runtime-systems.json @@ -1,10 +1,11 @@ { "slug": "runtime-systems", "name": "runtime systems", - "published_at": "2026-01-25T16:06:28.892Z", + "published_at": "2026-02-19T13:36:01.238Z", "organizationCount": 4, "projectCount": 109, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "eclipse-foundation", "name": "Eclipse Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 68, "is_currently_active": true, "active_years": [ @@ -33,7 +34,28 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "stear-group", + "name": "Ste||ar group", + "first_year": 2016, + "last_year": 2026, + "total_projects": 38, + "is_currently_active": true, + "active_years": [ + 2016, + 2017, + 2018, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { @@ -57,25 +79,6 @@ "active_years": [ 2016 ] - }, - { - "slug": "stear-group", - "name": "Ste||ar group", - "first_year": 2016, - "last_year": 2025, - "total_projects": 38, - "is_currently_active": true, - "active_years": [ - 2016, - 2017, - 2018, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 - ] } ], "yearlyStats": { @@ -118,10 +121,14 @@ "2025": { "organizationCount": 2, "projectCount": 13 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.892Z" + "generated_at": "2026-02-19T13:36:01.238Z" } } \ No newline at end of file diff --git a/new-api-details/topics/runtime.json b/new-api-details/topics/runtime.json index cbc7b923..50de387e 100644 --- a/new-api-details/topics/runtime.json +++ b/new-api-details/topics/runtime.json @@ -1,7 +1,7 @@ { "slug": "runtime", "name": "runtime", - "published_at": "2026-01-25T16:06:29.833Z", + "published_at": "2026-02-19T13:36:01.271Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.833Z" + "generated_at": "2026-02-19T13:36:01.271Z" } } \ No newline at end of file diff --git a/new-api-details/topics/runtimes.json b/new-api-details/topics/runtimes.json index d4c08461..2e04cf9a 100644 --- a/new-api-details/topics/runtimes.json +++ b/new-api-details/topics/runtimes.json @@ -1,10 +1,11 @@ { "slug": "runtimes", "name": "runtimes", - "published_at": "2026-01-25T16:06:28.889Z", + "published_at": "2026-02-19T13:36:01.234Z", "organizationCount": 1, "projectCount": 68, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "eclipse-foundation", "name": "Eclipse Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 68, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.889Z" + "generated_at": "2026-02-19T13:36:01.234Z" } } \ No newline at end of file diff --git a/new-api-details/topics/rust.json b/new-api-details/topics/rust.json index ec985864..17bd5b9d 100644 --- a/new-api-details/topics/rust.json +++ b/new-api-details/topics/rust.json @@ -1,10 +1,11 @@ { "slug": "rust", "name": "rust", - "published_at": "2026-01-25T16:06:29.035Z", + "published_at": "2026-02-19T13:36:01.662Z", "organizationCount": 3, "projectCount": 35, "years": [ + 2026, 2025, 2024, 2023, @@ -19,7 +20,7 @@ "slug": "gnu-compiler-collection-gcc", "name": "GNU Compiler Collection (GCC)", "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "total_projects": 34, "is_currently_active": true, "active_years": [ @@ -30,18 +31,8 @@ 2022, 2023, 2024, - 2025 - ] - }, - { - "slug": "seaql", - "name": "SeaQL", - "first_year": 2022, - "last_year": 2022, - "total_projects": 0, - "is_currently_active": false, - "active_years": [ - 2022 + 2025, + 2026 ] }, { @@ -54,6 +45,17 @@ "active_years": [ 2019 ] + }, + { + "slug": "seaql", + "name": "SeaQL", + "first_year": 2022, + "last_year": 2022, + "total_projects": 0, + "is_currently_active": false, + "active_years": [ + 2022 + ] } ], "yearlyStats": { @@ -88,10 +90,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.035Z" + "generated_at": "2026-02-19T13:36:01.662Z" } } \ No newline at end of file diff --git a/new-api-details/topics/saas.json b/new-api-details/topics/saas.json index 149e8e40..59cb03bf 100644 --- a/new-api-details/topics/saas.json +++ b/new-api-details/topics/saas.json @@ -1,7 +1,7 @@ { "slug": "saas", "name": "saas", - "published_at": "2026-01-25T16:06:29.668Z", + "published_at": "2026-02-19T13:36:02.902Z", "organizationCount": 1, "projectCount": 20, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.668Z" + "generated_at": "2026-02-19T13:36:02.902Z" } } \ No newline at end of file diff --git a/new-api-details/topics/safety.json b/new-api-details/topics/safety.json index 5b1f268d..d8e75ab5 100644 --- a/new-api-details/topics/safety.json +++ b/new-api-details/topics/safety.json @@ -1,7 +1,7 @@ { "slug": "safety", "name": "Safety", - "published_at": "2026-01-25T16:06:29.591Z", + "published_at": "2026-02-19T13:36:02.787Z", "organizationCount": 1, "projectCount": 4, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.591Z" + "generated_at": "2026-02-19T13:36:02.787Z" } } \ No newline at end of file diff --git a/new-api-details/topics/samba.json b/new-api-details/topics/samba.json index 32c1da83..79193bba 100644 --- a/new-api-details/topics/samba.json +++ b/new-api-details/topics/samba.json @@ -1,7 +1,7 @@ { "slug": "samba", "name": "samba", - "published_at": "2026-01-25T16:06:29.613Z", + "published_at": "2026-02-19T13:36:02.810Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.613Z" + "generated_at": "2026-02-19T13:36:02.810Z" } } \ No newline at end of file diff --git a/new-api-details/topics/sandbox.json b/new-api-details/topics/sandbox.json index 26d5330e..108d5203 100644 --- a/new-api-details/topics/sandbox.json +++ b/new-api-details/topics/sandbox.json @@ -1,10 +1,11 @@ { "slug": "sandbox", "name": "sandbox", - "published_at": "2026-01-25T16:06:29.678Z", + "published_at": "2026-02-19T13:36:01.753Z", "organizationCount": 3, "projectCount": 145, "years": [ + 2026, 2025, 2024, 2023, @@ -17,22 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "gvisor", - "name": "gVisor", - "first_year": 2021, - "last_year": 2021, - "total_projects": 1, - "is_currently_active": false, - "active_years": [ - 2021 - ] - }, { "slug": "the-honeynet-project", "name": "The Honeynet Project", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 101, "is_currently_active": true, "active_years": [ @@ -45,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -63,6 +54,17 @@ 2020, 2021 ] + }, + { + "slug": "gvisor", + "name": "gVisor", + "first_year": 2021, + "last_year": 2021, + "total_projects": 1, + "is_currently_active": false, + "active_years": [ + 2021 + ] } ], "yearlyStats": { @@ -105,10 +107,14 @@ "2025": { "organizationCount": 1, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.678Z" + "generated_at": "2026-02-19T13:36:01.753Z" } } \ No newline at end of file diff --git a/new-api-details/topics/sat-smt-solving.json b/new-api-details/topics/sat-smt-solving.json index 7ed0f91c..07baf35f 100644 --- a/new-api-details/topics/sat-smt-solving.json +++ b/new-api-details/topics/sat-smt-solving.json @@ -1,7 +1,7 @@ { "slug": "sat-smt-solving", "name": "SAT & SMT solving", - "published_at": "2026-01-25T16:06:29.636Z", + "published_at": "2026-02-19T13:36:02.837Z", "organizationCount": 1, "projectCount": 14, "years": [ @@ -18,7 +18,7 @@ "first_year": 2018, "last_year": 2025, "total_projects": 14, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2018, 2019, @@ -52,6 +52,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.636Z" + "generated_at": "2026-02-19T13:36:02.837Z" } } \ No newline at end of file diff --git a/new-api-details/topics/satellite-data.json b/new-api-details/topics/satellite-data.json index 0c43c98d..4c32341a 100644 --- a/new-api-details/topics/satellite-data.json +++ b/new-api-details/topics/satellite-data.json @@ -1,7 +1,7 @@ { "slug": "satellite-data", "name": "satellite data", - "published_at": "2026-01-25T16:06:29.267Z", + "published_at": "2026-02-19T13:36:02.163Z", "organizationCount": 1, "projectCount": 7, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.267Z" + "generated_at": "2026-02-19T13:36:02.163Z" } } \ No newline at end of file diff --git a/new-api-details/topics/save-restore.json b/new-api-details/topics/save-restore.json index d4956767..ac101edc 100644 --- a/new-api-details/topics/save-restore.json +++ b/new-api-details/topics/save-restore.json @@ -1,10 +1,11 @@ { "slug": "save-restore", "name": "save/restore", - "published_at": "2026-01-25T16:06:28.680Z", + "published_at": "2026-02-19T13:36:01.088Z", "organizationCount": 1, "projectCount": 18, "years": [ + 2026, 2025, 2024, 2023, @@ -18,7 +19,7 @@ "slug": "criu", "name": "CRIU", "first_year": 2019, - "last_year": 2025, + "last_year": 2026, "total_projects": 18, "is_currently_active": true, "active_years": [ @@ -28,7 +29,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -60,10 +62,14 @@ "2025": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.680Z" + "generated_at": "2026-02-19T13:36:01.088Z" } } \ No newline at end of file diff --git a/new-api-details/topics/sbom.json b/new-api-details/topics/sbom.json index 677f0e97..eb708030 100644 --- a/new-api-details/topics/sbom.json +++ b/new-api-details/topics/sbom.json @@ -1,10 +1,11 @@ { "slug": "sbom", "name": "SBOM", - "published_at": "2026-01-25T16:06:28.424Z", + "published_at": "2026-02-19T13:36:00.355Z", "organizationCount": 2, "projectCount": 34, "years": [ + 2026, 2025, 2024, 2023, @@ -19,7 +20,7 @@ "slug": "aboutcode", "name": "AboutCode", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 32, "is_currently_active": true, "active_years": [ @@ -30,18 +31,20 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "sw360", "name": "SW360", "first_year": 2025, - "last_year": 2025, + "last_year": 2026, "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] } ], @@ -77,10 +80,14 @@ "2025": { "organizationCount": 2, "projectCount": 7 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.424Z" + "generated_at": "2026-02-19T13:36:00.355Z" } } \ No newline at end of file diff --git a/new-api-details/topics/scalability.json b/new-api-details/topics/scalability.json index 45726a52..70de43be 100644 --- a/new-api-details/topics/scalability.json +++ b/new-api-details/topics/scalability.json @@ -1,7 +1,7 @@ { "slug": "scalability", "name": "scalability", - "published_at": "2026-01-25T16:06:28.573Z", + "published_at": "2026-02-19T13:36:00.667Z", "organizationCount": 1, "projectCount": 19, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.573Z" + "generated_at": "2026-02-19T13:36:00.667Z" } } \ No newline at end of file diff --git a/new-api-details/topics/scanning.json b/new-api-details/topics/scanning.json index 4ddd72b8..c17026a5 100644 --- a/new-api-details/topics/scanning.json +++ b/new-api-details/topics/scanning.json @@ -1,10 +1,11 @@ { "slug": "scanning", "name": "scanning", - "published_at": "2026-01-25T16:06:28.421Z", + "published_at": "2026-02-19T13:36:00.344Z", "organizationCount": 2, "projectCount": 35, "years": [ + 2026, 2025, 2024, 2023, @@ -19,7 +20,7 @@ "slug": "aboutcode", "name": "AboutCode", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 32, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -77,10 +79,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.421Z" + "generated_at": "2026-02-19T13:36:00.344Z" } } \ No newline at end of file diff --git a/new-api-details/topics/school-apps.json b/new-api-details/topics/school-apps.json index 32b928ca..24c5bb81 100644 --- a/new-api-details/topics/school-apps.json +++ b/new-api-details/topics/school-apps.json @@ -1,7 +1,7 @@ { "slug": "school-apps", "name": "school apps", - "published_at": "2026-01-25T16:06:29.543Z", + "published_at": "2026-02-19T13:36:02.720Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.543Z" + "generated_at": "2026-02-19T13:36:02.720Z" } } \ No newline at end of file diff --git a/new-api-details/topics/school-system.json b/new-api-details/topics/school-system.json index d0b65469..6394a5ea 100644 --- a/new-api-details/topics/school-system.json +++ b/new-api-details/topics/school-system.json @@ -1,7 +1,7 @@ { "slug": "school-system", "name": "school system", - "published_at": "2026-01-25T16:06:29.371Z", + "published_at": "2026-02-19T13:36:02.354Z", "organizationCount": 1, "projectCount": 7, "years": [ @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.371Z" + "generated_at": "2026-02-19T13:36:02.354Z" } } \ No newline at end of file diff --git a/new-api-details/topics/school-systems.json b/new-api-details/topics/school-systems.json index 3146da97..e8ce6bef 100644 --- a/new-api-details/topics/school-systems.json +++ b/new-api-details/topics/school-systems.json @@ -1,7 +1,7 @@ { "slug": "school-systems", "name": "school systems", - "published_at": "2026-01-25T16:06:29.370Z", + "published_at": "2026-02-19T13:36:02.353Z", "organizationCount": 1, "projectCount": 7, "years": [ @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.370Z" + "generated_at": "2026-02-19T13:36:02.353Z" } } \ No newline at end of file diff --git a/new-api-details/topics/science-and-enineering.json b/new-api-details/topics/science-and-enineering.json index 5c7796d5..f78a6532 100644 --- a/new-api-details/topics/science-and-enineering.json +++ b/new-api-details/topics/science-and-enineering.json @@ -1,7 +1,7 @@ { "slug": "science-and-enineering", "name": "science and enineering", - "published_at": "2026-01-25T16:06:28.793Z", + "published_at": "2026-02-19T13:36:01.075Z", "organizationCount": 1, "projectCount": 10, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.793Z" + "generated_at": "2026-02-19T13:36:01.075Z" } } \ No newline at end of file diff --git a/new-api-details/topics/science-and-medicine.json b/new-api-details/topics/science-and-medicine.json index b16b5577..bbd8ad63 100644 --- a/new-api-details/topics/science-and-medicine.json +++ b/new-api-details/topics/science-and-medicine.json @@ -1,10 +1,11 @@ { "slug": "science-and-medicine", "name": "science and medicine", - "published_at": "2026-01-25T16:06:28.604Z", + "published_at": "2026-02-19T13:36:00.764Z", "organizationCount": 6, "projectCount": 539, "years": [ + 2026, 2025, 2024, 2023, @@ -18,51 +19,31 @@ ], "organizations": [ { - "slug": "biomedical-informatics-emory-university", - "name": "Biomedical Informatics, Emory University", + "slug": "python-software-foundation", + "name": "Python Software Foundation", "first_year": 2016, - "last_year": 2019, - "total_projects": 9, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 277, + "is_currently_active": true, "active_years": [ 2016, - 2019 - ] - }, - { - "slug": "camicroscope", - "name": "caMicroscope", - "first_year": 2020, - "last_year": 2024, - "total_projects": 13, - "is_currently_active": false, - "active_years": [ + 2017, + 2018, + 2019, 2020, - 2021, - 2023, - 2024 - ] - }, - { - "slug": "department-of-biomedical-informatics-emory-university", - "name": "Department of Biomedical Informatics, Emory University", - "first_year": 2021, - "last_year": 2025, - "total_projects": 27, - "is_currently_active": true, - "active_years": [ 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "machine-learning-for-science-ml4sci", "name": "Machine Learning for Science (ML4SCI)", "first_year": 2021, - "last_year": 2025, + "last_year": 2026, "total_projects": 119, "is_currently_active": true, "active_years": [ @@ -70,14 +51,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "openmrs", "name": "OpenMRS", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 94, "is_currently_active": true, "active_years": [ @@ -90,28 +72,50 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "python-software-foundation", - "name": "Python Software Foundation", - "first_year": 2016, + "slug": "department-of-biomedical-informatics-emory-university", + "name": "Department of Biomedical Informatics, Emory University", + "first_year": 2021, "last_year": 2025, - "total_projects": 277, - "is_currently_active": true, + "total_projects": 27, + "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, 2021, 2022, 2023, 2024, 2025 ] + }, + { + "slug": "camicroscope", + "name": "caMicroscope", + "first_year": 2020, + "last_year": 2024, + "total_projects": 13, + "is_currently_active": false, + "active_years": [ + 2020, + 2021, + 2023, + 2024 + ] + }, + { + "slug": "biomedical-informatics-emory-university", + "name": "Biomedical Informatics, Emory University", + "first_year": 2016, + "last_year": 2019, + "total_projects": 9, + "is_currently_active": false, + "active_years": [ + 2016, + 2019 + ] } ], "yearlyStats": { @@ -154,10 +158,14 @@ "2025": { "organizationCount": 4, "projectCount": 59 + }, + "2026": { + "organizationCount": 3, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.604Z" + "generated_at": "2026-02-19T13:36:00.764Z" } } \ No newline at end of file diff --git a/new-api-details/topics/science.json b/new-api-details/topics/science.json index 969cbfc0..d1c8341d 100644 --- a/new-api-details/topics/science.json +++ b/new-api-details/topics/science.json @@ -1,10 +1,11 @@ { "slug": "science", "name": "science", - "published_at": "2026-01-25T16:06:28.694Z", + "published_at": "2026-02-19T13:36:00.916Z", "organizationCount": 22, "projectCount": 1322, "years": [ + 2026, 2025, 2024, 2023, @@ -18,54 +19,31 @@ ], "organizations": [ { - "slug": "canadian-centre-for-computational-genomics", - "name": "Canadian Centre for Computational Genomics", + "slug": "python-software-foundation", + "name": "Python Software Foundation", "first_year": 2016, - "last_year": 2020, - "total_projects": 15, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 277, + "is_currently_active": true, "active_years": [ 2016, + 2017, 2018, 2019, - 2020 - ] - }, - { - "slug": "fortran-lang", - "name": "Fortran-lang", - "first_year": 2021, - "last_year": 2025, - "total_projects": 21, - "is_currently_active": true, - "active_years": [ + 2020, 2021, 2022, 2023, 2024, - 2025 - ] - }, - { - "slug": "gprmax", - "name": "gprMax", - "first_year": 2019, - "last_year": 2025, - "total_projects": 18, - "is_currently_active": true, - "active_years": [ - 2019, - 2021, - 2023, - 2024, - 2025 + 2025, + 2026 ] }, { "slug": "incf", "name": "INCF", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 211, "is_currently_active": true, "active_years": [ @@ -78,29 +56,15 @@ 2022, 2023, 2024, - 2025 - ] - }, - { - "slug": "jabref-ev", - "name": "JabRef e.V.", - "first_year": 2019, - "last_year": 2025, - "total_projects": 11, - "is_currently_active": true, - "active_years": [ - 2019, - 2021, - 2022, - 2024, - 2025 + 2025, + 2026 ] }, { "slug": "kde-community", "name": "KDE Community", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 167, "is_currently_active": true, "active_years": [ @@ -113,15 +77,16 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "mbdyn", - "name": "MBDyn", + "slug": "the-julia-language", + "name": "The Julia Language", "first_year": 2016, - "last_year": 2025, - "total_projects": 13, + "last_year": 2026, + "total_projects": 140, "is_currently_active": true, "active_years": [ 2016, @@ -130,33 +95,40 @@ 2020, 2021, 2022, + 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "mdanalysis", - "name": "MDAnalysis", - "first_year": 2020, - "last_year": 2025, - "total_projects": 16, + "slug": "osgeo-open-source-geospatial-foundation", + "name": "OSGeo (Open Source Geospatial Foundation)", + "first_year": 2016, + "last_year": 2026, + "total_projects": 101, "is_currently_active": true, "active_years": [ + 2016, + 2017, + 2018, + 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "open-chemistry", - "name": "Open Chemistry", + "slug": "openastronomy", + "name": "OpenAstronomy", "first_year": 2016, - "last_year": 2024, - "total_projects": 51, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 77, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -166,15 +138,17 @@ 2021, 2022, 2023, - 2024 + 2024, + 2025, + 2026 ] }, { - "slug": "openastronomy", - "name": "OpenAstronomy", + "slug": "sympy", + "name": "SymPy", "first_year": 2016, - "last_year": 2025, - "total_projects": 77, + "last_year": 2026, + "total_projects": 63, "is_currently_active": true, "active_years": [ 2016, @@ -186,15 +160,16 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "osgeo-open-source-geospatial-foundation", - "name": "OSGeo (Open Source Geospatial Foundation)", + "slug": "sagemath", + "name": "SageMath", "first_year": 2016, - "last_year": 2025, - "total_projects": 101, + "last_year": 2026, + "total_projects": 55, "is_currently_active": true, "active_years": [ 2016, @@ -206,29 +181,27 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "pocket-science-lab", - "name": "Pocket Science Lab", - "first_year": 2018, - "last_year": 2018, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2018 - ] - }, - { - "slug": "prism-model-checker", - "name": "PRISM Model Checker", + "slug": "open-chemistry", + "name": "Open Chemistry", "first_year": 2016, - "last_year": 2016, - "total_projects": 5, + "last_year": 2024, + "total_projects": 51, "is_currently_active": false, "active_years": [ - 2016 + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024 ] }, { @@ -248,57 +221,66 @@ ] }, { - "slug": "python-software-foundation", - "name": "Python Software Foundation", - "first_year": 2016, - "last_year": 2025, - "total_projects": 277, + "slug": "fortran-lang", + "name": "Fortran-lang", + "first_year": 2021, + "last_year": 2026, + "total_projects": 21, "is_currently_active": true, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "ruby-science-foundation", - "name": "Ruby Science Foundation", - "first_year": 2016, - "last_year": 2019, - "total_projects": 13, - "is_currently_active": false, + "slug": "gprmax", + "name": "gprMax", + "first_year": 2019, + "last_year": 2026, + "total_projects": 18, + "is_currently_active": true, "active_years": [ - 2016, - 2017, - 2018, - 2019 + 2019, + 2021, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "sagemath", - "name": "SageMath", - "first_year": 2016, - "last_year": 2025, - "total_projects": 55, + "slug": "mdanalysis", + "name": "MDAnalysis", + "first_year": 2020, + "last_year": 2026, + "total_projects": 16, "is_currently_active": true, "active_years": [ - 2016, - 2017, - 2018, - 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "canadian-centre-for-computational-genomics", + "name": "Canadian Centre for Computational Genomics", + "first_year": 2016, + "last_year": 2020, + "total_projects": 15, + "is_currently_active": false, + "active_years": [ + 2016, + 2018, + 2019, + 2020 ] }, { @@ -315,25 +297,53 @@ ] }, { - "slug": "sympy", - "name": "SymPy", + "slug": "mbdyn", + "name": "MBDyn", "first_year": 2016, "last_year": 2025, - "total_projects": 63, - "is_currently_active": true, + "total_projects": 13, + "is_currently_active": false, "active_years": [ 2016, 2017, - 2018, 2019, 2020, 2021, 2022, - 2023, 2024, 2025 ] }, + { + "slug": "ruby-science-foundation", + "name": "Ruby Science Foundation", + "first_year": 2016, + "last_year": 2019, + "total_projects": 13, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2018, + 2019 + ] + }, + { + "slug": "jabref-ev", + "name": "JabRef e.V.", + "first_year": 2019, + "last_year": 2026, + "total_projects": 11, + "is_currently_active": true, + "active_years": [ + 2019, + 2021, + 2022, + 2024, + 2025, + 2026 + ] + }, { "slug": "tardis-sn", "name": "TARDIS SN", @@ -347,6 +357,17 @@ 2021 ] }, + { + "slug": "prism-model-checker", + "name": "PRISM Model Checker", + "first_year": 2016, + "last_year": 2016, + "total_projects": 5, + "is_currently_active": false, + "active_years": [ + 2016 + ] + }, { "slug": "the-center-for-connected-learning-and-computer-based-modeling", "name": "The Center for Connected Learning and Computer-Based Modeling", @@ -362,22 +383,14 @@ ] }, { - "slug": "the-julia-language", - "name": "The Julia Language", - "first_year": 2016, - "last_year": 2025, - "total_projects": 140, - "is_currently_active": true, + "slug": "pocket-science-lab", + "name": "Pocket Science Lab", + "first_year": 2018, + "last_year": 2018, + "total_projects": 2, + "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2018 ] } ], @@ -421,10 +434,14 @@ "2025": { "organizationCount": 13, "projectCount": 119 + }, + "2026": { + "organizationCount": 12, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.694Z" + "generated_at": "2026-02-19T13:36:00.916Z" } } \ No newline at end of file diff --git a/new-api-details/topics/scientific-computing.json b/new-api-details/topics/scientific-computing.json index 61e2c377..6589b189 100644 --- a/new-api-details/topics/scientific-computing.json +++ b/new-api-details/topics/scientific-computing.json @@ -1,10 +1,11 @@ { "slug": "scientific-computing", "name": "scientific computing", - "published_at": "2026-01-25T16:06:28.860Z", - "organizationCount": 11, + "published_at": "2026-02-19T13:36:01.203Z", + "organizationCount": 12, "projectCount": 659, "years": [ + 2026, 2025, 2024, 2023, @@ -18,22 +19,11 @@ ], "organizations": [ { - "slug": "distributed-and-unified-numerics-environment-dune", - "name": "Distributed and Unified Numerics Environment (DUNE)", - "first_year": 2016, - "last_year": 2016, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2016 - ] - }, - { - "slug": "gnu-octave", - "name": "GNU Octave", + "slug": "numfocus", + "name": "NumFOCUS", "first_year": 2016, - "last_year": 2025, - "total_projects": 23, + "last_year": 2026, + "total_projects": 277, "is_currently_active": true, "active_years": [ 2016, @@ -45,26 +35,16 @@ 2022, 2023, 2024, - 2025 - ] - }, - { - "slug": "inria-foundation", - "name": "Inria Foundation", - "first_year": 2018, - "last_year": 2018, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2018 + 2025, + 2026 ] }, { - "slug": "mbdyn", - "name": "MBDyn", + "slug": "the-julia-language", + "name": "The Julia Language", "first_year": 2016, - "last_year": 2025, - "total_projects": 13, + "last_year": 2026, + "total_projects": 140, "is_currently_active": true, "active_years": [ 2016, @@ -73,15 +53,17 @@ 2020, 2021, 2022, + 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "national-resource-for-network-biology-nrnb", "name": "National Resource for Network Biology (NRNB)", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 119, "is_currently_active": true, "active_years": [ @@ -94,15 +76,35 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "numfocus", - "name": "NumFOCUS", + "slug": "open-chemistry", + "name": "Open Chemistry", "first_year": 2016, - "last_year": 2025, - "total_projects": 277, + "last_year": 2024, + "total_projects": 51, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024 + ] + }, + { + "slug": "gnu-octave", + "name": "GNU Octave", + "first_year": 2016, + "last_year": 2026, + "total_projects": 23, "is_currently_active": true, "active_years": [ 2016, @@ -114,26 +116,26 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "open-chemistry", - "name": "Open Chemistry", + "slug": "mbdyn", + "name": "MBDyn", "first_year": 2016, - "last_year": 2024, - "total_projects": 51, + "last_year": 2025, + "total_projects": 13, "is_currently_active": false, "active_years": [ 2016, 2017, - 2018, 2019, 2020, 2021, 2022, - 2023, - 2024 + 2024, + 2025 ] }, { @@ -168,31 +170,46 @@ "slug": "stdlib", "name": "stdlib", "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "total_projects": 9, "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "the-julia-language", - "name": "The Julia Language", + "slug": "distributed-and-unified-numerics-environment-dune", + "name": "Distributed and Unified Numerics Environment (DUNE)", "first_year": 2016, - "last_year": 2025, - "total_projects": 140, + "last_year": 2016, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2016 + ] + }, + { + "slug": "inria-foundation", + "name": "Inria Foundation", + "first_year": 2018, + "last_year": 2018, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2018 + ] + }, + { + "slug": "precice", + "name": "preCICE", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, "is_currently_active": true, "active_years": [ - 2016, - 2017, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2026 ] } ], @@ -236,10 +253,14 @@ "2025": { "organizationCount": 6, "projectCount": 63 + }, + "2026": { + "organizationCount": 6, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.860Z" + "generated_at": "2026-02-19T13:36:01.203Z" } } \ No newline at end of file diff --git a/new-api-details/topics/scientific-visualization.json b/new-api-details/topics/scientific-visualization.json index 5a848da0..36656fd8 100644 --- a/new-api-details/topics/scientific-visualization.json +++ b/new-api-details/topics/scientific-visualization.json @@ -1,10 +1,11 @@ { "slug": "scientific-visualization", "name": "scientific visualization", - "published_at": "2026-01-25T16:06:29.072Z", + "published_at": "2026-02-19T13:36:01.584Z", "organizationCount": 8, "projectCount": 140, "years": [ + 2026, 2025, 2024, 2023, @@ -17,20 +18,6 @@ 2016 ], "organizations": [ - { - "slug": "genes-genomes-and-variation", - "name": "Genes, Genomes and Variation", - "first_year": 2016, - "last_year": 2019, - "total_projects": 12, - "is_currently_active": false, - "active_years": [ - 2016, - 2017, - 2018, - 2019 - ] - }, { "slug": "open-chemistry", "name": "Open Chemistry", @@ -50,24 +37,11 @@ 2024 ] }, - { - "slug": "orcasound", - "name": "Orcasound", - "first_year": 2020, - "last_year": 2022, - "total_projects": 10, - "is_currently_active": false, - "active_years": [ - 2020, - 2021, - 2022 - ] - }, { "slug": "pecan-project", "name": "PEcAn Project", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 30, "is_currently_active": true, "active_years": [ @@ -79,19 +53,21 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "qc-devs", - "name": "QC-Devs", - "first_year": 2024, - "last_year": 2025, - "total_projects": 7, - "is_currently_active": true, + "slug": "scilab", + "name": "Scilab", + "first_year": 2016, + "last_year": 2018, + "total_projects": 14, + "is_currently_active": false, "active_years": [ - 2024, - 2025 + 2016, + 2017, + 2018 ] }, { @@ -109,16 +85,43 @@ ] }, { - "slug": "scilab", - "name": "Scilab", + "slug": "genes-genomes-and-variation", + "name": "Genes, Genomes and Variation", "first_year": 2016, - "last_year": 2018, - "total_projects": 14, + "last_year": 2019, + "total_projects": 12, "is_currently_active": false, "active_years": [ 2016, 2017, - 2018 + 2018, + 2019 + ] + }, + { + "slug": "orcasound", + "name": "Orcasound", + "first_year": 2020, + "last_year": 2022, + "total_projects": 10, + "is_currently_active": false, + "active_years": [ + 2020, + 2021, + 2022 + ] + }, + { + "slug": "qc-devs", + "name": "QC-Devs", + "first_year": 2024, + "last_year": 2026, + "total_projects": 7, + "is_currently_active": true, + "active_years": [ + 2024, + 2025, + 2026 ] }, { @@ -175,10 +178,14 @@ "2025": { "organizationCount": 2, "projectCount": 9 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.072Z" + "generated_at": "2026-02-19T13:36:01.584Z" } } \ No newline at end of file diff --git a/new-api-details/topics/scraping.json b/new-api-details/topics/scraping.json index d08eafb3..a5a9216f 100644 --- a/new-api-details/topics/scraping.json +++ b/new-api-details/topics/scraping.json @@ -1,7 +1,7 @@ { "slug": "scraping", "name": "scraping", - "published_at": "2026-01-25T16:06:29.452Z", + "published_at": "2026-02-19T13:36:02.519Z", "organizationCount": 1, "projectCount": 1, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.452Z" + "generated_at": "2026-02-19T13:36:02.519Z" } } \ No newline at end of file diff --git a/new-api-details/topics/scratch.json b/new-api-details/topics/scratch.json index 75b0451b..0fcd428d 100644 --- a/new-api-details/topics/scratch.json +++ b/new-api-details/topics/scratch.json @@ -1,10 +1,11 @@ { "slug": "scratch", "name": "scratch", - "published_at": "2026-01-25T16:06:29.172Z", + "published_at": "2026-02-19T13:36:01.869Z", "organizationCount": 1, "projectCount": 84, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "international-catrobat-association", "name": "International Catrobat Association", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 84, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.172Z" + "generated_at": "2026-02-19T13:36:01.869Z" } } \ No newline at end of file diff --git a/new-api-details/topics/screen-reader.json b/new-api-details/topics/screen-reader.json index 2a8d170e..22982c36 100644 --- a/new-api-details/topics/screen-reader.json +++ b/new-api-details/topics/screen-reader.json @@ -1,7 +1,7 @@ { "slug": "screen-reader", "name": "screen reader", - "published_at": "2026-01-25T16:06:29.391Z", + "published_at": "2026-02-19T13:36:02.444Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.391Z" + "generated_at": "2026-02-19T13:36:02.444Z" } } \ No newline at end of file diff --git a/new-api-details/topics/screencapture.json b/new-api-details/topics/screencapture.json index 0dd572b4..e71ef632 100644 --- a/new-api-details/topics/screencapture.json +++ b/new-api-details/topics/screencapture.json @@ -1,7 +1,7 @@ { "slug": "screencapture", "name": "ScreenCapture", - "published_at": "2026-01-25T16:06:29.771Z", + "published_at": "2026-02-19T13:36:03.122Z", "organizationCount": 1, "projectCount": 7, "years": [ @@ -15,7 +15,7 @@ "first_year": 2024, "last_year": 2025, "total_projects": 7, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2024, 2025 @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.771Z" + "generated_at": "2026-02-19T13:36:03.122Z" } } \ No newline at end of file diff --git a/new-api-details/topics/scripting-languages.json b/new-api-details/topics/scripting-languages.json index abe2d755..b8df90a6 100644 --- a/new-api-details/topics/scripting-languages.json +++ b/new-api-details/topics/scripting-languages.json @@ -1,10 +1,11 @@ { "slug": "scripting-languages", "name": "scripting languages", - "published_at": "2026-01-25T16:06:29.262Z", + "published_at": "2026-02-19T13:36:02.138Z", "organizationCount": 1, "projectCount": 43, "years": [ + 2026, 2025, 2024, 2021, @@ -19,7 +20,7 @@ "slug": "lablua", "name": "LabLua", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 43, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2020, 2021, 2024, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.262Z" + "generated_at": "2026-02-19T13:36:02.138Z" } } \ No newline at end of file diff --git a/new-api-details/topics/scripting.json b/new-api-details/topics/scripting.json index c467ead2..bfc903b2 100644 --- a/new-api-details/topics/scripting.json +++ b/new-api-details/topics/scripting.json @@ -1,10 +1,11 @@ { "slug": "scripting", "name": "scripting", - "published_at": "2026-01-25T16:06:29.261Z", + "published_at": "2026-02-19T13:36:02.136Z", "organizationCount": 1, "projectCount": 43, "years": [ + 2026, 2025, 2024, 2021, @@ -19,7 +20,7 @@ "slug": "lablua", "name": "LabLua", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 43, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2020, 2021, 2024, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.261Z" + "generated_at": "2026-02-19T13:36:02.136Z" } } \ No newline at end of file diff --git a/new-api-details/topics/sdlc.json b/new-api-details/topics/sdlc.json index 28ef8d67..1334bb1a 100644 --- a/new-api-details/topics/sdlc.json +++ b/new-api-details/topics/sdlc.json @@ -1,10 +1,11 @@ { "slug": "sdlc", "name": "sdlc", - "published_at": "2026-01-25T16:06:29.420Z", + "published_at": "2026-02-19T13:36:02.668Z", "organizationCount": 1, "projectCount": 102, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "owasp-foundation", "name": "OWASP Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 102, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 15 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.420Z" + "generated_at": "2026-02-19T13:36:02.668Z" } } \ No newline at end of file diff --git a/new-api-details/topics/sdn.json b/new-api-details/topics/sdn.json index 241d65c3..6e18d342 100644 --- a/new-api-details/topics/sdn.json +++ b/new-api-details/topics/sdn.json @@ -1,10 +1,11 @@ { "slug": "sdn", "name": "sdn", - "published_at": "2026-01-25T16:06:29.513Z", + "published_at": "2026-02-19T13:36:02.653Z", "organizationCount": 1, "projectCount": 26, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "openwisp", "name": "OpenWISP", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 26, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.513Z" + "generated_at": "2026-02-19T13:36:02.653Z" } } \ No newline at end of file diff --git a/new-api-details/topics/sdr.json b/new-api-details/topics/sdr.json index 8ce2fee9..d6d75994 100644 --- a/new-api-details/topics/sdr.json +++ b/new-api-details/topics/sdr.json @@ -1,10 +1,11 @@ { "slug": "sdr", "name": "SDR", - "published_at": "2026-01-25T16:06:28.828Z", + "published_at": "2026-02-19T13:36:01.168Z", "organizationCount": 1, "projectCount": 78, "years": [ + 2026, 2025, 2024, 2022, @@ -19,7 +20,7 @@ "slug": "debian", "name": "Debian", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 78, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.828Z" + "generated_at": "2026-02-19T13:36:01.168Z" } } \ No newline at end of file diff --git a/new-api-details/topics/seamless.json b/new-api-details/topics/seamless.json index 4ee5a061..8e094b45 100644 --- a/new-api-details/topics/seamless.json +++ b/new-api-details/topics/seamless.json @@ -1,7 +1,7 @@ { "slug": "seamless", "name": "seamless", - "published_at": "2026-01-25T16:06:29.888Z", + "published_at": "2026-02-19T13:36:03.168Z", "organizationCount": 1, "projectCount": 0, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.888Z" + "generated_at": "2026-02-19T13:36:03.168Z" } } \ No newline at end of file diff --git a/new-api-details/topics/search-engines.json b/new-api-details/topics/search-engines.json index 0550b55f..4a9745b8 100644 --- a/new-api-details/topics/search-engines.json +++ b/new-api-details/topics/search-engines.json @@ -1,7 +1,7 @@ { "slug": "search-engines", "name": "Search Engines", - "published_at": "2026-01-25T16:06:29.574Z", + "published_at": "2026-02-19T13:36:02.769Z", "organizationCount": 2, "projectCount": 5, "years": [ @@ -9,17 +9,6 @@ 2022 ], "organizations": [ - { - "slug": "qdrant", - "name": "Qdrant", - "first_year": 2023, - "last_year": 2023, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2023 - ] - }, { "slug": "semi-technologies", "name": "Semi Technologies", @@ -30,6 +19,17 @@ "active_years": [ 2022 ] + }, + { + "slug": "qdrant", + "name": "Qdrant", + "first_year": 2023, + "last_year": 2023, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2023 + ] } ], "yearlyStats": { @@ -44,6 +44,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.574Z" + "generated_at": "2026-02-19T13:36:02.769Z" } } \ No newline at end of file diff --git a/new-api-details/topics/search.json b/new-api-details/topics/search.json index 5bb39efe..971d463f 100644 --- a/new-api-details/topics/search.json +++ b/new-api-details/topics/search.json @@ -1,10 +1,11 @@ { "slug": "search", "name": "search", - "published_at": "2026-01-25T16:06:28.900Z", + "published_at": "2026-02-19T13:36:01.248Z", "organizationCount": 5, "projectCount": 180, "years": [ + 2026, 2025, 2024, 2022, @@ -16,23 +17,11 @@ 2016 ], "organizations": [ - { - "slug": "elastic", - "name": "Elastic", - "first_year": 2018, - "last_year": 2020, - "total_projects": 4, - "is_currently_active": false, - "active_years": [ - 2018, - 2020 - ] - }, { "slug": "fossasia", "name": "FOSSASIA", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 140, "is_currently_active": true, "active_years": [ @@ -41,33 +30,23 @@ 2018, 2019, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "joplin", "name": "Joplin", "first_year": 2020, - "last_year": 2024, + "last_year": 2026, "total_projects": 17, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2020, 2021, 2022, - 2024 - ] - }, - { - "slug": "worldbrainio-verifying-the-internet", - "name": "WorldBrain.io - Verifying the Internet", - "first_year": 2017, - "last_year": 2018, - "total_projects": 4, - "is_currently_active": false, - "active_years": [ - 2017, - 2018 + 2024, + 2026 ] }, { @@ -84,6 +63,30 @@ 2019, 2020 ] + }, + { + "slug": "elastic", + "name": "Elastic", + "first_year": 2018, + "last_year": 2020, + "total_projects": 4, + "is_currently_active": false, + "active_years": [ + 2018, + 2020 + ] + }, + { + "slug": "worldbrainio-verifying-the-internet", + "name": "WorldBrain.io - Verifying the Internet", + "first_year": 2017, + "last_year": 2018, + "total_projects": 4, + "is_currently_active": false, + "active_years": [ + 2017, + 2018 + ] } ], "yearlyStats": { @@ -122,10 +125,14 @@ "2025": { "organizationCount": 1, "projectCount": 20 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.900Z" + "generated_at": "2026-02-19T13:36:01.248Z" } } \ No newline at end of file diff --git a/new-api-details/topics/secure-development.json b/new-api-details/topics/secure-development.json index 4f454285..5a45a09a 100644 --- a/new-api-details/topics/secure-development.json +++ b/new-api-details/topics/secure-development.json @@ -1,10 +1,11 @@ { "slug": "secure-development", "name": "secure development", - "published_at": "2026-01-25T16:06:28.377Z", + "published_at": "2026-02-19T13:36:00.403Z", "organizationCount": 2, "projectCount": 112, "years": [ + 2026, 2025, 2024, 2023, @@ -17,38 +18,40 @@ ], "organizations": [ { - "slug": "aflplusplus", - "name": "AFLplusplus", - "first_year": 2020, - "last_year": 2025, - "total_projects": 10, + "slug": "owasp-foundation", + "name": "OWASP Foundation", + "first_year": 2016, + "last_year": 2026, + "total_projects": 102, "is_currently_active": true, "active_years": [ + 2016, + 2018, + 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "owasp-foundation", - "name": "OWASP Foundation", - "first_year": 2016, - "last_year": 2025, - "total_projects": 102, + "slug": "aflplusplus", + "name": "AFLplusplus", + "first_year": 2020, + "last_year": 2026, + "total_projects": 10, "is_currently_active": true, "active_years": [ - 2016, - 2018, - 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -88,10 +91,14 @@ "2025": { "organizationCount": 2, "projectCount": 16 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.377Z" + "generated_at": "2026-02-19T13:36:00.403Z" } } \ No newline at end of file diff --git a/new-api-details/topics/secure-messaging.json b/new-api-details/topics/secure-messaging.json index 368c5747..c281ca1e 100644 --- a/new-api-details/topics/secure-messaging.json +++ b/new-api-details/topics/secure-messaging.json @@ -1,7 +1,7 @@ { "slug": "secure-messaging", "name": "Secure Messaging", - "published_at": "2026-01-25T16:06:29.333Z", + "published_at": "2026-02-19T13:36:02.234Z", "organizationCount": 1, "projectCount": 29, "years": [ @@ -64,6 +64,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.333Z" + "generated_at": "2026-02-19T13:36:02.234Z" } } \ No newline at end of file diff --git a/new-api-details/topics/security-and-privacy.json b/new-api-details/topics/security-and-privacy.json index 9bf81ef2..f75ac680 100644 --- a/new-api-details/topics/security-and-privacy.json +++ b/new-api-details/topics/security-and-privacy.json @@ -1,7 +1,7 @@ { "slug": "security-and-privacy", "name": "security and privacy", - "published_at": "2026-01-25T16:06:28.590Z", + "published_at": "2026-02-19T13:36:00.716Z", "organizationCount": 1, "projectCount": 20, "years": [ @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.590Z" + "generated_at": "2026-02-19T13:36:00.716Z" } } \ No newline at end of file diff --git a/new-api-details/topics/security-and-software-bill-of-materials.json b/new-api-details/topics/security-and-software-bill-of-materials.json index b5a1e75c..70b03fee 100644 --- a/new-api-details/topics/security-and-software-bill-of-materials.json +++ b/new-api-details/topics/security-and-software-bill-of-materials.json @@ -1,7 +1,7 @@ { "slug": "security-and-software-bill-of-materials", "name": "security and software bill of materials", - "published_at": "2026-01-25T16:06:28.664Z", + "published_at": "2026-02-19T13:36:01.000Z", "organizationCount": 1, "projectCount": 29, "years": [ @@ -19,7 +19,7 @@ "first_year": 2018, "last_year": 2025, "total_projects": 29, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2018, 2019, @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.664Z" + "generated_at": "2026-02-19T13:36:01.000Z" } } \ No newline at end of file diff --git a/new-api-details/topics/security-cryptography.json b/new-api-details/topics/security-cryptography.json index ab702dd7..bbb6b6f6 100644 --- a/new-api-details/topics/security-cryptography.json +++ b/new-api-details/topics/security-cryptography.json @@ -1,10 +1,11 @@ { "slug": "security-cryptography", "name": "Security Cryptography", - "published_at": "2026-01-25T16:06:29.860Z", + "published_at": "2026-02-19T13:36:02.625Z", "organizationCount": 1, "projectCount": 52, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "opensuse-project", "name": "openSUSE Project", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 52, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.860Z" + "generated_at": "2026-02-19T13:36:02.625Z" } } \ No newline at end of file diff --git a/new-api-details/topics/security-defense.json b/new-api-details/topics/security-defense.json index b46c98b7..25ac1f0c 100644 --- a/new-api-details/topics/security-defense.json +++ b/new-api-details/topics/security-defense.json @@ -1,7 +1,7 @@ { "slug": "security-defense", "name": "Security Defense", - "published_at": "2026-01-25T16:06:29.651Z", + "published_at": "2026-02-19T13:36:02.866Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.651Z" + "generated_at": "2026-02-19T13:36:02.866Z" } } \ No newline at end of file diff --git a/new-api-details/topics/security.json b/new-api-details/topics/security.json index 87c63fc6..fc91d1cf 100644 --- a/new-api-details/topics/security.json +++ b/new-api-details/topics/security.json @@ -1,10 +1,11 @@ { "slug": "security", "name": "security", - "published_at": "2026-01-25T16:06:28.627Z", + "published_at": "2026-02-19T13:36:00.895Z", "organizationCount": 31, "projectCount": 1098, "years": [ + 2026, 2025, 2024, 2023, @@ -18,96 +19,132 @@ ], "organizations": [ { - "slug": "c2si", - "name": "C2SI", - "first_year": 2024, - "last_year": 2024, - "total_projects": 12, - "is_currently_active": false, + "slug": "python-software-foundation", + "name": "Python Software Foundation", + "first_year": 2016, + "last_year": 2026, + "total_projects": 277, + "is_currently_active": true, "active_years": [ - 2024 + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "casbin", - "name": "Casbin", - "first_year": 2020, - "last_year": 2022, - "total_projects": 22, + "slug": "score-lab", + "name": "SCoRe Lab", + "first_year": 2016, + "last_year": 2023, + "total_projects": 149, "is_currently_active": false, "active_years": [ + 2016, + 2017, + 2018, + 2019, 2020, 2021, - 2022 + 2022, + 2023 ] }, { - "slug": "elastic", - "name": "Elastic", - "first_year": 2018, - "last_year": 2020, - "total_projects": 4, - "is_currently_active": false, + "slug": "owasp-foundation", + "name": "OWASP Foundation", + "first_year": 2016, + "last_year": 2026, + "total_projects": 102, + "is_currently_active": true, "active_years": [ + 2016, 2018, - 2020 + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "freifunk", - "name": "freifunk", + "slug": "the-honeynet-project", + "name": "The Honeynet Project", "first_year": 2016, - "last_year": 2025, - "total_projects": 74, + "last_year": 2026, + "total_projects": 101, "is_currently_active": true, "active_years": [ 2016, 2017, 2018, 2019, + 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "gcp-scanner", - "name": "GCP Scanner", - "first_year": 2023, - "last_year": 2023, - "total_projects": 3, - "is_currently_active": false, + "slug": "the-freebsd-project", + "name": "The FreeBSD Project", + "first_year": 2016, + "last_year": 2026, + "total_projects": 76, + "is_currently_active": true, "active_years": [ - 2023 + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "gentoo-foundation", - "name": "Gentoo Foundation", + "slug": "freifunk", + "name": "freifunk", "first_year": 2016, - "last_year": 2023, - "total_projects": 25, + "last_year": 2025, + "total_projects": 74, "is_currently_active": false, "active_years": [ 2016, 2017, 2018, 2019, - 2020, 2021, 2022, - 2023 + 2023, + 2024, + 2025 ] }, { "slug": "global-alliance-for-genomics-and-health", "name": "Global Alliance for Genomics and Health", "first_year": 2016, - "last_year": 2024, + "last_year": 2026, "total_projects": 45, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -117,71 +154,57 @@ 2021, 2022, 2023, - 2024 - ] - }, - { - "slug": "gnutls", - "name": "GnuTLS", - "first_year": 2023, - "last_year": 2023, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2023 + 2024, + 2026 ] }, { - "slug": "joplin", - "name": "Joplin", - "first_year": 2020, - "last_year": 2024, - "total_projects": 17, - "is_currently_active": false, + "slug": "ruby", + "name": "Ruby", + "first_year": 2016, + "last_year": 2026, + "total_projects": 38, + "is_currently_active": true, "active_years": [ + 2016, + 2018, + 2019, 2020, 2021, - 2022, - 2024 - ] - }, - { - "slug": "libssh", - "name": "libssh", - "first_year": 2022, - "last_year": 2025, - "total_projects": 6, - "is_currently_active": true, - "active_years": [ 2022, 2023, - 2024, - 2025 + 2026 ] }, { - "slug": "lowrisc", - "name": "lowRISC", - "first_year": 2016, - "last_year": 2020, - "total_projects": 10, + "slug": "spdx", + "name": "SPDX", + "first_year": 2017, + "last_year": 2023, + "total_projects": 29, "is_currently_active": false, "active_years": [ - 2016, 2017, - 2020 + 2018, + 2019, + 2020, + 2021, + 2022, + 2023 ] }, { - "slug": "metasploit", - "name": "Metasploit", - "first_year": 2017, + "slug": "gentoo-foundation", + "name": "Gentoo Foundation", + "first_year": 2016, "last_year": 2023, - "total_projects": 12, + "total_projects": 25, "is_currently_active": false, "active_years": [ + 2016, 2017, 2018, + 2019, 2020, 2021, 2022, @@ -189,274 +212,242 @@ ] }, { - "slug": "nmap-security-scanner", - "name": "Nmap Security Scanner", - "first_year": 2016, - "last_year": 2017, - "total_projects": 9, + "slug": "casbin", + "name": "Casbin", + "first_year": 2020, + "last_year": 2022, + "total_projects": 22, "is_currently_active": false, "active_years": [ - 2016, - 2017 + 2020, + 2021, + 2022 ] }, { - "slug": "openkeychain-openpgp-for-android", - "name": "OpenKeychain (OpenPGP for Android)", + "slug": "wso2", + "name": "WSO2", "first_year": 2016, - "last_year": 2016, - "total_projects": 2, + "last_year": 2017, + "total_projects": 20, "is_currently_active": false, "active_years": [ - 2016 + 2016, + 2017 ] }, { - "slug": "ow2", - "name": "OW2", - "first_year": 2018, - "last_year": 2018, - "total_projects": 0, + "slug": "the-tor-project", + "name": "The Tor Project", + "first_year": 2016, + "last_year": 2025, + "total_projects": 19, "is_currently_active": false, "active_years": [ - 2018 + 2016, + 2017, + 2022, + 2023, + 2025 ] }, { - "slug": "owasp-foundation", - "name": "OWASP Foundation", - "first_year": 2016, - "last_year": 2025, - "total_projects": 102, + "slug": "joplin", + "name": "Joplin", + "first_year": 2020, + "last_year": 2026, + "total_projects": 17, "is_currently_active": true, "active_years": [ - 2016, - 2018, - 2019, 2020, 2021, 2022, - 2023, 2024, - 2025 + 2026 ] }, { - "slug": "p2psporg", - "name": "P2PSP.org", + "slug": "radare", + "name": "Radare", "first_year": 2016, - "last_year": 2018, - "total_projects": 5, + "last_year": 2020, + "total_projects": 15, "is_currently_active": false, "active_years": [ 2016, 2017, - 2018 + 2018, + 2020 ] }, { - "slug": "python-software-foundation", - "name": "Python Software Foundation", - "first_year": 2016, - "last_year": 2025, - "total_projects": 277, + "slug": "c2si", + "name": "C2SI", + "first_year": 2024, + "last_year": 2026, + "total_projects": 12, "is_currently_active": true, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, 2024, - 2025 + 2026 ] }, { - "slug": "qubes-os", - "name": "Qubes OS", + "slug": "metasploit", + "name": "Metasploit", "first_year": 2017, - "last_year": 2021, - "total_projects": 4, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 12, + "is_currently_active": true, "active_years": [ 2017, + 2018, 2020, - 2021 + 2021, + 2022, + 2023, + 2026 ] }, { - "slug": "radare", - "name": "Radare", + "slug": "lowrisc", + "name": "lowRISC", "first_year": 2016, "last_year": 2020, - "total_projects": 15, + "total_projects": 10, "is_currently_active": false, "active_years": [ 2016, 2017, - 2018, 2020 ] }, { - "slug": "ruby", - "name": "Ruby", - "first_year": 2016, - "last_year": 2023, - "total_projects": 38, - "is_currently_active": false, + "slug": "the-libreswan-project", + "name": "The Libreswan Project", + "first_year": 2017, + "last_year": 2026, + "total_projects": 10, + "is_currently_active": true, "active_years": [ - 2016, + 2017, 2018, 2019, 2020, 2021, 2022, - 2023 + 2026 ] }, { - "slug": "score-lab", - "name": "SCoRe Lab", + "slug": "nmap-security-scanner", + "name": "Nmap Security Scanner", "first_year": 2016, - "last_year": 2023, - "total_projects": 149, + "last_year": 2017, + "total_projects": 9, "is_currently_active": false, "active_years": [ 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023 + 2017 ] }, { - "slug": "spdx", - "name": "SPDX", - "first_year": 2017, - "last_year": 2023, - "total_projects": 29, + "slug": "waycrate", + "name": "Waycrate", + "first_year": 2024, + "last_year": 2025, + "total_projects": 7, "is_currently_active": false, "active_years": [ - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023 + 2024, + 2025 ] }, { - "slug": "the-freebsd-project", - "name": "The FreeBSD Project", - "first_year": 2016, - "last_year": 2025, - "total_projects": 76, + "slug": "libssh", + "name": "libssh", + "first_year": 2022, + "last_year": 2026, + "total_projects": 6, "is_currently_active": true, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "the-honeynet-project", - "name": "The Honeynet Project", + "slug": "p2psporg", + "name": "P2PSP.org", "first_year": 2016, - "last_year": 2025, - "total_projects": 101, - "is_currently_active": true, + "last_year": 2018, + "total_projects": 5, + "is_currently_active": false, "active_years": [ 2016, 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2018 ] }, { - "slug": "the-libreswan-project", - "name": "The Libreswan Project", - "first_year": 2017, - "last_year": 2022, - "total_projects": 10, + "slug": "elastic", + "name": "Elastic", + "first_year": 2018, + "last_year": 2020, + "total_projects": 4, "is_currently_active": false, "active_years": [ - 2017, 2018, - 2019, - 2020, - 2021, - 2022 + 2020 ] }, { - "slug": "the-tor-project", - "name": "The Tor Project", - "first_year": 2016, - "last_year": 2025, - "total_projects": 19, + "slug": "qubes-os", + "name": "Qubes OS", + "first_year": 2017, + "last_year": 2026, + "total_projects": 4, "is_currently_active": true, "active_years": [ - 2016, 2017, - 2022, - 2023, - 2025 + 2020, + 2021, + 2026 ] }, { - "slug": "tungsten-fabric", - "name": "Tungsten Fabric", - "first_year": 2019, - "last_year": 2019, - "total_projects": 1, + "slug": "gcp-scanner", + "name": "GCP Scanner", + "first_year": 2023, + "last_year": 2023, + "total_projects": 3, "is_currently_active": false, "active_years": [ - 2019 + 2023 ] }, { - "slug": "waycrate", - "name": "Waycrate", - "first_year": 2024, - "last_year": 2025, - "total_projects": 7, - "is_currently_active": true, + "slug": "gnutls", + "name": "GnuTLS", + "first_year": 2023, + "last_year": 2023, + "total_projects": 2, + "is_currently_active": false, "active_years": [ - 2024, - 2025 + 2023 ] }, { - "slug": "wso2", - "name": "WSO2", + "slug": "openkeychain-openpgp-for-android", + "name": "OpenKeychain (OpenPGP for Android)", "first_year": 2016, - "last_year": 2017, - "total_projects": 20, + "last_year": 2016, + "total_projects": 2, "is_currently_active": false, "active_years": [ - 2016, - 2017 + 2016 ] }, { @@ -469,6 +460,28 @@ "active_years": [ 2017 ] + }, + { + "slug": "tungsten-fabric", + "name": "Tungsten Fabric", + "first_year": 2019, + "last_year": 2019, + "total_projects": 1, + "is_currently_active": false, + "active_years": [ + 2019 + ] + }, + { + "slug": "ow2", + "name": "OW2", + "first_year": 2018, + "last_year": 2018, + "total_projects": 0, + "is_currently_active": false, + "active_years": [ + 2018 + ] } ], "yearlyStats": { @@ -511,10 +524,14 @@ "2025": { "organizationCount": 8, "projectCount": 66 + }, + "2026": { + "organizationCount": 12, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.627Z" + "generated_at": "2026-02-19T13:36:00.895Z" } } \ No newline at end of file diff --git a/new-api-details/topics/self-hosted.json b/new-api-details/topics/self-hosted.json index 431ac64c..d824206b 100644 --- a/new-api-details/topics/self-hosted.json +++ b/new-api-details/topics/self-hosted.json @@ -1,7 +1,7 @@ { "slug": "self-hosted", "name": "self-hosted", - "published_at": "2026-01-25T16:06:29.320Z", + "published_at": "2026-02-19T13:36:02.217Z", "organizationCount": 1, "projectCount": 5, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.320Z" + "generated_at": "2026-02-19T13:36:02.217Z" } } \ No newline at end of file diff --git a/new-api-details/topics/selfdriving.json b/new-api-details/topics/selfdriving.json index 69e03682..d0921437 100644 --- a/new-api-details/topics/selfdriving.json +++ b/new-api-details/topics/selfdriving.json @@ -1,7 +1,7 @@ { "slug": "selfdriving", "name": "selfdriving", - "published_at": "2026-01-25T16:06:29.361Z", + "published_at": "2026-02-19T13:36:02.325Z", "organizationCount": 1, "projectCount": 8, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.361Z" + "generated_at": "2026-02-19T13:36:02.325Z" } } \ No newline at end of file diff --git a/new-api-details/topics/semantic-web.json b/new-api-details/topics/semantic-web.json index 67423e91..2604a818 100644 --- a/new-api-details/topics/semantic-web.json +++ b/new-api-details/topics/semantic-web.json @@ -1,10 +1,11 @@ { "slug": "semantic-web", "name": "semantic web", - "published_at": "2026-01-25T16:06:28.801Z", + "published_at": "2026-02-19T13:36:01.095Z", "organizationCount": 5, "projectCount": 188, "years": [ + 2026, 2025, 2024, 2023, @@ -18,25 +19,30 @@ ], "organizations": [ { - "slug": "cuneiform-digital-library-initiative-cdli", - "name": "Cuneiform Digital Library Initiative (CDLI)", - "first_year": 2018, - "last_year": 2022, - "total_projects": 30, - "is_currently_active": false, + "slug": "wikimedia-foundation", + "name": "Wikimedia Foundation", + "first_year": 2016, + "last_year": 2026, + "total_projects": 85, + "is_currently_active": true, "active_years": [ + 2016, + 2017, 2018, 2019, 2020, 2021, - 2022 + 2022, + 2023, + 2024, + 2026 ] }, { "slug": "dbpedia", "name": "DBpedia", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 61, "is_currently_active": true, "active_years": [ @@ -49,19 +55,24 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "earth-science-information-partners", - "name": "Earth Science Information Partners", + "slug": "cuneiform-digital-library-initiative-cdli", + "name": "Cuneiform Digital Library Initiative (CDLI)", "first_year": 2018, - "last_year": 2019, - "total_projects": 4, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 30, + "is_currently_active": true, "active_years": [ 2018, - 2019 + 2019, + 2020, + 2021, + 2022, + 2026 ] }, { @@ -79,22 +90,15 @@ ] }, { - "slug": "wikimedia-foundation", - "name": "Wikimedia Foundation", - "first_year": 2016, - "last_year": 2024, - "total_projects": 85, + "slug": "earth-science-information-partners", + "name": "Earth Science Information Partners", + "first_year": 2018, + "last_year": 2019, + "total_projects": 4, "is_currently_active": false, "active_years": [ - 2016, - 2017, 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024 + 2019 ] } ], @@ -138,10 +142,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 3, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.801Z" + "generated_at": "2026-02-19T13:36:01.095Z" } } \ No newline at end of file diff --git a/new-api-details/topics/semantics.json b/new-api-details/topics/semantics.json index 85d922e8..31645b24 100644 --- a/new-api-details/topics/semantics.json +++ b/new-api-details/topics/semantics.json @@ -1,7 +1,7 @@ { "slug": "semantics", "name": "semantics", - "published_at": "2026-01-25T16:06:28.883Z", + "published_at": "2026-02-19T13:36:01.224Z", "organizationCount": 1, "projectCount": 4, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.883Z" + "generated_at": "2026-02-19T13:36:01.224Z" } } \ No newline at end of file diff --git a/new-api-details/topics/sensor-web.json b/new-api-details/topics/sensor-web.json index b38128d9..ef866122 100644 --- a/new-api-details/topics/sensor-web.json +++ b/new-api-details/topics/sensor-web.json @@ -1,10 +1,11 @@ { "slug": "sensor-web", "name": "sensor web", - "published_at": "2026-01-25T16:06:28.347Z", + "published_at": "2026-02-19T13:36:00.253Z", "organizationCount": 1, "projectCount": 25, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "52north-spatial-information-research-gmbh", "name": "52°North Spatial Information Research GmbH", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 25, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.347Z" + "generated_at": "2026-02-19T13:36:00.253Z" } } \ No newline at end of file diff --git a/new-api-details/topics/sensors.json b/new-api-details/topics/sensors.json index ebc6da22..0b904773 100644 --- a/new-api-details/topics/sensors.json +++ b/new-api-details/topics/sensors.json @@ -1,7 +1,7 @@ { "slug": "sensors", "name": "sensors", - "published_at": "2026-01-25T16:06:28.708Z", + "published_at": "2026-02-19T13:36:00.961Z", "organizationCount": 1, "projectCount": 20, "years": [ @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.708Z" + "generated_at": "2026-02-19T13:36:00.961Z" } } \ No newline at end of file diff --git a/new-api-details/topics/sensorweb.json b/new-api-details/topics/sensorweb.json index 2c6bcba3..fda71496 100644 --- a/new-api-details/topics/sensorweb.json +++ b/new-api-details/topics/sensorweb.json @@ -1,10 +1,11 @@ { "slug": "sensorweb", "name": "sensorweb", - "published_at": "2026-01-25T16:06:28.361Z", + "published_at": "2026-02-19T13:36:00.273Z", "organizationCount": 1, "projectCount": 25, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "52north-spatial-information-research-gmbh", "name": "52°North Spatial Information Research GmbH", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 25, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.361Z" + "generated_at": "2026-02-19T13:36:00.273Z" } } \ No newline at end of file diff --git a/new-api-details/topics/sentimental-analysis.json b/new-api-details/topics/sentimental-analysis.json index 42cf9557..3fb751d7 100644 --- a/new-api-details/topics/sentimental-analysis.json +++ b/new-api-details/topics/sentimental-analysis.json @@ -1,10 +1,11 @@ { "slug": "sentimental-analysis", "name": "Sentimental Analysis", - "published_at": "2026-01-25T16:06:29.760Z", + "published_at": "2026-02-19T13:36:03.107Z", "organizationCount": 1, "projectCount": 8, "years": [ + 2026, 2025, 2024 ], @@ -13,12 +14,13 @@ "slug": "uramaki-lab", "name": "Uramaki LAB", "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "total_projects": 8, "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -30,10 +32,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.760Z" + "generated_at": "2026-02-19T13:36:03.107Z" } } \ No newline at end of file diff --git a/new-api-details/topics/sepsis-detection.json b/new-api-details/topics/sepsis-detection.json index 595457e6..df26f1b3 100644 --- a/new-api-details/topics/sepsis-detection.json +++ b/new-api-details/topics/sepsis-detection.json @@ -1,7 +1,7 @@ { "slug": "sepsis-detection", "name": "sepsis detection", - "published_at": "2026-01-25T16:06:28.632Z", + "published_at": "2026-02-19T13:36:00.935Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.632Z" + "generated_at": "2026-02-19T13:36:00.935Z" } } \ No newline at end of file diff --git a/new-api-details/topics/sepsis-prediction.json b/new-api-details/topics/sepsis-prediction.json index 5b169edd..75926e34 100644 --- a/new-api-details/topics/sepsis-prediction.json +++ b/new-api-details/topics/sepsis-prediction.json @@ -1,7 +1,7 @@ { "slug": "sepsis-prediction", "name": "sepsis prediction", - "published_at": "2026-01-25T16:06:28.632Z", + "published_at": "2026-02-19T13:36:00.934Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.632Z" + "generated_at": "2026-02-19T13:36:00.934Z" } } \ No newline at end of file diff --git a/new-api-details/topics/server-development.json b/new-api-details/topics/server-development.json index ad88bdb9..23ac4753 100644 --- a/new-api-details/topics/server-development.json +++ b/new-api-details/topics/server-development.json @@ -1,10 +1,11 @@ { "slug": "server-development", "name": "Server development", - "published_at": "2026-01-25T16:06:29.654Z", + "published_at": "2026-02-19T13:36:02.872Z", "organizationCount": 1, "projectCount": 26, "years": [ + 2026, 2025, 2024, 2023, @@ -19,7 +20,7 @@ "slug": "swift", "name": "Swift", "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "total_projects": 26, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.654Z" + "generated_at": "2026-02-19T13:36:02.872Z" } } \ No newline at end of file diff --git a/new-api-details/topics/server.json b/new-api-details/topics/server.json index e0032c3d..c86b39ef 100644 --- a/new-api-details/topics/server.json +++ b/new-api-details/topics/server.json @@ -1,10 +1,11 @@ { "slug": "server", "name": "server", - "published_at": "2026-01-25T16:06:28.953Z", + "published_at": "2026-02-19T13:36:01.286Z", "organizationCount": 2, "projectCount": 65, "years": [ + 2026, 2025, 2023, 2022, @@ -17,36 +18,37 @@ ], "organizations": [ { - "slug": "fedora-project", - "name": "Fedora Project", + "slug": "ruby", + "name": "Ruby", "first_year": 2016, - "last_year": 2025, - "total_projects": 27, + "last_year": 2026, + "total_projects": 38, "is_currently_active": true, "active_years": [ 2016, - 2017, 2018, 2019, 2020, - 2025 + 2021, + 2022, + 2023, + 2026 ] }, { - "slug": "ruby", - "name": "Ruby", + "slug": "fedora-project", + "name": "Fedora Project", "first_year": 2016, - "last_year": 2023, - "total_projects": 38, + "last_year": 2025, + "total_projects": 27, "is_currently_active": false, "active_years": [ 2016, + 2017, 2018, 2019, 2020, - 2021, - 2022, - 2023 + 2025 ] } ], @@ -86,10 +88,14 @@ "2025": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.953Z" + "generated_at": "2026-02-19T13:36:01.286Z" } } \ No newline at end of file diff --git a/new-api-details/topics/serverless-computing.json b/new-api-details/topics/serverless-computing.json index 9b879e9f..23cf3400 100644 --- a/new-api-details/topics/serverless-computing.json +++ b/new-api-details/topics/serverless-computing.json @@ -1,7 +1,7 @@ { "slug": "serverless-computing", "name": "Serverless Computing", - "published_at": "2026-01-25T16:06:29.616Z", + "published_at": "2026-02-19T13:36:02.815Z", "organizationCount": 1, "projectCount": 6, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.616Z" + "generated_at": "2026-02-19T13:36:02.815Z" } } \ No newline at end of file diff --git a/new-api-details/topics/service-mesh.json b/new-api-details/topics/service-mesh.json index b265bcba..c8c9c5e0 100644 --- a/new-api-details/topics/service-mesh.json +++ b/new-api-details/topics/service-mesh.json @@ -1,10 +1,11 @@ { "slug": "service-mesh", "name": "service mesh", - "published_at": "2026-01-25T16:06:28.679Z", + "published_at": "2026-02-19T13:36:01.058Z", "organizationCount": 2, "projectCount": 117, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "cncf", "name": "CNCF", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 113, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -84,10 +86,14 @@ "2025": { "organizationCount": 1, "projectCount": 11 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.679Z" + "generated_at": "2026-02-19T13:36:01.058Z" } } \ No newline at end of file diff --git a/new-api-details/topics/sharing.json b/new-api-details/topics/sharing.json index 54a99456..0ed2f4e7 100644 --- a/new-api-details/topics/sharing.json +++ b/new-api-details/topics/sharing.json @@ -1,10 +1,11 @@ { "slug": "sharing", "name": "sharing", - "published_at": "2026-01-25T16:06:29.226Z", + "published_at": "2026-02-19T13:36:02.063Z", "organizationCount": 1, "projectCount": 17, "years": [ + 2026, 2024, 2022, 2021, @@ -15,14 +16,15 @@ "slug": "joplin", "name": "Joplin", "first_year": 2020, - "last_year": 2024, + "last_year": 2026, "total_projects": 17, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2020, 2021, 2022, - 2024 + 2024, + 2026 ] } ], @@ -42,10 +44,14 @@ "2024": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.226Z" + "generated_at": "2026-02-19T13:36:02.063Z" } } \ No newline at end of file diff --git a/new-api-details/topics/sheet-music.json b/new-api-details/topics/sheet-music.json index 89da9c2f..afdf3265 100644 --- a/new-api-details/topics/sheet-music.json +++ b/new-api-details/topics/sheet-music.json @@ -1,7 +1,7 @@ { "slug": "sheet-music", "name": "sheet music", - "published_at": "2026-01-25T16:06:29.384Z", + "published_at": "2026-02-19T13:36:02.371Z", "organizationCount": 1, "projectCount": 24, "years": [ @@ -76,6 +76,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.384Z" + "generated_at": "2026-02-19T13:36:02.371Z" } } \ No newline at end of file diff --git a/new-api-details/topics/signal-processing.json b/new-api-details/topics/signal-processing.json index b0ccbff0..014cc895 100644 --- a/new-api-details/topics/signal-processing.json +++ b/new-api-details/topics/signal-processing.json @@ -1,10 +1,11 @@ { "slug": "signal-processing", "name": "signal processing", - "published_at": "2026-01-25T16:06:28.444Z", + "published_at": "2026-02-19T13:36:00.399Z", "organizationCount": 4, "projectCount": 78, "years": [ + 2026, 2025, 2024, 2023, @@ -38,7 +39,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 28, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -55,7 +56,7 @@ "slug": "gnu-radio", "name": "GNU Radio", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 18, "is_currently_active": true, "active_years": [ @@ -68,7 +69,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -123,10 +125,14 @@ "2025": { "organizationCount": 2, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.444Z" + "generated_at": "2026-02-19T13:36:00.399Z" } } \ No newline at end of file diff --git a/new-api-details/topics/silicon.json b/new-api-details/topics/silicon.json index 3cb6963d..6ae3040d 100644 --- a/new-api-details/topics/silicon.json +++ b/new-api-details/topics/silicon.json @@ -1,10 +1,11 @@ { "slug": "silicon", "name": "silicon", - "published_at": "2026-01-25T16:06:29.001Z", + "published_at": "2026-02-19T13:36:01.538Z", "organizationCount": 1, "projectCount": 60, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "free-and-open-source-silicon-foundation", "name": "Free and Open Source Silicon Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 60, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.001Z" + "generated_at": "2026-02-19T13:36:01.538Z" } } \ No newline at end of file diff --git a/new-api-details/topics/simulation-software.json b/new-api-details/topics/simulation-software.json index 65a4a9d8..6e8b0374 100644 --- a/new-api-details/topics/simulation-software.json +++ b/new-api-details/topics/simulation-software.json @@ -1,7 +1,7 @@ { "slug": "simulation-software", "name": "simulation software", - "published_at": "2026-01-25T16:06:28.644Z", + "published_at": "2026-02-19T13:36:00.977Z", "organizationCount": 1, "projectCount": 10, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.644Z" + "generated_at": "2026-02-19T13:36:00.977Z" } } \ No newline at end of file diff --git a/new-api-details/topics/simulation.json b/new-api-details/topics/simulation.json index 49ecb482..1c47780b 100644 --- a/new-api-details/topics/simulation.json +++ b/new-api-details/topics/simulation.json @@ -1,10 +1,11 @@ { "slug": "simulation", "name": "simulation", - "published_at": "2026-01-25T16:06:28.404Z", - "organizationCount": 17, - "projectCount": 603, + "published_at": "2026-02-19T13:36:00.573Z", + "organizationCount": 19, + "projectCount": 610, "years": [ + 2026, 2025, 2024, 2023, @@ -18,35 +19,31 @@ ], "organizations": [ { - "slug": "appleseed", - "name": "appleseed", - "first_year": 2017, - "last_year": 2020, - "total_projects": 11, - "is_currently_active": false, + "slug": "incf", + "name": "INCF", + "first_year": 2016, + "last_year": 2026, + "total_projects": 211, + "is_currently_active": true, "active_years": [ + 2016, 2017, 2018, 2019, - 2020 - ] - }, - { - "slug": "ascend", - "name": "ASCEND", - "first_year": 2016, - "last_year": 2016, - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2016 + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { "slug": "blender-foundation", "name": "Blender Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 64, "is_currently_active": true, "active_years": [ @@ -59,47 +56,57 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "circuitverseorg", - "name": "CircuitVerse.org", - "first_year": 2019, - "last_year": 2025, - "total_projects": 32, + "slug": "free-and-open-source-silicon-foundation", + "name": "Free and Open Source Silicon Foundation", + "first_year": 2016, + "last_year": 2026, + "total_projects": 60, "is_currently_active": true, "active_years": [ + 2016, + 2017, + 2018, 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "computational-science-and-engineering-at-tu-wien", - "name": "Computational Science and Engineering at TU Wien", + "slug": "robocomp", + "name": "RoboComp", "first_year": 2016, - "last_year": 2016, - "total_projects": 10, + "last_year": 2022, + "total_projects": 57, "is_currently_active": false, "active_years": [ - 2016 + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022 ] }, { - "slug": "free-and-open-source-silicon-foundation", - "name": "Free and Open Source Silicon Foundation", + "slug": "open-robotics", + "name": "Open Robotics", "first_year": 2016, - "last_year": 2025, - "total_projects": 60, + "last_year": 2026, + "total_projects": 46, "is_currently_active": true, "active_years": [ 2016, - 2017, 2018, 2019, 2020, @@ -107,18 +114,18 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "incf", - "name": "INCF", - "first_year": 2016, - "last_year": 2025, - "total_projects": 211, + "slug": "the-ns-3-network-simulator-project", + "name": "The ns-3 Network Simulator Project", + "first_year": 2017, + "last_year": 2026, + "total_projects": 34, "is_currently_active": true, "active_years": [ - 2016, 2017, 2018, 2019, @@ -127,44 +134,33 @@ 2022, 2023, 2024, - 2025 - ] - }, - { - "slug": "institute-for-artificial-intelligence", - "name": "Institute for Artificial Intelligence", - "first_year": 2017, - "last_year": 2018, - "total_projects": 11, - "is_currently_active": false, - "active_years": [ - 2017, - 2018 + 2025, + 2026 ] }, { - "slug": "mbdyn", - "name": "MBDyn", - "first_year": 2016, - "last_year": 2025, - "total_projects": 13, + "slug": "circuitverseorg", + "name": "CircuitVerse.org", + "first_year": 2019, + "last_year": 2026, + "total_projects": 32, "is_currently_active": true, "active_years": [ - 2016, - 2017, 2019, 2020, 2021, 2022, + 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "mdanalysis", "name": "MDAnalysis", "first_year": 2020, - "last_year": 2025, + "last_year": 2026, "total_projects": 16, "is_currently_active": true, "active_years": [ @@ -173,57 +169,78 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "open-robotics", - "name": "Open Robotics", + "slug": "tardis-rt-collaboration", + "name": "TARDIS RT Collaboration", + "first_year": 2022, + "last_year": 2026, + "total_projects": 15, + "is_currently_active": true, + "active_years": [ + 2022, + 2023, + 2024, + 2025, + 2026 + ] + }, + { + "slug": "mbdyn", + "name": "MBDyn", "first_year": 2016, "last_year": 2025, - "total_projects": 46, - "is_currently_active": true, + "total_projects": 13, + "is_currently_active": false, "active_years": [ 2016, - 2018, + 2017, 2019, 2020, 2021, 2022, - 2023, 2024, 2025 ] }, { - "slug": "robocomp", - "name": "RoboComp", - "first_year": 2016, - "last_year": 2022, - "total_projects": 57, + "slug": "appleseed", + "name": "appleseed", + "first_year": 2017, + "last_year": 2020, + "total_projects": 11, "is_currently_active": false, "active_years": [ - 2016, 2017, 2018, 2019, - 2020, - 2021, - 2022 + 2020 ] }, { - "slug": "tardis-rt-collaboration", - "name": "TARDIS RT Collaboration", - "first_year": 2022, - "last_year": 2025, - "total_projects": 15, - "is_currently_active": true, + "slug": "institute-for-artificial-intelligence", + "name": "Institute for Artificial Intelligence", + "first_year": 2017, + "last_year": 2018, + "total_projects": 11, + "is_currently_active": false, "active_years": [ - 2022, - 2023, - 2024, - 2025 + 2017, + 2018 + ] + }, + { + "slug": "computational-science-and-engineering-at-tu-wien", + "name": "Computational Science and Engineering at TU Wien", + "first_year": 2016, + "last_year": 2016, + "total_projects": 10, + "is_currently_active": false, + "active_years": [ + 2016 ] }, { @@ -239,6 +256,31 @@ 2021 ] }, + { + "slug": "project-mesa", + "name": "Project Mesa", + "first_year": 2024, + "last_year": 2026, + "total_projects": 7, + "is_currently_active": true, + "active_years": [ + 2024, + 2025, + 2026 + ] + }, + { + "slug": "urban-energy-systems-laboratory-empa", + "name": "Urban Energy Systems Laboratory, Empa", + "first_year": 2016, + "last_year": 2017, + "total_projects": 6, + "is_currently_active": false, + "active_years": [ + 2016, + 2017 + ] + }, { "slug": "the-center-for-connected-learning-and-computer-based-modeling", "name": "The Center for Connected Learning and Computer-Based Modeling", @@ -254,34 +296,25 @@ ] }, { - "slug": "the-ns-3-network-simulator-project", - "name": "The ns-3 Network Simulator Project", - "first_year": 2017, - "last_year": 2025, - "total_projects": 34, - "is_currently_active": true, + "slug": "ascend", + "name": "ASCEND", + "first_year": 2016, + "last_year": 2016, + "total_projects": 3, + "is_currently_active": false, "active_years": [ - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2016 ] }, { - "slug": "urban-energy-systems-laboratory-empa", - "name": "Urban Energy Systems Laboratory, Empa", - "first_year": 2016, - "last_year": 2017, - "total_projects": 6, - "is_currently_active": false, + "slug": "precice", + "name": "preCICE", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, "active_years": [ - 2016, - 2017 + 2026 ] } ], @@ -319,16 +352,20 @@ "projectCount": 50 }, "2024": { - "organizationCount": 9, - "projectCount": 59 + "organizationCount": 10, + "projectCount": 62 }, "2025": { - "organizationCount": 9, - "projectCount": 69 + "organizationCount": 10, + "projectCount": 73 + }, + "2026": { + "organizationCount": 10, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.404Z" + "generated_at": "2026-02-19T13:36:00.573Z" } } \ No newline at end of file diff --git a/new-api-details/topics/simulations.json b/new-api-details/topics/simulations.json index 73f95529..675e6793 100644 --- a/new-api-details/topics/simulations.json +++ b/new-api-details/topics/simulations.json @@ -1,10 +1,11 @@ { "slug": "simulations", "name": "simulations", - "published_at": "2026-01-25T16:06:28.443Z", + "published_at": "2026-02-19T13:36:00.398Z", "organizationCount": 2, "projectCount": 62, "years": [ + 2026, 2025, 2024, 2023, @@ -16,26 +17,11 @@ 2017 ], "organizations": [ - { - "slug": "aerospaceresearchnet", - "name": "AerospaceResearch.net", - "first_year": 2017, - "last_year": 2021, - "total_projects": 30, - "is_currently_active": false, - "active_years": [ - 2017, - 2018, - 2019, - 2020, - 2021 - ] - }, { "slug": "circuitverseorg", "name": "CircuitVerse.org", "first_year": 2019, - "last_year": 2025, + "last_year": 2026, "total_projects": 32, "is_currently_active": true, "active_years": [ @@ -45,7 +31,23 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "aerospaceresearchnet", + "name": "AerospaceResearch.net", + "first_year": 2017, + "last_year": 2021, + "total_projects": 30, + "is_currently_active": false, + "active_years": [ + 2017, + 2018, + 2019, + 2020, + 2021 ] } ], @@ -85,10 +87,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.443Z" + "generated_at": "2026-02-19T13:36:00.398Z" } } \ No newline at end of file diff --git a/new-api-details/topics/simulators.json b/new-api-details/topics/simulators.json index dca00a06..ae001c06 100644 --- a/new-api-details/topics/simulators.json +++ b/new-api-details/topics/simulators.json @@ -1,7 +1,7 @@ { "slug": "simulators", "name": "simulators", - "published_at": "2026-01-25T16:06:28.524Z", + "published_at": "2026-02-19T13:36:00.591Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.524Z" + "generated_at": "2026-02-19T13:36:00.591Z" } } \ No newline at end of file diff --git a/new-api-details/topics/sip.json b/new-api-details/topics/sip.json index 7ec1e193..dc27e396 100644 --- a/new-api-details/topics/sip.json +++ b/new-api-details/topics/sip.json @@ -1,7 +1,7 @@ { "slug": "sip", "name": "sip", - "published_at": "2026-01-25T16:06:29.491Z", + "published_at": "2026-02-19T13:36:02.594Z", "organizationCount": 1, "projectCount": 0, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.491Z" + "generated_at": "2026-02-19T13:36:02.594Z" } } \ No newline at end of file diff --git a/new-api-details/topics/slam.json b/new-api-details/topics/slam.json index 7444743d..ab534a2d 100644 --- a/new-api-details/topics/slam.json +++ b/new-api-details/topics/slam.json @@ -1,7 +1,7 @@ { "slug": "slam", "name": "slam", - "published_at": "2026-01-25T16:06:28.342Z", + "published_at": "2026-02-19T13:36:00.242Z", "organizationCount": 2, "projectCount": 10, "years": [ @@ -11,26 +11,26 @@ ], "organizations": [ { - "slug": "3dtk", - "name": "3DTK", - "first_year": 2018, + "slug": "mobile-robot-programming-toolkit-mrpt", + "name": "Mobile Robot Programming Toolkit (MRPT)", + "first_year": 2016, "last_year": 2018, - "total_projects": 2, + "total_projects": 8, "is_currently_active": false, "active_years": [ + 2016, + 2017, 2018 ] }, { - "slug": "mobile-robot-programming-toolkit-mrpt", - "name": "Mobile Robot Programming Toolkit (MRPT)", - "first_year": 2016, + "slug": "3dtk", + "name": "3DTK", + "first_year": 2018, "last_year": 2018, - "total_projects": 8, + "total_projects": 2, "is_currently_active": false, "active_years": [ - 2016, - 2017, 2018 ] } @@ -51,6 +51,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.342Z" + "generated_at": "2026-02-19T13:36:00.242Z" } } \ No newline at end of file diff --git a/new-api-details/topics/slsa.json b/new-api-details/topics/slsa.json new file mode 100644 index 00000000..b484cb6d --- /dev/null +++ b/new-api-details/topics/slsa.json @@ -0,0 +1,33 @@ +{ + "slug": "slsa", + "name": "SLSA", + "published_at": "2026-02-19T13:36:02.123Z", + "organizationCount": 1, + "projectCount": 0, + "years": [ + 2026 + ], + "organizations": [ + { + "slug": "konflux", + "name": "Konflux", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + } + ], + "yearlyStats": { + "2026": { + "organizationCount": 1, + "projectCount": 0 + } + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:36:02.123Z" + } +} \ No newline at end of file diff --git a/new-api-details/topics/smart-cities.json b/new-api-details/topics/smart-cities.json index 3533fd13..473df710 100644 --- a/new-api-details/topics/smart-cities.json +++ b/new-api-details/topics/smart-cities.json @@ -1,7 +1,7 @@ { "slug": "smart-cities", "name": "smart cities", - "published_at": "2026-01-25T16:06:29.652Z", + "published_at": "2026-02-19T13:36:02.868Z", "organizationCount": 1, "projectCount": 1, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.652Z" + "generated_at": "2026-02-19T13:36:02.868Z" } } \ No newline at end of file diff --git a/new-api-details/topics/smart-contracts.json b/new-api-details/topics/smart-contracts.json index 6e0a45ba..3fa72f55 100644 --- a/new-api-details/topics/smart-contracts.json +++ b/new-api-details/topics/smart-contracts.json @@ -1,10 +1,11 @@ { "slug": "smart-contracts", "name": "smart contracts", - "published_at": "2026-01-25T16:06:28.436Z", + "published_at": "2026-02-19T13:36:00.375Z", "organizationCount": 1, "projectCount": 13, "years": [ + 2026, 2025, 2024, 2021, @@ -15,14 +16,15 @@ "slug": "accord-project", "name": "Accord Project", "first_year": 2020, - "last_year": 2025, + "last_year": 2026, "total_projects": 13, "is_currently_active": true, "active_years": [ 2020, 2021, 2024, - 2025 + 2025, + 2026 ] } ], @@ -42,10 +44,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.436Z" + "generated_at": "2026-02-19T13:36:00.375Z" } } \ No newline at end of file diff --git a/new-api-details/topics/smt-solver.json b/new-api-details/topics/smt-solver.json index c93e26a0..83c8ccde 100644 --- a/new-api-details/topics/smt-solver.json +++ b/new-api-details/topics/smt-solver.json @@ -1,7 +1,7 @@ { "slug": "smt-solver", "name": "smt solver", - "published_at": "2026-01-25T16:06:29.634Z", + "published_at": "2026-02-19T13:36:02.834Z", "organizationCount": 1, "projectCount": 14, "years": [ @@ -18,7 +18,7 @@ "first_year": 2018, "last_year": 2025, "total_projects": 14, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2018, 2019, @@ -52,6 +52,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.634Z" + "generated_at": "2026-02-19T13:36:02.834Z" } } \ No newline at end of file diff --git a/new-api-details/topics/snapshots.json b/new-api-details/topics/snapshots.json index 3c25698d..d5149a23 100644 --- a/new-api-details/topics/snapshots.json +++ b/new-api-details/topics/snapshots.json @@ -1,10 +1,11 @@ { "slug": "snapshots", "name": "snapshots", - "published_at": "2026-01-25T16:06:28.684Z", + "published_at": "2026-02-19T13:36:01.093Z", "organizationCount": 1, "projectCount": 18, "years": [ + 2026, 2025, 2024, 2023, @@ -18,7 +19,7 @@ "slug": "criu", "name": "CRIU", "first_year": 2019, - "last_year": 2025, + "last_year": 2026, "total_projects": 18, "is_currently_active": true, "active_years": [ @@ -28,7 +29,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -60,10 +62,14 @@ "2025": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.684Z" + "generated_at": "2026-02-19T13:36:01.093Z" } } \ No newline at end of file diff --git a/new-api-details/topics/soc.json b/new-api-details/topics/soc.json index e9776f4b..5f5aed1a 100644 --- a/new-api-details/topics/soc.json +++ b/new-api-details/topics/soc.json @@ -1,7 +1,7 @@ { "slug": "soc", "name": "soc", - "published_at": "2026-01-25T16:06:28.665Z", + "published_at": "2026-02-19T13:36:01.008Z", "organizationCount": 2, "projectCount": 22, "years": [ @@ -68,6 +68,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.665Z" + "generated_at": "2026-02-19T13:36:01.008Z" } } \ No newline at end of file diff --git a/new-api-details/topics/social-good.json b/new-api-details/topics/social-good.json index 6cd492e2..4af57498 100644 --- a/new-api-details/topics/social-good.json +++ b/new-api-details/topics/social-good.json @@ -1,7 +1,7 @@ { "slug": "social-good", "name": "social good", - "published_at": "2026-01-25T16:06:28.850Z", + "published_at": "2026-02-19T13:36:01.191Z", "organizationCount": 3, "projectCount": 72, "years": [ @@ -16,6 +16,21 @@ 2017 ], "organizations": [ + { + "slug": "the-palisadoes-foundation", + "name": "The Palisadoes Foundation", + "first_year": 2021, + "last_year": 2025, + "total_projects": 36, + "is_currently_active": false, + "active_years": [ + 2021, + 2022, + 2023, + 2024, + 2025 + ] + }, { "slug": "digital-impact-alliance-dial-at-un-foundation", "name": "Digital Impact Alliance (DIAL) at UN Foundation", @@ -42,21 +57,6 @@ 2018, 2019 ] - }, - { - "slug": "the-palisadoes-foundation", - "name": "The Palisadoes Foundation", - "first_year": 2021, - "last_year": 2025, - "total_projects": 36, - "is_currently_active": true, - "active_years": [ - 2021, - 2022, - 2023, - 2024, - 2025 - ] } ], "yearlyStats": { @@ -99,6 +99,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.850Z" + "generated_at": "2026-02-19T13:36:01.191Z" } } \ No newline at end of file diff --git a/new-api-details/topics/social-impact.json b/new-api-details/topics/social-impact.json index 5a236d18..b640cdd1 100644 --- a/new-api-details/topics/social-impact.json +++ b/new-api-details/topics/social-impact.json @@ -1,10 +1,11 @@ { "slug": "social-impact", "name": "social impact", - "published_at": "2026-01-25T16:06:29.516Z", + "published_at": "2026-02-19T13:36:02.656Z", "organizationCount": 2, "projectCount": 113, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "oppia-foundation", "name": "Oppia Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 77, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -43,7 +45,7 @@ "first_year": 2021, "last_year": 2025, "total_projects": 36, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2021, 2022, @@ -93,10 +95,14 @@ "2025": { "organizationCount": 2, "projectCount": 13 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.516Z" + "generated_at": "2026-02-19T13:36:02.656Z" } } \ No newline at end of file diff --git a/new-api-details/topics/social-network.json b/new-api-details/topics/social-network.json index 141e682a..dd4901ce 100644 --- a/new-api-details/topics/social-network.json +++ b/new-api-details/topics/social-network.json @@ -1,10 +1,11 @@ { "slug": "social-network", "name": "social-network", - "published_at": "2026-01-25T16:06:29.870Z", + "published_at": "2026-02-19T13:36:02.794Z", "organizationCount": 1, "projectCount": 103, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "rocketchat", "name": "rocket.chat", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 103, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 19 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.870Z" + "generated_at": "2026-02-19T13:36:02.794Z" } } \ No newline at end of file diff --git a/new-api-details/topics/social-participation.json b/new-api-details/topics/social-participation.json index ecbeceac..eab2ec48 100644 --- a/new-api-details/topics/social-participation.json +++ b/new-api-details/topics/social-participation.json @@ -1,7 +1,7 @@ { "slug": "social-participation", "name": "Social participation", - "published_at": "2026-01-25T16:06:29.252Z", + "published_at": "2026-02-19T13:36:02.150Z", "organizationCount": 1, "projectCount": 4, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.252Z" + "generated_at": "2026-02-19T13:36:02.150Z" } } \ No newline at end of file diff --git a/new-api-details/topics/social-science.json b/new-api-details/topics/social-science.json index 7d087990..fc1a2af4 100644 --- a/new-api-details/topics/social-science.json +++ b/new-api-details/topics/social-science.json @@ -1,10 +1,11 @@ { "slug": "social-science", "name": "social science", - "published_at": "2026-01-25T16:06:28.388Z", + "published_at": "2026-02-19T13:36:00.472Z", "organizationCount": 1, "projectCount": 117, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "aossie", "name": "AOSSIE", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 117, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 21 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.388Z" + "generated_at": "2026-02-19T13:36:00.472Z" } } \ No newline at end of file diff --git a/new-api-details/topics/social.json b/new-api-details/topics/social.json index 43615396..7becf5cd 100644 --- a/new-api-details/topics/social.json +++ b/new-api-details/topics/social.json @@ -1,7 +1,7 @@ { "slug": "social", "name": "social", - "published_at": "2026-01-25T16:06:29.795Z", + "published_at": "2026-02-19T13:36:02.704Z", "organizationCount": 2, "projectCount": 15, "years": [ @@ -14,18 +14,6 @@ 2017 ], "organizations": [ - { - "slug": "phpbb-forum-software", - "name": "phpBB Forum Software", - "first_year": 2017, - "last_year": 2018, - "total_projects": 4, - "is_currently_active": false, - "active_years": [ - 2017, - 2018 - ] - }, { "slug": "xmpp-standards-foundation", "name": "XMPP Standards Foundation", @@ -41,6 +29,18 @@ 2023, 2024 ] + }, + { + "slug": "phpbb-forum-software", + "name": "phpBB Forum Software", + "first_year": 2017, + "last_year": 2018, + "total_projects": 4, + "is_currently_active": false, + "active_years": [ + 2017, + 2018 + ] } ], "yearlyStats": { @@ -75,6 +75,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.795Z" + "generated_at": "2026-02-19T13:36:02.704Z" } } \ No newline at end of file diff --git a/new-api-details/topics/soft-matter-physics.json b/new-api-details/topics/soft-matter-physics.json index d30d10d7..92dd1338 100644 --- a/new-api-details/topics/soft-matter-physics.json +++ b/new-api-details/topics/soft-matter-physics.json @@ -1,10 +1,11 @@ { "slug": "soft-matter-physics", "name": "soft matter physics", - "published_at": "2026-01-25T16:06:29.304Z", + "published_at": "2026-02-19T13:36:02.262Z", "organizationCount": 1, "projectCount": 16, "years": [ + 2026, 2025, 2024, 2023, @@ -17,7 +18,7 @@ "slug": "mdanalysis", "name": "MDAnalysis", "first_year": 2020, - "last_year": 2025, + "last_year": 2026, "total_projects": 16, "is_currently_active": true, "active_years": [ @@ -26,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -54,10 +56,14 @@ "2025": { "organizationCount": 2, "projectCount": 8 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.304Z" + "generated_at": "2026-02-19T13:36:02.262Z" } } \ No newline at end of file diff --git a/new-api-details/topics/soft-real-time.json b/new-api-details/topics/soft-real-time.json index 84529799..02acd052 100644 --- a/new-api-details/topics/soft-real-time.json +++ b/new-api-details/topics/soft-real-time.json @@ -1,7 +1,7 @@ { "slug": "soft-real-time", "name": "soft real-time", - "published_at": "2026-01-25T16:06:28.907Z", + "published_at": "2026-02-19T13:36:01.262Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.907Z" + "generated_at": "2026-02-19T13:36:01.262Z" } } \ No newline at end of file diff --git a/new-api-details/topics/software-analysis.json b/new-api-details/topics/software-analysis.json index ac0e643e..8433eef5 100644 --- a/new-api-details/topics/software-analysis.json +++ b/new-api-details/topics/software-analysis.json @@ -1,10 +1,11 @@ { "slug": "software-analysis", "name": "software analysis", - "published_at": "2026-01-25T16:06:28.416Z", + "published_at": "2026-02-19T13:36:00.323Z", "organizationCount": 3, "projectCount": 48, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "aboutcode", "name": "AboutCode", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 32, "is_currently_active": true, "active_years": [ @@ -31,18 +32,8 @@ 2022, 2023, 2024, - 2025 - ] - }, - { - "slug": "castor", - "name": "CASTOR", - "first_year": 2021, - "last_year": 2021, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2021 + 2025, + 2026 ] }, { @@ -51,7 +42,7 @@ "first_year": 2018, "last_year": 2025, "total_projects": 14, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2018, 2019, @@ -59,6 +50,17 @@ 2024, 2025 ] + }, + { + "slug": "castor", + "name": "CASTOR", + "first_year": 2021, + "last_year": 2021, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2021 + ] } ], "yearlyStats": { @@ -97,10 +99,14 @@ "2025": { "organizationCount": 2, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.416Z" + "generated_at": "2026-02-19T13:36:00.323Z" } } \ No newline at end of file diff --git a/new-api-details/topics/software-analytics.json b/new-api-details/topics/software-analytics.json index f1e6fef0..bd76d406 100644 --- a/new-api-details/topics/software-analytics.json +++ b/new-api-details/topics/software-analytics.json @@ -1,7 +1,7 @@ { "slug": "software-analytics", "name": "software analytics", - "published_at": "2026-01-25T16:06:29.150Z", + "published_at": "2026-02-19T13:36:01.815Z", "organizationCount": 1, "projectCount": 1, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.150Z" + "generated_at": "2026-02-19T13:36:01.815Z" } } \ No newline at end of file diff --git a/new-api-details/topics/software-archeology.json b/new-api-details/topics/software-archeology.json index 9852dc07..7f32c586 100644 --- a/new-api-details/topics/software-archeology.json +++ b/new-api-details/topics/software-archeology.json @@ -1,10 +1,11 @@ { "slug": "software-archeology", "name": "software archeology", - "published_at": "2026-01-25T16:06:29.618Z", + "published_at": "2026-02-19T13:36:02.822Z", "organizationCount": 1, "projectCount": 34, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "scummvm", "name": "ScummVM", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 34, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.618Z" + "generated_at": "2026-02-19T13:36:02.822Z" } } \ No newline at end of file diff --git a/new-api-details/topics/software-as-a-service.json b/new-api-details/topics/software-as-a-service.json index d26fa143..1efb196c 100644 --- a/new-api-details/topics/software-as-a-service.json +++ b/new-api-details/topics/software-as-a-service.json @@ -1,7 +1,7 @@ { "slug": "software-as-a-service", "name": "software as a service", - "published_at": "2026-01-25T16:06:29.666Z", + "published_at": "2026-02-19T13:36:02.899Z", "organizationCount": 1, "projectCount": 20, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.666Z" + "generated_at": "2026-02-19T13:36:02.899Z" } } \ No newline at end of file diff --git a/new-api-details/topics/software-composition-analysis.json b/new-api-details/topics/software-composition-analysis.json index ca6e4456..8bd486e6 100644 --- a/new-api-details/topics/software-composition-analysis.json +++ b/new-api-details/topics/software-composition-analysis.json @@ -1,10 +1,11 @@ { "slug": "software-composition-analysis", "name": "software composition analysis", - "published_at": "2026-01-25T16:06:28.420Z", + "published_at": "2026-02-19T13:36:00.336Z", "organizationCount": 1, "projectCount": 32, "years": [ + 2026, 2025, 2024, 2023, @@ -19,7 +20,7 @@ "slug": "aboutcode", "name": "AboutCode", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 32, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.420Z" + "generated_at": "2026-02-19T13:36:00.336Z" } } \ No newline at end of file diff --git a/new-api-details/topics/software-configurability.json b/new-api-details/topics/software-configurability.json index 9b9771ea..8f4a05f5 100644 --- a/new-api-details/topics/software-configurability.json +++ b/new-api-details/topics/software-configurability.json @@ -1,10 +1,11 @@ { "slug": "software-configurability", "name": "software configurability", - "published_at": "2026-01-25T16:06:29.753Z", + "published_at": "2026-02-19T13:36:03.095Z", "organizationCount": 1, "projectCount": 16, "years": [ + 2026, 2025, 2024, 2023, @@ -15,14 +16,15 @@ "slug": "unikraft", "name": "Unikraft", "first_year": 2022, - "last_year": 2025, + "last_year": 2026, "total_projects": 16, "is_currently_active": true, "active_years": [ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -42,10 +44,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.753Z" + "generated_at": "2026-02-19T13:36:03.095Z" } } \ No newline at end of file diff --git a/new-api-details/topics/software-defined-networking.json b/new-api-details/topics/software-defined-networking.json index ddda8577..e57862f6 100644 --- a/new-api-details/topics/software-defined-networking.json +++ b/new-api-details/topics/software-defined-networking.json @@ -1,7 +1,7 @@ { "slug": "software-defined-networking", - "name": "software defined networking", - "published_at": "2026-01-25T16:06:28.947Z", + "name": "software-defined networking", + "published_at": "2026-02-19T13:36:01.560Z", "organizationCount": 4, "projectCount": 89, "years": [ @@ -23,7 +23,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 74, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -36,19 +36,6 @@ 2025 ] }, - { - "slug": "frrouting", - "name": "FRRouting", - "first_year": 2020, - "last_year": 2022, - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2020, - 2021, - 2022 - ] - }, { "slug": "netfilter-project", "name": "Netfilter project", @@ -63,6 +50,19 @@ 2019 ] }, + { + "slug": "frrouting", + "name": "FRRouting", + "first_year": 2020, + "last_year": 2022, + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2020, + 2021, + 2022 + ] + }, { "slug": "tungsten-fabric", "name": "Tungsten Fabric", @@ -119,6 +119,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.947Z" + "generated_at": "2026-02-19T13:36:01.560Z" } } \ No newline at end of file diff --git a/new-api-details/topics/software-defined-radio.json b/new-api-details/topics/software-defined-radio.json index a2370ee1..d36e78fd 100644 --- a/new-api-details/topics/software-defined-radio.json +++ b/new-api-details/topics/software-defined-radio.json @@ -1,10 +1,11 @@ { "slug": "software-defined-radio", "name": "software defined radio", - "published_at": "2026-01-25T16:06:28.442Z", + "published_at": "2026-02-19T13:36:00.389Z", "organizationCount": 5, "projectCount": 127, "years": [ + 2026, 2025, 2024, 2023, @@ -17,28 +18,13 @@ 2016 ], "organizations": [ - { - "slug": "aerospaceresearchnet", - "name": "AerospaceResearch.net", - "first_year": 2017, - "last_year": 2021, - "total_projects": 30, - "is_currently_active": false, - "active_years": [ - 2017, - 2018, - 2019, - 2020, - 2021 - ] - }, { "slug": "beagleboardorg", "name": "BeagleBoard.org", "first_year": 2016, "last_year": 2025, "total_projects": 44, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -52,13 +38,28 @@ 2025 ] }, + { + "slug": "aerospaceresearchnet", + "name": "AerospaceResearch.net", + "first_year": 2017, + "last_year": 2021, + "total_projects": 30, + "is_currently_active": false, + "active_years": [ + 2017, + 2018, + 2019, + 2020, + 2021 + ] + }, { "slug": "gnss-sdr", "name": "GNSS-SDR", "first_year": 2016, "last_year": 2025, "total_projects": 28, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -75,7 +76,7 @@ "slug": "gnu-radio", "name": "GNU Radio", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 18, "is_currently_active": true, "active_years": [ @@ -88,7 +89,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -145,10 +147,14 @@ "2025": { "organizationCount": 4, "projectCount": 16 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.442Z" + "generated_at": "2026-02-19T13:36:00.389Z" } } \ No newline at end of file diff --git a/new-api-details/topics/software-defined-storage.json b/new-api-details/topics/software-defined-storage.json index a9e6dae4..79e0cc77 100644 --- a/new-api-details/topics/software-defined-storage.json +++ b/new-api-details/topics/software-defined-storage.json @@ -1,10 +1,11 @@ { "slug": "software-defined-storage", "name": "software defined storage", - "published_at": "2026-01-25T16:06:28.715Z", + "published_at": "2026-02-19T13:36:00.970Z", "organizationCount": 1, "projectCount": 31, "years": [ + 2026, 2025, 2024, 2023, @@ -19,7 +20,7 @@ "slug": "ceph-foundation", "name": "Ceph Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 31, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 2, "projectCount": 10 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.715Z" + "generated_at": "2026-02-19T13:36:00.970Z" } } \ No newline at end of file diff --git a/new-api-details/topics/software-development.json b/new-api-details/topics/software-development.json index 9c06330e..8330cc05 100644 --- a/new-api-details/topics/software-development.json +++ b/new-api-details/topics/software-development.json @@ -1,10 +1,11 @@ { "slug": "software-development", "name": "software development", - "published_at": "2026-01-25T16:06:29.250Z", + "published_at": "2026-02-19T13:36:02.129Z", "organizationCount": 2, "projectCount": 35, "years": [ + 2026, 2025, 2024, 2023, @@ -12,19 +13,6 @@ 2020 ], "organizations": [ - { - "slug": "kotlin-foundation", - "name": "Kotlin Foundation", - "first_year": 2023, - "last_year": 2025, - "total_projects": 16, - "is_currently_active": true, - "active_years": [ - 2023, - 2024, - 2025 - ] - }, { "slug": "postman", "name": "Postman", @@ -38,6 +26,20 @@ 2023, 2024 ] + }, + { + "slug": "kotlin-foundation", + "name": "Kotlin Foundation", + "first_year": 2023, + "last_year": 2026, + "total_projects": 16, + "is_currently_active": true, + "active_years": [ + 2023, + 2024, + 2025, + 2026 + ] } ], "yearlyStats": { @@ -60,10 +62,14 @@ "2025": { "organizationCount": 1, "projectCount": 8 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.250Z" + "generated_at": "2026-02-19T13:36:02.129Z" } } \ No newline at end of file diff --git a/new-api-details/topics/software-engineering.json b/new-api-details/topics/software-engineering.json index b11bf954..8eb85aff 100644 --- a/new-api-details/topics/software-engineering.json +++ b/new-api-details/topics/software-engineering.json @@ -1,7 +1,7 @@ { "slug": "software-engineering", "name": "software engineering", - "published_at": "2026-01-25T16:06:28.614Z", + "published_at": "2026-02-19T13:36:00.822Z", "organizationCount": 4, "projectCount": 69, "years": [ @@ -35,7 +35,7 @@ "first_year": 2017, "last_year": 2025, "total_projects": 17, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2017, 2018, @@ -44,17 +44,6 @@ 2025 ] }, - { - "slug": "plasma-umass", - "name": "PLASMA-UMass", - "first_year": 2016, - "last_year": 2016, - "total_projects": 1, - "is_currently_active": false, - "active_years": [ - 2016 - ] - }, { "slug": "shogun", "name": "Shogun", @@ -68,6 +57,17 @@ 2019, 2020 ] + }, + { + "slug": "plasma-umass", + "name": "PLASMA-UMass", + "first_year": 2016, + "last_year": 2016, + "total_projects": 1, + "is_currently_active": false, + "active_years": [ + 2016 + ] } ], "yearlyStats": { @@ -102,6 +102,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.614Z" + "generated_at": "2026-02-19T13:36:00.822Z" } } \ No newline at end of file diff --git a/new-api-details/topics/software-model-checking.json b/new-api-details/topics/software-model-checking.json index c088355e..b79a8a9a 100644 --- a/new-api-details/topics/software-model-checking.json +++ b/new-api-details/topics/software-model-checking.json @@ -1,10 +1,11 @@ { "slug": "software-model-checking", "name": "software model checking", - "published_at": "2026-01-25T16:06:29.689Z", + "published_at": "2026-02-19T13:36:02.921Z", "organizationCount": 1, "projectCount": 46, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "the-jpf-team", "name": "The JPF team", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 46, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.689Z" + "generated_at": "2026-02-19T13:36:02.921Z" } } \ No newline at end of file diff --git a/new-api-details/topics/software-packages.json b/new-api-details/topics/software-packages.json index 110cfc32..7263ab67 100644 --- a/new-api-details/topics/software-packages.json +++ b/new-api-details/topics/software-packages.json @@ -1,10 +1,11 @@ { "slug": "software-packages", "name": "software packages", - "published_at": "2026-01-25T16:06:28.420Z", + "published_at": "2026-02-19T13:36:00.339Z", "organizationCount": 1, "projectCount": 32, "years": [ + 2026, 2025, 2024, 2023, @@ -19,7 +20,7 @@ "slug": "aboutcode", "name": "AboutCode", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 32, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.420Z" + "generated_at": "2026-02-19T13:36:00.339Z" } } \ No newline at end of file diff --git a/new-api-details/topics/software-preservation.json b/new-api-details/topics/software-preservation.json index d50886ba..3979980e 100644 --- a/new-api-details/topics/software-preservation.json +++ b/new-api-details/topics/software-preservation.json @@ -1,10 +1,11 @@ { "slug": "software-preservation", "name": "software preservation", - "published_at": "2026-01-25T16:06:29.616Z", + "published_at": "2026-02-19T13:36:02.820Z", "organizationCount": 1, "projectCount": 34, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "scummvm", "name": "ScummVM", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 34, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.616Z" + "generated_at": "2026-02-19T13:36:02.820Z" } } \ No newline at end of file diff --git a/new-api-details/topics/software-quality.json b/new-api-details/topics/software-quality.json index 294d59b4..a930c1ad 100644 --- a/new-api-details/topics/software-quality.json +++ b/new-api-details/topics/software-quality.json @@ -1,10 +1,11 @@ { "slug": "software-quality", "name": "software quality", - "published_at": "2026-01-25T16:06:29.149Z", + "published_at": "2026-02-19T13:36:01.809Z", "organizationCount": 2, "projectCount": 53, "years": [ + 2026, 2025, 2024, 2023, @@ -17,22 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "institut-für-angewandte-informatik-infai-ev", - "name": "Institut für Angewandte Informatik (InfAI) e.V.", - "first_year": 2019, - "last_year": 2019, - "total_projects": 1, - "is_currently_active": false, - "active_years": [ - 2019 - ] - }, { "slug": "opensuse-project", "name": "openSUSE Project", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 52, "is_currently_active": true, "active_years": [ @@ -44,7 +34,19 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "institut-für-angewandte-informatik-infai-ev", + "name": "Institut für Angewandte Informatik (InfAI) e.V.", + "first_year": 2019, + "last_year": 2019, + "total_projects": 1, + "is_currently_active": false, + "active_years": [ + 2019 ] } ], @@ -88,10 +90,14 @@ "2025": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.149Z" + "generated_at": "2026-02-19T13:36:01.809Z" } } \ No newline at end of file diff --git a/new-api-details/topics/software-radio.json b/new-api-details/topics/software-radio.json index 2a069c4b..3be03cda 100644 --- a/new-api-details/topics/software-radio.json +++ b/new-api-details/topics/software-radio.json @@ -1,10 +1,11 @@ { "slug": "software-radio", "name": "software radio", - "published_at": "2026-01-25T16:06:29.064Z", + "published_at": "2026-02-19T13:36:01.703Z", "organizationCount": 1, "projectCount": 18, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "gnu-radio", "name": "GNU Radio", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 18, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.064Z" + "generated_at": "2026-02-19T13:36:01.703Z" } } \ No newline at end of file diff --git a/new-api-details/topics/software-reuse.json b/new-api-details/topics/software-reuse.json index 1023b3ce..a754a94d 100644 --- a/new-api-details/topics/software-reuse.json +++ b/new-api-details/topics/software-reuse.json @@ -1,10 +1,11 @@ { "slug": "software-reuse", "name": "software reuse", - "published_at": "2026-01-25T16:06:29.752Z", + "published_at": "2026-02-19T13:36:03.092Z", "organizationCount": 1, "projectCount": 16, "years": [ + 2026, 2025, 2024, 2023, @@ -15,14 +16,15 @@ "slug": "unikraft", "name": "Unikraft", "first_year": 2022, - "last_year": 2025, + "last_year": 2026, "total_projects": 16, "is_currently_active": true, "active_years": [ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -42,10 +44,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.752Z" + "generated_at": "2026-02-19T13:36:03.093Z" } } \ No newline at end of file diff --git a/new-api-details/topics/software-sustainability.json b/new-api-details/topics/software-sustainability.json index c4125400..6ec42ecc 100644 --- a/new-api-details/topics/software-sustainability.json +++ b/new-api-details/topics/software-sustainability.json @@ -1,7 +1,7 @@ { "slug": "software-sustainability", "name": "software sustainability", - "published_at": "2026-01-25T16:06:28.663Z", + "published_at": "2026-02-19T13:36:00.998Z", "organizationCount": 1, "projectCount": 29, "years": [ @@ -19,7 +19,7 @@ "first_year": 2018, "last_year": 2025, "total_projects": 29, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2018, 2019, @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.663Z" + "generated_at": "2026-02-19T13:36:00.998Z" } } \ No newline at end of file diff --git a/new-api-details/topics/software-testing.json b/new-api-details/topics/software-testing.json index f26be71c..4a5db3ff 100644 --- a/new-api-details/topics/software-testing.json +++ b/new-api-details/topics/software-testing.json @@ -1,10 +1,11 @@ { "slug": "software-testing", "name": "software testing", - "published_at": "2026-01-25T16:06:28.373Z", + "published_at": "2026-02-19T13:36:00.402Z", "organizationCount": 2, "projectCount": 17, "years": [ + 2026, 2025, 2024, 2023, @@ -18,7 +19,7 @@ "slug": "aflplusplus", "name": "AFLplusplus", "first_year": 2020, - "last_year": 2025, + "last_year": 2026, "total_projects": 10, "is_currently_active": true, "active_years": [ @@ -27,7 +28,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -70,10 +72,14 @@ "2025": { "organizationCount": 1, "projectCount": 1 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.374Z" + "generated_at": "2026-02-19T13:36:00.402Z" } } \ No newline at end of file diff --git a/new-api-details/topics/software-verification.json b/new-api-details/topics/software-verification.json index a9d90354..b996e214 100644 --- a/new-api-details/topics/software-verification.json +++ b/new-api-details/topics/software-verification.json @@ -1,7 +1,7 @@ { "slug": "software-verification", "name": "software verification", - "published_at": "2026-01-25T16:06:29.633Z", + "published_at": "2026-02-19T13:36:02.832Z", "organizationCount": 1, "projectCount": 14, "years": [ @@ -18,7 +18,7 @@ "first_year": 2018, "last_year": 2025, "total_projects": 14, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2018, 2019, @@ -52,6 +52,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.633Z" + "generated_at": "2026-02-19T13:36:02.832Z" } } \ No newline at end of file diff --git a/new-api-details/topics/software-visualization.json b/new-api-details/topics/software-visualization.json index d825edc6..d7a1f6f1 100644 --- a/new-api-details/topics/software-visualization.json +++ b/new-api-details/topics/software-visualization.json @@ -1,10 +1,11 @@ { "slug": "software-visualization", "name": "software visualization", - "published_at": "2026-01-25T16:06:28.548Z", + "published_at": "2026-02-19T13:36:00.874Z", "organizationCount": 1, "projectCount": 73, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "brl-cad", "name": "BRL-CAD", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 73, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.548Z" + "generated_at": "2026-02-19T13:36:00.874Z" } } \ No newline at end of file diff --git a/new-api-details/topics/software.json b/new-api-details/topics/software.json index 8dc65bbc..50bff132 100644 --- a/new-api-details/topics/software.json +++ b/new-api-details/topics/software.json @@ -1,10 +1,11 @@ { "slug": "software", "name": "software", - "published_at": "2026-01-25T16:06:28.627Z", + "published_at": "2026-02-19T13:36:00.896Z", "organizationCount": 3, "projectCount": 109, "years": [ + 2026, 2025, 2024, 2023, @@ -17,34 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "c2si", - "name": "C2SI", - "first_year": 2024, - "last_year": 2024, - "total_projects": 12, - "is_currently_active": false, - "active_years": [ - 2024 - ] - }, - { - "slug": "data-for-the-common-good", - "name": "Data for the Common Good", - "first_year": 2024, - "last_year": 2025, - "total_projects": 8, - "is_currently_active": true, - "active_years": [ - 2024, - 2025 - ] - }, { "slug": "sugar-labs", "name": "Sugar Labs", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 89, "is_currently_active": true, "active_years": [ @@ -57,7 +35,33 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "c2si", + "name": "C2SI", + "first_year": 2024, + "last_year": 2026, + "total_projects": 12, + "is_currently_active": true, + "active_years": [ + 2024, + 2026 + ] + }, + { + "slug": "data-for-the-common-good", + "name": "Data for the Common Good", + "first_year": 2024, + "last_year": 2026, + "total_projects": 8, + "is_currently_active": true, + "active_years": [ + 2024, + 2025, + 2026 ] } ], @@ -101,10 +105,14 @@ "2025": { "organizationCount": 2, "projectCount": 15 + }, + "2026": { + "organizationCount": 3, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.627Z" + "generated_at": "2026-02-19T13:36:00.896Z" } } \ No newline at end of file diff --git a/new-api-details/topics/softwarecompositionanalysis.json b/new-api-details/topics/softwarecompositionanalysis.json index 782976cb..0b6661f3 100644 --- a/new-api-details/topics/softwarecompositionanalysis.json +++ b/new-api-details/topics/softwarecompositionanalysis.json @@ -1,10 +1,11 @@ { "slug": "softwarecompositionanalysis", "name": "SoftwareCompositionAnalysis", - "published_at": "2026-01-25T16:06:28.422Z", + "published_at": "2026-02-19T13:36:00.353Z", "organizationCount": 1, "projectCount": 32, "years": [ + 2026, 2025, 2024, 2023, @@ -19,7 +20,7 @@ "slug": "aboutcode", "name": "AboutCode", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 32, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.422Z" + "generated_at": "2026-02-19T13:36:00.353Z" } } \ No newline at end of file diff --git a/new-api-details/topics/solar-physics.json b/new-api-details/topics/solar-physics.json index 8fdab80d..b3a21f9a 100644 --- a/new-api-details/topics/solar-physics.json +++ b/new-api-details/topics/solar-physics.json @@ -1,10 +1,11 @@ { "slug": "solar-physics", "name": "solar physics", - "published_at": "2026-01-25T16:06:29.466Z", + "published_at": "2026-02-19T13:36:02.549Z", "organizationCount": 1, "projectCount": 77, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "openastronomy", "name": "OpenAstronomy", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 77, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.466Z" + "generated_at": "2026-02-19T13:36:02.549Z" } } \ No newline at end of file diff --git a/new-api-details/topics/solid-geometry.json b/new-api-details/topics/solid-geometry.json index 5b001b01..5100858a 100644 --- a/new-api-details/topics/solid-geometry.json +++ b/new-api-details/topics/solid-geometry.json @@ -1,10 +1,11 @@ { "slug": "solid-geometry", "name": "solid geometry", - "published_at": "2026-01-25T16:06:28.550Z", + "published_at": "2026-02-19T13:36:00.877Z", "organizationCount": 1, "projectCount": 73, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "brl-cad", "name": "BRL-CAD", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 73, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.550Z" + "generated_at": "2026-02-19T13:36:00.877Z" } } \ No newline at end of file diff --git a/new-api-details/topics/solid-modeling.json b/new-api-details/topics/solid-modeling.json index ed453a29..9e8276ab 100644 --- a/new-api-details/topics/solid-modeling.json +++ b/new-api-details/topics/solid-modeling.json @@ -1,10 +1,11 @@ { "slug": "solid-modeling", "name": "solid modeling", - "published_at": "2026-01-25T16:06:28.553Z", + "published_at": "2026-02-19T13:36:00.887Z", "organizationCount": 1, "projectCount": 73, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "brl-cad", "name": "BRL-CAD", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 73, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.553Z" + "generated_at": "2026-02-19T13:36:00.887Z" } } \ No newline at end of file diff --git a/new-api-details/topics/solver.json b/new-api-details/topics/solver.json index 98b362e6..9b6ae52b 100644 --- a/new-api-details/topics/solver.json +++ b/new-api-details/topics/solver.json @@ -1,7 +1,7 @@ { "slug": "solver", "name": "solver", - "published_at": "2026-01-25T16:06:28.407Z", + "published_at": "2026-02-19T13:36:00.634Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.407Z" + "generated_at": "2026-02-19T13:36:00.634Z" } } \ No newline at end of file diff --git a/new-api-details/topics/sound.json b/new-api-details/topics/sound.json index da2b2c27..f2c60160 100644 --- a/new-api-details/topics/sound.json +++ b/new-api-details/topics/sound.json @@ -1,7 +1,7 @@ { "slug": "sound", "name": "Sound", - "published_at": "2026-01-25T16:06:28.542Z", + "published_at": "2026-02-19T13:36:00.640Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.542Z" + "generated_at": "2026-02-19T13:36:00.640Z" } } \ No newline at end of file diff --git a/new-api-details/topics/source-code-analyzer.json b/new-api-details/topics/source-code-analyzer.json index f4caf56f..fa687e94 100644 --- a/new-api-details/topics/source-code-analyzer.json +++ b/new-api-details/topics/source-code-analyzer.json @@ -1,7 +1,7 @@ { "slug": "source-code-analyzer", "name": "source code analyzer", - "published_at": "2026-01-25T16:06:29.524Z", + "published_at": "2026-02-19T13:36:02.719Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.524Z" + "generated_at": "2026-02-19T13:36:02.719Z" } } \ No newline at end of file diff --git a/new-api-details/topics/source-code-archive.json b/new-api-details/topics/source-code-archive.json index de2f99e5..b0b624ed 100644 --- a/new-api-details/topics/source-code-archive.json +++ b/new-api-details/topics/source-code-archive.json @@ -1,7 +1,7 @@ { "slug": "source-code-archive", "name": "source code archive", - "published_at": "2026-01-25T16:06:29.628Z", + "published_at": "2026-02-19T13:36:02.839Z", "organizationCount": 1, "projectCount": 6, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.628Z" + "generated_at": "2026-02-19T13:36:02.839Z" } } \ No newline at end of file diff --git a/new-api-details/topics/source-code-management.json b/new-api-details/topics/source-code-management.json index 7196f390..a34f10ac 100644 --- a/new-api-details/topics/source-code-management.json +++ b/new-api-details/topics/source-code-management.json @@ -1,7 +1,7 @@ { "slug": "source-code-management", "name": "source code management", - "published_at": "2026-01-25T16:06:29.631Z", + "published_at": "2026-02-19T13:36:02.841Z", "organizationCount": 1, "projectCount": 6, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.631Z" + "generated_at": "2026-02-19T13:36:02.841Z" } } \ No newline at end of file diff --git a/new-api-details/topics/space-applications.json b/new-api-details/topics/space-applications.json index b43e3fef..7a28532e 100644 --- a/new-api-details/topics/space-applications.json +++ b/new-api-details/topics/space-applications.json @@ -1,7 +1,7 @@ { "slug": "space-applications", "name": "space applications", - "published_at": "2026-01-25T16:06:28.441Z", + "published_at": "2026-02-19T13:36:00.388Z", "organizationCount": 2, "projectCount": 37, "years": [ @@ -65,6 +65,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.441Z" + "generated_at": "2026-02-19T13:36:00.388Z" } } \ No newline at end of file diff --git a/new-api-details/topics/space-standards.json b/new-api-details/topics/space-standards.json index ebff3012..c13e1b76 100644 --- a/new-api-details/topics/space-standards.json +++ b/new-api-details/topics/space-standards.json @@ -1,7 +1,7 @@ { "slug": "space-standards", "name": "space standards", - "published_at": "2026-01-25T16:06:29.268Z", + "published_at": "2026-02-19T13:36:02.167Z", "organizationCount": 1, "projectCount": 7, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.268Z" + "generated_at": "2026-02-19T13:36:02.167Z" } } \ No newline at end of file diff --git a/new-api-details/topics/space.json b/new-api-details/topics/space.json index 4c35f01e..b804c91e 100644 --- a/new-api-details/topics/space.json +++ b/new-api-details/topics/space.json @@ -1,10 +1,11 @@ { "slug": "space", "name": "space", - "published_at": "2026-01-25T16:06:29.271Z", + "published_at": "2026-02-19T13:36:02.171Z", "organizationCount": 3, "projectCount": 23, "years": [ + 2026, 2024, 2022, 2021, @@ -14,17 +15,32 @@ 2016 ], "organizations": [ + { + "slug": "ruby-science-foundation", + "name": "Ruby Science Foundation", + "first_year": 2016, + "last_year": 2019, + "total_projects": 13, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2018, + 2019 + ] + }, { "slug": "librecube-initiative", "name": "LibreCube Initiative", "first_year": 2021, - "last_year": 2024, + "last_year": 2026, "total_projects": 7, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2021, 2022, - 2024 + 2024, + 2026 ] }, { @@ -37,20 +53,6 @@ "active_years": [ 2016 ] - }, - { - "slug": "ruby-science-foundation", - "name": "Ruby Science Foundation", - "first_year": 2016, - "last_year": 2019, - "total_projects": 13, - "is_currently_active": false, - "active_years": [ - 2016, - 2017, - 2018, - 2019 - ] } ], "yearlyStats": { @@ -81,10 +83,14 @@ "2024": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.271Z" + "generated_at": "2026-02-19T13:36:02.171Z" } } \ No newline at end of file diff --git a/new-api-details/topics/spacecraft.json b/new-api-details/topics/spacecraft.json index 26ad756c..0a02f636 100644 --- a/new-api-details/topics/spacecraft.json +++ b/new-api-details/topics/spacecraft.json @@ -1,7 +1,7 @@ { "slug": "spacecraft", "name": "spacecraft", - "published_at": "2026-01-25T16:06:29.269Z", + "published_at": "2026-02-19T13:36:02.168Z", "organizationCount": 1, "projectCount": 7, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.269Z" + "generated_at": "2026-02-19T13:36:02.168Z" } } \ No newline at end of file diff --git a/new-api-details/topics/spam-filtering.json b/new-api-details/topics/spam-filtering.json index a79648f7..ec3cef59 100644 --- a/new-api-details/topics/spam-filtering.json +++ b/new-api-details/topics/spam-filtering.json @@ -1,7 +1,7 @@ { "slug": "spam-filtering", "name": "spam filtering", - "published_at": "2026-01-25T16:06:29.598Z", + "published_at": "2026-02-19T13:36:02.801Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -16,7 +16,7 @@ "first_year": 2017, "last_year": 2025, "total_projects": 3, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2017, 2018, @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.598Z" + "generated_at": "2026-02-19T13:36:02.801Z" } } \ No newline at end of file diff --git a/new-api-details/topics/spatial-data-infrastructures.json b/new-api-details/topics/spatial-data-infrastructures.json index 4320b35d..d28fa30e 100644 --- a/new-api-details/topics/spatial-data-infrastructures.json +++ b/new-api-details/topics/spatial-data-infrastructures.json @@ -1,10 +1,11 @@ { "slug": "spatial-data-infrastructures", "name": "spatial data infrastructures", - "published_at": "2026-01-25T16:06:28.352Z", + "published_at": "2026-02-19T13:36:00.258Z", "organizationCount": 1, "projectCount": 25, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "52north-spatial-information-research-gmbh", "name": "52°North Spatial Information Research GmbH", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 25, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.352Z" + "generated_at": "2026-02-19T13:36:00.258Z" } } \ No newline at end of file diff --git a/new-api-details/topics/spatial-data.json b/new-api-details/topics/spatial-data.json index df854cfe..d1bbccd5 100644 --- a/new-api-details/topics/spatial-data.json +++ b/new-api-details/topics/spatial-data.json @@ -1,10 +1,11 @@ { "slug": "spatial-data", "name": "spatial data", - "published_at": "2026-01-25T16:06:28.350Z", + "published_at": "2026-02-19T13:36:00.255Z", "organizationCount": 1, "projectCount": 25, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "52north-spatial-information-research-gmbh", "name": "52°North Spatial Information Research GmbH", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 25, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.350Z" + "generated_at": "2026-02-19T13:36:00.255Z" } } \ No newline at end of file diff --git a/new-api-details/topics/spatial-information-infrastructures.json b/new-api-details/topics/spatial-information-infrastructures.json index 6392a324..d9ccc312 100644 --- a/new-api-details/topics/spatial-information-infrastructures.json +++ b/new-api-details/topics/spatial-information-infrastructures.json @@ -1,10 +1,11 @@ { "slug": "spatial-information-infrastructures", "name": "spatial information infrastructures", - "published_at": "2026-01-25T16:06:28.366Z", + "published_at": "2026-02-19T13:36:00.288Z", "organizationCount": 1, "projectCount": 25, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "52north-spatial-information-research-gmbh", "name": "52°North Spatial Information Research GmbH", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 25, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.366Z" + "generated_at": "2026-02-19T13:36:00.288Z" } } \ No newline at end of file diff --git a/new-api-details/topics/spatial-information.json b/new-api-details/topics/spatial-information.json index fcfa237c..16874a91 100644 --- a/new-api-details/topics/spatial-information.json +++ b/new-api-details/topics/spatial-information.json @@ -1,10 +1,11 @@ { "slug": "spatial-information", "name": "spatial information", - "published_at": "2026-01-25T16:06:28.353Z", + "published_at": "2026-02-19T13:36:00.261Z", "organizationCount": 1, "projectCount": 25, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "52north-spatial-information-research-gmbh", "name": "52°North Spatial Information Research GmbH", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 25, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.353Z" + "generated_at": "2026-02-19T13:36:00.261Z" } } \ No newline at end of file diff --git a/new-api-details/topics/spatial.json b/new-api-details/topics/spatial.json index b45b479a..4463899e 100644 --- a/new-api-details/topics/spatial.json +++ b/new-api-details/topics/spatial.json @@ -1,7 +1,7 @@ { "slug": "spatial", "name": "spatial", - "published_at": "2026-01-25T16:06:29.233Z", + "published_at": "2026-02-19T13:36:02.081Z", "organizationCount": 1, "projectCount": 1, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.233Z" + "generated_at": "2026-02-19T13:36:02.081Z" } } \ No newline at end of file diff --git a/new-api-details/topics/spdx.json b/new-api-details/topics/spdx.json index f82e5fa6..5b002423 100644 --- a/new-api-details/topics/spdx.json +++ b/new-api-details/topics/spdx.json @@ -1,10 +1,11 @@ { "slug": "spdx", "name": "spdx", - "published_at": "2026-01-25T16:06:28.939Z", + "published_at": "2026-02-19T13:36:01.510Z", "organizationCount": 2, "projectCount": 179, "years": [ + 2026, 2025, 2024, 2023, @@ -18,13 +19,15 @@ ], "organizations": [ { - "slug": "fossology", - "name": "FOSSology", - "first_year": 2018, - "last_year": 2025, - "total_projects": 42, + "slug": "the-linux-foundation", + "name": "The Linux Foundation", + "first_year": 2016, + "last_year": 2026, + "total_projects": 137, "is_currently_active": true, "active_years": [ + 2016, + 2017, 2018, 2019, 2020, @@ -32,19 +35,18 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "the-linux-foundation", - "name": "The Linux Foundation", - "first_year": 2016, - "last_year": 2025, - "total_projects": 137, + "slug": "fossology", + "name": "FOSSology", + "first_year": 2018, + "last_year": 2026, + "total_projects": 42, "is_currently_active": true, "active_years": [ - 2016, - 2017, 2018, 2019, 2020, @@ -52,7 +54,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -96,10 +99,14 @@ "2025": { "organizationCount": 2, "projectCount": 31 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.939Z" + "generated_at": "2026-02-19T13:36:01.510Z" } } \ No newline at end of file diff --git a/new-api-details/topics/spectrum-analysis.json b/new-api-details/topics/spectrum-analysis.json index 05e750ca..80f5c624 100644 --- a/new-api-details/topics/spectrum-analysis.json +++ b/new-api-details/topics/spectrum-analysis.json @@ -1,10 +1,11 @@ { "slug": "spectrum-analysis", "name": "spectrum analysis", - "published_at": "2026-01-25T16:06:29.055Z", + "published_at": "2026-02-19T13:36:01.691Z", "organizationCount": 1, "projectCount": 18, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "gnu-radio", "name": "GNU Radio", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 18, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.055Z" + "generated_at": "2026-02-19T13:36:01.691Z" } } \ No newline at end of file diff --git a/new-api-details/topics/speech-recognition.json b/new-api-details/topics/speech-recognition.json index 10f5ba10..fe237980 100644 --- a/new-api-details/topics/speech-recognition.json +++ b/new-api-details/topics/speech-recognition.json @@ -1,7 +1,7 @@ { "slug": "speech-recognition", "name": "speech recognition", - "published_at": "2026-01-25T16:06:28.673Z", + "published_at": "2026-02-19T13:36:01.052Z", "organizationCount": 1, "projectCount": 11, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.673Z" + "generated_at": "2026-02-19T13:36:01.052Z" } } \ No newline at end of file diff --git a/new-api-details/topics/speed-test.json b/new-api-details/topics/speed-test.json new file mode 100644 index 00000000..c9451b6a --- /dev/null +++ b/new-api-details/topics/speed-test.json @@ -0,0 +1,33 @@ +{ + "slug": "speed-test", + "name": "speed test", + "published_at": "2026-02-19T13:36:02.267Z", + "organizationCount": 1, + "projectCount": 0, + "years": [ + 2026 + ], + "organizations": [ + { + "slug": "measurement-lab", + "name": "Measurement Lab", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + } + ], + "yearlyStats": { + "2026": { + "organizationCount": 1, + "projectCount": 0 + } + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:36:02.267Z" + } +} \ No newline at end of file diff --git a/new-api-details/topics/sql-features.json b/new-api-details/topics/sql-features.json index 31930b93..437f03c7 100644 --- a/new-api-details/topics/sql-features.json +++ b/new-api-details/topics/sql-features.json @@ -1,10 +1,11 @@ { "slug": "sql-features", "name": "SQL Features", - "published_at": "2026-01-25T16:06:29.319Z", + "published_at": "2026-02-19T13:36:02.216Z", "organizationCount": 1, "projectCount": 39, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "mariadb", "name": "MariaDB", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 39, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.319Z" + "generated_at": "2026-02-19T13:36:02.216Z" } } \ No newline at end of file diff --git a/new-api-details/topics/sql.json b/new-api-details/topics/sql.json index 68dff585..27298695 100644 --- a/new-api-details/topics/sql.json +++ b/new-api-details/topics/sql.json @@ -1,10 +1,11 @@ { "slug": "sql", "name": "sql", - "published_at": "2026-01-25T16:06:28.864Z", + "published_at": "2026-02-19T13:36:01.216Z", "organizationCount": 5, "projectCount": 132, "years": [ + 2026, 2025, 2024, 2023, @@ -18,29 +19,30 @@ ], "organizations": [ { - "slug": "drupal-association", - "name": "Drupal Association", - "first_year": 2016, - "last_year": 2025, - "total_projects": 39, + "slug": "postgresql", + "name": "PostgreSQL", + "first_year": 2017, + "last_year": 2026, + "total_projects": 51, "is_currently_active": true, "active_years": [ - 2016, 2017, 2018, 2019, 2020, + 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "mariadb", - "name": "MariaDB", + "slug": "drupal-association", + "name": "Drupal Association", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 39, "is_currently_active": true, "active_years": [ @@ -49,21 +51,22 @@ 2018, 2019, 2020, - 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "postgresql", - "name": "PostgreSQL", - "first_year": 2017, - "last_year": 2025, - "total_projects": 51, + "slug": "mariadb", + "name": "MariaDB", + "first_year": 2016, + "last_year": 2026, + "total_projects": 39, "is_currently_active": true, "active_years": [ + 2016, 2017, 2018, 2019, @@ -72,29 +75,30 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "seaql", - "name": "SeaQL", - "first_year": 2022, + "slug": "tarantool", + "name": "Tarantool", + "first_year": 2021, "last_year": 2022, - "total_projects": 0, + "total_projects": 3, "is_currently_active": false, "active_years": [ + 2021, 2022 ] }, { - "slug": "tarantool", - "name": "Tarantool", - "first_year": 2021, + "slug": "seaql", + "name": "SeaQL", + "first_year": 2022, "last_year": 2022, - "total_projects": 3, + "total_projects": 0, "is_currently_active": false, "active_years": [ - 2021, 2022 ] } @@ -139,10 +143,14 @@ "2025": { "organizationCount": 3, "projectCount": 21 + }, + "2026": { + "organizationCount": 3, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.864Z" + "generated_at": "2026-02-19T13:36:01.216Z" } } \ No newline at end of file diff --git a/new-api-details/topics/sre.json b/new-api-details/topics/sre.json index d3efd41c..c25dc223 100644 --- a/new-api-details/topics/sre.json +++ b/new-api-details/topics/sre.json @@ -1,7 +1,7 @@ { "slug": "sre", "name": "sre", - "published_at": "2026-01-25T16:06:29.238Z", + "published_at": "2026-02-19T13:36:02.103Z", "organizationCount": 2, "projectCount": 6, "years": [ @@ -50,6 +50,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.238Z" + "generated_at": "2026-02-19T13:36:02.103Z" } } \ No newline at end of file diff --git a/new-api-details/topics/standard-libraries.json b/new-api-details/topics/standard-libraries.json index 8667a529..73e5263a 100644 --- a/new-api-details/topics/standard-libraries.json +++ b/new-api-details/topics/standard-libraries.json @@ -1,10 +1,11 @@ { "slug": "standard-libraries", "name": "Standard Libraries", - "published_at": "2026-01-25T16:06:29.655Z", + "published_at": "2026-02-19T13:36:02.873Z", "organizationCount": 1, "projectCount": 26, "years": [ + 2026, 2025, 2024, 2023, @@ -19,7 +20,7 @@ "slug": "swift", "name": "Swift", "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "total_projects": 26, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.655Z" + "generated_at": "2026-02-19T13:36:02.873Z" } } \ No newline at end of file diff --git a/new-api-details/topics/standards.json b/new-api-details/topics/standards.json index b16b873f..a10b77d9 100644 --- a/new-api-details/topics/standards.json +++ b/new-api-details/topics/standards.json @@ -1,10 +1,11 @@ { "slug": "standards", "name": "standards", - "published_at": "2026-01-25T16:06:29.088Z", + "published_at": "2026-02-19T13:36:01.632Z", "organizationCount": 4, "projectCount": 115, "years": [ + 2026, 2025, 2024, 2023, @@ -21,9 +22,9 @@ "slug": "global-alliance-for-genomics-and-health", "name": "Global Alliance for Genomics and Health", "first_year": 2016, - "last_year": 2024, + "last_year": 2026, "total_projects": 45, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -33,7 +34,25 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 + ] + }, + { + "slug": "spdx", + "name": "SPDX", + "first_year": 2017, + "last_year": 2023, + "total_projects": 29, + "is_currently_active": false, + "active_years": [ + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023 ] }, { @@ -42,7 +61,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -60,29 +79,13 @@ "slug": "json-schema", "name": "JSON Schema", "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "total_projects": 14, "is_currently_active": true, "active_years": [ 2024, - 2025 - ] - }, - { - "slug": "spdx", - "name": "SPDX", - "first_year": 2017, - "last_year": 2023, - "total_projects": 29, - "is_currently_active": false, - "active_years": [ - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023 + 2025, + 2026 ] } ], @@ -126,10 +129,14 @@ "2025": { "organizationCount": 2, "projectCount": 11 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.088Z" + "generated_at": "2026-02-19T13:36:01.632Z" } } \ No newline at end of file diff --git a/new-api-details/topics/stateful.json b/new-api-details/topics/stateful.json index 5643acef..89489908 100644 --- a/new-api-details/topics/stateful.json +++ b/new-api-details/topics/stateful.json @@ -1,7 +1,7 @@ { "slug": "stateful", "name": "stateful", - "published_at": "2026-01-25T16:06:29.185Z", + "published_at": "2026-02-19T13:36:01.952Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.186Z" + "generated_at": "2026-02-19T13:36:01.952Z" } } \ No newline at end of file diff --git a/new-api-details/topics/static-code-analysis.json b/new-api-details/topics/static-code-analysis.json index c6e2188c..fc278479 100644 --- a/new-api-details/topics/static-code-analysis.json +++ b/new-api-details/topics/static-code-analysis.json @@ -1,10 +1,11 @@ { "slug": "static-code-analysis", "name": "static code analysis", - "published_at": "2026-01-25T16:06:29.256Z", + "published_at": "2026-02-19T13:36:01.006Z", "organizationCount": 4, "projectCount": 183, "years": [ + 2026, 2025, 2024, 2023, @@ -18,20 +19,24 @@ ], "organizations": [ { - "slug": "checkstyle", - "name": "checkstyle", - "first_year": 2017, - "last_year": 2025, - "total_projects": 21, + "slug": "llvm-compiler-infrastructure", + "name": "LLVM Compiler Infrastructure", + "first_year": 2016, + "last_year": 2026, + "total_projects": 122, "is_currently_active": true, "active_years": [ + 2016, 2017, + 2018, + 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -49,23 +54,21 @@ ] }, { - "slug": "llvm-compiler-infrastructure", - "name": "LLVM Compiler Infrastructure", - "first_year": 2016, - "last_year": 2025, - "total_projects": 122, + "slug": "checkstyle", + "name": "checkstyle", + "first_year": 2017, + "last_year": 2026, + "total_projects": 21, "is_currently_active": true, "active_years": [ - 2016, 2017, - 2018, - 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -121,10 +124,14 @@ "2025": { "organizationCount": 2, "projectCount": 20 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.256Z" + "generated_at": "2026-02-19T13:36:01.006Z" } } \ No newline at end of file diff --git a/new-api-details/topics/statically-typed-languages.json b/new-api-details/topics/statically-typed-languages.json index 3e31aca3..46cc4df7 100644 --- a/new-api-details/topics/statically-typed-languages.json +++ b/new-api-details/topics/statically-typed-languages.json @@ -1,10 +1,11 @@ { "slug": "statically-typed-languages", "name": "statically-typed languages", - "published_at": "2026-01-25T16:06:29.265Z", + "published_at": "2026-02-19T13:36:02.143Z", "organizationCount": 1, "projectCount": 43, "years": [ + 2026, 2025, 2024, 2021, @@ -19,7 +20,7 @@ "slug": "lablua", "name": "LabLua", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 43, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2020, 2021, 2024, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.265Z" + "generated_at": "2026-02-19T13:36:02.143Z" } } \ No newline at end of file diff --git a/new-api-details/topics/statistical-computing.json b/new-api-details/topics/statistical-computing.json index 8acea084..fe0b1bd8 100644 --- a/new-api-details/topics/statistical-computing.json +++ b/new-api-details/topics/statistical-computing.json @@ -1,10 +1,11 @@ { "slug": "statistical-computing", "name": "statistical computing", - "published_at": "2026-01-25T16:06:29.416Z", + "published_at": "2026-02-19T13:36:02.427Z", "organizationCount": 1, "projectCount": 277, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "numfocus", "name": "NumFOCUS", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 277, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 32 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.416Z" + "generated_at": "2026-02-19T13:36:02.427Z" } } \ No newline at end of file diff --git a/new-api-details/topics/statistics.json b/new-api-details/topics/statistics.json index 74fdeebc..173f46c3 100644 --- a/new-api-details/topics/statistics.json +++ b/new-api-details/topics/statistics.json @@ -1,10 +1,11 @@ { "slug": "statistics", "name": "statistics", - "published_at": "2026-01-25T16:06:28.691Z", + "published_at": "2026-02-19T13:36:00.908Z", "organizationCount": 7, "projectCount": 419, "years": [ + 2026, 2025, 2024, 2023, @@ -18,65 +19,75 @@ ], "organizations": [ { - "slug": "canadian-centre-for-computational-genomics", - "name": "Canadian Centre for Computational Genomics", + "slug": "r-project-for-statistical-computing", + "name": "R project for statistical computing", "first_year": 2016, - "last_year": 2020, - "total_projects": 15, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 212, + "is_currently_active": true, "active_years": [ 2016, + 2017, 2018, 2019, - 2020 + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "geomscale", - "name": "GeomScale", - "first_year": 2020, - "last_year": 2025, - "total_projects": 30, + "slug": "the-julia-language", + "name": "The Julia Language", + "first_year": 2016, + "last_year": 2026, + "total_projects": 140, "is_currently_active": true, "active_years": [ + 2016, + 2017, + 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "mggg-redistricting-lab", - "name": "MGGG Redistricting Lab", + "slug": "geomscale", + "name": "GeomScale", "first_year": 2020, - "last_year": 2021, - "total_projects": 3, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 30, + "is_currently_active": true, "active_years": [ 2020, - 2021 + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "r-project-for-statistical-computing", - "name": "R project for statistical computing", + "slug": "canadian-centre-for-computational-genomics", + "name": "Canadian Centre for Computational Genomics", "first_year": 2016, - "last_year": 2025, - "total_projects": 212, - "is_currently_active": true, + "last_year": 2020, + "total_projects": 15, + "is_currently_active": false, "active_years": [ 2016, - 2017, 2018, 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2020 ] }, { @@ -97,31 +108,25 @@ "slug": "stdlib", "name": "stdlib", "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "total_projects": 9, "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "the-julia-language", - "name": "The Julia Language", - "first_year": 2016, - "last_year": 2025, - "total_projects": 140, - "is_currently_active": true, + "slug": "mggg-redistricting-lab", + "name": "MGGG Redistricting Lab", + "first_year": 2020, + "last_year": 2021, + "total_projects": 3, + "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2019, 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2021 ] } ], @@ -165,10 +170,14 @@ "2025": { "organizationCount": 4, "projectCount": 49 + }, + "2026": { + "organizationCount": 4, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.691Z" + "generated_at": "2026-02-19T13:36:00.908Z" } } \ No newline at end of file diff --git a/new-api-details/topics/stem.json b/new-api-details/topics/stem.json index c1656a67..4592f53c 100644 --- a/new-api-details/topics/stem.json +++ b/new-api-details/topics/stem.json @@ -1,10 +1,11 @@ { "slug": "stem", "name": "stem", - "published_at": "2026-01-25T16:06:29.653Z", + "published_at": "2026-02-19T13:36:02.868Z", "organizationCount": 1, "projectCount": 89, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "sugar-labs", "name": "Sugar Labs", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 89, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 11 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.653Z" + "generated_at": "2026-02-19T13:36:02.868Z" } } \ No newline at end of file diff --git a/new-api-details/topics/storage-server.json b/new-api-details/topics/storage-server.json index 0a409db4..2c3d5a75 100644 --- a/new-api-details/topics/storage-server.json +++ b/new-api-details/topics/storage-server.json @@ -1,7 +1,7 @@ { "slug": "storage-server", "name": "storage server", - "published_at": "2026-01-25T16:06:28.453Z", + "published_at": "2026-02-19T13:36:00.432Z", "organizationCount": 1, "projectCount": 18, "years": [ @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.453Z" + "generated_at": "2026-02-19T13:36:00.432Z" } } \ No newline at end of file diff --git a/new-api-details/topics/storage-systems.json b/new-api-details/topics/storage-systems.json index 30e1ad59..92d479c8 100644 --- a/new-api-details/topics/storage-systems.json +++ b/new-api-details/topics/storage-systems.json @@ -1,10 +1,11 @@ { "slug": "storage-systems", "name": "storage systems", - "published_at": "2026-01-25T16:06:28.704Z", + "published_at": "2026-02-19T13:36:00.955Z", "organizationCount": 2, "projectCount": 67, "years": [ + 2026, 2025, 2024, 2023, @@ -14,6 +15,20 @@ 2018 ], "organizations": [ + { + "slug": "uc-ospo", + "name": "UC OSPO", + "first_year": 2023, + "last_year": 2026, + "total_projects": 47, + "is_currently_active": true, + "active_years": [ + 2023, + 2024, + 2025, + 2026 + ] + }, { "slug": "center-for-research-in-open-source-software-cross", "name": "Center for Research in Open Source Software (CROSS)", @@ -27,19 +42,6 @@ 2021, 2022 ] - }, - { - "slug": "uc-ospo", - "name": "UC OSPO", - "first_year": 2023, - "last_year": 2025, - "total_projects": 47, - "is_currently_active": true, - "active_years": [ - 2023, - 2024, - 2025 - ] } ], "yearlyStats": { @@ -70,10 +72,14 @@ "2025": { "organizationCount": 1, "projectCount": 17 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.704Z" + "generated_at": "2026-02-19T13:36:00.955Z" } } \ No newline at end of file diff --git a/new-api-details/topics/storage.json b/new-api-details/topics/storage.json index 75487a4a..47a88d8b 100644 --- a/new-api-details/topics/storage.json +++ b/new-api-details/topics/storage.json @@ -1,10 +1,11 @@ { "slug": "storage", "name": "storage", - "published_at": "2026-01-25T16:06:28.450Z", + "published_at": "2026-02-19T13:36:00.422Z", "organizationCount": 6, "projectCount": 74, "years": [ + 2026, 2025, 2024, 2023, @@ -18,17 +19,22 @@ ], "organizations": [ { - "slug": "amahi", - "name": "Amahi", - "first_year": 2017, - "last_year": 2020, - "total_projects": 18, - "is_currently_active": false, + "slug": "ceph-foundation", + "name": "Ceph Foundation", + "first_year": 2016, + "last_year": 2026, + "total_projects": 31, + "is_currently_active": true, "active_years": [ + 2016, 2017, - 2018, - 2019, - 2020 + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { @@ -46,21 +52,30 @@ ] }, { - "slug": "ceph-foundation", - "name": "Ceph Foundation", - "first_year": 2016, - "last_year": 2025, - "total_projects": 31, - "is_currently_active": true, + "slug": "amahi", + "name": "Amahi", + "first_year": 2017, + "last_year": 2020, + "total_projects": 18, + "is_currently_active": false, "active_years": [ - 2016, 2017, - 2020, - 2021, + 2018, + 2019, + 2020 + ] + }, + { + "slug": "openafs", + "name": "OpenAFS", + "first_year": 2022, + "last_year": 2026, + "total_projects": 4, + "is_currently_active": true, + "active_years": [ 2022, - 2023, - 2024, - 2025 + 2025, + 2026 ] }, { @@ -84,18 +99,6 @@ "active_years": [ 2017 ] - }, - { - "slug": "openafs", - "name": "OpenAFS", - "first_year": 2022, - "last_year": 2025, - "total_projects": 4, - "is_currently_active": true, - "active_years": [ - 2022, - 2025 - ] } ], "yearlyStats": { @@ -138,10 +141,14 @@ "2025": { "organizationCount": 2, "projectCount": 7 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.450Z" + "generated_at": "2026-02-19T13:36:00.422Z" } } \ No newline at end of file diff --git a/new-api-details/topics/stream-processing.json b/new-api-details/topics/stream-processing.json index acdc20d6..1a0bc7d6 100644 --- a/new-api-details/topics/stream-processing.json +++ b/new-api-details/topics/stream-processing.json @@ -1,7 +1,7 @@ { "slug": "stream-processing", "name": "stream processing", - "published_at": "2026-01-25T16:06:29.118Z", + "published_at": "2026-02-19T13:36:01.767Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.118Z" + "generated_at": "2026-02-19T13:36:01.767Z" } } \ No newline at end of file diff --git a/new-api-details/topics/streaming.json b/new-api-details/topics/streaming.json index 613cd881..07d7a181 100644 --- a/new-api-details/topics/streaming.json +++ b/new-api-details/topics/streaming.json @@ -1,10 +1,11 @@ { "slug": "streaming", "name": "streaming", - "published_at": "2026-01-25T16:06:28.454Z", + "published_at": "2026-02-19T13:36:00.433Z", "organizationCount": 7, "projectCount": 135, "years": [ + 2026, 2025, 2024, 2023, @@ -18,28 +19,37 @@ ], "organizations": [ { - "slug": "amahi", - "name": "Amahi", - "first_year": 2017, - "last_year": 2020, - "total_projects": 18, - "is_currently_active": false, + "slug": "videolan", + "name": "VideoLAN", + "first_year": 2016, + "last_year": 2026, + "total_projects": 92, + "is_currently_active": true, "active_years": [ + 2016, 2017, 2018, 2019, - 2020 + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "gpac", - "name": "GPAC", - "first_year": 2016, + "slug": "amahi", + "name": "Amahi", + "first_year": 2017, "last_year": 2020, - "total_projects": 1, + "total_projects": 18, "is_currently_active": false, "active_years": [ - 2016, + 2017, + 2018, + 2019, 2020 ] }, @@ -47,7 +57,7 @@ "slug": "mixxx", "name": "Mixxx", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 16, "is_currently_active": true, "active_years": [ @@ -57,18 +67,8 @@ 2020, 2022, 2024, - 2025 - ] - }, - { - "slug": "navidrome", - "name": "Navidrome", - "first_year": 2021, - "last_year": 2021, - "total_projects": 1, - "is_currently_active": false, - "active_years": [ - 2021 + 2025, + 2026 ] }, { @@ -96,23 +96,26 @@ ] }, { - "slug": "videolan", - "name": "VideoLAN", + "slug": "gpac", + "name": "GPAC", "first_year": 2016, - "last_year": 2025, - "total_projects": 92, - "is_currently_active": true, + "last_year": 2020, + "total_projects": 1, + "is_currently_active": false, "active_years": [ 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2020 + ] + }, + { + "slug": "navidrome", + "name": "Navidrome", + "first_year": 2021, + "last_year": 2021, + "total_projects": 1, + "is_currently_active": false, + "active_years": [ + 2021 ] } ], @@ -156,10 +159,14 @@ "2025": { "organizationCount": 2, "projectCount": 18 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.454Z" + "generated_at": "2026-02-19T13:36:00.433Z" } } \ No newline at end of file diff --git a/new-api-details/topics/structural-engineering.json b/new-api-details/topics/structural-engineering.json index 28fcae3e..645216d7 100644 --- a/new-api-details/topics/structural-engineering.json +++ b/new-api-details/topics/structural-engineering.json @@ -1,7 +1,7 @@ { "slug": "structural-engineering", "name": "Structural engineering", - "published_at": "2026-01-25T16:06:29.299Z", + "published_at": "2026-02-19T13:36:02.253Z", "organizationCount": 1, "projectCount": 13, "years": [ @@ -21,7 +21,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 13, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -70,6 +70,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.299Z" + "generated_at": "2026-02-19T13:36:02.253Z" } } \ No newline at end of file diff --git a/new-api-details/topics/structured-data.json b/new-api-details/topics/structured-data.json index bd6d4443..b6b8e7de 100644 --- a/new-api-details/topics/structured-data.json +++ b/new-api-details/topics/structured-data.json @@ -1,7 +1,7 @@ { "slug": "structured-data", "name": "structured data", - "published_at": "2026-01-25T16:06:29.801Z", + "published_at": "2026-02-19T13:36:03.172Z", "organizationCount": 1, "projectCount": 12, "years": [ @@ -70,6 +70,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.801Z" + "generated_at": "2026-02-19T13:36:03.172Z" } } \ No newline at end of file diff --git a/new-api-details/topics/structured-transparency.json b/new-api-details/topics/structured-transparency.json index 0cca966e..a643b9fc 100644 --- a/new-api-details/topics/structured-transparency.json +++ b/new-api-details/topics/structured-transparency.json @@ -1,7 +1,7 @@ { "slug": "structured-transparency", "name": "structured transparency", - "published_at": "2026-01-25T16:06:29.487Z", + "published_at": "2026-02-19T13:36:02.572Z", "organizationCount": 1, "projectCount": 9, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.487Z" + "generated_at": "2026-02-19T13:36:02.572Z" } } \ No newline at end of file diff --git a/new-api-details/topics/subtitles.json b/new-api-details/topics/subtitles.json index d9f467f4..b72b8b9a 100644 --- a/new-api-details/topics/subtitles.json +++ b/new-api-details/topics/subtitles.json @@ -1,10 +1,11 @@ { "slug": "subtitles", "name": "subtitles", - "published_at": "2026-01-25T16:06:28.633Z", + "published_at": "2026-02-19T13:36:00.936Z", "organizationCount": 2, "projectCount": 129, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "ccextractor-development", "name": "CCExtractor Development", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 80, "is_currently_active": true, "active_years": [ @@ -34,14 +35,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "ffmpeg", "name": "FFmpeg", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 49, "is_currently_active": true, "active_years": [ @@ -54,7 +56,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -98,10 +101,14 @@ "2025": { "organizationCount": 2, "projectCount": 13 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.633Z" + "generated_at": "2026-02-19T13:36:00.936Z" } } \ No newline at end of file diff --git a/new-api-details/topics/supernova.json b/new-api-details/topics/supernova.json index ba527376..9b7aa5e3 100644 --- a/new-api-details/topics/supernova.json +++ b/new-api-details/topics/supernova.json @@ -1,7 +1,7 @@ { "slug": "supernova", "name": "supernova", - "published_at": "2026-01-25T16:06:29.665Z", + "published_at": "2026-02-19T13:36:02.898Z", "organizationCount": 1, "projectCount": 9, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.665Z" + "generated_at": "2026-02-19T13:36:02.898Z" } } \ No newline at end of file diff --git a/new-api-details/topics/supplychain.json b/new-api-details/topics/supplychain.json new file mode 100644 index 00000000..6d30945b --- /dev/null +++ b/new-api-details/topics/supplychain.json @@ -0,0 +1,33 @@ +{ + "slug": "supplychain", + "name": "supplychain", + "published_at": "2026-02-19T13:36:02.125Z", + "organizationCount": 1, + "projectCount": 0, + "years": [ + 2026 + ], + "organizations": [ + { + "slug": "konflux", + "name": "Konflux", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + } + ], + "yearlyStats": { + "2026": { + "organizationCount": 1, + "projectCount": 0 + } + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:36:02.125Z" + } +} \ No newline at end of file diff --git a/new-api-details/topics/surveillance.json b/new-api-details/topics/surveillance.json index 3d61f89e..8615fe4a 100644 --- a/new-api-details/topics/surveillance.json +++ b/new-api-details/topics/surveillance.json @@ -1,7 +1,7 @@ { "slug": "surveillance", "name": "Surveillance", - "published_at": "2026-01-25T16:06:29.729Z", + "published_at": "2026-02-19T13:36:02.991Z", "organizationCount": 1, "projectCount": 19, "years": [ @@ -18,7 +18,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 19, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -52,6 +52,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.729Z" + "generated_at": "2026-02-19T13:36:02.991Z" } } \ No newline at end of file diff --git a/new-api-details/topics/sustainability.json b/new-api-details/topics/sustainability.json index 443be30e..6cb6e672 100644 --- a/new-api-details/topics/sustainability.json +++ b/new-api-details/topics/sustainability.json @@ -1,7 +1,7 @@ { "slug": "sustainability", "name": "sustainability", - "published_at": "2026-01-25T16:06:28.658Z", + "published_at": "2026-02-19T13:36:00.990Z", "organizationCount": 1, "projectCount": 29, "years": [ @@ -19,7 +19,7 @@ "first_year": 2018, "last_year": 2025, "total_projects": 29, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2018, 2019, @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.658Z" + "generated_at": "2026-02-19T13:36:00.990Z" } } \ No newline at end of file diff --git a/new-api-details/topics/symbolic-execution.json b/new-api-details/topics/symbolic-execution.json index b0b195e3..2ef92a60 100644 --- a/new-api-details/topics/symbolic-execution.json +++ b/new-api-details/topics/symbolic-execution.json @@ -1,10 +1,11 @@ { "slug": "symbolic-execution", "name": "symbolic execution", - "published_at": "2026-01-25T16:06:29.687Z", + "published_at": "2026-02-19T13:36:02.919Z", "organizationCount": 1, "projectCount": 46, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "the-jpf-team", "name": "The JPF team", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 46, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.687Z" + "generated_at": "2026-02-19T13:36:02.919Z" } } \ No newline at end of file diff --git a/new-api-details/topics/symbolic-mathematics.json b/new-api-details/topics/symbolic-mathematics.json index 36b34f6b..eb7cf747 100644 --- a/new-api-details/topics/symbolic-mathematics.json +++ b/new-api-details/topics/symbolic-mathematics.json @@ -1,10 +1,11 @@ { "slug": "symbolic-mathematics", "name": "symbolic mathematics", - "published_at": "2026-01-25T16:06:29.656Z", + "published_at": "2026-02-19T13:36:02.875Z", "organizationCount": 1, "projectCount": 63, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "sympy", "name": "SymPy", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 63, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.656Z" + "generated_at": "2026-02-19T13:36:02.875Z" } } \ No newline at end of file diff --git a/new-api-details/topics/symfony.json b/new-api-details/topics/symfony.json index 67ca55da..b6e2c976 100644 --- a/new-api-details/topics/symfony.json +++ b/new-api-details/topics/symfony.json @@ -1,10 +1,11 @@ { "slug": "symfony", "name": "symfony", - "published_at": "2026-01-25T16:06:28.866Z", + "published_at": "2026-02-19T13:36:01.218Z", "organizationCount": 1, "projectCount": 39, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "drupal-association", "name": "Drupal Association", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 39, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.866Z" + "generated_at": "2026-02-19T13:36:01.218Z" } } \ No newline at end of file diff --git a/new-api-details/topics/sync.json b/new-api-details/topics/sync.json index 08638bfb..e28855f1 100644 --- a/new-api-details/topics/sync.json +++ b/new-api-details/topics/sync.json @@ -1,7 +1,7 @@ { "slug": "sync", "name": "sync", - "published_at": "2026-01-25T16:06:29.863Z", + "published_at": "2026-02-19T13:36:02.674Z", "organizationCount": 1, "projectCount": 5, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.863Z" + "generated_at": "2026-02-19T13:36:02.675Z" } } \ No newline at end of file diff --git a/new-api-details/topics/synchronisation.json b/new-api-details/topics/synchronisation.json index 0b8734e9..ee68adf4 100644 --- a/new-api-details/topics/synchronisation.json +++ b/new-api-details/topics/synchronisation.json @@ -1,10 +1,11 @@ { "slug": "synchronisation", "name": "synchronisation", - "published_at": "2026-01-25T16:06:29.225Z", + "published_at": "2026-02-19T13:36:02.057Z", "organizationCount": 1, "projectCount": 17, "years": [ + 2026, 2024, 2022, 2021, @@ -15,14 +16,15 @@ "slug": "joplin", "name": "Joplin", "first_year": 2020, - "last_year": 2024, + "last_year": 2026, "total_projects": 17, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2020, 2021, 2022, - 2024 + 2024, + 2026 ] } ], @@ -42,10 +44,14 @@ "2024": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.225Z" + "generated_at": "2026-02-19T13:36:02.057Z" } } \ No newline at end of file diff --git a/new-api-details/topics/synchronized.json b/new-api-details/topics/synchronized.json index 996de47c..c6ea5f99 100644 --- a/new-api-details/topics/synchronized.json +++ b/new-api-details/topics/synchronized.json @@ -1,7 +1,7 @@ { "slug": "synchronized", "name": "synchronized", - "published_at": "2026-01-25T16:06:29.862Z", + "published_at": "2026-02-19T13:36:02.674Z", "organizationCount": 1, "projectCount": 5, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.863Z" + "generated_at": "2026-02-19T13:36:02.674Z" } } \ No newline at end of file diff --git a/new-api-details/topics/syscall.json b/new-api-details/topics/syscall.json index 89648410..1e15e769 100644 --- a/new-api-details/topics/syscall.json +++ b/new-api-details/topics/syscall.json @@ -1,7 +1,7 @@ { "slug": "syscall", "name": "syscall", - "published_at": "2026-01-25T16:06:29.875Z", + "published_at": "2026-02-19T13:36:02.863Z", "organizationCount": 1, "projectCount": 15, "years": [ @@ -64,6 +64,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.875Z" + "generated_at": "2026-02-19T13:36:02.863Z" } } \ No newline at end of file diff --git a/new-api-details/topics/system-modelling.json b/new-api-details/topics/system-modelling.json index 9dd9dc65..abb96bb9 100644 --- a/new-api-details/topics/system-modelling.json +++ b/new-api-details/topics/system-modelling.json @@ -1,7 +1,7 @@ { "slug": "system-modelling", "name": "system modelling", - "published_at": "2026-01-25T16:06:28.405Z", + "published_at": "2026-02-19T13:36:00.630Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.405Z" + "generated_at": "2026-02-19T13:36:00.630Z" } } \ No newline at end of file diff --git a/new-api-details/topics/system-on-chip.json b/new-api-details/topics/system-on-chip.json index 91e1383a..5d5fd336 100644 --- a/new-api-details/topics/system-on-chip.json +++ b/new-api-details/topics/system-on-chip.json @@ -1,7 +1,7 @@ { "slug": "system-on-chip", - "name": "System on Chip", - "published_at": "2026-01-25T16:06:29.353Z", + "name": "system-on-chip", + "published_at": "2026-02-19T13:36:02.208Z", "organizationCount": 2, "projectCount": 22, "years": [ @@ -14,32 +14,32 @@ 2016 ], "organizations": [ - { - "slug": "lowrisc", - "name": "lowRISC", - "first_year": 2016, - "last_year": 2020, - "total_projects": 10, - "is_currently_active": false, - "active_years": [ - 2016, - 2017, - 2020 - ] - }, { "slug": "micro-electronics-research-lab-uitu", "name": "Micro Electronics Research Lab - UITU", "first_year": 2022, "last_year": 2025, "total_projects": 12, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2023, 2024, 2025 ] + }, + { + "slug": "lowrisc", + "name": "lowRISC", + "first_year": 2016, + "last_year": 2020, + "total_projects": 10, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2020 + ] } ], "yearlyStats": { @@ -74,6 +74,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.353Z" + "generated_at": "2026-02-19T13:36:02.208Z" } } \ No newline at end of file diff --git a/new-api-details/topics/system-programming.json b/new-api-details/topics/system-programming.json index e0748822..43233b31 100644 --- a/new-api-details/topics/system-programming.json +++ b/new-api-details/topics/system-programming.json @@ -1,10 +1,11 @@ { "slug": "system-programming", "name": "system programming", - "published_at": "2026-01-25T16:06:28.813Z", + "published_at": "2026-02-19T13:36:01.144Z", "organizationCount": 3, "projectCount": 34, "years": [ + 2026, 2025, 2022, 2021, @@ -15,48 +16,50 @@ 2016 ], "organizations": [ + { + "slug": "reactos-foundation", + "name": "ReactOS Foundation", + "first_year": 2016, + "last_year": 2022, + "total_projects": 15, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022 + ] + }, { "slug": "d-language-foundation", "name": "D Language Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 11, "is_currently_active": true, "active_years": [ 2016, 2019, - 2025 + 2025, + 2026 ] }, { "slug": "neovim", "name": "Neovim", "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "total_projects": 8, "is_currently_active": true, "active_years": [ 2018, 2019, 2020, - 2025 - ] - }, - { - "slug": "reactos-foundation", - "name": "ReactOS Foundation", - "first_year": 2016, - "last_year": 2022, - "total_projects": 15, - "is_currently_active": false, - "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022 + 2025, + 2026 ] } ], @@ -92,10 +95,14 @@ "2025": { "organizationCount": 2, "projectCount": 5 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.813Z" + "generated_at": "2026-02-19T13:36:01.144Z" } } \ No newline at end of file diff --git a/new-api-details/topics/systems-biology.json b/new-api-details/topics/systems-biology.json index 8b1003f7..8b930382 100644 --- a/new-api-details/topics/systems-biology.json +++ b/new-api-details/topics/systems-biology.json @@ -1,10 +1,11 @@ { "slug": "systems-biology", "name": "systems biology", - "published_at": "2026-01-25T16:06:28.788Z", + "published_at": "2026-02-19T13:36:01.068Z", "organizationCount": 2, "projectCount": 137, "years": [ + 2026, 2025, 2024, 2023, @@ -17,25 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "computational-biology-university-of-nebraska-lincoln", - "name": "Computational Biology @ University of Nebraska-Lincoln", - "first_year": 2016, - "last_year": 2019, - "total_projects": 18, - "is_currently_active": false, - "active_years": [ - 2016, - 2017, - 2018, - 2019 - ] - }, { "slug": "national-resource-for-network-biology-nrnb", "name": "National Resource for Network Biology (NRNB)", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 119, "is_currently_active": true, "active_years": [ @@ -48,7 +35,22 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "computational-biology-university-of-nebraska-lincoln", + "name": "Computational Biology @ University of Nebraska-Lincoln", + "first_year": 2016, + "last_year": 2019, + "total_projects": 18, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2018, + 2019 ] } ], @@ -92,10 +94,14 @@ "2025": { "organizationCount": 1, "projectCount": 8 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.788Z" + "generated_at": "2026-02-19T13:36:01.068Z" } } \ No newline at end of file diff --git a/new-api-details/topics/systems-management.json b/new-api-details/topics/systems-management.json index 8a257b97..44013737 100644 --- a/new-api-details/topics/systems-management.json +++ b/new-api-details/topics/systems-management.json @@ -1,10 +1,11 @@ { "slug": "systems-management", "name": "systems management", - "published_at": "2026-01-25T16:06:29.862Z", + "published_at": "2026-02-19T13:36:02.629Z", "organizationCount": 1, "projectCount": 52, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "opensuse-project", "name": "openSUSE Project", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 52, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.862Z" + "generated_at": "2026-02-19T13:36:02.629Z" } } \ No newline at end of file diff --git a/new-api-details/topics/systems-programming.json b/new-api-details/topics/systems-programming.json index 4171f5d9..d728ec0b 100644 --- a/new-api-details/topics/systems-programming.json +++ b/new-api-details/topics/systems-programming.json @@ -1,10 +1,11 @@ { "slug": "systems-programming", "name": "systems programming", - "published_at": "2026-01-25T16:06:28.947Z", + "published_at": "2026-02-19T13:36:01.571Z", "organizationCount": 2, "projectCount": 44, "years": [ + 2026, 2025, 2023, 2022, @@ -16,24 +17,11 @@ 2016 ], "organizations": [ - { - "slug": "frrouting", - "name": "FRRouting", - "first_year": 2020, - "last_year": 2022, - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2020, - 2021, - 2022 - ] - }, { "slug": "qemu", "name": "QEMU", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 41, "is_currently_active": true, "active_years": [ @@ -45,7 +33,21 @@ 2021, 2022, 2023, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "frrouting", + "name": "FRRouting", + "first_year": 2020, + "last_year": 2022, + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2020, + 2021, + 2022 ] } ], @@ -85,10 +87,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.947Z" + "generated_at": "2026-02-19T13:36:01.571Z" } } \ No newline at end of file diff --git a/new-api-details/topics/systems.json b/new-api-details/topics/systems.json index 53f48aab..6bdb43fd 100644 --- a/new-api-details/topics/systems.json +++ b/new-api-details/topics/systems.json @@ -1,7 +1,7 @@ { "slug": "systems", "name": "systems", - "published_at": "2026-01-25T16:06:28.710Z", + "published_at": "2026-02-19T13:36:00.965Z", "organizationCount": 2, "projectCount": 23, "years": [ @@ -64,6 +64,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.710Z" + "generated_at": "2026-02-19T13:36:00.965Z" } } \ No newline at end of file diff --git a/new-api-details/topics/systers.json b/new-api-details/topics/systers.json index 493fdc33..75f1b34a 100644 --- a/new-api-details/topics/systers.json +++ b/new-api-details/topics/systers.json @@ -1,7 +1,7 @@ { "slug": "systers", "name": "systers", - "published_at": "2026-01-25T16:06:29.660Z", + "published_at": "2026-02-19T13:36:02.886Z", "organizationCount": 1, "projectCount": 30, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.660Z" + "generated_at": "2026-02-19T13:36:02.886Z" } } \ No newline at end of file diff --git a/new-api-details/topics/tc39.json b/new-api-details/topics/tc39.json index 28b6f8c8..516c30ba 100644 --- a/new-api-details/topics/tc39.json +++ b/new-api-details/topics/tc39.json @@ -1,7 +1,7 @@ { "slug": "tc39", "name": "tc39", - "published_at": "2026-01-25T16:06:28.559Z", + "published_at": "2026-02-19T13:36:00.645Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.559Z" + "generated_at": "2026-02-19T13:36:00.645Z" } } \ No newline at end of file diff --git a/new-api-details/topics/tcp.json b/new-api-details/topics/tcp.json index c00ad5e5..3a55b705 100644 --- a/new-api-details/topics/tcp.json +++ b/new-api-details/topics/tcp.json @@ -1,7 +1,7 @@ { "slug": "tcp", "name": "tcp", - "published_at": "2026-01-25T16:06:29.620Z", + "published_at": "2026-02-19T13:36:02.823Z", "organizationCount": 1, "projectCount": 1, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.620Z" + "generated_at": "2026-02-19T13:36:02.823Z" } } \ No newline at end of file diff --git a/new-api-details/topics/teaching-quality-codebase.json b/new-api-details/topics/teaching-quality-codebase.json index 3014bc83..e81e8d80 100644 --- a/new-api-details/topics/teaching-quality-codebase.json +++ b/new-api-details/topics/teaching-quality-codebase.json @@ -1,10 +1,11 @@ { "slug": "teaching-quality-codebase", "name": "teaching quality codebase", - "published_at": "2026-01-25T16:06:29.816Z", + "published_at": "2026-02-19T13:36:03.182Z", "organizationCount": 1, "projectCount": 135, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "zulip", "name": "Zulip", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 135, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 14 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.816Z" + "generated_at": "2026-02-19T13:36:03.182Z" } } \ No newline at end of file diff --git a/new-api-details/topics/teaching.json b/new-api-details/topics/teaching.json index 23a88fa6..9ed7d048 100644 --- a/new-api-details/topics/teaching.json +++ b/new-api-details/topics/teaching.json @@ -1,10 +1,11 @@ { "slug": "teaching", "name": "teaching", - "published_at": "2026-01-25T16:06:28.569Z", + "published_at": "2026-02-19T13:36:00.659Z", "organizationCount": 3, "projectCount": 112, "years": [ + 2026, 2025, 2024, 2023, @@ -18,14 +19,13 @@ ], "organizations": [ { - "slug": "beagleboardorg", - "name": "BeagleBoard.org", - "first_year": 2016, - "last_year": 2025, - "total_projects": 44, + "slug": "jderobot", + "name": "JdeRobot", + "first_year": 2017, + "last_year": 2026, + "total_projects": 48, "is_currently_active": true, "active_years": [ - 2016, 2017, 2018, 2019, @@ -34,17 +34,19 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "jderobot", - "name": "JdeRobot", - "first_year": 2017, + "slug": "beagleboardorg", + "name": "BeagleBoard.org", + "first_year": 2016, "last_year": 2025, - "total_projects": 48, - "is_currently_active": true, + "total_projects": 44, + "is_currently_active": false, "active_years": [ + 2016, 2017, 2018, 2019, @@ -110,10 +112,14 @@ "2025": { "organizationCount": 2, "projectCount": 12 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.569Z" + "generated_at": "2026-02-19T13:36:00.659Z" } } \ No newline at end of file diff --git a/new-api-details/topics/team-chat.json b/new-api-details/topics/team-chat.json index 850d7e30..4d393512 100644 --- a/new-api-details/topics/team-chat.json +++ b/new-api-details/topics/team-chat.json @@ -1,10 +1,11 @@ { "slug": "team-chat", "name": "team chat", - "published_at": "2026-01-25T16:06:29.323Z", + "published_at": "2026-02-19T13:36:02.222Z", "organizationCount": 3, "projectCount": 267, "years": [ + 2026, 2025, 2024, 2023, @@ -18,12 +19,12 @@ ], "organizations": [ { - "slug": "matrixorg", - "name": "Matrix.org", + "slug": "zulip", + "name": "Zulip", "first_year": 2016, - "last_year": 2022, - "total_projects": 29, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 135, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -31,14 +32,18 @@ 2019, 2020, 2021, - 2022 + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { "slug": "rocketchat", "name": "rocket.chat", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 103, "is_currently_active": true, "active_years": [ @@ -50,16 +55,17 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "zulip", - "name": "Zulip", + "slug": "matrixorg", + "name": "Matrix.org", "first_year": 2016, - "last_year": 2025, - "total_projects": 135, - "is_currently_active": true, + "last_year": 2022, + "total_projects": 29, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -67,10 +73,7 @@ 2019, 2020, 2021, - 2022, - 2023, - 2024, - 2025 + 2022 ] } ], @@ -114,10 +117,14 @@ "2025": { "organizationCount": 2, "projectCount": 33 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.323Z" + "generated_at": "2026-02-19T13:36:02.222Z" } } \ No newline at end of file diff --git a/new-api-details/topics/team-collaboration.json b/new-api-details/topics/team-collaboration.json index d32eb1ce..d80b428c 100644 --- a/new-api-details/topics/team-collaboration.json +++ b/new-api-details/topics/team-collaboration.json @@ -1,10 +1,11 @@ { "slug": "team-collaboration", "name": "Team Collaboration", - "published_at": "2026-01-25T16:06:29.872Z", + "published_at": "2026-02-19T13:36:02.799Z", "organizationCount": 1, "projectCount": 103, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "rocketchat", "name": "rocket.chat", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 103, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 19 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.872Z" + "generated_at": "2026-02-19T13:36:02.799Z" } } \ No newline at end of file diff --git a/new-api-details/topics/team.json b/new-api-details/topics/team.json index cfd6cf99..74a3bda1 100644 --- a/new-api-details/topics/team.json +++ b/new-api-details/topics/team.json @@ -1,10 +1,11 @@ { "slug": "team", "name": "team", - "published_at": "2026-01-25T16:06:29.871Z", + "published_at": "2026-02-19T13:36:02.795Z", "organizationCount": 1, "projectCount": 103, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "rocketchat", "name": "rocket.chat", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 103, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 19 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.871Z" + "generated_at": "2026-02-19T13:36:02.795Z" } } \ No newline at end of file diff --git a/new-api-details/topics/technical-computing.json b/new-api-details/topics/technical-computing.json index 14171abd..9d3d00e3 100644 --- a/new-api-details/topics/technical-computing.json +++ b/new-api-details/topics/technical-computing.json @@ -1,10 +1,11 @@ { "slug": "technical-computing", "name": "technical computing", - "published_at": "2026-01-25T16:06:29.693Z", + "published_at": "2026-02-19T13:36:02.927Z", "organizationCount": 1, "projectCount": 140, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "the-julia-language", "name": "The Julia Language", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 140, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 14 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.693Z" + "generated_at": "2026-02-19T13:36:02.927Z" } } \ No newline at end of file diff --git a/new-api-details/topics/technology.json b/new-api-details/topics/technology.json new file mode 100644 index 00000000..34cc12a0 --- /dev/null +++ b/new-api-details/topics/technology.json @@ -0,0 +1,33 @@ +{ + "slug": "technology", + "name": "Technology", + "published_at": "2026-02-19T13:36:03.096Z", + "organizationCount": 1, + "projectCount": 0, + "years": [ + 2026 + ], + "organizations": [ + { + "slug": "united-nations-office-of-information-communication-technology", + "name": "United Nations Office of Information Communication Technology", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + } + ], + "yearlyStats": { + "2026": { + "organizationCount": 1, + "projectCount": 0 + } + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:36:03.096Z" + } +} \ No newline at end of file diff --git a/new-api-details/topics/tekton.json b/new-api-details/topics/tekton.json new file mode 100644 index 00000000..cfb0396a --- /dev/null +++ b/new-api-details/topics/tekton.json @@ -0,0 +1,33 @@ +{ + "slug": "tekton", + "name": "Tekton", + "published_at": "2026-02-19T13:36:02.122Z", + "organizationCount": 1, + "projectCount": 0, + "years": [ + 2026 + ], + "organizations": [ + { + "slug": "konflux", + "name": "Konflux", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + } + ], + "yearlyStats": { + "2026": { + "organizationCount": 1, + "projectCount": 0 + } + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:36:02.122Z" + } +} \ No newline at end of file diff --git a/new-api-details/topics/telecom.json b/new-api-details/topics/telecom.json index 849e325c..1c233d26 100644 --- a/new-api-details/topics/telecom.json +++ b/new-api-details/topics/telecom.json @@ -1,10 +1,11 @@ { "slug": "telecom", "name": "telecom", - "published_at": "2026-01-25T16:06:29.505Z", + "published_at": "2026-02-19T13:36:02.646Z", "organizationCount": 1, "projectCount": 26, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "openwisp", "name": "OpenWISP", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 26, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.505Z" + "generated_at": "2026-02-19T13:36:02.646Z" } } \ No newline at end of file diff --git a/new-api-details/topics/telecommunications.json b/new-api-details/topics/telecommunications.json index 91aa8646..55984bf9 100644 --- a/new-api-details/topics/telecommunications.json +++ b/new-api-details/topics/telecommunications.json @@ -1,10 +1,11 @@ { "slug": "telecommunications", "name": "telecommunications", - "published_at": "2026-01-25T16:06:29.502Z", + "published_at": "2026-02-19T13:36:02.642Z", "organizationCount": 1, "projectCount": 26, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "openwisp", "name": "OpenWISP", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 26, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.502Z" + "generated_at": "2026-02-19T13:36:02.642Z" } } \ No newline at end of file diff --git a/new-api-details/topics/telemedicine-and-remote-care.json b/new-api-details/topics/telemedicine-and-remote-care.json index 111b6cb8..317d2432 100644 --- a/new-api-details/topics/telemedicine-and-remote-care.json +++ b/new-api-details/topics/telemedicine-and-remote-care.json @@ -1,10 +1,11 @@ { "slug": "telemedicine-and-remote-care", "name": "Telemedicine and Remote Care", - "published_at": "2026-01-25T16:06:29.440Z", + "published_at": "2026-02-19T13:36:02.502Z", "organizationCount": 1, "projectCount": 9, "years": [ + 2026, 2025, 2024 ], @@ -13,12 +14,13 @@ "slug": "open-healthcare-network", "name": "Open HealthCare Network", "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "total_projects": 9, "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -30,10 +32,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.440Z" + "generated_at": "2026-02-19T13:36:02.502Z" } } \ No newline at end of file diff --git a/new-api-details/topics/telephony.json b/new-api-details/topics/telephony.json index 230a7bee..c5073f4f 100644 --- a/new-api-details/topics/telephony.json +++ b/new-api-details/topics/telephony.json @@ -1,7 +1,7 @@ { "slug": "telephony", "name": "telephony", - "published_at": "2026-01-25T16:06:29.490Z", + "published_at": "2026-02-19T13:36:02.592Z", "organizationCount": 1, "projectCount": 0, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.490Z" + "generated_at": "2026-02-19T13:36:02.592Z" } } \ No newline at end of file diff --git a/new-api-details/topics/telepresence.json b/new-api-details/topics/telepresence.json index bdf56393..f04f3fd7 100644 --- a/new-api-details/topics/telepresence.json +++ b/new-api-details/topics/telepresence.json @@ -1,7 +1,7 @@ { "slug": "telepresence", "name": "Telepresence", - "published_at": "2026-01-25T16:06:29.624Z", + "published_at": "2026-02-19T13:36:02.828Z", "organizationCount": 1, "projectCount": 12, "years": [ @@ -16,7 +16,7 @@ "first_year": 2022, "last_year": 2025, "total_projects": 12, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2022, 2023, @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.624Z" + "generated_at": "2026-02-19T13:36:02.828Z" } } \ No newline at end of file diff --git a/new-api-details/topics/television.json b/new-api-details/topics/television.json index 79f81ce1..bd38b086 100644 --- a/new-api-details/topics/television.json +++ b/new-api-details/topics/television.json @@ -1,10 +1,11 @@ { "slug": "television", "name": "television", - "published_at": "2026-01-25T16:06:28.636Z", + "published_at": "2026-02-19T13:36:00.938Z", "organizationCount": 1, "projectCount": 80, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "ccextractor-development", "name": "CCExtractor Development", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 80, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 10 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.636Z" + "generated_at": "2026-02-19T13:36:00.938Z" } } \ No newline at end of file diff --git a/new-api-details/topics/tensorflow.json b/new-api-details/topics/tensorflow.json index 0acb7625..2c4db8f5 100644 --- a/new-api-details/topics/tensorflow.json +++ b/new-api-details/topics/tensorflow.json @@ -1,7 +1,7 @@ { "slug": "tensorflow", "name": "tensorflow", - "published_at": "2026-01-25T16:06:28.782Z", + "published_at": "2026-02-19T13:36:01.045Z", "organizationCount": 1, "projectCount": 28, "years": [ @@ -22,7 +22,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 28, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -76,6 +76,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.782Z" + "generated_at": "2026-02-19T13:36:01.045Z" } } \ No newline at end of file diff --git a/new-api-details/topics/terminal-applications.json b/new-api-details/topics/terminal-applications.json index fcb054ea..2696ad67 100644 --- a/new-api-details/topics/terminal-applications.json +++ b/new-api-details/topics/terminal-applications.json @@ -1,7 +1,7 @@ { "slug": "terminal-applications", "name": "terminal applications", - "published_at": "2026-01-25T16:06:29.123Z", + "published_at": "2026-02-19T13:36:01.774Z", "organizationCount": 1, "projectCount": 11, "years": [ @@ -52,6 +52,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.123Z" + "generated_at": "2026-02-19T13:36:01.774Z" } } \ No newline at end of file diff --git a/new-api-details/topics/test-input-generation.json b/new-api-details/topics/test-input-generation.json index b8d2b4af..7941cda1 100644 --- a/new-api-details/topics/test-input-generation.json +++ b/new-api-details/topics/test-input-generation.json @@ -1,10 +1,11 @@ { "slug": "test-input-generation", "name": "test input generation", - "published_at": "2026-01-25T16:06:29.687Z", + "published_at": "2026-02-19T13:36:02.920Z", "organizationCount": 1, "projectCount": 46, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "the-jpf-team", "name": "The JPF team", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 46, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.687Z" + "generated_at": "2026-02-19T13:36:02.920Z" } } \ No newline at end of file diff --git a/new-api-details/topics/testing-ci.json b/new-api-details/topics/testing-ci.json index 4b13b4df..65f9d8c6 100644 --- a/new-api-details/topics/testing-ci.json +++ b/new-api-details/topics/testing-ci.json @@ -1,7 +1,7 @@ { "slug": "testing-ci", "name": "testing/ci", - "published_at": "2026-01-25T16:06:29.794Z", + "published_at": "2026-02-19T13:36:03.166Z", "organizationCount": 1, "projectCount": 19, "years": [ @@ -64,6 +64,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.794Z" + "generated_at": "2026-02-19T13:36:03.166Z" } } \ No newline at end of file diff --git a/new-api-details/topics/testing.json b/new-api-details/topics/testing.json index 897346de..f2491ac0 100644 --- a/new-api-details/topics/testing.json +++ b/new-api-details/topics/testing.json @@ -1,10 +1,11 @@ { "slug": "testing", "name": "testing", - "published_at": "2026-01-25T16:06:28.400Z", + "published_at": "2026-02-19T13:36:00.441Z", "organizationCount": 9, "projectCount": 142, "years": [ + 2026, 2025, 2024, 2023, @@ -17,49 +18,13 @@ 2016 ], "organizations": [ - { - "slug": "android-graphics-tools-team", - "name": "Android Graphics Tools Team", - "first_year": 2019, - "last_year": 2021, - "total_projects": 8, - "is_currently_active": false, - "active_years": [ - 2019, - 2020, - 2021 - ] - }, - { - "slug": "api-dash", - "name": "API Dash", - "first_year": 2024, - "last_year": 2025, - "total_projects": 3, - "is_currently_active": true, - "active_years": [ - 2024, - 2025 - ] - }, - { - "slug": "castor", - "name": "CASTOR", - "first_year": 2021, - "last_year": 2021, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2021 - ] - }, { "slug": "jboss-community", "name": "JBoss Community", "first_year": 2016, - "last_year": 2022, + "last_year": 2026, "total_projects": 52, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -67,31 +32,29 @@ 2019, 2020, 2021, - 2022 - ] - }, - { - "slug": "openafs", - "name": "OpenAFS", - "first_year": 2022, - "last_year": 2025, - "total_projects": 4, - "is_currently_active": true, - "active_years": [ 2022, - 2025 + 2026 ] }, { - "slug": "percona", - "name": "Percona", - "first_year": 2019, - "last_year": 2020, - "total_projects": 3, - "is_currently_active": false, + "slug": "the-jpf-team", + "name": "The JPF team", + "first_year": 2016, + "last_year": 2026, + "total_projects": 46, + "is_currently_active": true, "active_years": [ + 2016, + 2017, + 2018, 2019, - 2020 + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { @@ -108,6 +71,19 @@ 2024 ] }, + { + "slug": "android-graphics-tools-team", + "name": "Android Graphics Tools Team", + "first_year": 2019, + "last_year": 2021, + "total_projects": 8, + "is_currently_active": false, + "active_years": [ + 2019, + 2020, + 2021 + ] + }, { "slug": "robolectric", "name": "Robolectric", @@ -121,23 +97,52 @@ ] }, { - "slug": "the-jpf-team", - "name": "The JPF team", - "first_year": 2016, - "last_year": 2025, - "total_projects": 46, + "slug": "openafs", + "name": "OpenAFS", + "first_year": 2022, + "last_year": 2026, + "total_projects": 4, "is_currently_active": true, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, 2022, - 2023, + 2025, + 2026 + ] + }, + { + "slug": "api-dash", + "name": "API Dash", + "first_year": 2024, + "last_year": 2026, + "total_projects": 3, + "is_currently_active": true, + "active_years": [ 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "percona", + "name": "Percona", + "first_year": 2019, + "last_year": 2020, + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2019, + 2020 + ] + }, + { + "slug": "castor", + "name": "CASTOR", + "first_year": 2021, + "last_year": 2021, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2021 ] } ], @@ -181,10 +186,14 @@ "2025": { "organizationCount": 3, "projectCount": 7 + }, + "2026": { + "organizationCount": 4, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.400Z" + "generated_at": "2026-02-19T13:36:00.441Z" } } \ No newline at end of file diff --git a/new-api-details/topics/text-analytics.json b/new-api-details/topics/text-analytics.json index 928351d8..284130b0 100644 --- a/new-api-details/topics/text-analytics.json +++ b/new-api-details/topics/text-analytics.json @@ -1,7 +1,7 @@ { "slug": "text-analytics", "name": "text analytics", - "published_at": "2026-01-25T16:06:28.669Z", + "published_at": "2026-02-19T13:36:01.037Z", "organizationCount": 1, "projectCount": 10, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.669Z" + "generated_at": "2026-02-19T13:36:01.037Z" } } \ No newline at end of file diff --git a/new-api-details/topics/text-editing.json b/new-api-details/topics/text-editing.json index 4d6cf392..eb63e17e 100644 --- a/new-api-details/topics/text-editing.json +++ b/new-api-details/topics/text-editing.json @@ -1,7 +1,7 @@ { "slug": "text-editing", "name": "text editing", - "published_at": "2026-01-25T16:06:29.806Z", + "published_at": "2026-02-19T13:36:03.152Z", "organizationCount": 1, "projectCount": 4, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.806Z" + "generated_at": "2026-02-19T13:36:03.152Z" } } \ No newline at end of file diff --git a/new-api-details/topics/text-editor.json b/new-api-details/topics/text-editor.json index 49534563..2f9a7d3d 100644 --- a/new-api-details/topics/text-editor.json +++ b/new-api-details/topics/text-editor.json @@ -1,10 +1,11 @@ { "slug": "text-editor", "name": "text editor", - "published_at": "2026-01-25T16:06:29.398Z", + "published_at": "2026-02-19T13:36:02.394Z", "organizationCount": 2, "projectCount": 12, "years": [ + 2026, 2025, 2020, 2019, @@ -15,14 +16,15 @@ "slug": "neovim", "name": "Neovim", "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "total_projects": 8, "is_currently_active": true, "active_years": [ 2018, 2019, 2020, - 2025 + 2025, + 2026 ] }, { @@ -54,10 +56,14 @@ "2025": { "organizationCount": 2, "projectCount": 6 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.398Z" + "generated_at": "2026-02-19T13:36:02.394Z" } } \ No newline at end of file diff --git a/new-api-details/topics/text-generation.json b/new-api-details/topics/text-generation.json index 2aa56a11..81972912 100644 --- a/new-api-details/topics/text-generation.json +++ b/new-api-details/topics/text-generation.json @@ -1,7 +1,7 @@ { "slug": "text-generation", "name": "text generation", - "published_at": "2026-01-25T16:06:28.672Z", + "published_at": "2026-02-19T13:36:01.040Z", "organizationCount": 1, "projectCount": 10, "years": [ @@ -40,6 +40,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.672Z" + "generated_at": "2026-02-19T13:36:01.040Z" } } \ No newline at end of file diff --git a/new-api-details/topics/text-to-speech.json b/new-api-details/topics/text-to-speech.json index 72ef49a2..9404ded0 100644 --- a/new-api-details/topics/text-to-speech.json +++ b/new-api-details/topics/text-to-speech.json @@ -1,7 +1,7 @@ { "slug": "text-to-speech", "name": "text to speech", - "published_at": "2026-01-25T16:06:29.393Z", + "published_at": "2026-02-19T13:36:02.468Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.393Z" + "generated_at": "2026-02-19T13:36:02.468Z" } } \ No newline at end of file diff --git a/new-api-details/topics/threat-intelligence.json b/new-api-details/topics/threat-intelligence.json index b968e27e..c7b3e6b4 100644 --- a/new-api-details/topics/threat-intelligence.json +++ b/new-api-details/topics/threat-intelligence.json @@ -1,10 +1,11 @@ { "slug": "threat-intelligence", "name": "Threat Intelligence", - "published_at": "2026-01-25T16:06:29.684Z", + "published_at": "2026-02-19T13:36:02.916Z", "organizationCount": 1, "projectCount": 101, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "the-honeynet-project", "name": "The Honeynet Project", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 101, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.684Z" + "generated_at": "2026-02-19T13:36:02.916Z" } } \ No newline at end of file diff --git a/new-api-details/topics/time-series.json b/new-api-details/topics/time-series.json index 15e34d83..68887bda 100644 --- a/new-api-details/topics/time-series.json +++ b/new-api-details/topics/time-series.json @@ -1,27 +1,17 @@ { "slug": "time-series", "name": "time-series", - "published_at": "2026-01-25T16:06:28.585Z", - "organizationCount": 3, + "published_at": "2026-02-19T13:36:00.686Z", + "organizationCount": 4, "projectCount": 13, "years": [ + 2026, 2024, 2022, 2021, 2016 ], "organizations": [ - { - "slug": "bench-routes", - "name": "Bench-Routes", - "first_year": 2021, - "last_year": 2021, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2021 - ] - }, { "slug": "sktime", "name": "sktime", @@ -44,6 +34,28 @@ "active_years": [ 2016 ] + }, + { + "slug": "bench-routes", + "name": "Bench-Routes", + "first_year": 2021, + "last_year": 2021, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2021 + ] + }, + { + "slug": "german-center-for-open-source-ai", + "name": "German Center for Open Source AI", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] } ], "yearlyStats": { @@ -62,10 +74,14 @@ "2024": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.585Z" + "generated_at": "2026-02-19T13:36:00.686Z" } } \ No newline at end of file diff --git a/new-api-details/topics/timeseries.json b/new-api-details/topics/timeseries.json index 3b2832db..d3f26e6c 100644 --- a/new-api-details/topics/timeseries.json +++ b/new-api-details/topics/timeseries.json @@ -1,7 +1,7 @@ { "slug": "timeseries", "name": "timeseries", - "published_at": "2026-01-25T16:06:29.533Z", + "published_at": "2026-02-19T13:36:02.694Z", "organizationCount": 1, "projectCount": 19, "years": [ @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.533Z" + "generated_at": "2026-02-19T13:36:02.694Z" } } \ No newline at end of file diff --git a/new-api-details/topics/tls.json b/new-api-details/topics/tls.json index 6f3d5da1..eaa891d3 100644 --- a/new-api-details/topics/tls.json +++ b/new-api-details/topics/tls.json @@ -1,7 +1,7 @@ { "slug": "tls", "name": "TLS", - "published_at": "2026-01-25T16:06:29.097Z", + "published_at": "2026-02-19T13:36:01.706Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.097Z" + "generated_at": "2026-02-19T13:36:01.706Z" } } \ No newline at end of file diff --git a/new-api-details/topics/toolbox-frameworks.json b/new-api-details/topics/toolbox-frameworks.json index c644f355..b0d7a6d2 100644 --- a/new-api-details/topics/toolbox-frameworks.json +++ b/new-api-details/topics/toolbox-frameworks.json @@ -1,7 +1,7 @@ { "slug": "toolbox-frameworks", "name": "toolbox frameworks", - "published_at": "2026-01-25T16:06:29.874Z", + "published_at": "2026-02-19T13:36:02.826Z", "organizationCount": 1, "projectCount": 8, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.874Z" + "generated_at": "2026-02-19T13:36:02.826Z" } } \ No newline at end of file diff --git a/new-api-details/topics/toolbox.json b/new-api-details/topics/toolbox.json index 7364699e..31773ea7 100644 --- a/new-api-details/topics/toolbox.json +++ b/new-api-details/topics/toolbox.json @@ -1,10 +1,11 @@ { "slug": "toolbox", "name": "toolbox", - "published_at": "2026-01-25T16:06:29.611Z", + "published_at": "2026-02-19T13:36:02.808Z", "organizationCount": 1, "projectCount": 55, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "sagemath", "name": "SageMath", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 55, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.611Z" + "generated_at": "2026-02-19T13:36:02.808Z" } } \ No newline at end of file diff --git a/new-api-details/topics/toolchain.json b/new-api-details/topics/toolchain.json index 05c54ba7..37d21cc6 100644 --- a/new-api-details/topics/toolchain.json +++ b/new-api-details/topics/toolchain.json @@ -1,10 +1,11 @@ { "slug": "toolchain", "name": "toolchain", - "published_at": "2026-01-25T16:06:29.033Z", + "published_at": "2026-02-19T13:36:01.658Z", "organizationCount": 2, "projectCount": 93, "years": [ + 2026, 2025, 2024, 2023, @@ -18,38 +19,40 @@ ], "organizations": [ { - "slug": "gnu-compiler-collection-gcc", - "name": "GNU Compiler Collection (GCC)", - "first_year": 2018, - "last_year": 2025, - "total_projects": 34, + "slug": "gnu-project", + "name": "GNU Project", + "first_year": 2016, + "last_year": 2026, + "total_projects": 59, "is_currently_active": true, "active_years": [ + 2016, + 2017, 2018, 2019, 2020, - 2021, - 2022, 2023, 2024, - 2025 + 2026 ] }, { - "slug": "gnu-project", - "name": "GNU Project", - "first_year": 2016, - "last_year": 2024, - "total_projects": 59, - "is_currently_active": false, + "slug": "gnu-compiler-collection-gcc", + "name": "GNU Compiler Collection (GCC)", + "first_year": 2018, + "last_year": 2026, + "total_projects": 34, + "is_currently_active": true, "active_years": [ - 2016, - 2017, 2018, 2019, 2020, + 2021, + 2022, 2023, - 2024 + 2024, + 2025, + 2026 ] } ], @@ -93,10 +96,14 @@ "2025": { "organizationCount": 1, "projectCount": 6 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.033Z" + "generated_at": "2026-02-19T13:36:01.658Z" } } \ No newline at end of file diff --git a/new-api-details/topics/toolchains.json b/new-api-details/topics/toolchains.json index 505ed76c..bf87da8d 100644 --- a/new-api-details/topics/toolchains.json +++ b/new-api-details/topics/toolchains.json @@ -1,10 +1,11 @@ { "slug": "toolchains", "name": "toolchains", - "published_at": "2026-01-25T16:06:29.883Z", + "published_at": "2026-02-19T13:36:03.127Z", "organizationCount": 1, "projectCount": 10, "years": [ + 2026, 2025, 2024, 2020, @@ -16,7 +17,7 @@ "slug": "webpack", "name": "webpack", "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "total_projects": 10, "is_currently_active": true, "active_years": [ @@ -24,7 +25,8 @@ 2019, 2020, 2024, - 2025 + 2025, + 2026 ] } ], @@ -48,10 +50,14 @@ "2025": { "organizationCount": 1, "projectCount": 1 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.883Z" + "generated_at": "2026-02-19T13:36:03.127Z" } } \ No newline at end of file diff --git a/new-api-details/topics/tooling.json b/new-api-details/topics/tooling.json index b76e579b..265260a8 100644 --- a/new-api-details/topics/tooling.json +++ b/new-api-details/topics/tooling.json @@ -1,10 +1,11 @@ { "slug": "tooling", "name": "tooling", - "published_at": "2026-01-25T16:06:28.903Z", + "published_at": "2026-02-19T13:36:01.253Z", "organizationCount": 3, "projectCount": 68, "years": [ + 2026, 2025, 2024, 2023, @@ -17,24 +18,13 @@ 2016 ], "organizations": [ - { - "slug": "elm-tooling", - "name": "Elm Tooling", - "first_year": 2021, - "last_year": 2021, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2021 - ] - }, { "slug": "scala-center", "name": "Scala Center", "first_year": 2016, "last_year": 2025, "total_projects": 56, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -50,7 +40,7 @@ "slug": "webpack", "name": "webpack", "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "total_projects": 10, "is_currently_active": true, "active_years": [ @@ -58,7 +48,19 @@ 2019, 2020, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "elm-tooling", + "name": "Elm Tooling", + "first_year": 2021, + "last_year": 2021, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2021 ] } ], @@ -102,10 +104,14 @@ "2025": { "organizationCount": 2, "projectCount": 15 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.903Z" + "generated_at": "2026-02-19T13:36:01.253Z" } } \ No newline at end of file diff --git a/new-api-details/topics/tools.json b/new-api-details/topics/tools.json index c0263f23..0beb400d 100644 --- a/new-api-details/topics/tools.json +++ b/new-api-details/topics/tools.json @@ -1,10 +1,11 @@ { "slug": "tools", "name": "tools", - "published_at": "2026-01-25T16:06:28.607Z", + "published_at": "2026-02-19T13:36:00.775Z", "organizationCount": 6, "projectCount": 328, "years": [ + 2026, 2025, 2024, 2023, @@ -18,11 +19,11 @@ ], "organizations": [ { - "slug": "blender-foundation", - "name": "Blender Foundation", + "slug": "oppia-foundation", + "name": "Oppia Foundation", "first_year": 2016, - "last_year": 2025, - "total_projects": 64, + "last_year": 2026, + "total_projects": 77, "is_currently_active": true, "active_years": [ 2016, @@ -34,14 +35,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "eclipse-foundation", "name": "Eclipse Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 68, "is_currently_active": true, "active_years": [ @@ -53,45 +55,54 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "gnu-project", - "name": "GNU Project", + "slug": "blender-foundation", + "name": "Blender Foundation", "first_year": 2016, - "last_year": 2024, - "total_projects": 59, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 64, + "is_currently_active": true, "active_years": [ 2016, 2017, 2018, 2019, 2020, + 2021, + 2022, 2023, - 2024 + 2024, + 2025, + 2026 ] }, { - "slug": "neovim", - "name": "Neovim", - "first_year": 2018, - "last_year": 2025, - "total_projects": 8, + "slug": "gnu-project", + "name": "GNU Project", + "first_year": 2016, + "last_year": 2026, + "total_projects": 59, "is_currently_active": true, "active_years": [ + 2016, + 2017, 2018, 2019, 2020, - 2025 + 2023, + 2024, + 2026 ] }, { "slug": "opensuse-project", "name": "openSUSE Project", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 52, "is_currently_active": true, "active_years": [ @@ -103,27 +114,23 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "oppia-foundation", - "name": "Oppia Foundation", - "first_year": 2016, - "last_year": 2025, - "total_projects": 77, + "slug": "neovim", + "name": "Neovim", + "first_year": 2018, + "last_year": 2026, + "total_projects": 8, "is_currently_active": true, "active_years": [ - 2016, - 2017, 2018, 2019, 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2025, + 2026 ] } ], @@ -167,10 +174,14 @@ "2025": { "organizationCount": 5, "projectCount": 31 + }, + "2026": { + "organizationCount": 6, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.607Z" + "generated_at": "2026-02-19T13:36:00.775Z" } } \ No newline at end of file diff --git a/new-api-details/topics/top-10.json b/new-api-details/topics/top-10.json index 443f8710..1d965d0c 100644 --- a/new-api-details/topics/top-10.json +++ b/new-api-details/topics/top-10.json @@ -1,10 +1,11 @@ { "slug": "top-10", "name": "top 10", - "published_at": "2026-01-25T16:06:29.423Z", + "published_at": "2026-02-19T13:36:02.672Z", "organizationCount": 1, "projectCount": 102, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "owasp-foundation", "name": "OWASP Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 102, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 15 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.423Z" + "generated_at": "2026-02-19T13:36:02.672Z" } } \ No newline at end of file diff --git a/new-api-details/topics/tracing.json b/new-api-details/topics/tracing.json index 3693e805..e9f2feb6 100644 --- a/new-api-details/topics/tracing.json +++ b/new-api-details/topics/tracing.json @@ -1,10 +1,11 @@ { "slug": "tracing", "name": "tracing", - "published_at": "2026-01-25T16:06:28.675Z", + "published_at": "2026-02-19T13:36:01.054Z", "organizationCount": 3, "projectCount": 129, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "cncf", "name": "CNCF", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 113, "is_currently_active": true, "active_years": [ @@ -33,18 +34,8 @@ 2022, 2023, 2024, - 2025 - ] - }, - { - "slug": "opencensus", - "name": "OpenCensus", - "first_year": 2018, - "last_year": 2018, - "total_projects": 1, - "is_currently_active": false, - "active_years": [ - 2018 + 2025, + 2026 ] }, { @@ -63,6 +54,17 @@ 2021, 2022 ] + }, + { + "slug": "opencensus", + "name": "OpenCensus", + "first_year": 2018, + "last_year": 2018, + "total_projects": 1, + "is_currently_active": false, + "active_years": [ + 2018 + ] } ], "yearlyStats": { @@ -105,10 +107,14 @@ "2025": { "organizationCount": 1, "projectCount": 11 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.675Z" + "generated_at": "2026-02-19T13:36:01.054Z" } } \ No newline at end of file diff --git a/new-api-details/topics/trajectory-analysis.json b/new-api-details/topics/trajectory-analysis.json index 82690e79..75e1a019 100644 --- a/new-api-details/topics/trajectory-analysis.json +++ b/new-api-details/topics/trajectory-analysis.json @@ -1,10 +1,11 @@ { "slug": "trajectory-analysis", "name": "trajectory analysis", - "published_at": "2026-01-25T16:06:29.304Z", + "published_at": "2026-02-19T13:36:02.260Z", "organizationCount": 1, "projectCount": 16, "years": [ + 2026, 2025, 2024, 2023, @@ -17,7 +18,7 @@ "slug": "mdanalysis", "name": "MDAnalysis", "first_year": 2020, - "last_year": 2025, + "last_year": 2026, "total_projects": 16, "is_currently_active": true, "active_years": [ @@ -26,7 +27,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -54,10 +56,14 @@ "2025": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.304Z" + "generated_at": "2026-02-19T13:36:02.260Z" } } \ No newline at end of file diff --git a/new-api-details/topics/trajectory-analytics.json b/new-api-details/topics/trajectory-analytics.json index 06b8ac8d..28e75d98 100644 --- a/new-api-details/topics/trajectory-analytics.json +++ b/new-api-details/topics/trajectory-analytics.json @@ -1,10 +1,11 @@ { "slug": "trajectory-analytics", "name": "trajectory analytics", - "published_at": "2026-01-25T16:06:28.363Z", + "published_at": "2026-02-19T13:36:00.286Z", "organizationCount": 1, "projectCount": 25, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "52north-spatial-information-research-gmbh", "name": "52°North Spatial Information Research GmbH", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 25, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.363Z" + "generated_at": "2026-02-19T13:36:00.286Z" } } \ No newline at end of file diff --git a/new-api-details/topics/trajectory-generation.json b/new-api-details/topics/trajectory-generation.json index d851cd60..b754ea3c 100644 --- a/new-api-details/topics/trajectory-generation.json +++ b/new-api-details/topics/trajectory-generation.json @@ -1,7 +1,7 @@ { "slug": "trajectory-generation", "name": "trajectory generation", - "published_at": "2026-01-25T16:06:29.373Z", + "published_at": "2026-02-19T13:36:02.356Z", "organizationCount": 1, "projectCount": 10, "years": [ @@ -52,6 +52,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.373Z" + "generated_at": "2026-02-19T13:36:02.356Z" } } \ No newline at end of file diff --git a/new-api-details/topics/transcoding.json b/new-api-details/topics/transcoding.json index 15074d6e..e2d6ee44 100644 --- a/new-api-details/topics/transcoding.json +++ b/new-api-details/topics/transcoding.json @@ -1,7 +1,7 @@ { "slug": "transcoding", "name": "transcoding", - "published_at": "2026-01-25T16:06:29.527Z", + "published_at": "2026-02-19T13:36:02.687Z", "organizationCount": 1, "projectCount": 0, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.527Z" + "generated_at": "2026-02-19T13:36:02.687Z" } } \ No newline at end of file diff --git a/new-api-details/topics/transit.json b/new-api-details/topics/transit.json index 5f8acbe9..29e872ff 100644 --- a/new-api-details/topics/transit.json +++ b/new-api-details/topics/transit.json @@ -1,10 +1,11 @@ { "slug": "transit", "name": "Transit", - "published_at": "2026-01-25T16:06:29.459Z", + "published_at": "2026-02-19T13:36:02.537Z", "organizationCount": 1, "projectCount": 10, "years": [ + 2026, 2025, 2024 ], @@ -13,12 +14,13 @@ "slug": "open-transit-software-foundation", "name": "Open Transit Software Foundation", "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "total_projects": 10, "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -30,10 +32,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.459Z" + "generated_at": "2026-02-19T13:36:02.537Z" } } \ No newline at end of file diff --git a/new-api-details/topics/travel.json b/new-api-details/topics/travel.json index 4f7d0c8e..8351db17 100644 --- a/new-api-details/topics/travel.json +++ b/new-api-details/topics/travel.json @@ -1,10 +1,11 @@ { "slug": "travel", "name": "travel", - "published_at": "2026-01-25T16:06:29.461Z", + "published_at": "2026-02-19T13:36:02.538Z", "organizationCount": 1, "projectCount": 10, "years": [ + 2026, 2025, 2024 ], @@ -13,12 +14,13 @@ "slug": "open-transit-software-foundation", "name": "Open Transit Software Foundation", "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "total_projects": 10, "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -30,10 +32,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.461Z" + "generated_at": "2026-02-19T13:36:02.538Z" } } \ No newline at end of file diff --git a/new-api-details/topics/triangulation.json b/new-api-details/topics/triangulation.json index 3ab33bf3..762fe46d 100644 --- a/new-api-details/topics/triangulation.json +++ b/new-api-details/topics/triangulation.json @@ -1,10 +1,11 @@ { "slug": "triangulation", "name": "triangulation", - "published_at": "2026-01-25T16:06:28.655Z", + "published_at": "2026-02-19T13:36:00.987Z", "organizationCount": 1, "projectCount": 58, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "cgal-project", "name": "CGAL Project", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 58, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.655Z" + "generated_at": "2026-02-19T13:36:00.987Z" } } \ No newline at end of file diff --git a/new-api-details/topics/triangulaton.json b/new-api-details/topics/triangulaton.json index 8fe9f1b3..82671b20 100644 --- a/new-api-details/topics/triangulaton.json +++ b/new-api-details/topics/triangulaton.json @@ -1,10 +1,11 @@ { "slug": "triangulaton", "name": "triangulaton", - "published_at": "2026-01-25T16:06:28.653Z", + "published_at": "2026-02-19T13:36:00.984Z", "organizationCount": 1, "projectCount": 58, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "cgal-project", "name": "CGAL Project", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 58, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.653Z" + "generated_at": "2026-02-19T13:36:00.984Z" } } \ No newline at end of file diff --git a/new-api-details/topics/truetype.json b/new-api-details/topics/truetype.json index baabcfd1..84fc869e 100644 --- a/new-api-details/topics/truetype.json +++ b/new-api-details/topics/truetype.json @@ -1,7 +1,7 @@ { "slug": "truetype", "name": "truetype", - "published_at": "2026-01-25T16:06:29.006Z", + "published_at": "2026-02-19T13:36:01.550Z", "organizationCount": 1, "projectCount": 17, "years": [ @@ -70,6 +70,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.006Z" + "generated_at": "2026-02-19T13:36:01.550Z" } } \ No newline at end of file diff --git a/new-api-details/topics/tv.json b/new-api-details/topics/tv.json index 1c72e742..a80e4401 100644 --- a/new-api-details/topics/tv.json +++ b/new-api-details/topics/tv.json @@ -1,10 +1,11 @@ { "slug": "tv", "name": "tv", - "published_at": "2026-01-25T16:06:28.640Z", + "published_at": "2026-02-19T13:36:00.943Z", "organizationCount": 2, "projectCount": 92, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "ccextractor-development", "name": "CCExtractor Development", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 80, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -94,10 +96,14 @@ "2025": { "organizationCount": 1, "projectCount": 10 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.640Z" + "generated_at": "2026-02-19T13:36:00.943Z" } } \ No newline at end of file diff --git a/new-api-details/topics/type-system.json b/new-api-details/topics/type-system.json index de30179d..f70a7e30 100644 --- a/new-api-details/topics/type-system.json +++ b/new-api-details/topics/type-system.json @@ -1,10 +1,11 @@ { "slug": "type-system", "name": "type system", - "published_at": "2026-01-25T16:06:29.599Z", + "published_at": "2026-02-19T13:36:02.806Z", "organizationCount": 1, "projectCount": 38, "years": [ + 2026, 2023, 2022, 2021, @@ -18,9 +19,9 @@ "slug": "ruby", "name": "Ruby", "first_year": 2016, - "last_year": 2023, + "last_year": 2026, "total_projects": 38, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2018, @@ -28,7 +29,8 @@ 2020, 2021, 2022, - 2023 + 2023, + 2026 ] } ], @@ -60,10 +62,14 @@ "2023": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.599Z" + "generated_at": "2026-02-19T13:36:02.806Z" } } \ No newline at end of file diff --git a/new-api-details/topics/type-systems.json b/new-api-details/topics/type-systems.json index 0fed1ca0..9a5e9b93 100644 --- a/new-api-details/topics/type-systems.json +++ b/new-api-details/topics/type-systems.json @@ -1,7 +1,7 @@ { "slug": "type-systems", "name": "type systems", - "published_at": "2026-01-25T16:06:28.753Z", + "published_at": "2026-02-19T13:36:01.005Z", "organizationCount": 1, "projectCount": 17, "years": [ @@ -18,7 +18,7 @@ "first_year": 2017, "last_year": 2025, "total_projects": 17, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2017, 2018, @@ -52,6 +52,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.753Z" + "generated_at": "2026-02-19T13:36:01.005Z" } } \ No newline at end of file diff --git a/new-api-details/topics/uav.json b/new-api-details/topics/uav.json index 1015d031..b9b480d9 100644 --- a/new-api-details/topics/uav.json +++ b/new-api-details/topics/uav.json @@ -1,10 +1,11 @@ { "slug": "uav", "name": "uav", - "published_at": "2026-01-25T16:06:28.527Z", + "published_at": "2026-02-19T13:36:00.613Z", "organizationCount": 1, "projectCount": 38, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "ardupilot", "name": "ArduPilot", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 38, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.527Z" + "generated_at": "2026-02-19T13:36:00.613Z" } } \ No newline at end of file diff --git a/new-api-details/topics/uefi.json b/new-api-details/topics/uefi.json index 49840f87..7ded483e 100644 --- a/new-api-details/topics/uefi.json +++ b/new-api-details/topics/uefi.json @@ -1,7 +1,7 @@ { "slug": "uefi", "name": "uefi", - "published_at": "2026-01-25T16:06:29.736Z", + "published_at": "2026-02-19T13:36:03.056Z", "organizationCount": 1, "projectCount": 8, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.736Z" + "generated_at": "2026-02-19T13:36:03.056Z" } } \ No newline at end of file diff --git a/new-api-details/topics/ugv.json b/new-api-details/topics/ugv.json index 3d6a31fa..14ad886e 100644 --- a/new-api-details/topics/ugv.json +++ b/new-api-details/topics/ugv.json @@ -1,10 +1,11 @@ { "slug": "ugv", "name": "UGV", - "published_at": "2026-01-25T16:06:28.532Z", + "published_at": "2026-02-19T13:36:00.624Z", "organizationCount": 1, "projectCount": 38, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "ardupilot", "name": "ArduPilot", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 38, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.532Z" + "generated_at": "2026-02-19T13:36:00.624Z" } } \ No newline at end of file diff --git a/new-api-details/topics/ui-design.json b/new-api-details/topics/ui-design.json index 3603f632..0c42c589 100644 --- a/new-api-details/topics/ui-design.json +++ b/new-api-details/topics/ui-design.json @@ -1,10 +1,11 @@ { "slug": "ui-design", "name": "ui design", - "published_at": "2026-01-25T16:06:29.570Z", + "published_at": "2026-02-19T13:36:02.765Z", "organizationCount": 1, "projectCount": 277, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "python-software-foundation", "name": "Python Software Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 277, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 17 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.570Z" + "generated_at": "2026-02-19T13:36:02.765Z" } } \ No newline at end of file diff --git a/new-api-details/topics/ui-toolkit.json b/new-api-details/topics/ui-toolkit.json index 4b0b8a0d..adfd7d15 100644 --- a/new-api-details/topics/ui-toolkit.json +++ b/new-api-details/topics/ui-toolkit.json @@ -1,7 +1,7 @@ { "slug": "ui-toolkit", "name": "ui toolkit", - "published_at": "2026-01-25T16:06:29.584Z", + "published_at": "2026-02-19T13:36:02.778Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.584Z" + "generated_at": "2026-02-19T13:36:02.778Z" } } \ No newline at end of file diff --git a/new-api-details/topics/ui-ux.json b/new-api-details/topics/ui-ux.json index 8bda85df..82e73495 100644 --- a/new-api-details/topics/ui-ux.json +++ b/new-api-details/topics/ui-ux.json @@ -1,10 +1,11 @@ { "slug": "ui-ux", "name": "ui/ux", - "published_at": "2026-01-25T16:06:28.994Z", + "published_at": "2026-02-19T13:36:01.541Z", "organizationCount": 3, "projectCount": 173, "years": [ + 2026, 2025, 2024, 2023, @@ -17,22 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "free-uk-genealogy", - "name": "Free UK Genealogy", - "first_year": 2018, - "last_year": 2018, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2018 - ] - }, { "slug": "national-resource-for-network-biology-nrnb", "name": "National Resource for Network Biology (NRNB)", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 119, "is_currently_active": true, "active_years": [ @@ -45,14 +35,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "opensuse-project", "name": "openSUSE Project", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 52, "is_currently_active": true, "active_years": [ @@ -64,7 +55,19 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "free-uk-genealogy", + "name": "Free UK Genealogy", + "first_year": 2018, + "last_year": 2018, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2018 ] } ], @@ -108,10 +111,14 @@ "2025": { "organizationCount": 2, "projectCount": 15 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.994Z" + "generated_at": "2026-02-19T13:36:01.541Z" } } \ No newline at end of file diff --git a/new-api-details/topics/ui.json b/new-api-details/topics/ui.json index 06f7fb02..2b5cbfd5 100644 --- a/new-api-details/topics/ui.json +++ b/new-api-details/topics/ui.json @@ -1,10 +1,11 @@ { "slug": "ui", "name": "ui", - "published_at": "2026-01-25T16:06:28.579Z", + "published_at": "2026-02-19T13:36:00.675Z", "organizationCount": 6, "projectCount": 116, "years": [ + 2026, 2025, 2024, 2023, @@ -18,45 +19,30 @@ ], "organizations": [ { - "slug": "beeware-project", - "name": "BeeWare Project", - "first_year": 2017, - "last_year": 2018, - "total_projects": 5, - "is_currently_active": false, - "active_years": [ - 2017, - 2018 - ] - }, - { - "slug": "conversationsim", - "name": "Conversations.im", + "slug": "postgresql", + "name": "PostgreSQL", "first_year": 2017, - "last_year": 2018, - "total_projects": 4, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 51, + "is_currently_active": true, "active_years": [ 2017, - 2018 - ] - }, - { - "slug": "open-ephys", - "name": "Open Ephys", - "first_year": 2016, - "last_year": 2016, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2016 + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { "slug": "openstreetmap", "name": "OpenStreetMap", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 45, "is_currently_active": true, "active_years": [ @@ -69,7 +55,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -86,22 +73,38 @@ ] }, { - "slug": "postgresql", - "name": "PostgreSQL", + "slug": "beeware-project", + "name": "BeeWare Project", "first_year": 2017, - "last_year": 2025, - "total_projects": 51, - "is_currently_active": true, + "last_year": 2018, + "total_projects": 5, + "is_currently_active": false, "active_years": [ 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2018 + ] + }, + { + "slug": "conversationsim", + "name": "Conversations.im", + "first_year": 2017, + "last_year": 2018, + "total_projects": 4, + "is_currently_active": false, + "active_years": [ + 2017, + 2018 + ] + }, + { + "slug": "open-ephys", + "name": "Open Ephys", + "first_year": 2016, + "last_year": 2016, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2016 ] } ], @@ -145,10 +148,14 @@ "2025": { "organizationCount": 2, "projectCount": 13 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.579Z" + "generated_at": "2026-02-19T13:36:00.675Z" } } \ No newline at end of file diff --git a/new-api-details/topics/unified-api.json b/new-api-details/topics/unified-api.json index 88ee08fb..2affc115 100644 --- a/new-api-details/topics/unified-api.json +++ b/new-api-details/topics/unified-api.json @@ -1,7 +1,7 @@ { "slug": "unified-api", "name": "unified API", - "published_at": "2026-01-25T16:06:29.195Z", + "published_at": "2026-02-19T13:36:02.000Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.195Z" + "generated_at": "2026-02-19T13:36:02.000Z" } } \ No newline at end of file diff --git a/new-api-details/topics/unikernels.json b/new-api-details/topics/unikernels.json index f38c67ef..d37a90c5 100644 --- a/new-api-details/topics/unikernels.json +++ b/new-api-details/topics/unikernels.json @@ -1,7 +1,7 @@ { "slug": "unikernels", "name": "unikernels", - "published_at": "2026-01-25T16:06:29.804Z", + "published_at": "2026-02-19T13:36:03.149Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.804Z" + "generated_at": "2026-02-19T13:36:03.149Z" } } \ No newline at end of file diff --git a/new-api-details/topics/unit-testing.json b/new-api-details/topics/unit-testing.json index 6de5d34c..1842a5c9 100644 --- a/new-api-details/topics/unit-testing.json +++ b/new-api-details/topics/unit-testing.json @@ -1,7 +1,7 @@ { "slug": "unit-testing", "name": "unit testing", - "published_at": "2026-01-25T16:06:29.407Z", + "published_at": "2026-02-19T13:36:02.070Z", "organizationCount": 2, "projectCount": 9, "years": [ @@ -44,6 +44,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.407Z" + "generated_at": "2026-02-19T13:36:02.070Z" } } \ No newline at end of file diff --git a/new-api-details/topics/unix.json b/new-api-details/topics/unix.json index 57013273..bdc52c88 100644 --- a/new-api-details/topics/unix.json +++ b/new-api-details/topics/unix.json @@ -1,10 +1,11 @@ { "slug": "unix", "name": "unix", - "published_at": "2026-01-25T16:06:29.715Z", + "published_at": "2026-02-19T13:36:02.953Z", "organizationCount": 1, "projectCount": 38, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "the-netbsd-foundation", "name": "The NetBSD Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 38, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.715Z" + "generated_at": "2026-02-19T13:36:02.953Z" } } \ No newline at end of file diff --git a/new-api-details/topics/unmanned-vehicle.json b/new-api-details/topics/unmanned-vehicle.json index 8f94e71a..c8c8a2f3 100644 --- a/new-api-details/topics/unmanned-vehicle.json +++ b/new-api-details/topics/unmanned-vehicle.json @@ -1,10 +1,11 @@ { "slug": "unmanned-vehicle", "name": "unmanned vehicle", - "published_at": "2026-01-25T16:06:28.533Z", + "published_at": "2026-02-19T13:36:00.625Z", "organizationCount": 1, "projectCount": 38, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "ardupilot", "name": "ArduPilot", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 38, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.533Z" + "generated_at": "2026-02-19T13:36:00.625Z" } } \ No newline at end of file diff --git a/new-api-details/topics/unopionated.json b/new-api-details/topics/unopionated.json index 76eac5a2..d56de713 100644 --- a/new-api-details/topics/unopionated.json +++ b/new-api-details/topics/unopionated.json @@ -1,7 +1,7 @@ { "slug": "unopionated", "name": "unopionated", - "published_at": "2026-01-25T16:06:28.899Z", + "published_at": "2026-02-19T13:36:01.247Z", "organizationCount": 1, "projectCount": 6, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.899Z" + "generated_at": "2026-02-19T13:36:01.247Z" } } \ No newline at end of file diff --git a/new-api-details/topics/unreal-engine.json b/new-api-details/topics/unreal-engine.json index ef98c0e8..a3a1be7e 100644 --- a/new-api-details/topics/unreal-engine.json +++ b/new-api-details/topics/unreal-engine.json @@ -1,7 +1,7 @@ { "slug": "unreal-engine", "name": "unreal engine", - "published_at": "2026-01-25T16:06:29.154Z", + "published_at": "2026-02-19T13:36:01.821Z", "organizationCount": 1, "projectCount": 11, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.154Z" + "generated_at": "2026-02-19T13:36:01.821Z" } } \ No newline at end of file diff --git a/new-api-details/topics/upstream.json b/new-api-details/topics/upstream.json index eac4846d..6985b0a5 100644 --- a/new-api-details/topics/upstream.json +++ b/new-api-details/topics/upstream.json @@ -1,7 +1,7 @@ { "slug": "upstream", "name": "upstream", - "published_at": "2026-01-25T16:06:28.952Z", + "published_at": "2026-02-19T13:36:01.282Z", "organizationCount": 1, "projectCount": 27, "years": [ @@ -19,7 +19,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.952Z" + "generated_at": "2026-02-19T13:36:01.282Z" } } \ No newline at end of file diff --git a/new-api-details/topics/usability.json b/new-api-details/topics/usability.json index 904c6846..17a1c315 100644 --- a/new-api-details/topics/usability.json +++ b/new-api-details/topics/usability.json @@ -1,10 +1,11 @@ { "slug": "usability", "name": "Usability", - "published_at": "2026-01-25T16:06:29.757Z", + "published_at": "2026-02-19T13:36:03.104Z", "organizationCount": 1, "projectCount": 8, "years": [ + 2026, 2025, 2024 ], @@ -13,12 +14,13 @@ "slug": "uramaki-lab", "name": "Uramaki LAB", "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "total_projects": 8, "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -30,10 +32,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.757Z" + "generated_at": "2026-02-19T13:36:03.104Z" } } \ No newline at end of file diff --git a/new-api-details/topics/usabilty.json b/new-api-details/topics/usabilty.json index 6eaf0754..61164993 100644 --- a/new-api-details/topics/usabilty.json +++ b/new-api-details/topics/usabilty.json @@ -1,7 +1,7 @@ { "slug": "usabilty", "name": "usabilty", - "published_at": "2026-01-25T16:06:28.798Z", + "published_at": "2026-02-19T13:36:01.082Z", "organizationCount": 1, "projectCount": 4, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.798Z" + "generated_at": "2026-02-19T13:36:01.082Z" } } \ No newline at end of file diff --git a/new-api-details/topics/user-evaluation.json b/new-api-details/topics/user-evaluation.json index 0a140c2a..b027ce4a 100644 --- a/new-api-details/topics/user-evaluation.json +++ b/new-api-details/topics/user-evaluation.json @@ -1,10 +1,11 @@ { "slug": "user-evaluation", "name": "User Evaluation", - "published_at": "2026-01-25T16:06:29.758Z", + "published_at": "2026-02-19T13:36:03.105Z", "organizationCount": 1, "projectCount": 8, "years": [ + 2026, 2025, 2024 ], @@ -13,12 +14,13 @@ "slug": "uramaki-lab", "name": "Uramaki LAB", "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "total_projects": 8, "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] } ], @@ -30,10 +32,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.758Z" + "generated_at": "2026-02-19T13:36:03.105Z" } } \ No newline at end of file diff --git a/new-api-details/topics/user-experience.json b/new-api-details/topics/user-experience.json index 7f4a6c3b..4ce682b1 100644 --- a/new-api-details/topics/user-experience.json +++ b/new-api-details/topics/user-experience.json @@ -1,10 +1,11 @@ { "slug": "user-experience", "name": "user experience", - "published_at": "2026-01-25T16:06:29.622Z", + "published_at": "2026-02-19T13:36:02.824Z", "organizationCount": 3, "projectCount": 19, "years": [ + 2026, 2025, 2024, 2020, @@ -31,12 +32,13 @@ "slug": "uramaki-lab", "name": "Uramaki LAB", "first_year": 2024, - "last_year": 2025, + "last_year": 2026, "total_projects": 8, "is_currently_active": true, "active_years": [ 2024, - 2025 + 2025, + 2026 ] }, { @@ -75,10 +77,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.622Z" + "generated_at": "2026-02-19T13:36:02.824Z" } } \ No newline at end of file diff --git a/new-api-details/topics/user-generated-content.json b/new-api-details/topics/user-generated-content.json index 877326d9..9b60d800 100644 --- a/new-api-details/topics/user-generated-content.json +++ b/new-api-details/topics/user-generated-content.json @@ -1,10 +1,11 @@ { "slug": "user-generated-content", "name": "user generated content", - "published_at": "2026-01-25T16:06:28.463Z", + "published_at": "2026-02-19T13:36:00.456Z", "organizationCount": 1, "projectCount": 10, "years": [ + 2026, 2025, 2024, 2022, @@ -15,14 +16,15 @@ "slug": "ankidroid", "name": "AnkiDroid", "first_year": 2021, - "last_year": 2025, + "last_year": 2026, "total_projects": 10, "is_currently_active": true, "active_years": [ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] } ], @@ -42,10 +44,14 @@ "2025": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.463Z" + "generated_at": "2026-02-19T13:36:00.456Z" } } \ No newline at end of file diff --git a/new-api-details/topics/user-interface-components.json b/new-api-details/topics/user-interface-components.json index 9e35c8af..63bc664f 100644 --- a/new-api-details/topics/user-interface-components.json +++ b/new-api-details/topics/user-interface-components.json @@ -1,7 +1,7 @@ { "slug": "user-interface-components", "name": "user interface components", - "published_at": "2026-01-25T16:06:29.842Z", + "published_at": "2026-02-19T13:36:02.073Z", "organizationCount": 1, "projectCount": 7, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.842Z" + "generated_at": "2026-02-19T13:36:02.073Z" } } \ No newline at end of file diff --git a/new-api-details/topics/user-interface.json b/new-api-details/topics/user-interface.json index 59704c93..8455c840 100644 --- a/new-api-details/topics/user-interface.json +++ b/new-api-details/topics/user-interface.json @@ -1,10 +1,11 @@ { "slug": "user-interface", "name": "user interface", - "published_at": "2026-01-25T16:06:28.672Z", + "published_at": "2026-02-19T13:36:01.052Z", "organizationCount": 9, "projectCount": 273, "years": [ + 2026, 2025, 2024, 2023, @@ -18,25 +19,24 @@ ], "organizations": [ { - "slug": "cmu-sphinx", - "name": "CMU Sphinx", - "first_year": 2017, - "last_year": 2017, - "total_projects": 11, - "is_currently_active": false, - "active_years": [ - 2017 - ] - }, - { - "slug": "elm-software-foundation", - "name": "Elm Software Foundation", - "first_year": 2017, - "last_year": 2017, - "total_projects": 1, - "is_currently_active": false, + "slug": "sugar-labs", + "name": "Sugar Labs", + "first_year": 2016, + "last_year": 2026, + "total_projects": 89, + "is_currently_active": true, "active_years": [ - 2017 + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { @@ -45,7 +45,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 74, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -58,13 +58,29 @@ 2025 ] }, + { + "slug": "pharo-consortium", + "name": "Pharo Consortium", + "first_year": 2017, + "last_year": 2026, + "total_projects": 32, + "is_currently_active": true, + "active_years": [ + 2017, + 2019, + 2021, + 2023, + 2025, + 2026 + ] + }, { "slug": "haiku", "name": "Haiku", "first_year": 2017, - "last_year": 2024, + "last_year": 2026, "total_projects": 26, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, @@ -73,7 +89,8 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -96,18 +113,27 @@ ] }, { - "slug": "pharo-consortium", - "name": "Pharo Consortium", - "first_year": 2017, - "last_year": 2025, - "total_projects": 32, - "is_currently_active": true, + "slug": "scilab", + "name": "Scilab", + "first_year": 2016, + "last_year": 2018, + "total_projects": 14, + "is_currently_active": false, "active_years": [ + 2016, 2017, - 2019, - 2021, - 2023, - 2025 + 2018 + ] + }, + { + "slug": "cmu-sphinx", + "name": "CMU Sphinx", + "first_year": 2017, + "last_year": 2017, + "total_projects": 11, + "is_currently_active": false, + "active_years": [ + 2017 ] }, { @@ -122,36 +148,14 @@ ] }, { - "slug": "scilab", - "name": "Scilab", - "first_year": 2016, - "last_year": 2018, - "total_projects": 14, + "slug": "elm-software-foundation", + "name": "Elm Software Foundation", + "first_year": 2017, + "last_year": 2017, + "total_projects": 1, "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018 - ] - }, - { - "slug": "sugar-labs", - "name": "Sugar Labs", - "first_year": 2016, - "last_year": 2025, - "total_projects": 89, - "is_currently_active": true, - "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2017 ] } ], @@ -195,10 +199,14 @@ "2025": { "organizationCount": 3, "projectCount": 24 + }, + "2026": { + "organizationCount": 3, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.672Z" + "generated_at": "2026-02-19T13:36:01.052Z" } } \ No newline at end of file diff --git a/new-api-details/topics/userland.json b/new-api-details/topics/userland.json index d0bb6e25..e0c51d7a 100644 --- a/new-api-details/topics/userland.json +++ b/new-api-details/topics/userland.json @@ -1,10 +1,11 @@ { "slug": "userland", "name": "userland", - "published_at": "2026-01-25T16:06:29.714Z", + "published_at": "2026-02-19T13:36:02.952Z", "organizationCount": 1, "projectCount": 38, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "the-netbsd-foundation", "name": "The NetBSD Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 38, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.714Z" + "generated_at": "2026-02-19T13:36:02.952Z" } } \ No newline at end of file diff --git a/new-api-details/topics/ux-ui.json b/new-api-details/topics/ux-ui.json index 765350d8..58254043 100644 --- a/new-api-details/topics/ux-ui.json +++ b/new-api-details/topics/ux-ui.json @@ -1,10 +1,11 @@ { "slug": "ux-ui", "name": "UX/UI", - "published_at": "2026-01-25T16:06:29.850Z", + "published_at": "2026-02-19T13:36:02.480Z", "organizationCount": 1, "projectCount": 10, "years": [ + 2026, 2025, 2024, 2023, @@ -16,7 +17,7 @@ "slug": "omegaup", "name": "omegaUp", "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "total_projects": 10, "is_currently_active": true, "active_years": [ @@ -24,7 +25,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -48,10 +50,14 @@ "2025": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.850Z" + "generated_at": "2026-02-19T13:36:02.480Z" } } \ No newline at end of file diff --git a/new-api-details/topics/ux.json b/new-api-details/topics/ux.json index f7993a37..dd211777 100644 --- a/new-api-details/topics/ux.json +++ b/new-api-details/topics/ux.json @@ -1,10 +1,11 @@ { "slug": "ux", "name": "ux", - "published_at": "2026-01-25T16:06:28.798Z", + "published_at": "2026-02-19T13:36:01.083Z", "organizationCount": 2, "projectCount": 79, "years": [ + 2026, 2025, 2024, 2023, @@ -17,23 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "conversationsim", - "name": "Conversations.im", - "first_year": 2017, - "last_year": 2018, - "total_projects": 4, - "is_currently_active": false, - "active_years": [ - 2017, - 2018 - ] - }, { "slug": "liquid-galaxy-project", "name": "Liquid Galaxy project", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 75, "is_currently_active": true, "active_years": [ @@ -45,7 +34,20 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "conversationsim", + "name": "Conversations.im", + "first_year": 2017, + "last_year": 2018, + "total_projects": 4, + "is_currently_active": false, + "active_years": [ + 2017, + 2018 ] } ], @@ -89,10 +91,14 @@ "2025": { "organizationCount": 1, "projectCount": 11 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.798Z" + "generated_at": "2026-02-19T13:36:01.083Z" } } \ No newline at end of file diff --git a/new-api-details/topics/vector-database.json b/new-api-details/topics/vector-database.json index 7836fd06..7bd43523 100644 --- a/new-api-details/topics/vector-database.json +++ b/new-api-details/topics/vector-database.json @@ -1,7 +1,7 @@ { "slug": "vector-database", "name": "Vector Database", - "published_at": "2026-01-25T16:06:29.621Z", + "published_at": "2026-02-19T13:36:02.823Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.621Z" + "generated_at": "2026-02-19T13:36:02.823Z" } } \ No newline at end of file diff --git a/new-api-details/topics/vector-graphics.json b/new-api-details/topics/vector-graphics.json index 74dc20c0..8d3e4c65 100644 --- a/new-api-details/topics/vector-graphics.json +++ b/new-api-details/topics/vector-graphics.json @@ -1,10 +1,11 @@ { "slug": "vector-graphics", "name": "vector graphics", - "published_at": "2026-01-25T16:06:29.146Z", + "published_at": "2026-02-19T13:36:01.804Z", "organizationCount": 2, "projectCount": 39, "years": [ + 2026, 2025, 2024, 2023, @@ -23,7 +24,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -41,7 +42,7 @@ "slug": "synfig", "name": "Synfig", "first_year": 2019, - "last_year": 2025, + "last_year": 2026, "total_projects": 12, "is_currently_active": true, "active_years": [ @@ -51,7 +52,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -95,10 +97,14 @@ "2025": { "organizationCount": 2, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.146Z" + "generated_at": "2026-02-19T13:36:01.804Z" } } \ No newline at end of file diff --git a/new-api-details/topics/verification-of-concurrent-systems.json b/new-api-details/topics/verification-of-concurrent-systems.json index 8c1e772a..c8e61c65 100644 --- a/new-api-details/topics/verification-of-concurrent-systems.json +++ b/new-api-details/topics/verification-of-concurrent-systems.json @@ -1,10 +1,11 @@ { "slug": "verification-of-concurrent-systems", "name": "verification of concurrent systems", - "published_at": "2026-01-25T16:06:29.690Z", + "published_at": "2026-02-19T13:36:02.922Z", "organizationCount": 1, "projectCount": 46, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "the-jpf-team", "name": "The JPF team", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 46, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.690Z" + "generated_at": "2026-02-19T13:36:02.922Z" } } \ No newline at end of file diff --git a/new-api-details/topics/verification.json b/new-api-details/topics/verification.json index 7a7cea01..3be8f7a3 100644 --- a/new-api-details/topics/verification.json +++ b/new-api-details/topics/verification.json @@ -1,10 +1,11 @@ { "slug": "verification", "name": "verification", - "published_at": "2026-01-25T16:06:28.749Z", + "published_at": "2026-02-19T13:36:01.001Z", "organizationCount": 3, "projectCount": 68, "years": [ + 2026, 2025, 2024, 2023, @@ -17,13 +18,34 @@ 2016 ], "organizations": [ + { + "slug": "the-jpf-team", + "name": "The JPF team", + "first_year": 2016, + "last_year": 2026, + "total_projects": 46, + "is_currently_active": true, + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ] + }, { "slug": "checker-framework", "name": "Checker Framework", "first_year": 2017, "last_year": 2025, "total_projects": 17, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2017, 2018, @@ -42,26 +64,6 @@ "active_years": [ 2016 ] - }, - { - "slug": "the-jpf-team", - "name": "The JPF team", - "first_year": 2016, - "last_year": 2025, - "total_projects": 46, - "is_currently_active": true, - "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 - ] } ], "yearlyStats": { @@ -104,10 +106,14 @@ "2025": { "organizationCount": 2, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.749Z" + "generated_at": "2026-02-19T13:36:01.001Z" } } \ No newline at end of file diff --git a/new-api-details/topics/version-control.json b/new-api-details/topics/version-control.json index 3a35f5a0..24536231 100644 --- a/new-api-details/topics/version-control.json +++ b/new-api-details/topics/version-control.json @@ -1,10 +1,11 @@ { "slug": "version-control", "name": "version control", - "published_at": "2026-01-25T16:06:29.083Z", + "published_at": "2026-02-19T13:36:01.619Z", "organizationCount": 3, "projectCount": 27, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "git", "name": "Git", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 22, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -100,10 +102,14 @@ "2025": { "organizationCount": 2, "projectCount": 6 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.083Z" + "generated_at": "2026-02-19T13:36:01.619Z" } } \ No newline at end of file diff --git a/new-api-details/topics/vfx.json b/new-api-details/topics/vfx.json index f441bae6..059fb04a 100644 --- a/new-api-details/topics/vfx.json +++ b/new-api-details/topics/vfx.json @@ -1,10 +1,11 @@ { "slug": "vfx", "name": "vfx", - "published_at": "2026-01-25T16:06:28.608Z", + "published_at": "2026-02-19T13:36:00.569Z", "organizationCount": 2, "projectCount": 75, "years": [ + 2026, 2025, 2024, 2023, @@ -17,25 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "appleseed", - "name": "appleseed", - "first_year": 2017, - "last_year": 2020, - "total_projects": 11, - "is_currently_active": false, - "active_years": [ - 2017, - 2018, - 2019, - 2020 - ] - }, { "slug": "blender-foundation", "name": "Blender Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 64, "is_currently_active": true, "active_years": [ @@ -48,7 +35,22 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "appleseed", + "name": "appleseed", + "first_year": 2017, + "last_year": 2020, + "total_projects": 11, + "is_currently_active": false, + "active_years": [ + 2017, + 2018, + 2019, + 2020 ] } ], @@ -92,10 +94,14 @@ "2025": { "organizationCount": 1, "projectCount": 8 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.608Z" + "generated_at": "2026-02-19T13:36:00.569Z" } } \ No newline at end of file diff --git a/new-api-details/topics/video-apis.json b/new-api-details/topics/video-apis.json index 45472754..b928ff2a 100644 --- a/new-api-details/topics/video-apis.json +++ b/new-api-details/topics/video-apis.json @@ -1,7 +1,7 @@ { "slug": "video-apis", "name": "video apis", - "published_at": "2026-01-25T16:06:29.164Z", + "published_at": "2026-02-19T13:36:01.837Z", "organizationCount": 1, "projectCount": 12, "years": [ @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.164Z" + "generated_at": "2026-02-19T13:36:01.837Z" } } \ No newline at end of file diff --git a/new-api-details/topics/video-capture.json b/new-api-details/topics/video-capture.json index d8d7cfec..2bc9d08a 100644 --- a/new-api-details/topics/video-capture.json +++ b/new-api-details/topics/video-capture.json @@ -1,7 +1,7 @@ { "slug": "video-capture", "name": "video capture", - "published_at": "2026-01-25T16:06:29.746Z", + "published_at": "2026-02-19T13:36:03.083Z", "organizationCount": 1, "projectCount": 6, "years": [ @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.746Z" + "generated_at": "2026-02-19T13:36:03.083Z" } } \ No newline at end of file diff --git a/new-api-details/topics/video-conferencing.json b/new-api-details/topics/video-conferencing.json index a424e5a3..89992876 100644 --- a/new-api-details/topics/video-conferencing.json +++ b/new-api-details/topics/video-conferencing.json @@ -1,10 +1,11 @@ { "slug": "video-conferencing", "name": "video conferencing", - "published_at": "2026-01-25T16:06:29.221Z", + "published_at": "2026-02-19T13:36:02.050Z", "organizationCount": 1, "projectCount": 21, "years": [ + 2026, 2025, 2024, 2022, @@ -16,7 +17,7 @@ "slug": "jitsi", "name": "Jitsi", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 21, "is_currently_active": true, "active_years": [ @@ -24,7 +25,8 @@ 2018, 2022, 2024, - 2025 + 2025, + 2026 ] } ], @@ -48,10 +50,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.221Z" + "generated_at": "2026-02-19T13:36:02.050Z" } } \ No newline at end of file diff --git a/new-api-details/topics/video-decode.json b/new-api-details/topics/video-decode.json index d23aa230..4728466a 100644 --- a/new-api-details/topics/video-decode.json +++ b/new-api-details/topics/video-decode.json @@ -1,10 +1,11 @@ { "slug": "video-decode", "name": "video decode", - "published_at": "2026-01-25T16:06:29.159Z", + "published_at": "2026-02-19T13:36:01.829Z", "organizationCount": 3, "projectCount": 107, "years": [ + 2026, 2025, 2024, 2023, @@ -17,27 +18,11 @@ 2016 ], "organizations": [ - { - "slug": "intel-video-and-audio-for-linux", - "name": "Intel Video and Audio for Linux", - "first_year": 2017, - "last_year": 2022, - "total_projects": 12, - "is_currently_active": false, - "active_years": [ - 2017, - 2018, - 2019, - 2020, - 2021, - 2022 - ] - }, { "slug": "videolan", "name": "VideoLAN", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 92, "is_currently_active": true, "active_years": [ @@ -50,7 +35,24 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "intel-video-and-audio-for-linux", + "name": "Intel Video and Audio for Linux", + "first_year": 2017, + "last_year": 2022, + "total_projects": 12, + "is_currently_active": false, + "active_years": [ + 2017, + 2018, + 2019, + 2020, + 2021, + 2022 ] }, { @@ -105,10 +107,14 @@ "2025": { "organizationCount": 1, "projectCount": 15 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.159Z" + "generated_at": "2026-02-19T13:36:01.829Z" } } \ No newline at end of file diff --git a/new-api-details/topics/video-decoding-encoding.json b/new-api-details/topics/video-decoding-encoding.json index 5a264ec0..aaddd510 100644 --- a/new-api-details/topics/video-decoding-encoding.json +++ b/new-api-details/topics/video-decoding-encoding.json @@ -1,7 +1,7 @@ { "slug": "video-decoding-encoding", "name": "video decoding/encoding", - "published_at": "2026-01-25T16:06:29.166Z", + "published_at": "2026-02-19T13:36:01.841Z", "organizationCount": 1, "projectCount": 12, "years": [ @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.166Z" + "generated_at": "2026-02-19T13:36:01.841Z" } } \ No newline at end of file diff --git a/new-api-details/topics/video-editing.json b/new-api-details/topics/video-editing.json index 6b469ca2..b0eb92fc 100644 --- a/new-api-details/topics/video-editing.json +++ b/new-api-details/topics/video-editing.json @@ -1,7 +1,7 @@ { "slug": "video-editing", "name": "video editing", - "published_at": "2026-01-25T16:06:29.540Z", + "published_at": "2026-02-19T13:36:02.713Z", "organizationCount": 1, "projectCount": 10, "years": [ @@ -46,6 +46,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.540Z" + "generated_at": "2026-02-19T13:36:02.713Z" } } \ No newline at end of file diff --git a/new-api-details/topics/video-encode.json b/new-api-details/topics/video-encode.json index f9cc3b84..b28b3e7f 100644 --- a/new-api-details/topics/video-encode.json +++ b/new-api-details/topics/video-encode.json @@ -1,7 +1,7 @@ { "slug": "video-encode", "name": "video encode", - "published_at": "2026-01-25T16:06:29.157Z", + "published_at": "2026-02-19T13:36:01.827Z", "organizationCount": 2, "projectCount": 15, "years": [ @@ -69,6 +69,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.157Z" + "generated_at": "2026-02-19T13:36:01.827Z" } } \ No newline at end of file diff --git a/new-api-details/topics/video-framework.json b/new-api-details/topics/video-framework.json index 614485e0..e2d79d98 100644 --- a/new-api-details/topics/video-framework.json +++ b/new-api-details/topics/video-framework.json @@ -1,7 +1,7 @@ { "slug": "video-framework", "name": "video framework", - "published_at": "2026-01-25T16:06:29.165Z", + "published_at": "2026-02-19T13:36:01.840Z", "organizationCount": 1, "projectCount": 12, "years": [ @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.165Z" + "generated_at": "2026-02-19T13:36:01.840Z" } } \ No newline at end of file diff --git a/new-api-details/topics/video-player.json b/new-api-details/topics/video-player.json index da7fa9ec..04900c7d 100644 --- a/new-api-details/topics/video-player.json +++ b/new-api-details/topics/video-player.json @@ -1,7 +1,7 @@ { "slug": "video-player", "name": "video player", - "published_at": "2026-01-25T16:06:29.244Z", + "published_at": "2026-02-19T13:36:02.114Z", "organizationCount": 1, "projectCount": 12, "years": [ @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.244Z" + "generated_at": "2026-02-19T13:36:02.114Z" } } \ No newline at end of file diff --git a/new-api-details/topics/video-post-processing.json b/new-api-details/topics/video-post-processing.json index 1a095a9c..197f7786 100644 --- a/new-api-details/topics/video-post-processing.json +++ b/new-api-details/topics/video-post-processing.json @@ -1,7 +1,7 @@ { "slug": "video-post-processing", "name": "video post processing", - "published_at": "2026-01-25T16:06:29.162Z", + "published_at": "2026-02-19T13:36:01.835Z", "organizationCount": 1, "projectCount": 12, "years": [ @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.162Z" + "generated_at": "2026-02-19T13:36:01.835Z" } } \ No newline at end of file diff --git a/new-api-details/topics/video-processing.json b/new-api-details/topics/video-processing.json index 88d9fd22..4737abe9 100644 --- a/new-api-details/topics/video-processing.json +++ b/new-api-details/topics/video-processing.json @@ -1,10 +1,11 @@ { "slug": "video-processing", "name": "video processing", - "published_at": "2026-01-25T16:06:28.930Z", + "published_at": "2026-02-19T13:36:01.465Z", "organizationCount": 6, "projectCount": 211, "years": [ + 2026, 2025, 2024, 2023, @@ -18,29 +19,43 @@ ], "organizations": [ { - "slug": "fosdem", - "name": "FOSDEM", + "slug": "videolan", + "name": "VideoLAN", "first_year": 2016, - "last_year": 2019, - "total_projects": 4, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 92, + "is_currently_active": true, "active_years": [ 2016, 2017, - 2019 + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "framenet-brasil-ufjf", - "name": "FrameNet Brasil (UFJF)", - "first_year": 2019, - "last_year": 2021, - "total_projects": 5, + "slug": "red-hen-lab", + "name": "Red Hen Lab", + "first_year": 2016, + "last_year": 2024, + "total_projects": 88, "is_currently_active": false, "active_years": [ + 2016, + 2017, + 2018, 2019, 2020, - 2021 + 2021, + 2022, + 2023, + 2024 ] }, { @@ -74,42 +89,29 @@ ] }, { - "slug": "red-hen-lab", - "name": "Red Hen Lab", - "first_year": 2016, - "last_year": 2024, - "total_projects": 88, + "slug": "framenet-brasil-ufjf", + "name": "FrameNet Brasil (UFJF)", + "first_year": 2019, + "last_year": 2021, + "total_projects": 5, "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, 2019, 2020, - 2021, - 2022, - 2023, - 2024 + 2021 ] }, { - "slug": "videolan", - "name": "VideoLAN", + "slug": "fosdem", + "name": "FOSDEM", "first_year": 2016, - "last_year": 2025, - "total_projects": 92, - "is_currently_active": true, + "last_year": 2019, + "total_projects": 4, + "is_currently_active": false, "active_years": [ 2016, 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2019 ] } ], @@ -153,10 +155,14 @@ "2025": { "organizationCount": 1, "projectCount": 15 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.930Z" + "generated_at": "2026-02-19T13:36:01.465Z" } } \ No newline at end of file diff --git a/new-api-details/topics/video.json b/new-api-details/topics/video.json index 7b0fcc7b..c3487faa 100644 --- a/new-api-details/topics/video.json +++ b/new-api-details/topics/video.json @@ -1,10 +1,11 @@ { "slug": "video", "name": "video", - "published_at": "2026-01-25T16:06:28.513Z", + "published_at": "2026-02-19T13:36:00.507Z", "organizationCount": 17, "projectCount": 342, "years": [ + 2026, 2025, 2024, 2023, @@ -18,26 +19,31 @@ ], "organizations": [ { - "slug": "apertus-association", - "name": "Apertus Association", - "first_year": 2017, - "last_year": 2022, - "total_projects": 18, - "is_currently_active": false, + "slug": "videolan", + "name": "VideoLAN", + "first_year": 2016, + "last_year": 2026, + "total_projects": 92, + "is_currently_active": true, "active_years": [ + 2016, 2017, 2018, 2019, 2020, 2021, - 2022 + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { "slug": "ccextractor-development", "name": "CCExtractor Development", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 80, "is_currently_active": true, "active_years": [ @@ -50,14 +56,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "ffmpeg", "name": "FFmpeg", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 49, "is_currently_active": true, "active_years": [ @@ -70,30 +77,15 @@ 2022, 2023, 2024, - 2025 - ] - }, - { - "slug": "intel-video-and-audio-for-linux", - "name": "Intel Video and Audio for Linux", - "first_year": 2017, - "last_year": 2022, - "total_projects": 12, - "is_currently_active": false, - "active_years": [ - 2017, - 2018, - 2019, - 2020, - 2021, - 2022 + 2025, + 2026 ] }, { "slug": "jitsi", "name": "Jitsi", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 21, "is_currently_active": true, "active_years": [ @@ -101,47 +93,41 @@ 2018, 2022, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "kodi", - "name": "Kodi", - "first_year": 2017, - "last_year": 2022, - "total_projects": 12, + "slug": "xorg-foundation", + "name": "X.Org Foundation", + "first_year": 2016, + "last_year": 2023, + "total_projects": 19, "is_currently_active": false, "active_years": [ + 2016, 2017, 2018, 2019, 2020, - 2021, - 2022 + 2022, + 2023 ] }, { - "slug": "p2psporg", - "name": "P2PSP.org", - "first_year": 2016, - "last_year": 2018, - "total_projects": 5, + "slug": "apertus-association", + "name": "Apertus Association", + "first_year": 2017, + "last_year": 2022, + "total_projects": 18, "is_currently_active": false, "active_years": [ - 2016, 2017, - 2018 - ] - }, - { - "slug": "pidgin-instant-messenger", - "name": "Pidgin Instant Messenger", - "first_year": 2021, - "last_year": 2021, - "total_projects": 1, - "is_currently_active": false, - "active_years": [ - 2021 + 2018, + 2019, + 2020, + 2021, + 2022 ] }, { @@ -162,48 +148,49 @@ ] }, { - "slug": "shaka-player", - "name": "Shaka Player", - "first_year": 2021, - "last_year": 2021, - "total_projects": 2, + "slug": "intel-video-and-audio-for-linux", + "name": "Intel Video and Audio for Linux", + "first_year": 2017, + "last_year": 2022, + "total_projects": 12, "is_currently_active": false, "active_years": [ - 2021 + 2017, + 2018, + 2019, + 2020, + 2021, + 2022 ] }, { - "slug": "timvideosus", - "name": "TimVideos.us", - "first_year": 2016, - "last_year": 2019, - "total_projects": 6, + "slug": "kodi", + "name": "Kodi", + "first_year": 2017, + "last_year": 2022, + "total_projects": 12, "is_currently_active": false, "active_years": [ - 2016, 2017, 2018, - 2019 + 2019, + 2020, + 2021, + 2022 ] }, { - "slug": "videolan", - "name": "VideoLAN", + "slug": "timvideosus", + "name": "TimVideos.us", "first_year": 2016, - "last_year": 2025, - "total_projects": 92, - "is_currently_active": true, + "last_year": 2019, + "total_projects": 6, + "is_currently_active": false, "active_years": [ 2016, 2017, 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2019 ] }, { @@ -220,31 +207,16 @@ ] }, { - "slug": "wayland", - "name": "Wayland", - "first_year": 2016, - "last_year": 2016, - "total_projects": 1, - "is_currently_active": false, - "active_years": [ - 2016 - ] - }, - { - "slug": "xorg-foundation", - "name": "X.Org Foundation", + "slug": "p2psporg", + "name": "P2PSP.org", "first_year": 2016, - "last_year": 2023, - "total_projects": 19, + "last_year": 2018, + "total_projects": 5, "is_currently_active": false, "active_years": [ 2016, 2017, - 2018, - 2019, - 2020, - 2022, - 2023 + 2018 ] }, { @@ -258,6 +230,39 @@ 2021 ] }, + { + "slug": "shaka-player", + "name": "Shaka Player", + "first_year": 2021, + "last_year": 2021, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2021 + ] + }, + { + "slug": "pidgin-instant-messenger", + "name": "Pidgin Instant Messenger", + "first_year": 2021, + "last_year": 2021, + "total_projects": 1, + "is_currently_active": false, + "active_years": [ + 2021 + ] + }, + { + "slug": "wayland", + "name": "Wayland", + "first_year": 2016, + "last_year": 2016, + "total_projects": 1, + "is_currently_active": false, + "active_years": [ + 2016 + ] + }, { "slug": "xpra", "name": "xpra", @@ -311,10 +316,14 @@ "2025": { "organizationCount": 4, "projectCount": 33 + }, + "2026": { + "organizationCount": 4, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.513Z" + "generated_at": "2026-02-19T13:36:00.507Z" } } \ No newline at end of file diff --git a/new-api-details/topics/vim.json b/new-api-details/topics/vim.json index 75929662..418779ff 100644 --- a/new-api-details/topics/vim.json +++ b/new-api-details/topics/vim.json @@ -1,10 +1,11 @@ { "slug": "vim", "name": "vim", - "published_at": "2026-01-25T16:06:29.399Z", + "published_at": "2026-02-19T13:36:02.396Z", "organizationCount": 1, "projectCount": 8, "years": [ + 2026, 2025, 2020, 2019, @@ -15,14 +16,15 @@ "slug": "neovim", "name": "Neovim", "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "total_projects": 8, "is_currently_active": true, "active_years": [ 2018, 2019, 2020, - 2025 + 2025, + 2026 ] } ], @@ -42,10 +44,14 @@ "2025": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.399Z" + "generated_at": "2026-02-19T13:36:02.396Z" } } \ No newline at end of file diff --git a/new-api-details/topics/virtual-machine.json b/new-api-details/topics/virtual-machine.json index e48ddab0..12d3ec2e 100644 --- a/new-api-details/topics/virtual-machine.json +++ b/new-api-details/topics/virtual-machine.json @@ -1,10 +1,11 @@ { "slug": "virtual-machine", "name": "virtual machine", - "published_at": "2026-01-25T16:06:29.688Z", + "published_at": "2026-02-19T13:36:02.190Z", "organizationCount": 2, "projectCount": 65, "years": [ + 2026, 2025, 2024, 2023, @@ -18,12 +19,12 @@ ], "organizations": [ { - "slug": "libvirt", - "name": "libvirt", + "slug": "the-jpf-team", + "name": "The JPF team", "first_year": 2016, - "last_year": 2024, - "total_projects": 19, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 46, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -32,16 +33,19 @@ 2020, 2021, 2022, - 2024 + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "the-jpf-team", - "name": "The JPF team", + "slug": "libvirt", + "name": "libvirt", "first_year": 2016, - "last_year": 2025, - "total_projects": 46, - "is_currently_active": true, + "last_year": 2024, + "total_projects": 19, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -50,9 +54,7 @@ 2020, 2021, 2022, - 2023, - 2024, - 2025 + 2024 ] } ], @@ -96,10 +98,14 @@ "2025": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.688Z" + "generated_at": "2026-02-19T13:36:02.190Z" } } \ No newline at end of file diff --git a/new-api-details/topics/virtual-machines.json b/new-api-details/topics/virtual-machines.json index bba3282f..8e6c35fe 100644 --- a/new-api-details/topics/virtual-machines.json +++ b/new-api-details/topics/virtual-machines.json @@ -1,10 +1,11 @@ { "slug": "virtual-machines", "name": "virtual machines", - "published_at": "2026-01-25T16:06:29.537Z", + "published_at": "2026-02-19T13:36:02.701Z", "organizationCount": 1, "projectCount": 32, "years": [ + 2026, 2025, 2023, 2021, @@ -16,7 +17,7 @@ "slug": "pharo-consortium", "name": "Pharo Consortium", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 32, "is_currently_active": true, "active_years": [ @@ -24,7 +25,8 @@ 2019, 2021, 2023, - 2025 + 2025, + 2026 ] } ], @@ -48,10 +50,14 @@ "2025": { "organizationCount": 1, "projectCount": 8 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.537Z" + "generated_at": "2026-02-19T13:36:02.701Z" } } \ No newline at end of file diff --git a/new-api-details/topics/virtual-reality.json b/new-api-details/topics/virtual-reality.json index 9dbe0d80..b51051ca 100644 --- a/new-api-details/topics/virtual-reality.json +++ b/new-api-details/topics/virtual-reality.json @@ -1,10 +1,11 @@ { "slug": "virtual-reality", "name": "virtual reality", - "published_at": "2026-01-25T16:06:28.610Z", + "published_at": "2026-02-19T13:36:00.785Z", "organizationCount": 7, "projectCount": 262, "years": [ + 2026, 2025, 2024, 2023, @@ -18,16 +19,15 @@ ], "organizations": [ { - "slug": "blender-foundation", - "name": "Blender Foundation", + "slug": "opencv", + "name": "OpenCV", "first_year": 2016, "last_year": 2025, - "total_projects": 64, - "is_currently_active": true, + "total_projects": 93, + "is_currently_active": false, "active_years": [ 2016, 2017, - 2018, 2019, 2020, 2021, @@ -37,37 +37,11 @@ 2025 ] }, - { - "slug": "godot-engine", - "name": "Godot Engine", - "first_year": 2018, - "last_year": 2022, - "total_projects": 27, - "is_currently_active": false, - "active_years": [ - 2018, - 2019, - 2020, - 2021, - 2022 - ] - }, - { - "slug": "institut-für-angewandte-informatik-infai-ev", - "name": "Institut für Angewandte Informatik (InfAI) e.V.", - "first_year": 2019, - "last_year": 2019, - "total_projects": 1, - "is_currently_active": false, - "active_years": [ - 2019 - ] - }, { "slug": "liquid-galaxy-project", "name": "Liquid Galaxy project", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 75, "is_currently_active": true, "active_years": [ @@ -79,37 +53,44 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "opencv", - "name": "OpenCV", + "slug": "blender-foundation", + "name": "Blender Foundation", "first_year": 2016, - "last_year": 2025, - "total_projects": 93, + "last_year": 2026, + "total_projects": 64, "is_currently_active": true, "active_years": [ 2016, 2017, + 2018, 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "openhmd", - "name": "OpenHMD", - "first_year": 2020, - "last_year": 2020, - "total_projects": 0, + "slug": "godot-engine", + "name": "Godot Engine", + "first_year": 2018, + "last_year": 2022, + "total_projects": 27, "is_currently_active": false, "active_years": [ - 2020 + 2018, + 2019, + 2020, + 2021, + 2022 ] }, { @@ -122,6 +103,28 @@ "active_years": [ 2021 ] + }, + { + "slug": "institut-für-angewandte-informatik-infai-ev", + "name": "Institut für Angewandte Informatik (InfAI) e.V.", + "first_year": 2019, + "last_year": 2019, + "total_projects": 1, + "is_currently_active": false, + "active_years": [ + 2019 + ] + }, + { + "slug": "openhmd", + "name": "OpenHMD", + "first_year": 2020, + "last_year": 2020, + "total_projects": 0, + "is_currently_active": false, + "active_years": [ + 2020 + ] } ], "yearlyStats": { @@ -164,10 +167,14 @@ "2025": { "organizationCount": 3, "projectCount": 28 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.610Z" + "generated_at": "2026-02-19T13:36:00.785Z" } } \ No newline at end of file diff --git a/new-api-details/topics/virtualization.json b/new-api-details/topics/virtualization.json index ff482967..b6a6ca07 100644 --- a/new-api-details/topics/virtualization.json +++ b/new-api-details/topics/virtualization.json @@ -1,10 +1,11 @@ { "slug": "virtualization", "name": "virtualization", - "published_at": "2026-01-25T16:06:29.071Z", + "published_at": "2026-02-19T13:36:01.577Z", "organizationCount": 16, "projectCount": 273, "years": [ + 2026, 2025, 2024, 2023, @@ -18,52 +19,73 @@ ], "organizations": [ { - "slug": "ganeti", - "name": "Ganeti", + "slug": "the-freebsd-project", + "name": "The FreeBSD Project", "first_year": 2016, - "last_year": 2016, - "total_projects": 1, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 76, + "is_currently_active": true, "active_years": [ - 2016 + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "gentoo-foundation", - "name": "Gentoo Foundation", + "slug": "opensuse-project", + "name": "openSUSE Project", "first_year": 2016, - "last_year": 2023, - "total_projects": 25, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 52, + "is_currently_active": true, "active_years": [ 2016, 2017, 2018, - 2019, 2020, 2021, 2022, - 2023 + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "gvisor", - "name": "gVisor", - "first_year": 2021, - "last_year": 2021, - "total_projects": 1, - "is_currently_active": false, + "slug": "qemu", + "name": "QEMU", + "first_year": 2016, + "last_year": 2026, + "total_projects": 41, + "is_currently_active": true, "active_years": [ - 2021 + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2025, + 2026 ] }, { "slug": "haiku", "name": "Haiku", "first_year": 2017, - "last_year": 2024, + "last_year": 2026, "total_projects": 26, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, @@ -72,31 +94,26 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { - "slug": "illumosorg", - "name": "illumos.org", - "first_year": 2017, - "last_year": 2017, - "total_projects": 0, + "slug": "gentoo-foundation", + "name": "Gentoo Foundation", + "first_year": 2016, + "last_year": 2023, + "total_projects": 25, "is_currently_active": false, "active_years": [ - 2017 - ] - }, - { - "slug": "kubevirt", - "name": "KubeVirt", - "first_year": 2023, - "last_year": 2025, - "total_projects": 4, - "is_currently_active": true, - "active_years": [ - 2023, - 2024, - 2025 + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023 ] }, { @@ -118,44 +135,57 @@ ] }, { - "slug": "microkernel-devroom", - "name": "Microkernel devroom", - "first_year": 2017, - "last_year": 2017, - "total_projects": 3, - "is_currently_active": false, + "slug": "unikraft", + "name": "Unikraft", + "first_year": 2022, + "last_year": 2026, + "total_projects": 16, + "is_currently_active": true, "active_years": [ - 2017 + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "opensuse-project", - "name": "openSUSE Project", - "first_year": 2016, - "last_year": 2025, - "total_projects": 52, + "slug": "kubevirt", + "name": "KubeVirt", + "first_year": 2023, + "last_year": 2026, + "total_projects": 4, + "is_currently_active": true, + "active_years": [ + 2023, + 2024, + 2025, + 2026 + ] + }, + { + "slug": "qubes-os", + "name": "Qubes OS", + "first_year": 2017, + "last_year": 2026, + "total_projects": 4, "is_currently_active": true, "active_years": [ - 2016, 2017, - 2018, 2020, 2021, - 2022, - 2023, - 2024, - 2025 + 2026 ] }, { - "slug": "osu-open-source-lab", - "name": "OSU Open Source Lab", - "first_year": 2016, - "last_year": 2016, - "total_projects": 1, + "slug": "microkernel-devroom", + "name": "Microkernel devroom", + "first_year": 2017, + "last_year": 2017, + "total_projects": 3, "is_currently_active": false, "active_years": [ - 2016 + 2017 ] }, { @@ -170,77 +200,55 @@ ] }, { - "slug": "qemu", - "name": "QEMU", - "first_year": 2016, - "last_year": 2025, - "total_projects": 41, - "is_currently_active": true, + "slug": "xen-project", + "name": "Xen Project", + "first_year": 2017, + "last_year": 2017, + "total_projects": 2, + "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2025 + 2017 ] }, { - "slug": "qubes-os", - "name": "Qubes OS", - "first_year": 2017, - "last_year": 2021, - "total_projects": 4, + "slug": "ganeti", + "name": "Ganeti", + "first_year": 2016, + "last_year": 2016, + "total_projects": 1, "is_currently_active": false, "active_years": [ - 2017, - 2020, - 2021 + 2016 ] }, { - "slug": "the-freebsd-project", - "name": "The FreeBSD Project", - "first_year": 2016, - "last_year": 2025, - "total_projects": 76, - "is_currently_active": true, + "slug": "gvisor", + "name": "gVisor", + "first_year": 2021, + "last_year": 2021, + "total_projects": 1, + "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2021 ] }, { - "slug": "unikraft", - "name": "Unikraft", - "first_year": 2022, - "last_year": 2025, - "total_projects": 16, - "is_currently_active": true, + "slug": "osu-open-source-lab", + "name": "OSU Open Source Lab", + "first_year": 2016, + "last_year": 2016, + "total_projects": 1, + "is_currently_active": false, "active_years": [ - 2022, - 2023, - 2024, - 2025 + 2016 ] }, { - "slug": "xen-project", - "name": "Xen Project", + "slug": "illumosorg", + "name": "illumos.org", "first_year": 2017, "last_year": 2017, - "total_projects": 2, + "total_projects": 0, "is_currently_active": false, "active_years": [ 2017 @@ -287,10 +295,14 @@ "2025": { "organizationCount": 5, "projectCount": 30 + }, + "2026": { + "organizationCount": 7, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.071Z" + "generated_at": "2026-02-19T13:36:01.577Z" } } \ No newline at end of file diff --git a/new-api-details/topics/vision.json b/new-api-details/topics/vision.json index 0c7ace2f..b62964b9 100644 --- a/new-api-details/topics/vision.json +++ b/new-api-details/topics/vision.json @@ -1,10 +1,11 @@ { "slug": "vision", "name": "vision", - "published_at": "2026-01-25T16:06:28.511Z", + "published_at": "2026-02-19T13:36:00.505Z", "organizationCount": 7, "projectCount": 254, "years": [ + 2026, 2025, 2024, 2023, @@ -18,29 +19,33 @@ ], "organizations": [ { - "slug": "apertus-association", - "name": "Apertus Association", - "first_year": 2017, - "last_year": 2022, - "total_projects": 18, + "slug": "opencv", + "name": "OpenCV", + "first_year": 2016, + "last_year": 2025, + "total_projects": 93, "is_currently_active": false, "active_years": [ + 2016, 2017, - 2018, 2019, 2020, 2021, - 2022 + 2022, + 2023, + 2024, + 2025 ] }, { - "slug": "ardupilot", - "name": "ArduPilot", - "first_year": 2017, - "last_year": 2025, - "total_projects": 38, + "slug": "ccextractor-development", + "name": "CCExtractor Development", + "first_year": 2016, + "last_year": 2026, + "total_projects": 80, "is_currently_active": true, "active_years": [ + 2016, 2017, 2018, 2019, @@ -49,18 +54,18 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "ccextractor-development", - "name": "CCExtractor Development", - "first_year": 2016, - "last_year": 2025, - "total_projects": 80, + "slug": "ardupilot", + "name": "ArduPilot", + "first_year": 2017, + "last_year": 2026, + "total_projects": 38, "is_currently_active": true, "active_years": [ - 2016, 2017, 2018, 2019, @@ -69,47 +74,45 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "mobile-robot-programming-toolkit-mrpt", - "name": "Mobile Robot Programming Toolkit (MRPT)", - "first_year": 2016, - "last_year": 2018, - "total_projects": 8, + "slug": "apertus-association", + "name": "Apertus Association", + "first_year": 2017, + "last_year": 2022, + "total_projects": 18, "is_currently_active": false, "active_years": [ - 2016, 2017, - 2018 + 2018, + 2019, + 2020, + 2021, + 2022 ] }, { - "slug": "opencv", - "name": "OpenCV", + "slug": "scilab", + "name": "Scilab", "first_year": 2016, - "last_year": 2025, - "total_projects": 93, - "is_currently_active": true, + "last_year": 2018, + "total_projects": 14, + "is_currently_active": false, "active_years": [ 2016, 2017, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2018 ] }, { - "slug": "scilab", - "name": "Scilab", + "slug": "mobile-robot-programming-toolkit-mrpt", + "name": "Mobile Robot Programming Toolkit (MRPT)", "first_year": 2016, "last_year": 2018, - "total_projects": 14, + "total_projects": 8, "is_currently_active": false, "active_years": [ 2016, @@ -170,10 +173,14 @@ "2025": { "organizationCount": 3, "projectCount": 24 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.511Z" + "generated_at": "2026-02-19T13:36:00.505Z" } } \ No newline at end of file diff --git a/new-api-details/topics/vison.json b/new-api-details/topics/vison.json index e150dc52..7f491bf4 100644 --- a/new-api-details/topics/vison.json +++ b/new-api-details/topics/vison.json @@ -1,10 +1,11 @@ { "slug": "vison", "name": "vison", - "published_at": "2026-01-25T16:06:28.530Z", + "published_at": "2026-02-19T13:36:00.620Z", "organizationCount": 1, "projectCount": 38, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "ardupilot", "name": "ArduPilot", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 38, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.530Z" + "generated_at": "2026-02-19T13:36:00.620Z" } } \ No newline at end of file diff --git a/new-api-details/topics/visual-design.json b/new-api-details/topics/visual-design.json index c9297f60..ecdcfc26 100644 --- a/new-api-details/topics/visual-design.json +++ b/new-api-details/topics/visual-design.json @@ -1,10 +1,11 @@ { "slug": "visual-design", "name": "visual design", - "published_at": "2026-01-25T16:06:29.813Z", + "published_at": "2026-02-19T13:36:03.177Z", "organizationCount": 1, "projectCount": 135, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "zulip", "name": "Zulip", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 135, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 14 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.813Z" + "generated_at": "2026-02-19T13:36:03.177Z" } } \ No newline at end of file diff --git a/new-api-details/topics/visual-effects.json b/new-api-details/topics/visual-effects.json index 6ac16ff6..8699137d 100644 --- a/new-api-details/topics/visual-effects.json +++ b/new-api-details/topics/visual-effects.json @@ -1,7 +1,7 @@ { "slug": "visual-effects", "name": "Visual Effects", - "published_at": "2026-01-25T16:06:28.432Z", + "published_at": "2026-02-19T13:36:00.370Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.432Z" + "generated_at": "2026-02-19T13:36:00.370Z" } } \ No newline at end of file diff --git a/new-api-details/topics/visual-programming.json b/new-api-details/topics/visual-programming.json index 1ac68a46..ef58adf7 100644 --- a/new-api-details/topics/visual-programming.json +++ b/new-api-details/topics/visual-programming.json @@ -1,10 +1,11 @@ { "slug": "visual-programming", "name": "visual programming", - "published_at": "2026-01-25T16:06:29.173Z", + "published_at": "2026-02-19T13:36:01.873Z", "organizationCount": 3, "projectCount": 107, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "international-catrobat-association", "name": "International Catrobat Association", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 84, "is_currently_active": true, "active_years": [ @@ -34,38 +35,39 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "open-roberta", - "name": "Open Roberta", + "slug": "purr-data", + "name": "Purr Data", "first_year": 2018, - "last_year": 2021, - "total_projects": 8, + "last_year": 2024, + "total_projects": 15, "is_currently_active": false, "active_years": [ 2018, 2019, 2020, - 2021 + 2021, + 2022, + 2023, + 2024 ] }, { - "slug": "purr-data", - "name": "Purr Data", + "slug": "open-roberta", + "name": "Open Roberta", "first_year": 2018, - "last_year": 2024, - "total_projects": 15, + "last_year": 2021, + "total_projects": 8, "is_currently_active": false, "active_years": [ 2018, 2019, 2020, - 2021, - 2022, - 2023, - 2024 + 2021 ] } ], @@ -109,10 +111,14 @@ "2025": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.173Z" + "generated_at": "2026-02-19T13:36:01.873Z" } } \ No newline at end of file diff --git a/new-api-details/topics/visualisation.json b/new-api-details/topics/visualisation.json index e48217c7..5c38d54d 100644 --- a/new-api-details/topics/visualisation.json +++ b/new-api-details/topics/visualisation.json @@ -1,10 +1,11 @@ { "slug": "visualisation", "name": "visualisation", - "published_at": "2026-01-25T16:06:29.285Z", + "published_at": "2026-02-19T13:36:02.194Z", "organizationCount": 2, "projectCount": 152, "years": [ + 2026, 2025, 2024, 2023, @@ -18,42 +19,44 @@ ], "organizations": [ { - "slug": "liquid-galaxy-project", - "name": "Liquid Galaxy project", + "slug": "openastronomy", + "name": "OpenAstronomy", "first_year": 2016, - "last_year": 2025, - "total_projects": 75, + "last_year": 2026, + "total_projects": 77, "is_currently_active": true, "active_years": [ 2016, 2017, + 2018, 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "openastronomy", - "name": "OpenAstronomy", + "slug": "liquid-galaxy-project", + "name": "Liquid Galaxy project", "first_year": 2016, - "last_year": 2025, - "total_projects": 77, + "last_year": 2026, + "total_projects": 75, "is_currently_active": true, "active_years": [ 2016, 2017, - 2018, 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -97,10 +100,14 @@ "2025": { "organizationCount": 2, "projectCount": 16 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.285Z" + "generated_at": "2026-02-19T13:36:02.194Z" } } \ No newline at end of file diff --git a/new-api-details/topics/visualization-grammar.json b/new-api-details/topics/visualization-grammar.json index 3c8cbfac..e7b0487f 100644 --- a/new-api-details/topics/visualization-grammar.json +++ b/new-api-details/topics/visualization-grammar.json @@ -1,7 +1,7 @@ { "slug": "visualization-grammar", "name": "visualization grammar", - "published_at": "2026-01-25T16:06:29.730Z", + "published_at": "2026-02-19T13:36:02.993Z", "organizationCount": 1, "projectCount": 4, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.730Z" + "generated_at": "2026-02-19T13:36:02.993Z" } } \ No newline at end of file diff --git a/new-api-details/topics/visualization.json b/new-api-details/topics/visualization.json index 9652e44c..109d524f 100644 --- a/new-api-details/topics/visualization.json +++ b/new-api-details/topics/visualization.json @@ -1,10 +1,11 @@ { "slug": "visualization", "name": "visualization", - "published_at": "2026-01-25T16:06:28.544Z", + "published_at": "2026-02-19T13:36:00.736Z", "organizationCount": 24, "projectCount": 1158, "years": [ + 2026, 2025, 2024, 2023, @@ -18,22 +19,11 @@ ], "organizations": [ { - "slug": "biojs", - "name": "BioJS", - "first_year": 2016, - "last_year": 2016, - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2016 - ] - }, - { - "slug": "brl-cad", - "name": "BRL-CAD", + "slug": "python-software-foundation", + "name": "Python Software Foundation", "first_year": 2016, - "last_year": 2025, - "total_projects": 73, + "last_year": 2026, + "total_projects": 277, "is_currently_active": true, "active_years": [ 2016, @@ -45,55 +35,36 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "canadian-centre-for-computational-genomics", - "name": "Canadian Centre for Computational Genomics", + "slug": "r-project-for-statistical-computing", + "name": "R project for statistical computing", "first_year": 2016, - "last_year": 2020, - "total_projects": 15, - "is_currently_active": false, - "active_years": [ - 2016, - 2018, - 2019, - 2020 - ] - }, - { - "slug": "chaoss", - "name": "CHAOSS", - "first_year": 2018, - "last_year": 2025, - "total_projects": 29, + "last_year": 2026, + "total_projects": 212, "is_currently_active": true, "active_years": [ + 2016, + 2017, 2018, 2019, 2020, 2021, 2022, - 2025 - ] - }, - { - "slug": "computational-science-and-engineering-at-tu-wien", - "name": "Computational Science and Engineering at TU Wien", - "first_year": 2016, - "last_year": 2016, - "total_projects": 10, - "is_currently_active": false, - "active_years": [ - 2016 + 2023, + 2024, + 2025, + 2026 ] }, { "slug": "incf", "name": "INCF", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 211, "is_currently_active": true, "active_years": [ @@ -106,25 +77,36 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "institut-für-angewandte-informatik-infai-ev", - "name": "Institut für Angewandte Informatik (InfAI) e.V.", - "first_year": 2019, - "last_year": 2019, - "total_projects": 1, - "is_currently_active": false, + "slug": "openastronomy", + "name": "OpenAstronomy", + "first_year": 2016, + "last_year": 2026, + "total_projects": 77, + "is_currently_active": true, "active_years": [ - 2019 + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { "slug": "liquid-galaxy-project", "name": "Liquid Galaxy project", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 75, "is_currently_active": true, "active_years": [ @@ -136,30 +118,29 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "mzmine", - "name": "MZmine", - "first_year": 2020, - "last_year": 2022, - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2020, - 2022 - ] - }, - { - "slug": "neuroinformatics-unit", - "name": "Neuroinformatics Unit", - "first_year": 2025, - "last_year": 2025, - "total_projects": 2, + "slug": "brl-cad", + "name": "BRL-CAD", + "first_year": 2016, + "last_year": 2026, + "total_projects": 73, "is_currently_active": true, "active_years": [ - 2025 + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { @@ -182,47 +163,37 @@ ] }, { - "slug": "open-ephys", - "name": "Open Ephys", - "first_year": 2016, - "last_year": 2016, - "total_projects": 2, - "is_currently_active": false, + "slug": "pharo-consortium", + "name": "Pharo Consortium", + "first_year": 2017, + "last_year": 2026, + "total_projects": 32, + "is_currently_active": true, "active_years": [ - 2016 + 2017, + 2019, + 2021, + 2023, + 2025, + 2026 ] }, { - "slug": "openastronomy", - "name": "OpenAstronomy", - "first_year": 2016, + "slug": "chaoss", + "name": "CHAOSS", + "first_year": 2018, "last_year": 2025, - "total_projects": 77, - "is_currently_active": true, + "total_projects": 29, + "is_currently_active": false, "active_years": [ - 2016, - 2017, 2018, 2019, 2020, 2021, 2022, - 2023, - 2024, 2025 ] }, - { - "slug": "orange-data-mining-fruitful-fun", - "name": "Orange – Data Mining Fruitful & Fun", - "first_year": 2016, - "last_year": 2016, - "total_projects": 5, - "is_currently_active": false, - "active_years": [ - 2016 - ] - }, { "slug": "performance-co-pilot", "name": "Performance Co-Pilot", @@ -240,58 +211,49 @@ ] }, { - "slug": "pharo-consortium", - "name": "Pharo Consortium", - "first_year": 2017, - "last_year": 2025, - "total_projects": 32, + "slug": "submitty", + "name": "Submitty", + "first_year": 2018, + "last_year": 2026, + "total_projects": 19, "is_currently_active": true, "active_years": [ - 2017, + 2018, 2019, - 2021, + 2020, + 2022, 2023, - 2025 + 2024, + 2026 ] }, { - "slug": "python-software-foundation", - "name": "Python Software Foundation", + "slug": "canadian-centre-for-computational-genomics", + "name": "Canadian Centre for Computational Genomics", "first_year": 2016, - "last_year": 2025, - "total_projects": 277, - "is_currently_active": true, + "last_year": 2020, + "total_projects": 15, + "is_currently_active": false, "active_years": [ 2016, - 2017, 2018, 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2020 ] }, { - "slug": "r-project-for-statistical-computing", - "name": "R project for statistical computing", - "first_year": 2016, - "last_year": 2025, - "total_projects": 212, + "slug": "tardis-rt-collaboration", + "name": "TARDIS RT Collaboration", + "first_year": 2022, + "last_year": 2026, + "total_projects": 15, "is_currently_active": true, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -309,33 +271,14 @@ ] }, { - "slug": "submitty", - "name": "Submitty", - "first_year": 2018, - "last_year": 2024, - "total_projects": 19, + "slug": "computational-science-and-engineering-at-tu-wien", + "name": "Computational Science and Engineering at TU Wien", + "first_year": 2016, + "last_year": 2016, + "total_projects": 10, "is_currently_active": false, "active_years": [ - 2018, - 2019, - 2020, - 2022, - 2023, - 2024 - ] - }, - { - "slug": "tardis-rt-collaboration", - "name": "TARDIS RT Collaboration", - "first_year": 2022, - "last_year": 2025, - "total_projects": 15, - "is_currently_active": true, - "active_years": [ - 2022, - 2023, - 2024, - 2025 + 2016 ] }, { @@ -351,6 +294,17 @@ 2021 ] }, + { + "slug": "orange-data-mining-fruitful-fun", + "name": "Orange – Data Mining Fruitful & Fun", + "first_year": 2016, + "last_year": 2016, + "total_projects": 5, + "is_currently_active": false, + "active_years": [ + 2016 + ] + }, { "slug": "the-vega-project-at-the-university-of-washington", "name": "The Vega Project at the University of Washington", @@ -363,6 +317,63 @@ 2019 ] }, + { + "slug": "biojs", + "name": "BioJS", + "first_year": 2016, + "last_year": 2016, + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2016 + ] + }, + { + "slug": "mzmine", + "name": "MZmine", + "first_year": 2020, + "last_year": 2022, + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2020, + 2022 + ] + }, + { + "slug": "neuroinformatics-unit", + "name": "Neuroinformatics Unit", + "first_year": 2025, + "last_year": 2026, + "total_projects": 2, + "is_currently_active": true, + "active_years": [ + 2025, + 2026 + ] + }, + { + "slug": "open-ephys", + "name": "Open Ephys", + "first_year": 2016, + "last_year": 2016, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2016 + ] + }, + { + "slug": "institut-für-angewandte-informatik-infai-ev", + "name": "Institut für Angewandte Informatik (InfAI) e.V.", + "first_year": 2019, + "last_year": 2019, + "total_projects": 1, + "is_currently_active": false, + "active_years": [ + 2019 + ] + }, { "slug": "zynaddsubfx", "name": "ZynAddSubFX", @@ -415,10 +426,14 @@ "2025": { "organizationCount": 10, "projectCount": 105 + }, + "2026": { + "organizationCount": 10, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.544Z" + "generated_at": "2026-02-19T13:36:00.736Z" } } \ No newline at end of file diff --git a/new-api-details/topics/voice-apps.json b/new-api-details/topics/voice-apps.json index ec2cc35a..1cce86bc 100644 --- a/new-api-details/topics/voice-apps.json +++ b/new-api-details/topics/voice-apps.json @@ -1,10 +1,11 @@ { "slug": "voice-apps", "name": "voice apps", - "published_at": "2026-01-25T16:06:29.179Z", + "published_at": "2026-02-19T13:36:01.891Z", "organizationCount": 1, "projectCount": 26, "years": [ + 2026, 2025, 2024, 2023, @@ -19,7 +20,7 @@ "slug": "internet-archive", "name": "Internet Archive", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 26, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2021, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.179Z" + "generated_at": "2026-02-19T13:36:01.891Z" } } \ No newline at end of file diff --git a/new-api-details/topics/voice-assistants.json b/new-api-details/topics/voice-assistants.json index 6cf04f59..a918ada7 100644 --- a/new-api-details/topics/voice-assistants.json +++ b/new-api-details/topics/voice-assistants.json @@ -1,10 +1,11 @@ { "slug": "voice-assistants", "name": "voice assistants", - "published_at": "2026-01-25T16:06:28.935Z", + "published_at": "2026-02-19T13:36:01.489Z", "organizationCount": 1, "projectCount": 140, "years": [ + 2026, 2025, 2024, 2019, @@ -17,7 +18,7 @@ "slug": "fossasia", "name": "FOSSASIA", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 140, "is_currently_active": true, "active_years": [ @@ -26,7 +27,8 @@ 2018, 2019, 2024, - 2025 + 2025, + 2026 ] } ], @@ -54,10 +56,14 @@ "2025": { "organizationCount": 1, "projectCount": 20 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.935Z" + "generated_at": "2026-02-19T13:36:01.489Z" } } \ No newline at end of file diff --git a/new-api-details/topics/voice.json b/new-api-details/topics/voice.json index 93169ebc..2ec53d91 100644 --- a/new-api-details/topics/voice.json +++ b/new-api-details/topics/voice.json @@ -1,7 +1,7 @@ { "slug": "voice", "name": "voice", - "published_at": "2026-01-25T16:06:29.540Z", + "published_at": "2026-02-19T13:36:02.711Z", "organizationCount": 1, "projectCount": 1, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.540Z" + "generated_at": "2026-02-19T13:36:02.711Z" } } \ No newline at end of file diff --git a/new-api-details/topics/voip.json b/new-api-details/topics/voip.json index b7d3918b..3b9bc894 100644 --- a/new-api-details/topics/voip.json +++ b/new-api-details/topics/voip.json @@ -1,7 +1,7 @@ { "slug": "voip", "name": "voip", - "published_at": "2026-01-25T16:06:29.322Z", + "published_at": "2026-02-19T13:36:02.221Z", "organizationCount": 3, "projectCount": 40, "years": [ @@ -33,17 +33,6 @@ 2022 ] }, - { - "slug": "opensips", - "name": "OpenSIPS", - "first_year": 2018, - "last_year": 2018, - "total_projects": 0, - "is_currently_active": false, - "active_years": [ - 2018 - ] - }, { "slug": "xmpp-standards-foundation", "name": "XMPP Standards Foundation", @@ -59,6 +48,17 @@ 2023, 2024 ] + }, + { + "slug": "opensips", + "name": "OpenSIPS", + "first_year": 2018, + "last_year": 2018, + "total_projects": 0, + "is_currently_active": false, + "active_years": [ + 2018 + ] } ], "yearlyStats": { @@ -101,6 +101,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.322Z" + "generated_at": "2026-02-19T13:36:02.221Z" } } \ No newline at end of file diff --git a/new-api-details/topics/voxel.json b/new-api-details/topics/voxel.json index e64e18f8..145ea26d 100644 --- a/new-api-details/topics/voxel.json +++ b/new-api-details/topics/voxel.json @@ -1,7 +1,7 @@ { "slug": "voxel", "name": "voxel", - "published_at": "2026-01-25T16:06:29.721Z", + "published_at": "2026-02-19T13:36:02.981Z", "organizationCount": 1, "projectCount": 43, "years": [ @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.721Z" + "generated_at": "2026-02-19T13:36:02.981Z" } } \ No newline at end of file diff --git a/new-api-details/topics/vpn.json b/new-api-details/topics/vpn.json index 4ced571d..b69ed546 100644 --- a/new-api-details/topics/vpn.json +++ b/new-api-details/topics/vpn.json @@ -1,10 +1,11 @@ { "slug": "vpn", "name": "vpn", - "published_at": "2026-01-25T16:06:29.254Z", + "published_at": "2026-02-19T13:36:02.153Z", "organizationCount": 3, "projectCount": 38, "years": [ + 2026, 2025, 2024, 2023, @@ -16,23 +17,11 @@ 2017 ], "organizations": [ - { - "slug": "leap-encryption-access-project", - "name": "LEAP Encryption Access Project", - "first_year": 2018, - "last_year": 2022, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2018, - 2022 - ] - }, { "slug": "openwisp", "name": "OpenWISP", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 26, "is_currently_active": true, "active_years": [ @@ -44,22 +33,36 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "the-libreswan-project", "name": "The Libreswan Project", "first_year": 2017, - "last_year": 2022, + "last_year": 2026, "total_projects": 10, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, 2019, 2020, 2021, + 2022, + 2026 + ] + }, + { + "slug": "leap-encryption-access-project", + "name": "LEAP Encryption Access Project", + "first_year": 2018, + "last_year": 2022, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2018, 2022 ] } @@ -100,10 +103,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.254Z" + "generated_at": "2026-02-19T13:36:02.153Z" } } \ No newline at end of file diff --git a/new-api-details/topics/vr.json b/new-api-details/topics/vr.json index b6ecd0da..c77e7a07 100644 --- a/new-api-details/topics/vr.json +++ b/new-api-details/topics/vr.json @@ -1,10 +1,11 @@ { "slug": "vr", "name": "vr", - "published_at": "2026-01-25T16:06:28.643Z", + "published_at": "2026-02-19T13:36:00.948Z", "organizationCount": 4, "projectCount": 341, "years": [ + 2026, 2025, 2024, 2023, @@ -18,11 +19,11 @@ ], "organizations": [ { - "slug": "ccextractor-development", - "name": "CCExtractor Development", + "slug": "kde-community", + "name": "KDE Community", "first_year": 2016, - "last_year": 2025, - "total_projects": 80, + "last_year": 2026, + "total_projects": 167, "is_currently_active": true, "active_years": [ 2016, @@ -34,15 +35,16 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "kde-community", - "name": "KDE Community", + "slug": "videolan", + "name": "VideoLAN", "first_year": 2016, - "last_year": 2025, - "total_projects": 167, + "last_year": 2026, + "total_projects": 92, "is_currently_active": true, "active_years": [ 2016, @@ -54,26 +56,16 @@ 2022, 2023, 2024, - 2025 - ] - }, - { - "slug": "monado", - "name": "Monado", - "first_year": 2022, - "last_year": 2022, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2022 + 2025, + 2026 ] }, { - "slug": "videolan", - "name": "VideoLAN", + "slug": "ccextractor-development", + "name": "CCExtractor Development", "first_year": 2016, - "last_year": 2025, - "total_projects": 92, + "last_year": 2026, + "total_projects": 80, "is_currently_active": true, "active_years": [ 2016, @@ -85,7 +77,19 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "monado", + "name": "Monado", + "first_year": 2022, + "last_year": 2022, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2022 ] } ], @@ -129,10 +133,14 @@ "2025": { "organizationCount": 3, "projectCount": 40 + }, + "2026": { + "organizationCount": 3, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.643Z" + "generated_at": "2026-02-19T13:36:00.948Z" } } \ No newline at end of file diff --git a/new-api-details/topics/vulkan.json b/new-api-details/topics/vulkan.json index 4ccab4b3..e59738e0 100644 --- a/new-api-details/topics/vulkan.json +++ b/new-api-details/topics/vulkan.json @@ -1,7 +1,7 @@ { "slug": "vulkan", "name": "vulkan", - "published_at": "2026-01-25T16:06:29.735Z", + "published_at": "2026-02-19T13:36:03.041Z", "organizationCount": 1, "projectCount": 4, "years": [ @@ -52,6 +52,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.735Z" + "generated_at": "2026-02-19T13:36:03.041Z" } } \ No newline at end of file diff --git a/new-api-details/topics/vulnerabilities-management.json b/new-api-details/topics/vulnerabilities-management.json index 4bdfab22..2bc42653 100644 --- a/new-api-details/topics/vulnerabilities-management.json +++ b/new-api-details/topics/vulnerabilities-management.json @@ -1,10 +1,11 @@ { "slug": "vulnerabilities-management", "name": "vulnerabilities management", - "published_at": "2026-01-25T16:06:29.608Z", + "published_at": "2026-02-19T13:36:02.870Z", "organizationCount": 1, "projectCount": 2, "years": [ + 2026, 2025 ], "organizations": [ @@ -12,11 +13,12 @@ "slug": "sw360", "name": "SW360", "first_year": 2025, - "last_year": 2025, + "last_year": 2026, "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] } ], @@ -24,10 +26,14 @@ "2025": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.608Z" + "generated_at": "2026-02-19T13:36:02.870Z" } } \ No newline at end of file diff --git a/new-api-details/topics/vulnerabilities.json b/new-api-details/topics/vulnerabilities.json index a608de8a..7ccb9c18 100644 --- a/new-api-details/topics/vulnerabilities.json +++ b/new-api-details/topics/vulnerabilities.json @@ -1,10 +1,11 @@ { "slug": "vulnerabilities", "name": "vulnerabilities", - "published_at": "2026-01-25T16:06:28.422Z", + "published_at": "2026-02-19T13:36:00.351Z", "organizationCount": 2, "projectCount": 61, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "aboutcode", "name": "AboutCode", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 32, "is_currently_active": true, "active_years": [ @@ -31,7 +32,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -88,10 +90,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.422Z" + "generated_at": "2026-02-19T13:36:00.351Z" } } \ No newline at end of file diff --git a/new-api-details/topics/wayland.json b/new-api-details/topics/wayland.json index f64bbc9f..d1a88d57 100644 --- a/new-api-details/topics/wayland.json +++ b/new-api-details/topics/wayland.json @@ -1,7 +1,7 @@ { "slug": "wayland", "name": "Wayland", - "published_at": "2026-01-25T16:06:29.769Z", + "published_at": "2026-02-19T13:36:03.121Z", "organizationCount": 1, "projectCount": 7, "years": [ @@ -15,7 +15,7 @@ "first_year": 2024, "last_year": 2025, "total_projects": 7, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2024, 2025 @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.769Z" + "generated_at": "2026-02-19T13:36:03.121Z" } } \ No newline at end of file diff --git a/new-api-details/topics/weather-forecasting.json b/new-api-details/topics/weather-forecasting.json new file mode 100644 index 00000000..1975520d --- /dev/null +++ b/new-api-details/topics/weather-forecasting.json @@ -0,0 +1,33 @@ +{ + "slug": "weather-forecasting", + "name": "Weather Forecasting", + "published_at": "2026-02-19T13:36:02.320Z", + "organizationCount": 1, + "projectCount": 0, + "years": [ + 2026 + ], + "organizations": [ + { + "slug": "mllam", + "name": "MLLAM", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + } + ], + "yearlyStats": { + "2026": { + "organizationCount": 1, + "projectCount": 0 + } + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:36:02.320Z" + } +} \ No newline at end of file diff --git a/new-api-details/topics/web-application-security.json b/new-api-details/topics/web-application-security.json index 7a3b4241..00b426b2 100644 --- a/new-api-details/topics/web-application-security.json +++ b/new-api-details/topics/web-application-security.json @@ -1,10 +1,11 @@ { "slug": "web-application-security", "name": "web application security", - "published_at": "2026-01-25T16:06:29.365Z", + "published_at": "2026-02-19T13:36:02.331Z", "organizationCount": 2, "projectCount": 105, "years": [ + 2026, 2025, 2024, 2023, @@ -16,22 +17,11 @@ 2016 ], "organizations": [ - { - "slug": "modsecurity", - "name": "ModSecurity", - "first_year": 2016, - "last_year": 2016, - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2016 - ] - }, { "slug": "owasp-foundation", "name": "OWASP Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 102, "is_currently_active": true, "active_years": [ @@ -43,7 +33,19 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "modsecurity", + "name": "ModSecurity", + "first_year": 2016, + "last_year": 2016, + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2016 ] } ], @@ -83,10 +85,14 @@ "2025": { "organizationCount": 1, "projectCount": 15 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.365Z" + "generated_at": "2026-02-19T13:36:02.331Z" } } \ No newline at end of file diff --git a/new-api-details/topics/web-application.json b/new-api-details/topics/web-application.json index a2f1a1e1..d3f24f9f 100644 --- a/new-api-details/topics/web-application.json +++ b/new-api-details/topics/web-application.json @@ -1,10 +1,11 @@ { "slug": "web-application", "name": "web application", - "published_at": "2026-01-25T16:06:28.792Z", + "published_at": "2026-02-19T13:36:01.073Z", "organizationCount": 9, "projectCount": 244, "years": [ + 2026, 2025, 2024, 2023, @@ -18,24 +19,31 @@ ], "organizations": [ { - "slug": "computational-biology-university-of-nebraska-lincoln", - "name": "Computational Biology @ University of Nebraska-Lincoln", + "slug": "national-resource-for-network-biology-nrnb", + "name": "National Resource for Network Biology (NRNB)", "first_year": 2016, - "last_year": 2019, - "total_projects": 18, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 119, + "is_currently_active": true, "active_years": [ 2016, 2017, 2018, - 2019 + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { "slug": "drupal-association", "name": "Drupal Association", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 39, "is_currently_active": true, "active_years": [ @@ -47,14 +55,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "joomla", "name": "Joomla!", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 36, "is_currently_active": true, "active_years": [ @@ -64,15 +73,16 @@ 2019, 2021, 2022, - 2025 + 2025, + 2026 ] }, { - "slug": "moodle", - "name": "Moodle", + "slug": "computational-biology-university-of-nebraska-lincoln", + "name": "Computational Biology @ University of Nebraska-Lincoln", "first_year": 2016, "last_year": 2019, - "total_projects": 7, + "total_projects": 18, "is_currently_active": false, "active_years": [ 2016, @@ -81,38 +91,6 @@ 2019 ] }, - { - "slug": "national-resource-for-network-biology-nrnb", - "name": "National Resource for Network Biology (NRNB)", - "first_year": 2016, - "last_year": 2025, - "total_projects": 119, - "is_currently_active": true, - "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 - ] - }, - { - "slug": "openrefine", - "name": "OpenRefine", - "first_year": 2020, - "last_year": 2024, - "total_projects": 3, - "is_currently_active": false, - "active_years": [ - 2020, - 2024 - ] - }, { "slug": "orcasound", "name": "Orcasound", @@ -139,6 +117,32 @@ 2019 ] }, + { + "slug": "moodle", + "name": "Moodle", + "first_year": 2016, + "last_year": 2019, + "total_projects": 7, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2018, + 2019 + ] + }, + { + "slug": "openrefine", + "name": "OpenRefine", + "first_year": 2020, + "last_year": 2024, + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2020, + 2024 + ] + }, { "slug": "ucsc-xena", "name": "UCSC Xena", @@ -193,10 +197,14 @@ "2025": { "organizationCount": 3, "projectCount": 19 + }, + "2026": { + "organizationCount": 3, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.792Z" + "generated_at": "2026-02-19T13:36:01.073Z" } } \ No newline at end of file diff --git a/new-api-details/topics/web-applications.json b/new-api-details/topics/web-applications.json index 4a4446a5..8db947b5 100644 --- a/new-api-details/topics/web-applications.json +++ b/new-api-details/topics/web-applications.json @@ -1,10 +1,11 @@ { "slug": "web-applications", "name": "web applications", - "published_at": "2026-01-25T16:06:28.631Z", + "published_at": "2026-02-19T13:36:00.933Z", "organizationCount": 21, "projectCount": 434, "years": [ + 2026, 2025, 2024, 2023, @@ -18,111 +19,134 @@ ], "organizations": [ { - "slug": "cbmiuthsc", - "name": "CBMI@UTHSC", - "first_year": 2019, - "last_year": 2019, - "total_projects": 3, - "is_currently_active": false, + "slug": "national-resource-for-network-biology-nrnb", + "name": "National Resource for Network Biology (NRNB)", + "first_year": 2016, + "last_year": 2026, + "total_projects": 119, + "is_currently_active": true, "active_years": [ - 2019 + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "developers-italia", - "name": "Developers Italia", - "first_year": 2018, - "last_year": 2019, - "total_projects": 5, - "is_currently_active": false, + "slug": "international-catrobat-association", + "name": "International Catrobat Association", + "first_year": 2016, + "last_year": 2026, + "total_projects": 84, + "is_currently_active": true, "active_years": [ + 2016, + 2017, 2018, - 2019 + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "discourse", - "name": "Discourse", + "slug": "freifunk", + "name": "freifunk", "first_year": 2016, - "last_year": 2017, - "total_projects": 6, + "last_year": 2025, + "total_projects": 74, "is_currently_active": false, "active_years": [ 2016, - 2017 + 2017, + 2018, + 2019, + 2021, + 2022, + 2023, + 2024, + 2025 ] }, { - "slug": "django-software-foundation", - "name": "Django Software Foundation", + "slug": "joomla", + "name": "Joomla!", "first_year": 2016, - "last_year": 2025, - "total_projects": 19, + "last_year": 2026, + "total_projects": 36, "is_currently_active": true, "active_years": [ 2016, 2017, 2018, 2019, - 2020, 2021, 2022, - 2023, - 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "elm-software-foundation", - "name": "Elm Software Foundation", - "first_year": 2017, - "last_year": 2017, - "total_projects": 1, + "slug": "teammates-national-university-of-singapore", + "name": "TEAMMATES @ National University of Singapore", + "first_year": 2016, + "last_year": 2018, + "total_projects": 20, "is_currently_active": false, "active_years": [ - 2017 + 2016, + 2017, + 2018 ] }, { - "slug": "freifunk", - "name": "freifunk", + "slug": "django-software-foundation", + "name": "Django Software Foundation", "first_year": 2016, - "last_year": 2025, - "total_projects": 74, + "last_year": 2026, + "total_projects": 19, "is_currently_active": true, "active_years": [ 2016, 2017, 2018, 2019, + 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "gdevelop", - "name": "GDevelop", - "first_year": 2020, - "last_year": 2020, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2020 - ] - }, - { - "slug": "green-navigation", - "name": "Green Navigation", + "slug": "xwiki", + "name": "XWiki", "first_year": 2016, - "last_year": 2017, - "total_projects": 8, + "last_year": 2023, + "total_projects": 12, "is_currently_active": false, "active_years": [ 2016, - 2017 + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023 ] }, { @@ -139,40 +163,28 @@ ] }, { - "slug": "international-catrobat-association", - "name": "International Catrobat Association", - "first_year": 2016, - "last_year": 2025, - "total_projects": 84, - "is_currently_active": true, + "slug": "phpmyadmin", + "name": "phpMyAdmin", + "first_year": 2017, + "last_year": 2019, + "total_projects": 9, + "is_currently_active": false, "active_years": [ - 2016, 2017, 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2019 ] }, { - "slug": "joomla", - "name": "Joomla!", + "slug": "green-navigation", + "name": "Green Navigation", "first_year": 2016, - "last_year": 2025, - "total_projects": 36, - "is_currently_active": true, + "last_year": 2017, + "total_projects": 8, + "is_currently_active": false, "active_years": [ 2016, - 2017, - 2018, - 2019, - 2021, - 2022, - 2025 + 2017 ] }, { @@ -203,34 +215,25 @@ ] }, { - "slug": "national-resource-for-network-biology-nrnb", - "name": "National Resource for Network Biology (NRNB)", + "slug": "discourse", + "name": "Discourse", "first_year": 2016, - "last_year": 2025, - "total_projects": 119, - "is_currently_active": true, + "last_year": 2017, + "total_projects": 6, + "is_currently_active": false, "active_years": [ 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2017 ] }, { - "slug": "phpmyadmin", - "name": "phpMyAdmin", - "first_year": 2017, + "slug": "developers-italia", + "name": "Developers Italia", + "first_year": 2018, "last_year": 2019, - "total_projects": 9, + "total_projects": 5, "is_currently_active": false, "active_years": [ - 2017, 2018, 2019 ] @@ -248,69 +251,71 @@ ] }, { - "slug": "salesforce", - "name": "Salesforce", + "slug": "cbmiuthsc", + "name": "CBMI@UTHSC", "first_year": 2019, "last_year": 2019, - "total_projects": 2, + "total_projects": 3, "is_currently_active": false, "active_years": [ 2019 ] }, { - "slug": "stemformatics", - "name": "Stemformatics", - "first_year": 2018, - "last_year": 2018, - "total_projects": 2, + "slug": "ucsc-xena", + "name": "UCSC Xena", + "first_year": 2017, + "last_year": 2019, + "total_projects": 3, "is_currently_active": false, "active_years": [ - 2018 + 2017, + 2018, + 2019 ] }, { - "slug": "teammates-national-university-of-singapore", - "name": "TEAMMATES @ National University of Singapore", - "first_year": 2016, - "last_year": 2018, - "total_projects": 20, + "slug": "gdevelop", + "name": "GDevelop", + "first_year": 2020, + "last_year": 2020, + "total_projects": 2, "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018 + 2020 ] }, { - "slug": "ucsc-xena", - "name": "UCSC Xena", - "first_year": 2017, + "slug": "salesforce", + "name": "Salesforce", + "first_year": 2019, "last_year": 2019, - "total_projects": 3, + "total_projects": 2, "is_currently_active": false, "active_years": [ - 2017, - 2018, 2019 ] }, { - "slug": "xwiki", - "name": "XWiki", - "first_year": 2016, - "last_year": 2023, - "total_projects": 12, + "slug": "stemformatics", + "name": "Stemformatics", + "first_year": 2018, + "last_year": 2018, + "total_projects": 2, "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023 + 2018 + ] + }, + { + "slug": "elm-software-foundation", + "name": "Elm Software Foundation", + "first_year": 2017, + "last_year": 2017, + "total_projects": 1, + "is_currently_active": false, + "active_years": [ + 2017 ] } ], @@ -354,10 +359,14 @@ "2025": { "organizationCount": 5, "projectCount": 27 + }, + "2026": { + "organizationCount": 4, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.631Z" + "generated_at": "2026-02-19T13:36:00.933Z" } } \ No newline at end of file diff --git a/new-api-details/topics/web-apps.json b/new-api-details/topics/web-apps.json index 5a888e74..c718e5f5 100644 --- a/new-api-details/topics/web-apps.json +++ b/new-api-details/topics/web-apps.json @@ -1,10 +1,11 @@ { "slug": "web-apps", "name": "web apps", - "published_at": "2026-01-25T16:06:28.452Z", + "published_at": "2026-02-19T13:36:00.425Z", "organizationCount": 7, "projectCount": 148, "years": [ + 2026, 2025, 2024, 2023, @@ -17,49 +18,13 @@ 2016 ], "organizations": [ - { - "slug": "amahi", - "name": "Amahi", - "first_year": 2017, - "last_year": 2020, - "total_projects": 18, - "is_currently_active": false, - "active_years": [ - 2017, - 2018, - 2019, - 2020 - ] - }, - { - "slug": "buildmlearn", - "name": "BuildmLearn", - "first_year": 2016, - "last_year": 2016, - "total_projects": 4, - "is_currently_active": false, - "active_years": [ - 2016 - ] - }, - { - "slug": "free-uk-genealogy", - "name": "Free UK Genealogy", - "first_year": 2018, - "last_year": 2018, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2018 - ] - }, { "slug": "freifunk", "name": "freifunk", "first_year": 2016, "last_year": 2025, "total_projects": 74, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -76,9 +41,9 @@ "slug": "librehealth", "name": "LibreHealth", "first_year": 2017, - "last_year": 2023, + "last_year": 2026, "total_projects": 31, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, @@ -86,7 +51,33 @@ 2020, 2021, 2022, - 2023 + 2023, + 2026 + ] + }, + { + "slug": "amahi", + "name": "Amahi", + "first_year": 2017, + "last_year": 2020, + "total_projects": 18, + "is_currently_active": false, + "active_years": [ + 2017, + 2018, + 2019, + 2020 + ] + }, + { + "slug": "systers-community", + "name": "Systers Community", + "first_year": 2018, + "last_year": 2018, + "total_projects": 11, + "is_currently_active": false, + "active_years": [ + 2018 ] }, { @@ -102,11 +93,22 @@ ] }, { - "slug": "systers-community", - "name": "Systers Community", + "slug": "buildmlearn", + "name": "BuildmLearn", + "first_year": 2016, + "last_year": 2016, + "total_projects": 4, + "is_currently_active": false, + "active_years": [ + 2016 + ] + }, + { + "slug": "free-uk-genealogy", + "name": "Free UK Genealogy", "first_year": 2018, "last_year": 2018, - "total_projects": 11, + "total_projects": 2, "is_currently_active": false, "active_years": [ 2018 @@ -153,10 +155,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.452Z" + "generated_at": "2026-02-19T13:36:00.425Z" } } \ No newline at end of file diff --git a/new-api-details/topics/web-archives.json b/new-api-details/topics/web-archives.json index 8c8ffe83..2f37d6dc 100644 --- a/new-api-details/topics/web-archives.json +++ b/new-api-details/topics/web-archives.json @@ -1,10 +1,11 @@ { "slug": "web-archives", "name": "web archives", - "published_at": "2026-01-25T16:06:29.181Z", + "published_at": "2026-02-19T13:36:01.901Z", "organizationCount": 1, "projectCount": 26, "years": [ + 2026, 2025, 2024, 2023, @@ -19,7 +20,7 @@ "slug": "internet-archive", "name": "Internet Archive", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 26, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2021, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.181Z" + "generated_at": "2026-02-19T13:36:01.901Z" } } \ No newline at end of file diff --git a/new-api-details/topics/web-archiving.json b/new-api-details/topics/web-archiving.json index ad255a0b..4b43d50c 100644 --- a/new-api-details/topics/web-archiving.json +++ b/new-api-details/topics/web-archiving.json @@ -1,10 +1,11 @@ { "slug": "web-archiving", "name": "web archiving", - "published_at": "2026-01-25T16:06:29.175Z", + "published_at": "2026-02-19T13:36:01.882Z", "organizationCount": 1, "projectCount": 26, "years": [ + 2026, 2025, 2024, 2023, @@ -19,7 +20,7 @@ "slug": "internet-archive", "name": "Internet Archive", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 26, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2021, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.175Z" + "generated_at": "2026-02-19T13:36:01.882Z" } } \ No newline at end of file diff --git a/new-api-details/topics/web-archving.json b/new-api-details/topics/web-archving.json index f5af1a93..b19b7521 100644 --- a/new-api-details/topics/web-archving.json +++ b/new-api-details/topics/web-archving.json @@ -1,10 +1,11 @@ { "slug": "web-archving", "name": "web archving", - "published_at": "2026-01-25T16:06:29.182Z", + "published_at": "2026-02-19T13:36:01.918Z", "organizationCount": 1, "projectCount": 26, "years": [ + 2026, 2025, 2024, 2023, @@ -19,7 +20,7 @@ "slug": "internet-archive", "name": "Internet Archive", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 26, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2021, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.182Z" + "generated_at": "2026-02-19T13:36:01.918Z" } } \ No newline at end of file diff --git a/new-api-details/topics/web-based-geoprocessing.json b/new-api-details/topics/web-based-geoprocessing.json index 4d4331df..43b62932 100644 --- a/new-api-details/topics/web-based-geoprocessing.json +++ b/new-api-details/topics/web-based-geoprocessing.json @@ -1,10 +1,11 @@ { "slug": "web-based-geoprocessing", "name": "web-based geoprocessing", - "published_at": "2026-01-25T16:06:28.349Z", + "published_at": "2026-02-19T13:36:00.254Z", "organizationCount": 1, "projectCount": 25, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "52north-spatial-information-research-gmbh", "name": "52°North Spatial Information Research GmbH", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 25, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.349Z" + "generated_at": "2026-02-19T13:36:00.254Z" } } \ No newline at end of file diff --git a/new-api-details/topics/web-browser.json b/new-api-details/topics/web-browser.json index af43ab31..65bbae4b 100644 --- a/new-api-details/topics/web-browser.json +++ b/new-api-details/topics/web-browser.json @@ -1,7 +1,7 @@ { "slug": "web-browser", "name": "web browser", - "published_at": "2026-01-25T16:06:29.379Z", + "published_at": "2026-02-19T13:36:02.362Z", "organizationCount": 1, "projectCount": 75, "years": [ @@ -52,6 +52,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.379Z" + "generated_at": "2026-02-19T13:36:02.362Z" } } \ No newline at end of file diff --git a/new-api-details/topics/web-community.json b/new-api-details/topics/web-community.json index 24c1b1a2..3b248a7c 100644 --- a/new-api-details/topics/web-community.json +++ b/new-api-details/topics/web-community.json @@ -1,10 +1,11 @@ { "slug": "web-community", "name": "web community", - "published_at": "2026-01-25T16:06:28.999Z", + "published_at": "2026-02-19T13:36:01.536Z", "organizationCount": 2, "projectCount": 70, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "free-and-open-source-silicon-foundation", "name": "Free and Open Source Silicon Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 60, "is_currently_active": true, "active_years": [ @@ -34,14 +35,15 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "omegaup", "name": "omegaUp", "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "total_projects": 10, "is_currently_active": true, "active_years": [ @@ -49,7 +51,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -93,10 +96,14 @@ "2025": { "organizationCount": 2, "projectCount": 9 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.999Z" + "generated_at": "2026-02-19T13:36:01.536Z" } } \ No newline at end of file diff --git a/new-api-details/topics/web-development.json b/new-api-details/topics/web-development.json index dcc34ef9..1a72038d 100644 --- a/new-api-details/topics/web-development.json +++ b/new-api-details/topics/web-development.json @@ -1,10 +1,11 @@ { "slug": "web-development", "name": "web development", - "published_at": "2026-01-25T16:06:28.695Z", + "published_at": "2026-02-19T13:36:00.918Z", "organizationCount": 28, "projectCount": 1072, "years": [ + 2026, 2025, 2024, 2023, @@ -18,56 +19,46 @@ ], "organizations": [ { - "slug": "canadian-centre-for-computational-genomics", - "name": "Canadian Centre for Computational Genomics", + "slug": "score-lab", + "name": "SCoRe Lab", "first_year": 2016, - "last_year": 2020, - "total_projects": 15, + "last_year": 2023, + "total_projects": 149, "is_currently_active": false, "active_years": [ 2016, + 2017, 2018, 2019, - 2020 + 2020, + 2021, + 2022, + 2023 ] }, { - "slug": "cloudcv", - "name": "CloudCV", + "slug": "fossasia", + "name": "FOSSASIA", "first_year": 2016, - "last_year": 2025, - "total_projects": 28, + "last_year": 2026, + "total_projects": 140, "is_currently_active": true, "active_years": [ 2016, 2017, 2018, 2019, - 2020, - 2021, - 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "discourse", - "name": "Discourse", - "first_year": 2016, - "last_year": 2017, - "total_projects": 6, - "is_currently_active": false, - "active_years": [ - 2016, - 2017 - ] - }, - { - "slug": "django-software-foundation", - "name": "Django Software Foundation", + "slug": "zulip", + "name": "Zulip", "first_year": 2016, - "last_year": 2025, - "total_projects": 19, + "last_year": 2026, + "total_projects": 135, "is_currently_active": true, "active_years": [ 2016, @@ -79,15 +70,16 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "drupal-association", - "name": "Drupal Association", + "slug": "the-honeynet-project", + "name": "The Honeynet Project", "first_year": 2016, - "last_year": 2025, - "total_projects": 39, + "last_year": 2026, + "total_projects": 101, "is_currently_active": true, "active_years": [ 2016, @@ -95,18 +87,20 @@ 2018, 2019, 2020, + 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "fedora-project", - "name": "Fedora Project", + "slug": "oppia-foundation", + "name": "Oppia Foundation", "first_year": 2016, - "last_year": 2025, - "total_projects": 27, + "last_year": 2026, + "total_projects": 77, "is_currently_active": true, "active_years": [ 2016, @@ -114,70 +108,77 @@ 2018, 2019, 2020, - 2025 + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "fosdem", - "name": "FOSDEM", + "slug": "opensuse-project", + "name": "openSUSE Project", "first_year": 2016, - "last_year": 2019, - "total_projects": 4, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 52, + "is_currently_active": true, "active_years": [ 2016, 2017, - 2019 + 2018, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "fossasia", - "name": "FOSSASIA", + "slug": "drupal-association", + "name": "Drupal Association", "first_year": 2016, - "last_year": 2025, - "total_projects": 140, + "last_year": 2026, + "total_projects": 39, "is_currently_active": true, "active_years": [ 2016, 2017, - 2018, - 2019, - 2024, - 2025 - ] - }, - { - "slug": "hydra-ecosystem", - "name": "Hydra Ecosystem", - "first_year": 2018, - "last_year": 2021, - "total_projects": 8, - "is_currently_active": false, - "active_years": [ 2018, 2019, 2020, - 2021 + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "inclusive-design-institute", - "name": "Inclusive Design Institute", + "slug": "ruby", + "name": "Ruby", "first_year": 2016, - "last_year": 2020, - "total_projects": 11, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 38, + "is_currently_active": true, "active_years": [ 2016, 2018, - 2020 + 2019, + 2020, + 2021, + 2022, + 2023, + 2026 ] }, { "slug": "joomla", "name": "Joomla!", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 36, "is_currently_active": true, "active_years": [ @@ -187,55 +188,81 @@ 2019, 2021, 2022, - 2025 + 2025, + 2026 ] }, { - "slug": "lappis", - "name": "LAPPIS", - "first_year": 2024, - "last_year": 2024, - "total_projects": 4, + "slug": "the-palisadoes-foundation", + "name": "The Palisadoes Foundation", + "first_year": 2021, + "last_year": 2025, + "total_projects": 36, "is_currently_active": false, "active_years": [ - 2024 + 2021, + 2022, + 2023, + 2024, + 2025 ] }, { - "slug": "mono-project", - "name": "Mono Project", + "slug": "pharo-consortium", + "name": "Pharo Consortium", "first_year": 2017, - "last_year": 2017, - "total_projects": 9, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 32, + "is_currently_active": true, "active_years": [ - 2017 + 2017, + 2019, + 2021, + 2023, + 2025, + 2026 ] }, { - "slug": "opensuse-project", - "name": "openSUSE Project", + "slug": "cloudcv", + "name": "CloudCV", "first_year": 2016, "last_year": 2025, - "total_projects": 52, - "is_currently_active": true, + "total_projects": 28, + "is_currently_active": false, "active_years": [ 2016, 2017, 2018, + 2019, 2020, 2021, - 2022, 2023, 2024, 2025 ] }, + { + "slug": "fedora-project", + "name": "Fedora Project", + "first_year": 2016, + "last_year": 2025, + "total_projects": 27, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2025 + ] + }, { "slug": "openwisp", "name": "OpenWISP", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 26, "is_currently_active": true, "active_years": [ @@ -247,15 +274,29 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "oppia-foundation", - "name": "Oppia Foundation", + "slug": "teammates-national-university-of-singapore", + "name": "TEAMMATES @ National University of Singapore", "first_year": 2016, - "last_year": 2025, - "total_projects": 77, + "last_year": 2018, + "total_projects": 20, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2018 + ] + }, + { + "slug": "django-software-foundation", + "name": "Django Software Foundation", + "first_year": 2016, + "last_year": 2026, + "total_projects": 19, "is_currently_active": true, "active_years": [ 2016, @@ -267,7 +308,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { @@ -287,18 +329,17 @@ ] }, { - "slug": "pharo-consortium", - "name": "Pharo Consortium", - "first_year": 2017, - "last_year": 2025, - "total_projects": 32, - "is_currently_active": true, + "slug": "canadian-centre-for-computational-genomics", + "name": "Canadian Centre for Computational Genomics", + "first_year": 2016, + "last_year": 2020, + "total_projects": 15, + "is_currently_active": false, "active_years": [ - 2017, + 2016, + 2018, 2019, - 2021, - 2023, - 2025 + 2020 ] }, { @@ -319,40 +360,11 @@ ] }, { - "slug": "ruby", - "name": "Ruby", - "first_year": 2016, - "last_year": 2023, - "total_projects": 38, - "is_currently_active": false, - "active_years": [ - 2016, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023 - ] - }, - { - "slug": "ruby-on-rails", - "name": "Ruby on Rails", - "first_year": 2017, - "last_year": 2018, - "total_projects": 4, - "is_currently_active": false, - "active_years": [ - 2017, - 2018 - ] - }, - { - "slug": "score-lab", - "name": "SCoRe Lab", + "slug": "xwiki", + "name": "XWiki", "first_year": 2016, "last_year": 2023, - "total_projects": 149, + "total_projects": 12, "is_currently_active": false, "active_years": [ 2016, @@ -366,104 +378,105 @@ ] }, { - "slug": "teammates-national-university-of-singapore", - "name": "TEAMMATES @ National University of Singapore", + "slug": "inclusive-design-institute", + "name": "Inclusive Design Institute", "first_year": 2016, - "last_year": 2018, - "total_projects": 20, + "last_year": 2020, + "total_projects": 11, "is_currently_active": false, "active_years": [ 2016, - 2017, - 2018 + 2018, + 2020 ] }, { - "slug": "the-honeynet-project", - "name": "The Honeynet Project", - "first_year": 2016, - "last_year": 2025, - "total_projects": 101, + "slug": "webpack", + "name": "webpack", + "first_year": 2018, + "last_year": 2026, + "total_projects": 10, "is_currently_active": true, "active_years": [ - 2016, - 2017, 2018, 2019, 2020, - 2021, - 2022, - 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "the-palisadoes-foundation", - "name": "The Palisadoes Foundation", - "first_year": 2021, - "last_year": 2025, - "total_projects": 36, - "is_currently_active": true, + "slug": "mono-project", + "name": "Mono Project", + "first_year": 2017, + "last_year": 2017, + "total_projects": 9, + "is_currently_active": false, "active_years": [ - 2021, - 2022, - 2023, - 2024, - 2025 + 2017 ] }, { - "slug": "webpack", - "name": "webpack", + "slug": "hydra-ecosystem", + "name": "Hydra Ecosystem", "first_year": 2018, - "last_year": 2025, - "total_projects": 10, - "is_currently_active": true, + "last_year": 2021, + "total_projects": 8, + "is_currently_active": false, "active_years": [ 2018, 2019, 2020, - 2024, - 2025 + 2021 ] }, { - "slug": "xwiki", - "name": "XWiki", + "slug": "discourse", + "name": "Discourse", "first_year": 2016, - "last_year": 2023, - "total_projects": 12, + "last_year": 2017, + "total_projects": 6, "is_currently_active": false, "active_years": [ 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023 + 2017 ] }, { - "slug": "zulip", - "name": "Zulip", + "slug": "fosdem", + "name": "FOSDEM", "first_year": 2016, - "last_year": 2025, - "total_projects": 135, - "is_currently_active": true, + "last_year": 2019, + "total_projects": 4, + "is_currently_active": false, "active_years": [ 2016, 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2019 + ] + }, + { + "slug": "lappis", + "name": "LAPPIS", + "first_year": 2024, + "last_year": 2024, + "total_projects": 4, + "is_currently_active": false, + "active_years": [ + 2024 + ] + }, + { + "slug": "ruby-on-rails", + "name": "Ruby on Rails", + "first_year": 2017, + "last_year": 2018, + "total_projects": 4, + "is_currently_active": false, + "active_years": [ + 2017, + 2018 ] } ], @@ -507,10 +520,14 @@ "2025": { "organizationCount": 14, "projectCount": 96 + }, + "2026": { + "organizationCount": 12, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.695Z" + "generated_at": "2026-02-19T13:36:00.918Z" } } \ No newline at end of file diff --git a/new-api-details/topics/web-extensions.json b/new-api-details/topics/web-extensions.json index a81a4801..c67183c7 100644 --- a/new-api-details/topics/web-extensions.json +++ b/new-api-details/topics/web-extensions.json @@ -1,10 +1,11 @@ { "slug": "web-extensions", "name": "web extensions", - "published_at": "2026-01-25T16:06:29.178Z", + "published_at": "2026-02-19T13:36:01.888Z", "organizationCount": 1, "projectCount": 26, "years": [ + 2026, 2025, 2024, 2023, @@ -19,7 +20,7 @@ "slug": "internet-archive", "name": "Internet Archive", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 26, "is_currently_active": true, "active_years": [ @@ -30,7 +31,8 @@ 2021, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -66,10 +68,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.178Z" + "generated_at": "2026-02-19T13:36:01.888Z" } } \ No newline at end of file diff --git a/new-api-details/topics/web-interface.json b/new-api-details/topics/web-interface.json index 27f9cb59..074f6ad9 100644 --- a/new-api-details/topics/web-interface.json +++ b/new-api-details/topics/web-interface.json @@ -1,7 +1,7 @@ { "slug": "web-interface", "name": "web-interface", - "published_at": "2026-01-25T16:06:29.307Z", + "published_at": "2026-02-19T13:36:02.301Z", "organizationCount": 1, "projectCount": 3, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.307Z" + "generated_at": "2026-02-19T13:36:02.301Z" } } \ No newline at end of file diff --git a/new-api-details/topics/web-performance.json b/new-api-details/topics/web-performance.json index 040d7467..a88c3110 100644 --- a/new-api-details/topics/web-performance.json +++ b/new-api-details/topics/web-performance.json @@ -1,10 +1,11 @@ { "slug": "web-performance", "name": "web performance", - "published_at": "2026-01-25T16:06:29.883Z", + "published_at": "2026-02-19T13:36:03.128Z", "organizationCount": 1, "projectCount": 10, "years": [ + 2026, 2025, 2024, 2020, @@ -16,7 +17,7 @@ "slug": "webpack", "name": "webpack", "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "total_projects": 10, "is_currently_active": true, "active_years": [ @@ -24,7 +25,8 @@ 2019, 2020, 2024, - 2025 + 2025, + 2026 ] } ], @@ -48,10 +50,14 @@ "2025": { "organizationCount": 1, "projectCount": 1 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.883Z" + "generated_at": "2026-02-19T13:36:03.128Z" } } \ No newline at end of file diff --git a/new-api-details/topics/web-platform-and-services.json b/new-api-details/topics/web-platform-and-services.json index 08b54246..04572b98 100644 --- a/new-api-details/topics/web-platform-and-services.json +++ b/new-api-details/topics/web-platform-and-services.json @@ -1,7 +1,7 @@ { "slug": "web-platform-and-services", "name": "web platform and services", - "published_at": "2026-01-25T16:06:28.599Z", + "published_at": "2026-02-19T13:36:00.751Z", "organizationCount": 4, "projectCount": 108, "years": [ @@ -16,15 +16,18 @@ ], "organizations": [ { - "slug": "biomedical-informatics-emory-university", - "name": "Biomedical Informatics, Emory University", + "slug": "mozilla", + "name": "Mozilla", "first_year": 2016, - "last_year": 2019, - "total_projects": 9, + "last_year": 2020, + "total_projects": 75, "is_currently_active": false, "active_years": [ 2016, - 2019 + 2017, + 2018, + 2019, + 2020 ] }, { @@ -41,21 +44,6 @@ 2019 ] }, - { - "slug": "mozilla", - "name": "Mozilla", - "first_year": 2016, - "last_year": 2020, - "total_projects": 75, - "is_currently_active": false, - "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020 - ] - }, { "slug": "xwiki", "name": "XWiki", @@ -73,6 +61,18 @@ 2022, 2023 ] + }, + { + "slug": "biomedical-informatics-emory-university", + "name": "Biomedical Informatics, Emory University", + "first_year": 2016, + "last_year": 2019, + "total_projects": 9, + "is_currently_active": false, + "active_years": [ + 2016, + 2019 + ] } ], "yearlyStats": { @@ -111,6 +111,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.599Z" + "generated_at": "2026-02-19T13:36:00.751Z" } } \ No newline at end of file diff --git a/new-api-details/topics/web-portal.json b/new-api-details/topics/web-portal.json index 1796106b..1f87b758 100644 --- a/new-api-details/topics/web-portal.json +++ b/new-api-details/topics/web-portal.json @@ -1,10 +1,11 @@ { "slug": "web-portal", "name": "web portal", - "published_at": "2026-01-25T16:06:28.806Z", + "published_at": "2026-02-19T13:36:01.103Z", "organizationCount": 1, "projectCount": 30, "years": [ + 2026, 2022, 2021, 2020, @@ -16,15 +17,16 @@ "slug": "cuneiform-digital-library-initiative-cdli", "name": "Cuneiform Digital Library Initiative (CDLI)", "first_year": 2018, - "last_year": 2022, + "last_year": 2026, "total_projects": 30, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2018, 2019, 2020, 2021, - 2022 + 2022, + 2026 ] } ], @@ -48,10 +50,14 @@ "2022": { "organizationCount": 1, "projectCount": 7 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.806Z" + "generated_at": "2026-02-19T13:36:01.103Z" } } \ No newline at end of file diff --git a/new-api-details/topics/web-processing.json b/new-api-details/topics/web-processing.json index c9fbe37c..b7952098 100644 --- a/new-api-details/topics/web-processing.json +++ b/new-api-details/topics/web-processing.json @@ -1,10 +1,11 @@ { "slug": "web-processing", "name": "web processing", - "published_at": "2026-01-25T16:06:28.360Z", + "published_at": "2026-02-19T13:36:00.272Z", "organizationCount": 1, "projectCount": 25, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "52north-spatial-information-research-gmbh", "name": "52°North Spatial Information Research GmbH", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 25, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.360Z" + "generated_at": "2026-02-19T13:36:00.272Z" } } \ No newline at end of file diff --git a/new-api-details/topics/web-programming.json b/new-api-details/topics/web-programming.json index 84b54725..73c0b777 100644 --- a/new-api-details/topics/web-programming.json +++ b/new-api-details/topics/web-programming.json @@ -1,38 +1,40 @@ { "slug": "web-programming", "name": "web programming", - "published_at": "2026-01-25T16:06:28.460Z", + "published_at": "2026-02-19T13:36:00.454Z", "organizationCount": 2, "projectCount": 15, "years": [ + 2026, 2025, 2020, 2019, 2016 ], "organizations": [ - { - "slug": "anitaborg-open-source", - "name": "AnitaB.org Open Source", - "first_year": 2020, - "last_year": 2020, - "total_projects": 4, - "is_currently_active": false, - "active_years": [ - 2020 - ] - }, { "slug": "d-language-foundation", "name": "D Language Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 11, "is_currently_active": true, "active_years": [ 2016, 2019, - 2025 + 2025, + 2026 + ] + }, + { + "slug": "anitaborg-open-source", + "name": "AnitaB.org Open Source", + "first_year": 2020, + "last_year": 2020, + "total_projects": 4, + "is_currently_active": false, + "active_years": [ + 2020 ] } ], @@ -52,10 +54,14 @@ "2025": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.460Z" + "generated_at": "2026-02-19T13:36:00.454Z" } } \ No newline at end of file diff --git a/new-api-details/topics/web-servers.json b/new-api-details/topics/web-servers.json index c9905b81..ecb63ec3 100644 --- a/new-api-details/topics/web-servers.json +++ b/new-api-details/topics/web-servers.json @@ -1,10 +1,11 @@ { "slug": "web-servers", "name": "web servers", - "published_at": "2026-01-25T16:06:28.457Z", + "published_at": "2026-02-19T13:36:00.439Z", "organizationCount": 2, "projectCount": 56, "years": [ + 2026, 2023, 2022, 2021, @@ -15,27 +16,13 @@ 2016 ], "organizations": [ - { - "slug": "amahi", - "name": "Amahi", - "first_year": 2017, - "last_year": 2020, - "total_projects": 18, - "is_currently_active": false, - "active_years": [ - 2017, - 2018, - 2019, - 2020 - ] - }, { "slug": "ruby", "name": "Ruby", "first_year": 2016, - "last_year": 2023, + "last_year": 2026, "total_projects": 38, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2018, @@ -43,7 +30,22 @@ 2020, 2021, 2022, - 2023 + 2023, + 2026 + ] + }, + { + "slug": "amahi", + "name": "Amahi", + "first_year": 2017, + "last_year": 2020, + "total_projects": 18, + "is_currently_active": false, + "active_years": [ + 2017, + 2018, + 2019, + 2020 ] } ], @@ -79,10 +81,14 @@ "2023": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.457Z" + "generated_at": "2026-02-19T13:36:00.439Z" } } \ No newline at end of file diff --git a/new-api-details/topics/web-services.json b/new-api-details/topics/web-services.json index fc458057..4d750ec1 100644 --- a/new-api-details/topics/web-services.json +++ b/new-api-details/topics/web-services.json @@ -1,10 +1,11 @@ { "slug": "web-services", "name": "web services", - "published_at": "2026-01-25T16:06:28.362Z", + "published_at": "2026-02-19T13:36:00.275Z", "organizationCount": 5, "projectCount": 112, "years": [ + 2026, 2025, 2024, 2023, @@ -18,11 +19,11 @@ ], "organizations": [ { - "slug": "52north-spatial-information-research-gmbh", - "name": "52°North Spatial Information Research GmbH", + "slug": "free-and-open-source-silicon-foundation", + "name": "Free and Open Source Silicon Foundation", "first_year": 2016, - "last_year": 2025, - "total_projects": 25, + "last_year": 2026, + "total_projects": 60, "is_currently_active": true, "active_years": [ 2016, @@ -34,15 +35,16 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "free-and-open-source-silicon-foundation", - "name": "Free and Open Source Silicon Foundation", + "slug": "52north-spatial-information-research-gmbh", + "name": "52°North Spatial Information Research GmbH", "first_year": 2016, - "last_year": 2025, - "total_projects": 60, + "last_year": 2026, + "total_projects": 25, "is_currently_active": true, "active_years": [ 2016, @@ -54,21 +56,8 @@ 2022, 2023, 2024, - 2025 - ] - }, - { - "slug": "hydra-ecosystem", - "name": "Hydra Ecosystem", - "first_year": 2018, - "last_year": 2021, - "total_projects": 8, - "is_currently_active": false, - "active_years": [ - 2018, - 2019, - 2020, - 2021 + 2025, + 2026 ] }, { @@ -88,6 +77,20 @@ 2022 ] }, + { + "slug": "hydra-ecosystem", + "name": "Hydra Ecosystem", + "first_year": 2018, + "last_year": 2021, + "total_projects": 8, + "is_currently_active": false, + "active_years": [ + 2018, + 2019, + 2020, + 2021 + ] + }, { "slug": "the-perl-foundation", "name": "The Perl Foundation", @@ -140,10 +143,14 @@ "2025": { "organizationCount": 2, "projectCount": 8 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.362Z" + "generated_at": "2026-02-19T13:36:00.275Z" } } \ No newline at end of file diff --git a/new-api-details/topics/web-technologies.json b/new-api-details/topics/web-technologies.json index 498e5011..843d6da0 100644 --- a/new-api-details/topics/web-technologies.json +++ b/new-api-details/topics/web-technologies.json @@ -1,7 +1,7 @@ { "slug": "web-technologies", "name": "web technologies", - "published_at": "2026-01-25T16:06:29.381Z", + "published_at": "2026-02-19T13:36:02.366Z", "organizationCount": 1, "projectCount": 75, "years": [ @@ -52,6 +52,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.381Z" + "generated_at": "2026-02-19T13:36:02.366Z" } } \ No newline at end of file diff --git a/new-api-details/topics/web-tools.json b/new-api-details/topics/web-tools.json index 0bbf4681..67cc8718 100644 --- a/new-api-details/topics/web-tools.json +++ b/new-api-details/topics/web-tools.json @@ -1,7 +1,7 @@ { "slug": "web-tools", "name": "web tools", - "published_at": "2026-01-25T16:06:29.521Z", + "published_at": "2026-02-19T13:36:02.680Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -14,7 +14,7 @@ "first_year": 2025, "last_year": 2025, "total_projects": 2, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2025 ] @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.521Z" + "generated_at": "2026-02-19T13:36:02.680Z" } } \ No newline at end of file diff --git a/new-api-details/topics/web.json b/new-api-details/topics/web.json index fd39616d..cb54692c 100644 --- a/new-api-details/topics/web.json +++ b/new-api-details/topics/web.json @@ -1,10 +1,11 @@ { "slug": "web", "name": "web", - "published_at": "2026-01-25T16:06:28.389Z", - "organizationCount": 90, - "projectCount": 2958, + "published_at": "2026-02-19T13:36:00.450Z", + "organizationCount": 93, + "projectCount": 2962, "years": [ + 2026, 2025, 2024, 2023, @@ -18,24 +19,14 @@ ], "organizations": [ { - "slug": "anitaborg-open-source", - "name": "AnitaB.org Open Source", - "first_year": 2020, - "last_year": 2020, - "total_projects": 4, - "is_currently_active": false, - "active_years": [ - 2020 - ] - }, - { - "slug": "aossie", - "name": "AOSSIE", - "first_year": 2017, + "slug": "the-apache-software-foundation", + "name": "The Apache Software Foundation", + "first_year": 2016, "last_year": 2025, - "total_projects": 117, - "is_currently_active": true, + "total_projects": 248, + "is_currently_active": false, "active_years": [ + 2016, 2017, 2018, 2019, @@ -48,133 +39,150 @@ ] }, { - "slug": "asyncapi", - "name": "AsyncAPI", - "first_year": 2024, - "last_year": 2025, - "total_projects": 15, - "is_currently_active": true, - "active_years": [ - 2024, - 2025 - ] - }, - { - "slug": "bench-routes", - "name": "Bench-Routes", - "first_year": 2021, - "last_year": 2021, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2021 - ] - }, - { - "slug": "berkman-klein-center-for-internet-and-society", - "name": "Berkman Klein Center for Internet and Society", + "slug": "score-lab", + "name": "SCoRe Lab", "first_year": 2016, - "last_year": 2019, - "total_projects": 20, + "last_year": 2023, + "total_projects": 149, "is_currently_active": false, "active_years": [ 2016, 2017, 2018, - 2019 + 2019, + 2020, + 2021, + 2022, + 2023 ] }, { - "slug": "cadasta", - "name": "Cadasta", - "first_year": 2017, - "last_year": 2017, - "total_projects": 1, - "is_currently_active": false, + "slug": "fossasia", + "name": "FOSSASIA", + "first_year": 2016, + "last_year": 2026, + "total_projects": 140, + "is_currently_active": true, "active_years": [ - 2017 + 2016, + 2017, + 2018, + 2019, + 2024, + 2025, + 2026 ] }, { - "slug": "canadian-centre-for-computational-genomics", - "name": "Canadian Centre for Computational Genomics", + "slug": "national-resource-for-network-biology-nrnb", + "name": "National Resource for Network Biology (NRNB)", "first_year": 2016, - "last_year": 2020, - "total_projects": 15, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 119, + "is_currently_active": true, "active_years": [ 2016, + 2017, 2018, 2019, - 2020 + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "casbin", - "name": "Casbin", - "first_year": 2020, - "last_year": 2022, - "total_projects": 22, - "is_currently_active": false, + "slug": "aossie", + "name": "AOSSIE", + "first_year": 2017, + "last_year": 2026, + "total_projects": 117, + "is_currently_active": true, "active_years": [ + 2017, + 2018, + 2019, 2020, 2021, - 2022 + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "chromium", - "name": "Chromium", - "first_year": 2021, - "last_year": 2025, - "total_projects": 71, + "slug": "cncf", + "name": "CNCF", + "first_year": 2017, + "last_year": 2026, + "total_projects": 113, "is_currently_active": true, "active_years": [ + 2017, + 2018, + 2019, + 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "circuitverseorg", - "name": "CircuitVerse.org", - "first_year": 2019, - "last_year": 2025, - "total_projects": 32, + "slug": "owasp-foundation", + "name": "OWASP Foundation", + "first_year": 2016, + "last_year": 2026, + "total_projects": 102, "is_currently_active": true, "active_years": [ + 2016, + 2018, 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "classical-language-toolkit", - "name": "Classical Language Toolkit", + "slug": "the-mifos-initiative", + "name": "The Mifos Initiative", "first_year": 2016, - "last_year": 2018, - "total_projects": 7, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 102, + "is_currently_active": true, "active_years": [ 2016, 2017, - 2018 + 2018, + 2019, + 2020, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "cncf", - "name": "CNCF", - "first_year": 2017, - "last_year": 2025, - "total_projects": 113, + "slug": "videolan", + "name": "VideoLAN", + "first_year": 2016, + "last_year": 2026, + "total_projects": 92, "is_currently_active": true, "active_years": [ + 2016, 2017, 2018, 2019, @@ -183,75 +191,75 @@ 2022, 2023, 2024, - 2025 - ] - }, - { - "slug": "cockpit-project", - "name": "Cockpit Project", - "first_year": 2023, - "last_year": 2023, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2023 + 2025, + 2026 ] }, { - "slug": "conversationsim", - "name": "Conversations.im", + "slug": "processing-foundation", + "name": "Processing Foundation", "first_year": 2017, - "last_year": 2018, - "total_projects": 4, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 87, + "is_currently_active": true, "active_years": [ 2017, - 2018 + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, + 2025, + 2026 ] }, { - "slug": "copyleft-games", - "name": "Copyleft Games", + "slug": "wikimedia-foundation", + "name": "Wikimedia Foundation", "first_year": 2016, - "last_year": 2017, - "total_projects": 4, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 85, + "is_currently_active": true, "active_years": [ 2016, - 2017 - ] - }, - { - "slug": "creative-commons", - "name": "Creative Commons", - "first_year": 2019, - "last_year": 2024, - "total_projects": 14, - "is_currently_active": false, - "active_years": [ + 2017, + 2018, 2019, 2020, + 2021, + 2022, 2023, - 2024 + 2024, + 2026 ] }, { - "slug": "data-for-the-common-good", - "name": "Data for the Common Good", - "first_year": 2024, - "last_year": 2025, - "total_projects": 8, + "slug": "international-catrobat-association", + "name": "International Catrobat Association", + "first_year": 2016, + "last_year": 2026, + "total_projects": 84, "is_currently_active": true, "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022, + 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "debian", "name": "Debian", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 78, "is_currently_active": true, "active_years": [ @@ -262,15 +270,16 @@ 2021, 2022, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "django-software-foundation", - "name": "Django Software Foundation", + "slug": "oppia-foundation", + "name": "Oppia Foundation", "first_year": 2016, - "last_year": 2025, - "total_projects": 19, + "last_year": 2026, + "total_projects": 77, "is_currently_active": true, "active_years": [ 2016, @@ -282,73 +291,64 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "drupal-association", - "name": "Drupal Association", + "slug": "mozilla", + "name": "Mozilla", "first_year": 2016, - "last_year": 2025, - "total_projects": 39, - "is_currently_active": true, + "last_year": 2020, + "total_projects": 75, + "is_currently_active": false, "active_years": [ 2016, 2017, 2018, 2019, - 2020, - 2022, - 2023, - 2024, - 2025 + 2020 ] }, { - "slug": "elm-tooling", - "name": "Elm Tooling", + "slug": "chromium", + "name": "Chromium", "first_year": 2021, - "last_year": 2021, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2021 - ] - }, - { - "slug": "fosdem", - "name": "FOSDEM", - "first_year": 2016, - "last_year": 2019, - "total_projects": 4, + "last_year": 2025, + "total_projects": 71, "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2019 + 2021, + 2022, + 2023, + 2024, + 2025 ] }, { - "slug": "fossasia", - "name": "FOSSASIA", - "first_year": 2016, - "last_year": 2025, - "total_projects": 140, + "slug": "open-technologies-alliance-gfoss", + "name": "Open Technologies Alliance - GFOSS", + "first_year": 2017, + "last_year": 2026, + "total_projects": 70, "is_currently_active": true, "active_years": [ - 2016, 2017, 2018, 2019, + 2021, + 2022, + 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "free-and-open-source-silicon-foundation", "name": "Free and Open Source Silicon Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 60, "is_currently_active": true, "active_years": [ @@ -361,86 +361,77 @@ 2022, 2023, 2024, - 2025 - ] - }, - { - "slug": "gdevelop", - "name": "GDevelop", - "first_year": 2020, - "last_year": 2020, - "total_projects": 2, - "is_currently_active": false, - "active_years": [ - 2020 + 2025, + 2026 ] }, { - "slug": "genes-genomes-and-variation", - "name": "Genes, Genomes and Variation", + "slug": "scala-center", + "name": "Scala Center", "first_year": 2016, - "last_year": 2019, - "total_projects": 12, + "last_year": 2025, + "total_projects": 56, "is_currently_active": false, "active_years": [ 2016, 2017, 2018, - 2019 + 2021, + 2022, + 2023, + 2024, + 2025 ] }, { - "slug": "global-alliance-for-genomics-and-health", - "name": "Global Alliance for Genomics and Health", + "slug": "opensuse-project", + "name": "openSUSE Project", "first_year": 2016, - "last_year": 2024, - "total_projects": 45, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 52, + "is_currently_active": true, "active_years": [ 2016, 2017, 2018, - 2019, 2020, 2021, 2022, 2023, - 2024 + 2024, + 2025, + 2026 ] }, { - "slug": "gnu-mailman-project", - "name": "GNU Mailman Project", - "first_year": 2016, - "last_year": 2021, - "total_projects": 4, - "is_currently_active": false, + "slug": "postgresql", + "name": "PostgreSQL", + "first_year": 2017, + "last_year": 2026, + "total_projects": 51, + "is_currently_active": true, "active_years": [ - 2016, + 2017, + 2018, 2019, - 2021 + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "green-navigation", - "name": "Green Navigation", + "slug": "global-alliance-for-genomics-and-health", + "name": "Global Alliance for Genomics and Health", "first_year": 2016, - "last_year": 2017, - "total_projects": 8, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 45, + "is_currently_active": true, "active_years": [ 2016, - 2017 - ] - }, - { - "slug": "haiku", - "name": "Haiku", - "first_year": 2017, - "last_year": 2024, - "total_projects": 26, - "is_currently_active": false, - "active_years": [ 2017, 2018, 2019, @@ -448,42 +439,53 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { - "slug": "hydra-ecosystem", - "name": "Hydra Ecosystem", - "first_year": 2018, - "last_year": 2021, - "total_projects": 8, - "is_currently_active": false, + "slug": "mit-app-inventor", + "name": "MIT App Inventor", + "first_year": 2016, + "last_year": 2026, + "total_projects": 45, + "is_currently_active": true, "active_years": [ - 2018, + 2016, + 2017, 2019, 2020, - 2021 + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 ] }, { - "slug": "inclusive-design-institute", - "name": "Inclusive Design Institute", + "slug": "open-bioinformatics-foundation-obf", + "name": "Open Bioinformatics Foundation (OBF)", "first_year": 2016, - "last_year": 2020, - "total_projects": 11, + "last_year": 2022, + "total_projects": 45, "is_currently_active": false, "active_years": [ 2016, + 2017, 2018, - 2020 + 2019, + 2020, + 2021, + 2022 ] }, { - "slug": "inkscape", - "name": "Inkscape", + "slug": "openstreetmap", + "name": "OpenStreetMap", "first_year": 2016, - "last_year": 2025, - "total_projects": 27, + "last_year": 2026, + "total_projects": 45, "is_currently_active": true, "active_years": [ 2016, @@ -495,38 +497,16 @@ 2022, 2023, 2024, - 2025 - ] - }, - { - "slug": "institut-für-angewandte-informatik-infai-ev", - "name": "Institut für Angewandte Informatik (InfAI) e.V.", - "first_year": 2019, - "last_year": 2019, - "total_projects": 1, - "is_currently_active": false, - "active_years": [ - 2019 - ] - }, - { - "slug": "intermine", - "name": "InterMine", - "first_year": 2018, - "last_year": 2019, - "total_projects": 12, - "is_currently_active": false, - "active_years": [ - 2018, - 2019 + 2025, + 2026 ] }, { - "slug": "international-catrobat-association", - "name": "International Catrobat Association", + "slug": "drupal-association", + "name": "Drupal Association", "first_year": 2016, - "last_year": 2025, - "total_projects": 84, + "last_year": 2026, + "total_projects": 39, "is_currently_active": true, "active_years": [ 2016, @@ -534,33 +514,36 @@ 2018, 2019, 2020, - 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "jitsi", - "name": "Jitsi", - "first_year": 2017, - "last_year": 2025, - "total_projects": 21, + "slug": "ruby", + "name": "Ruby", + "first_year": 2016, + "last_year": 2026, + "total_projects": 38, "is_currently_active": true, "active_years": [ - 2017, + 2016, 2018, + 2019, + 2020, + 2021, 2022, - 2024, - 2025 + 2023, + 2026 ] }, { "slug": "joomla", "name": "Joomla!", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 36, "is_currently_active": true, "active_years": [ @@ -570,28 +553,50 @@ 2019, 2021, 2022, - 2025 + 2025, + 2026 ] }, { - "slug": "json-schema", - "name": "JSON Schema", - "first_year": 2024, + "slug": "the-palisadoes-foundation", + "name": "The Palisadoes Foundation", + "first_year": 2021, "last_year": 2025, - "total_projects": 14, - "is_currently_active": true, + "total_projects": 36, + "is_currently_active": false, "active_years": [ + 2021, + 2022, + 2023, 2024, 2025 ] }, + { + "slug": "circuitverseorg", + "name": "CircuitVerse.org", + "first_year": 2019, + "last_year": 2026, + "total_projects": 32, + "is_currently_active": true, + "active_years": [ + 2019, + 2020, + 2021, + 2022, + 2023, + 2024, + 2025, + 2026 + ] + }, { "slug": "librehealth", "name": "LibreHealth", "first_year": 2017, - "last_year": 2023, + "last_year": 2026, "total_projects": 31, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2017, 2018, @@ -599,44 +604,33 @@ 2020, 2021, 2022, - 2023 + 2023, + 2026 ] }, { - "slug": "mathesar", - "name": "Mathesar", - "first_year": 2022, - "last_year": 2023, - "total_projects": 5, - "is_currently_active": false, - "active_years": [ - 2022, - 2023 - ] - }, - { - "slug": "mayors-office-of-new-urban-mechanics", - "name": "Mayor's Office of New Urban Mechanics", - "first_year": 2021, - "last_year": 2023, - "total_projects": 9, + "slug": "systers-an-anita-borg-institute-community", + "name": "Systers, an Anita Borg Institute community", + "first_year": 2016, + "last_year": 2017, + "total_projects": 30, "is_currently_active": false, "active_years": [ - 2021, - 2022, - 2023 + 2016, + 2017 ] }, { - "slug": "mit-app-inventor", - "name": "MIT App Inventor", + "slug": "inkscape", + "name": "Inkscape", "first_year": 2016, "last_year": 2025, - "total_projects": 45, - "is_currently_active": true, + "total_projects": 27, + "is_currently_active": false, "active_years": [ 2016, 2017, + 2018, 2019, 2020, 2021, @@ -647,29 +641,32 @@ ] }, { - "slug": "mozilla", - "name": "Mozilla", - "first_year": 2016, - "last_year": 2020, - "total_projects": 75, - "is_currently_active": false, + "slug": "haiku", + "name": "Haiku", + "first_year": 2017, + "last_year": 2026, + "total_projects": 26, + "is_currently_active": true, "active_years": [ - 2016, 2017, 2018, 2019, - 2020 + 2020, + 2021, + 2022, + 2023, + 2024, + 2026 ] }, { - "slug": "national-resource-for-network-biology-nrnb", - "name": "National Resource for Network Biology (NRNB)", - "first_year": 2016, - "last_year": 2025, - "total_projects": 119, + "slug": "openwisp", + "name": "OpenWISP", + "first_year": 2017, + "last_year": 2026, + "total_projects": 26, "is_currently_active": true, "active_years": [ - 2016, 2017, 2018, 2019, @@ -678,28 +675,20 @@ 2022, 2023, 2024, - 2025 - ] - }, - { - "slug": "navidrome", - "name": "Navidrome", - "first_year": 2021, - "last_year": 2021, - "total_projects": 1, - "is_currently_active": false, - "active_years": [ - 2021 + 2025, + 2026 ] }, { - "slug": "omegaup", - "name": "omegaUp", - "first_year": 2018, + "slug": "plone-foundation", + "name": "Plone Foundation", + "first_year": 2016, "last_year": 2025, - "total_projects": 10, - "is_currently_active": true, + "total_projects": 26, + "is_currently_active": false, "active_years": [ + 2016, + 2017, 2018, 2022, 2023, @@ -708,346 +697,421 @@ ] }, { - "slug": "open-bioinformatics-foundation-obf", - "name": "Open Bioinformatics Foundation (OBF)", - "first_year": 2016, + "slug": "casbin", + "name": "Casbin", + "first_year": 2020, "last_year": 2022, - "total_projects": 45, + "total_projects": 22, "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2019, 2020, 2021, 2022 ] }, { - "slug": "open-roberta", - "name": "Open Roberta", - "first_year": 2018, - "last_year": 2021, - "total_projects": 8, - "is_currently_active": false, - "active_years": [ - 2018, - 2019, - 2020, - 2021 - ] - }, - { - "slug": "open-states", - "name": "Open States", - "first_year": 2017, - "last_year": 2018, - "total_projects": 1, - "is_currently_active": false, - "active_years": [ - 2017, - 2018 - ] - }, - { - "slug": "open-technologies-alliance-gfoss", - "name": "Open Technologies Alliance - GFOSS", + "slug": "jitsi", + "name": "Jitsi", "first_year": 2017, - "last_year": 2025, - "total_projects": 70, + "last_year": 2026, + "total_projects": 21, "is_currently_active": true, "active_years": [ 2017, 2018, - 2019, - 2021, 2022, - 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "openstreetmap", - "name": "OpenStreetMap", + "slug": "berkman-klein-center-for-internet-and-society", + "name": "Berkman Klein Center for Internet and Society", "first_year": 2016, - "last_year": 2025, - "total_projects": 45, - "is_currently_active": true, + "last_year": 2019, + "total_projects": 20, + "is_currently_active": false, "active_years": [ 2016, 2017, 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2019 ] }, { - "slug": "opensuse-project", - "name": "openSUSE Project", + "slug": "django-software-foundation", + "name": "Django Software Foundation", "first_year": 2016, - "last_year": 2025, - "total_projects": 52, + "last_year": 2026, + "total_projects": 19, "is_currently_active": true, "active_years": [ 2016, 2017, 2018, + 2019, 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "openwisp", - "name": "OpenWISP", - "first_year": 2017, - "last_year": 2025, - "total_projects": 26, + "slug": "submitty", + "name": "Submitty", + "first_year": 2018, + "last_year": 2026, + "total_projects": 19, "is_currently_active": true, "active_years": [ - 2017, 2018, 2019, 2020, - 2021, 2022, 2023, 2024, - 2025 + 2026 ] }, { - "slug": "opntec", - "name": "OpnTec", - "first_year": 2018, - "last_year": 2018, - "total_projects": 2, + "slug": "asyncapi", + "name": "AsyncAPI", + "first_year": 2024, + "last_year": 2025, + "total_projects": 15, "is_currently_active": false, "active_years": [ - 2018 + 2024, + 2025 ] }, { - "slug": "oppia-foundation", - "name": "Oppia Foundation", + "slug": "canadian-centre-for-computational-genomics", + "name": "Canadian Centre for Computational Genomics", "first_year": 2016, - "last_year": 2025, - "total_projects": 77, - "is_currently_active": true, + "last_year": 2020, + "total_projects": 15, + "is_currently_active": false, "active_years": [ 2016, - 2017, + 2018, + 2019, + 2020 + ] + }, + { + "slug": "purr-data", + "name": "Purr Data", + "first_year": 2018, + "last_year": 2024, + "total_projects": 15, + "is_currently_active": false, + "active_years": [ 2018, 2019, 2020, 2021, 2022, 2023, - 2024, - 2025 + 2024 ] }, { - "slug": "orcasound", - "name": "Orcasound", - "first_year": 2020, - "last_year": 2022, - "total_projects": 10, + "slug": "creative-commons", + "name": "Creative Commons", + "first_year": 2019, + "last_year": 2024, + "total_projects": 14, "is_currently_active": false, "active_years": [ + 2019, 2020, - 2021, - 2022 + 2023, + 2024 ] }, { - "slug": "owasp-foundation", - "name": "OWASP Foundation", - "first_year": 2016, - "last_year": 2025, - "total_projects": 102, + "slug": "json-schema", + "name": "JSON Schema", + "first_year": 2024, + "last_year": 2026, + "total_projects": 14, "is_currently_active": true, "active_years": [ - 2016, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "owncloud", - "name": "ownCloud", + "slug": "ruby-science-foundation", + "name": "Ruby Science Foundation", "first_year": 2016, - "last_year": 2017, - "total_projects": 5, + "last_year": 2019, + "total_projects": 13, "is_currently_active": false, "active_years": [ 2016, - 2017 + 2017, + 2018, + 2019 ] }, { - "slug": "peragro", - "name": "Peragro", + "slug": "genes-genomes-and-variation", + "name": "Genes, Genomes and Variation", "first_year": 2016, - "last_year": 2016, - "total_projects": 0, + "last_year": 2019, + "total_projects": 12, "is_currently_active": false, "active_years": [ - 2016 + 2016, + 2017, + 2018, + 2019 ] }, { - "slug": "pidgin-instant-messenger", - "name": "Pidgin Instant Messenger", - "first_year": 2021, - "last_year": 2021, - "total_projects": 1, + "slug": "intermine", + "name": "InterMine", + "first_year": 2018, + "last_year": 2019, + "total_projects": 12, "is_currently_active": false, "active_years": [ - 2021 + 2018, + 2019 ] }, { - "slug": "plone-foundation", - "name": "Plone Foundation", - "first_year": 2016, + "slug": "society-for-arts-and-technology-sat", + "name": "Society for Arts and Technology (SAT)", + "first_year": 2022, "last_year": 2025, - "total_projects": 26, - "is_currently_active": true, + "total_projects": 12, + "is_currently_active": false, + "active_years": [ + 2022, + 2023, + 2025 + ] + }, + { + "slug": "inclusive-design-institute", + "name": "Inclusive Design Institute", + "first_year": 2016, + "last_year": 2020, + "total_projects": 11, + "is_currently_active": false, "active_years": [ 2016, - 2017, 2018, + 2020 + ] + }, + { + "slug": "wagtail", + "name": "Wagtail", + "first_year": 2022, + "last_year": 2026, + "total_projects": 11, + "is_currently_active": true, + "active_years": [ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "postgresql", - "name": "PostgreSQL", - "first_year": 2017, - "last_year": 2025, - "total_projects": 51, + "slug": "omegaup", + "name": "omegaUp", + "first_year": 2018, + "last_year": 2026, + "total_projects": 10, "is_currently_active": true, "active_years": [ - 2017, 2018, - 2019, - 2020, - 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "processing-foundation", - "name": "Processing Foundation", - "first_year": 2017, + "slug": "orcasound", + "name": "Orcasound", + "first_year": 2020, + "last_year": 2022, + "total_projects": 10, + "is_currently_active": false, + "active_years": [ + 2020, + 2021, + 2022 + ] + }, + { + "slug": "zendalona", + "name": "Zendalona", + "first_year": 2024, "last_year": 2025, - "total_projects": 87, + "total_projects": 10, + "is_currently_active": false, + "active_years": [ + 2024, + 2025 + ] + }, + { + "slug": "mayors-office-of-new-urban-mechanics", + "name": "Mayor's Office of New Urban Mechanics", + "first_year": 2021, + "last_year": 2023, + "total_projects": 9, + "is_currently_active": false, + "active_years": [ + 2021, + 2022, + 2023 + ] + }, + { + "slug": "stdlib", + "name": "stdlib", + "first_year": 2024, + "last_year": 2026, + "total_projects": 9, "is_currently_active": true, "active_years": [ - 2017, + 2024, + 2025, + 2026 + ] + }, + { + "slug": "data-for-the-common-good", + "name": "Data for the Common Good", + "first_year": 2024, + "last_year": 2026, + "total_projects": 8, + "is_currently_active": true, + "active_years": [ + 2024, + 2025, + 2026 + ] + }, + { + "slug": "green-navigation", + "name": "Green Navigation", + "first_year": 2016, + "last_year": 2017, + "total_projects": 8, + "is_currently_active": false, + "active_years": [ + 2016, + 2017 + ] + }, + { + "slug": "hydra-ecosystem", + "name": "Hydra Ecosystem", + "first_year": 2018, + "last_year": 2021, + "total_projects": 8, + "is_currently_active": false, + "active_years": [ 2018, 2019, 2020, - 2021, - 2022, - 2023, - 2025 + 2021 ] }, { - "slug": "purr-data", - "name": "Purr Data", + "slug": "open-roberta", + "name": "Open Roberta", "first_year": 2018, - "last_year": 2024, - "total_projects": 15, + "last_year": 2021, + "total_projects": 8, "is_currently_active": false, "active_years": [ 2018, 2019, 2020, - 2021, - 2022, - 2023, - 2024 + 2021 ] }, { - "slug": "quillorg", - "name": "Quill.org", - "first_year": 2018, + "slug": "classical-language-toolkit", + "name": "Classical Language Toolkit", + "first_year": 2016, "last_year": 2018, - "total_projects": 1, + "total_projects": 7, "is_currently_active": false, "active_years": [ + 2016, + 2017, 2018 ] }, { - "slug": "radar-base", - "name": "RADAR-base", - "first_year": 2022, - "last_year": 2022, - "total_projects": 3, + "slug": "vitrivr", + "name": "vitrivr", + "first_year": 2016, + "last_year": 2021, + "total_projects": 6, "is_currently_active": false, "active_years": [ - 2022 + 2016, + 2018, + 2021 ] }, { - "slug": "read-the-docs", - "name": "Read the Docs", - "first_year": 2018, - "last_year": 2019, - "total_projects": 3, + "slug": "mathesar", + "name": "Mathesar", + "first_year": 2022, + "last_year": 2023, + "total_projects": 5, "is_currently_active": false, "active_years": [ - 2018, - 2019 + 2022, + 2023 ] }, { - "slug": "ruby", - "name": "Ruby", + "slug": "owncloud", + "name": "ownCloud", "first_year": 2016, - "last_year": 2023, - "total_projects": 38, + "last_year": 2017, + "total_projects": 5, "is_currently_active": false, "active_years": [ 2016, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023 + 2017 ] }, { - "slug": "ruby-on-rails", - "name": "Ruby on Rails", + "slug": "anitaborg-open-source", + "name": "AnitaB.org Open Source", + "first_year": 2020, + "last_year": 2020, + "total_projects": 4, + "is_currently_active": false, + "active_years": [ + 2020 + ] + }, + { + "slug": "conversationsim", + "name": "Conversations.im", "first_year": 2017, "last_year": 2018, "total_projects": 4, @@ -1058,58 +1122,115 @@ ] }, { - "slug": "ruby-science-foundation", - "name": "Ruby Science Foundation", + "slug": "copyleft-games", + "name": "Copyleft Games", + "first_year": 2016, + "last_year": 2017, + "total_projects": 4, + "is_currently_active": false, + "active_years": [ + 2016, + 2017 + ] + }, + { + "slug": "fosdem", + "name": "FOSDEM", "first_year": 2016, "last_year": 2019, - "total_projects": 13, + "total_projects": 4, "is_currently_active": false, "active_years": [ 2016, 2017, - 2018, 2019 ] }, { - "slug": "scala-center", - "name": "Scala Center", + "slug": "gnu-mailman-project", + "name": "GNU Mailman Project", "first_year": 2016, - "last_year": 2025, - "total_projects": 56, - "is_currently_active": true, + "last_year": 2021, + "total_projects": 4, + "is_currently_active": false, "active_years": [ 2016, + 2019, + 2021 + ] + }, + { + "slug": "open-science-labs", + "name": "Open Science Labs", + "first_year": 2025, + "last_year": 2026, + "total_projects": 4, + "is_currently_active": true, + "active_years": [ + 2025, + 2026 + ] + }, + { + "slug": "ruby-on-rails", + "name": "Ruby on Rails", + "first_year": 2017, + "last_year": 2018, + "total_projects": 4, + "is_currently_active": false, + "active_years": [ 2017, + 2018 + ] + }, + { + "slug": "radar-base", + "name": "RADAR-base", + "first_year": 2022, + "last_year": 2022, + "total_projects": 3, + "is_currently_active": false, + "active_years": [ + 2022 + ] + }, + { + "slug": "read-the-docs", + "name": "Read the Docs", + "first_year": 2018, + "last_year": 2019, + "total_projects": 3, + "is_currently_active": false, + "active_years": [ 2018, - 2021, - 2022, - 2023, - 2024, - 2025 + 2019 + ] + }, + { + "slug": "bench-routes", + "name": "Bench-Routes", + "first_year": 2021, + "last_year": 2021, + "total_projects": 2, + "is_currently_active": false, + "active_years": [ + 2021 ] }, { - "slug": "score-lab", - "name": "SCoRe Lab", - "first_year": 2016, + "slug": "cockpit-project", + "name": "Cockpit Project", + "first_year": 2023, "last_year": 2023, - "total_projects": 149, + "total_projects": 2, "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, 2023 ] }, { - "slug": "shaka-player", - "name": "Shaka Player", + "slug": "elm-tooling", + "name": "Elm Tooling", "first_year": 2021, "last_year": 2021, "total_projects": 2, @@ -1119,21 +1240,19 @@ ] }, { - "slug": "society-for-arts-and-technology-sat", - "name": "Society for Arts and Technology (SAT)", - "first_year": 2022, - "last_year": 2025, - "total_projects": 12, - "is_currently_active": true, + "slug": "gdevelop", + "name": "GDevelop", + "first_year": 2020, + "last_year": 2020, + "total_projects": 2, + "is_currently_active": false, "active_years": [ - 2022, - 2023, - 2025 + 2020 ] }, { - "slug": "space-virginia-tech", - "name": "Space @ Virginia Tech", + "slug": "opntec", + "name": "OpnTec", "first_year": 2018, "last_year": 2018, "total_projects": 2, @@ -1143,208 +1262,159 @@ ] }, { - "slug": "stdlib", - "name": "stdlib", - "first_year": 2024, - "last_year": 2025, - "total_projects": 9, - "is_currently_active": true, + "slug": "shaka-player", + "name": "Shaka Player", + "first_year": 2021, + "last_year": 2021, + "total_projects": 2, + "is_currently_active": false, "active_years": [ - 2024, - 2025 + 2021 ] }, { - "slug": "streetmix", - "name": "Streetmix", + "slug": "space-virginia-tech", + "name": "Space @ Virginia Tech", "first_year": 2018, "last_year": 2018, - "total_projects": 1, + "total_projects": 2, "is_currently_active": false, "active_years": [ 2018 ] }, { - "slug": "submitty", - "name": "Submitty", - "first_year": 2018, - "last_year": 2024, - "total_projects": 19, - "is_currently_active": false, + "slug": "typelevel", + "name": "Typelevel", + "first_year": 2025, + "last_year": 2026, + "total_projects": 2, + "is_currently_active": true, "active_years": [ - 2018, - 2019, - 2020, - 2022, - 2023, - 2024 + 2025, + 2026 ] }, { - "slug": "systers-an-anita-borg-institute-community", - "name": "Systers, an Anita Borg Institute community", - "first_year": 2016, + "slug": "zenodo", + "name": "Zenodo", + "first_year": 2017, "last_year": 2017, - "total_projects": 30, + "total_projects": 2, "is_currently_active": false, "active_years": [ - 2016, 2017 ] }, { - "slug": "the-apache-software-foundation", - "name": "The Apache Software Foundation", - "first_year": 2016, - "last_year": 2025, - "total_projects": 248, - "is_currently_active": true, + "slug": "cadasta", + "name": "Cadasta", + "first_year": 2017, + "last_year": 2017, + "total_projects": 1, + "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2017 ] }, { - "slug": "the-mifos-initiative", - "name": "The Mifos Initiative", - "first_year": 2016, - "last_year": 2025, - "total_projects": 102, - "is_currently_active": true, + "slug": "institut-für-angewandte-informatik-infai-ev", + "name": "Institut für Angewandte Informatik (InfAI) e.V.", + "first_year": 2019, + "last_year": 2019, + "total_projects": 1, + "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2022, - 2023, - 2024, - 2025 + 2019 ] }, { - "slug": "the-palisadoes-foundation", - "name": "The Palisadoes Foundation", + "slug": "navidrome", + "name": "Navidrome", "first_year": 2021, - "last_year": 2025, - "total_projects": 36, - "is_currently_active": true, - "active_years": [ - 2021, - 2022, - 2023, - 2024, - 2025 - ] - }, - { - "slug": "typelevel", - "name": "Typelevel", - "first_year": 2025, - "last_year": 2025, - "total_projects": 2, - "is_currently_active": true, + "last_year": 2021, + "total_projects": 1, + "is_currently_active": false, "active_years": [ - 2025 + 2021 ] }, { - "slug": "videolan", - "name": "VideoLAN", - "first_year": 2016, - "last_year": 2025, - "total_projects": 92, - "is_currently_active": true, + "slug": "open-states", + "name": "Open States", + "first_year": 2017, + "last_year": 2018, + "total_projects": 1, + "is_currently_active": false, "active_years": [ - 2016, 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024, - 2025 + 2018 ] }, { - "slug": "vitrivr", - "name": "vitrivr", - "first_year": 2016, + "slug": "pidgin-instant-messenger", + "name": "Pidgin Instant Messenger", + "first_year": 2021, "last_year": 2021, - "total_projects": 6, + "total_projects": 1, "is_currently_active": false, "active_years": [ - 2016, - 2018, 2021 ] }, { - "slug": "wagtail", - "name": "Wagtail", - "first_year": 2022, - "last_year": 2025, - "total_projects": 11, - "is_currently_active": true, + "slug": "quillorg", + "name": "Quill.org", + "first_year": 2018, + "last_year": 2018, + "total_projects": 1, + "is_currently_active": false, "active_years": [ - 2022, - 2023, - 2024, - 2025 + 2018 ] }, { - "slug": "wikimedia-foundation", - "name": "Wikimedia Foundation", - "first_year": 2016, - "last_year": 2024, - "total_projects": 85, + "slug": "streetmix", + "name": "Streetmix", + "first_year": 2018, + "last_year": 2018, + "total_projects": 1, "is_currently_active": false, "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022, - 2023, - 2024 + 2018 ] }, { - "slug": "zendalona", - "name": "Zendalona", - "first_year": 2024, - "last_year": 2025, - "total_projects": 10, + "slug": "boa", + "name": "Boa", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, "is_currently_active": true, "active_years": [ - 2024, - 2025 + 2026 ] }, { - "slug": "zenodo", - "name": "Zenodo", - "first_year": 2017, - "last_year": 2017, - "total_projects": 2, + "slug": "learning-unlimited", + "name": "Learning Unlimited", + "first_year": 2026, + "last_year": 2026, + "total_projects": 0, + "is_currently_active": true, + "active_years": [ + 2026 + ] + }, + { + "slug": "peragro", + "name": "Peragro", + "first_year": 2016, + "last_year": 2016, + "total_projects": 0, "is_currently_active": false, "active_years": [ - 2017 + 2016 ] } ], @@ -1386,12 +1456,16 @@ "projectCount": 282 }, "2025": { + "organizationCount": 39, + "projectCount": 315 + }, + "2026": { "organizationCount": 38, - "projectCount": 311 + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.389Z" + "generated_at": "2026-02-19T13:36:00.450Z" } } \ No newline at end of file diff --git a/new-api-details/topics/webapps.json b/new-api-details/topics/webapps.json index 65ec7c61..d0f60ca1 100644 --- a/new-api-details/topics/webapps.json +++ b/new-api-details/topics/webapps.json @@ -1,7 +1,7 @@ { "slug": "webapps", "name": "webapps", - "published_at": "2026-01-25T16:06:28.449Z", + "published_at": "2026-02-19T13:36:00.421Z", "organizationCount": 3, "projectCount": 46, "years": [ @@ -12,6 +12,19 @@ 2016 ], "organizations": [ + { + "slug": "teammates-national-university-of-singapore", + "name": "TEAMMATES @ National University of Singapore", + "first_year": 2016, + "last_year": 2018, + "total_projects": 20, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2018 + ] + }, { "slug": "amahi", "name": "Amahi", @@ -38,19 +51,6 @@ 2017, 2018 ] - }, - { - "slug": "teammates-national-university-of-singapore", - "name": "TEAMMATES @ National University of Singapore", - "first_year": 2016, - "last_year": 2018, - "total_projects": 20, - "is_currently_active": false, - "active_years": [ - 2016, - 2017, - 2018 - ] } ], "yearlyStats": { @@ -77,6 +77,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.449Z" + "generated_at": "2026-02-19T13:36:00.421Z" } } \ No newline at end of file diff --git a/new-api-details/topics/webassembly.json b/new-api-details/topics/webassembly.json index c2746302..730a98af 100644 --- a/new-api-details/topics/webassembly.json +++ b/new-api-details/topics/webassembly.json @@ -1,10 +1,11 @@ { "slug": "webassembly", "name": "webassembly", - "published_at": "2026-01-25T16:06:29.884Z", + "published_at": "2026-02-19T13:36:03.130Z", "organizationCount": 1, "projectCount": 10, "years": [ + 2026, 2025, 2024, 2020, @@ -16,7 +17,7 @@ "slug": "webpack", "name": "webpack", "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "total_projects": 10, "is_currently_active": true, "active_years": [ @@ -24,7 +25,8 @@ 2019, 2020, 2024, - 2025 + 2025, + 2026 ] } ], @@ -48,10 +50,14 @@ "2025": { "organizationCount": 1, "projectCount": 1 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.884Z" + "generated_at": "2026-02-19T13:36:03.130Z" } } \ No newline at end of file diff --git a/new-api-details/topics/webdev.json b/new-api-details/topics/webdev.json index 7d4286f1..ea719e47 100644 --- a/new-api-details/topics/webdev.json +++ b/new-api-details/topics/webdev.json @@ -1,10 +1,11 @@ { "slug": "webdev", "name": "webdev", - "published_at": "2026-01-25T16:06:29.485Z", + "published_at": "2026-02-19T13:36:02.588Z", "organizationCount": 1, "projectCount": 2, "years": [ + 2026, 2025 ], "organizations": [ @@ -12,11 +13,12 @@ "slug": "openms", "name": "OpenMS", "first_year": 2025, - "last_year": 2025, + "last_year": 2026, "total_projects": 2, "is_currently_active": true, "active_years": [ - 2025 + 2025, + 2026 ] } ], @@ -24,10 +26,14 @@ "2025": { "organizationCount": 1, "projectCount": 2 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.485Z" + "generated_at": "2026-02-19T13:36:02.588Z" } } \ No newline at end of file diff --git a/new-api-details/topics/webhook.json b/new-api-details/topics/webhook.json index 5dcd1ea9..4bde6ce8 100644 --- a/new-api-details/topics/webhook.json +++ b/new-api-details/topics/webhook.json @@ -1,10 +1,11 @@ { "slug": "webhook", "name": "webhook", - "published_at": "2026-01-25T16:06:28.654Z", + "published_at": "2026-02-19T13:36:00.985Z", "organizationCount": 1, "projectCount": 58, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "cgal-project", "name": "CGAL Project", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 58, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.654Z" + "generated_at": "2026-02-19T13:36:00.985Z" } } \ No newline at end of file diff --git a/new-api-details/topics/webpack.json b/new-api-details/topics/webpack.json index f3132085..9c8a4023 100644 --- a/new-api-details/topics/webpack.json +++ b/new-api-details/topics/webpack.json @@ -1,10 +1,11 @@ { "slug": "webpack", "name": "webpack", - "published_at": "2026-01-25T16:06:29.886Z", + "published_at": "2026-02-19T13:36:03.133Z", "organizationCount": 1, "projectCount": 10, "years": [ + 2026, 2025, 2024, 2020, @@ -16,7 +17,7 @@ "slug": "webpack", "name": "webpack", "first_year": 2018, - "last_year": 2025, + "last_year": 2026, "total_projects": 10, "is_currently_active": true, "active_years": [ @@ -24,7 +25,8 @@ 2019, 2020, 2024, - 2025 + 2025, + 2026 ] } ], @@ -48,10 +50,14 @@ "2025": { "organizationCount": 1, "projectCount": 1 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.886Z" + "generated_at": "2026-02-19T13:36:03.133Z" } } \ No newline at end of file diff --git a/new-api-details/topics/webrtc.json b/new-api-details/topics/webrtc.json index f0695579..ac7bf7f1 100644 --- a/new-api-details/topics/webrtc.json +++ b/new-api-details/topics/webrtc.json @@ -1,10 +1,11 @@ { "slug": "webrtc", "name": "WebRTC", - "published_at": "2026-01-25T16:06:29.221Z", + "published_at": "2026-02-19T13:36:02.052Z", "organizationCount": 2, "projectCount": 32, "years": [ + 2026, 2025, 2024, 2023, @@ -19,7 +20,7 @@ "slug": "jitsi", "name": "Jitsi", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 21, "is_currently_active": true, "active_years": [ @@ -27,7 +28,8 @@ 2018, 2022, 2024, - 2025 + 2025, + 2026 ] }, { @@ -79,10 +81,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.221Z" + "generated_at": "2026-02-19T13:36:02.052Z" } } \ No newline at end of file diff --git a/new-api-details/topics/webvr.json b/new-api-details/topics/webvr.json index 917a56b1..0cfdad96 100644 --- a/new-api-details/topics/webvr.json +++ b/new-api-details/topics/webvr.json @@ -1,10 +1,11 @@ { "slug": "webvr", "name": "webvr", - "published_at": "2026-01-25T16:06:29.286Z", + "published_at": "2026-02-19T13:36:02.196Z", "organizationCount": 1, "projectCount": 75, "years": [ + 2026, 2025, 2024, 2023, @@ -20,7 +21,7 @@ "slug": "liquid-galaxy-project", "name": "Liquid Galaxy project", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 75, "is_currently_active": true, "active_years": [ @@ -32,7 +33,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -72,10 +74,14 @@ "2025": { "organizationCount": 1, "projectCount": 11 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.286Z" + "generated_at": "2026-02-19T13:36:02.196Z" } } \ No newline at end of file diff --git a/new-api-details/topics/wifi.json b/new-api-details/topics/wifi.json index b3d70629..61c1235d 100644 --- a/new-api-details/topics/wifi.json +++ b/new-api-details/topics/wifi.json @@ -1,10 +1,11 @@ { "slug": "wifi", "name": "wifi", - "published_at": "2026-01-25T16:06:29.503Z", + "published_at": "2026-02-19T13:36:01.551Z", "organizationCount": 2, "projectCount": 100, "years": [ + 2026, 2025, 2024, 2023, @@ -23,7 +24,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 74, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -40,7 +41,7 @@ "slug": "openwisp", "name": "OpenWISP", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 26, "is_currently_active": true, "active_years": [ @@ -52,7 +53,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -96,10 +98,14 @@ "2025": { "organizationCount": 2, "projectCount": 10 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.503Z" + "generated_at": "2026-02-19T13:36:01.551Z" } } \ No newline at end of file diff --git a/new-api-details/topics/wiki.json b/new-api-details/topics/wiki.json index 995eb233..d7ff1920 100644 --- a/new-api-details/topics/wiki.json +++ b/new-api-details/topics/wiki.json @@ -1,10 +1,11 @@ { "slug": "wiki", "name": "wiki", - "published_at": "2026-01-25T16:06:29.230Z", + "published_at": "2026-02-19T13:36:02.084Z", "organizationCount": 3, "projectCount": 264, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "kde-community", "name": "KDE Community", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 167, "is_currently_active": true, "active_years": [ @@ -34,16 +35,17 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { "slug": "wikimedia-foundation", "name": "Wikimedia Foundation", "first_year": 2016, - "last_year": 2024, + "last_year": 2026, "total_projects": 85, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -53,7 +55,8 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] }, { @@ -115,10 +118,14 @@ "2025": { "organizationCount": 1, "projectCount": 15 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.230Z" + "generated_at": "2026-02-19T13:36:02.084Z" } } \ No newline at end of file diff --git a/new-api-details/topics/wikimedia.json b/new-api-details/topics/wikimedia.json index 3215a32a..8d8955f6 100644 --- a/new-api-details/topics/wikimedia.json +++ b/new-api-details/topics/wikimedia.json @@ -1,10 +1,11 @@ { "slug": "wikimedia", "name": "wikimedia", - "published_at": "2026-01-25T16:06:29.781Z", + "published_at": "2026-02-19T13:36:03.139Z", "organizationCount": 1, "projectCount": 85, "years": [ + 2026, 2024, 2023, 2022, @@ -20,9 +21,9 @@ "slug": "wikimedia-foundation", "name": "Wikimedia Foundation", "first_year": 2016, - "last_year": 2024, + "last_year": 2026, "total_projects": 85, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -32,7 +33,8 @@ 2021, 2022, 2023, - 2024 + 2024, + 2026 ] } ], @@ -72,10 +74,14 @@ "2024": { "organizationCount": 1, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.781Z" + "generated_at": "2026-02-19T13:36:03.139Z" } } \ No newline at end of file diff --git a/new-api-details/topics/wikipedia.json b/new-api-details/topics/wikipedia.json index fb644824..20d2c8bc 100644 --- a/new-api-details/topics/wikipedia.json +++ b/new-api-details/topics/wikipedia.json @@ -1,10 +1,11 @@ { "slug": "wikipedia", "name": "wikipedia", - "published_at": "2026-01-25T16:06:28.818Z", + "published_at": "2026-02-19T13:36:01.157Z", "organizationCount": 2, "projectCount": 146, "years": [ + 2026, 2025, 2024, 2023, @@ -18,11 +19,11 @@ ], "organizations": [ { - "slug": "dbpedia", - "name": "DBpedia", + "slug": "wikimedia-foundation", + "name": "Wikimedia Foundation", "first_year": 2016, - "last_year": 2025, - "total_projects": 61, + "last_year": 2026, + "total_projects": 85, "is_currently_active": true, "active_years": [ 2016, @@ -34,16 +35,16 @@ 2022, 2023, 2024, - 2025 + 2026 ] }, { - "slug": "wikimedia-foundation", - "name": "Wikimedia Foundation", + "slug": "dbpedia", + "name": "DBpedia", "first_year": 2016, - "last_year": 2024, - "total_projects": 85, - "is_currently_active": false, + "last_year": 2026, + "total_projects": 61, + "is_currently_active": true, "active_years": [ 2016, 2017, @@ -53,7 +54,9 @@ 2021, 2022, 2023, - 2024 + 2024, + 2025, + 2026 ] } ], @@ -97,10 +100,14 @@ "2025": { "organizationCount": 1, "projectCount": 5 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.818Z" + "generated_at": "2026-02-19T13:36:01.157Z" } } \ No newline at end of file diff --git a/new-api-details/topics/window-management.json b/new-api-details/topics/window-management.json index 5b07452f..96867a25 100644 --- a/new-api-details/topics/window-management.json +++ b/new-api-details/topics/window-management.json @@ -1,7 +1,7 @@ { "slug": "window-management", "name": "window management", - "published_at": "2026-01-25T16:06:29.890Z", + "published_at": "2026-02-19T13:36:03.170Z", "organizationCount": 1, "projectCount": 2, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.890Z" + "generated_at": "2026-02-19T13:36:03.170Z" } } \ No newline at end of file diff --git a/new-api-details/topics/window-system.json b/new-api-details/topics/window-system.json index 4e86b711..0ac44c19 100644 --- a/new-api-details/topics/window-system.json +++ b/new-api-details/topics/window-system.json @@ -1,7 +1,7 @@ { "slug": "window-system", "name": "window system", - "published_at": "2026-01-25T16:06:29.773Z", + "published_at": "2026-02-19T13:36:03.124Z", "organizationCount": 1, "projectCount": 1, "years": [ @@ -28,6 +28,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.773Z" + "generated_at": "2026-02-19T13:36:03.124Z" } } \ No newline at end of file diff --git a/new-api-details/topics/windowing-system.json b/new-api-details/topics/windowing-system.json index a6a70e0e..a628886b 100644 --- a/new-api-details/topics/windowing-system.json +++ b/new-api-details/topics/windowing-system.json @@ -1,7 +1,7 @@ { "slug": "windowing-system", "name": "windowing system", - "published_at": "2026-01-25T16:06:29.790Z", + "published_at": "2026-02-19T13:36:03.161Z", "organizationCount": 1, "projectCount": 19, "years": [ @@ -64,6 +64,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.790Z" + "generated_at": "2026-02-19T13:36:03.161Z" } } \ No newline at end of file diff --git a/new-api-details/topics/windowing-systems.json b/new-api-details/topics/windowing-systems.json index c543fdc7..033388f9 100644 --- a/new-api-details/topics/windowing-systems.json +++ b/new-api-details/topics/windowing-systems.json @@ -1,7 +1,7 @@ { "slug": "windowing-systems", "name": "windowing systems", - "published_at": "2026-01-25T16:06:29.792Z", + "published_at": "2026-02-19T13:36:03.165Z", "organizationCount": 1, "projectCount": 19, "years": [ @@ -64,6 +64,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.792Z" + "generated_at": "2026-02-19T13:36:03.165Z" } } \ No newline at end of file diff --git a/new-api-details/topics/windows.json b/new-api-details/topics/windows.json index f100c56c..26751bb9 100644 --- a/new-api-details/topics/windows.json +++ b/new-api-details/topics/windows.json @@ -1,7 +1,7 @@ { "slug": "windows", "name": "windows", - "published_at": "2026-01-25T16:06:29.586Z", + "published_at": "2026-02-19T13:36:02.782Z", "organizationCount": 2, "projectCount": 16, "years": [ @@ -75,6 +75,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.586Z" + "generated_at": "2026-02-19T13:36:02.782Z" } } \ No newline at end of file diff --git a/new-api-details/topics/wireguard.json b/new-api-details/topics/wireguard.json index c95a2790..b346980b 100644 --- a/new-api-details/topics/wireguard.json +++ b/new-api-details/topics/wireguard.json @@ -1,10 +1,11 @@ { "slug": "wireguard", "name": "wireguard", - "published_at": "2026-01-25T16:06:29.699Z", + "published_at": "2026-02-19T13:36:02.936Z", "organizationCount": 1, "projectCount": 137, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "the-linux-foundation", "name": "The Linux Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 137, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 21 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.699Z" + "generated_at": "2026-02-19T13:36:02.936Z" } } \ No newline at end of file diff --git a/new-api-details/topics/wireless-communication.json b/new-api-details/topics/wireless-communication.json index 7441b544..b1ac6ed9 100644 --- a/new-api-details/topics/wireless-communication.json +++ b/new-api-details/topics/wireless-communication.json @@ -1,10 +1,11 @@ { "slug": "wireless-communication", "name": "wireless communication", - "published_at": "2026-01-25T16:06:29.058Z", + "published_at": "2026-02-19T13:36:01.696Z", "organizationCount": 1, "projectCount": 18, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "gnu-radio", "name": "GNU Radio", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 18, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 4 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.058Z" + "generated_at": "2026-02-19T13:36:01.696Z" } } \ No newline at end of file diff --git a/new-api-details/topics/wireless-communications.json b/new-api-details/topics/wireless-communications.json index 73ebca6e..054dda75 100644 --- a/new-api-details/topics/wireless-communications.json +++ b/new-api-details/topics/wireless-communications.json @@ -1,10 +1,11 @@ { "slug": "wireless-communications", "name": "wireless communications", - "published_at": "2026-01-25T16:06:29.065Z", + "published_at": "2026-02-19T13:36:01.562Z", "organizationCount": 2, "projectCount": 92, "years": [ + 2026, 2025, 2024, 2023, @@ -23,7 +24,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 74, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -40,7 +41,7 @@ "slug": "gnu-radio", "name": "GNU Radio", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 18, "is_currently_active": true, "active_years": [ @@ -53,7 +54,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -97,10 +99,14 @@ "2025": { "organizationCount": 2, "projectCount": 9 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.065Z" + "generated_at": "2026-02-19T13:36:01.563Z" } } \ No newline at end of file diff --git a/new-api-details/topics/wireless-networks.json b/new-api-details/topics/wireless-networks.json index 502fffa3..9e91f64f 100644 --- a/new-api-details/topics/wireless-networks.json +++ b/new-api-details/topics/wireless-networks.json @@ -1,10 +1,11 @@ { "slug": "wireless-networks", "name": "wireless networks", - "published_at": "2026-01-25T16:06:29.506Z", + "published_at": "2026-02-19T13:36:01.565Z", "organizationCount": 2, "projectCount": 100, "years": [ + 2026, 2025, 2024, 2023, @@ -23,7 +24,7 @@ "first_year": 2016, "last_year": 2025, "total_projects": 74, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2016, 2017, @@ -40,7 +41,7 @@ "slug": "openwisp", "name": "OpenWISP", "first_year": 2017, - "last_year": 2025, + "last_year": 2026, "total_projects": 26, "is_currently_active": true, "active_years": [ @@ -52,7 +53,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -96,10 +98,14 @@ "2025": { "organizationCount": 2, "projectCount": 10 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.506Z" + "generated_at": "2026-02-19T13:36:01.565Z" } } \ No newline at end of file diff --git a/new-api-details/topics/wireless.json b/new-api-details/topics/wireless.json index 1778db16..9fd38f3e 100644 --- a/new-api-details/topics/wireless.json +++ b/new-api-details/topics/wireless.json @@ -1,10 +1,11 @@ { "slug": "wireless", "name": "wireless", - "published_at": "2026-01-25T16:06:29.500Z", + "published_at": "2026-02-19T13:36:01.555Z", "organizationCount": 3, "projectCount": 237, "years": [ + 2026, 2025, 2024, 2023, @@ -18,36 +19,38 @@ ], "organizations": [ { - "slug": "freifunk", - "name": "freifunk", + "slug": "the-linux-foundation", + "name": "The Linux Foundation", "first_year": 2016, - "last_year": 2025, - "total_projects": 74, + "last_year": 2026, + "total_projects": 137, "is_currently_active": true, "active_years": [ 2016, 2017, 2018, 2019, + 2020, 2021, 2022, 2023, 2024, - 2025 + 2025, + 2026 ] }, { - "slug": "openwisp", - "name": "OpenWISP", - "first_year": 2017, + "slug": "freifunk", + "name": "freifunk", + "first_year": 2016, "last_year": 2025, - "total_projects": 26, - "is_currently_active": true, + "total_projects": 74, + "is_currently_active": false, "active_years": [ + 2016, 2017, 2018, 2019, - 2020, 2021, 2022, 2023, @@ -56,14 +59,13 @@ ] }, { - "slug": "the-linux-foundation", - "name": "The Linux Foundation", - "first_year": 2016, - "last_year": 2025, - "total_projects": 137, + "slug": "openwisp", + "name": "OpenWISP", + "first_year": 2017, + "last_year": 2026, + "total_projects": 26, "is_currently_active": true, "active_years": [ - 2016, 2017, 2018, 2019, @@ -72,7 +74,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -116,10 +119,14 @@ "2025": { "organizationCount": 3, "projectCount": 31 + }, + "2026": { + "organizationCount": 2, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.500Z" + "generated_at": "2026-02-19T13:36:01.555Z" } } \ No newline at end of file diff --git a/new-api-details/topics/women-in-open-source.json b/new-api-details/topics/women-in-open-source.json index ed88471e..589ce031 100644 --- a/new-api-details/topics/women-in-open-source.json +++ b/new-api-details/topics/women-in-open-source.json @@ -1,7 +1,7 @@ { "slug": "women-in-open-source", "name": "women in open source", - "published_at": "2026-01-25T16:06:29.661Z", + "published_at": "2026-02-19T13:36:02.887Z", "organizationCount": 1, "projectCount": 30, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.661Z" + "generated_at": "2026-02-19T13:36:02.887Z" } } \ No newline at end of file diff --git a/new-api-details/topics/women-in-tech.json b/new-api-details/topics/women-in-tech.json index 2392c823..84474fa8 100644 --- a/new-api-details/topics/women-in-tech.json +++ b/new-api-details/topics/women-in-tech.json @@ -1,7 +1,7 @@ { "slug": "women-in-tech", "name": "women in tech", - "published_at": "2026-01-25T16:06:29.658Z", + "published_at": "2026-02-19T13:36:02.885Z", "organizationCount": 1, "projectCount": 30, "years": [ @@ -34,6 +34,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.658Z" + "generated_at": "2026-02-19T13:36:02.885Z" } } \ No newline at end of file diff --git a/new-api-details/topics/workflows.json b/new-api-details/topics/workflows.json index 08fc4948..2d160876 100644 --- a/new-api-details/topics/workflows.json +++ b/new-api-details/topics/workflows.json @@ -1,10 +1,11 @@ { "slug": "workflows", "name": "workflows", - "published_at": "2026-01-25T16:06:28.839Z", + "published_at": "2026-02-19T13:36:01.178Z", "organizationCount": 3, "projectCount": 86, "years": [ + 2026, 2025, 2024, 2023, @@ -17,13 +18,30 @@ 2016 ], "organizations": [ + { + "slug": "open-bioinformatics-foundation-obf", + "name": "Open Bioinformatics Foundation (OBF)", + "first_year": 2016, + "last_year": 2022, + "total_projects": 45, + "is_currently_active": false, + "active_years": [ + 2016, + 2017, + 2018, + 2019, + 2020, + 2021, + 2022 + ] + }, { "slug": "department-of-biomedical-informatics-emory-university", "name": "Department of Biomedical Informatics, Emory University", "first_year": 2021, "last_year": 2025, "total_projects": 27, - "is_currently_active": true, + "is_currently_active": false, "active_years": [ 2021, 2022, @@ -36,30 +54,14 @@ "slug": "genome-assembly-and-annotation", "name": "Genome Assembly and Annotation", "first_year": 2021, - "last_year": 2023, + "last_year": 2026, "total_projects": 14, - "is_currently_active": false, + "is_currently_active": true, "active_years": [ 2021, 2022, - 2023 - ] - }, - { - "slug": "open-bioinformatics-foundation-obf", - "name": "Open Bioinformatics Foundation (OBF)", - "first_year": 2016, - "last_year": 2022, - "total_projects": 45, - "is_currently_active": false, - "active_years": [ - 2016, - 2017, - 2018, - 2019, - 2020, - 2021, - 2022 + 2023, + 2026 ] } ], @@ -103,10 +105,14 @@ "2025": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.839Z" + "generated_at": "2026-02-19T13:36:01.178Z" } } \ No newline at end of file diff --git a/new-api-details/topics/xmpp.json b/new-api-details/topics/xmpp.json index fac12aee..567faa71 100644 --- a/new-api-details/topics/xmpp.json +++ b/new-api-details/topics/xmpp.json @@ -1,7 +1,7 @@ { "slug": "xmpp", "name": "xmpp", - "published_at": "2026-01-25T16:06:29.797Z", + "published_at": "2026-02-19T13:36:03.154Z", "organizationCount": 1, "projectCount": 11, "years": [ @@ -58,6 +58,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.797Z" + "generated_at": "2026-02-19T13:36:03.154Z" } } \ No newline at end of file diff --git a/new-api-details/topics/xr.json b/new-api-details/topics/xr.json index 0d6147c9..54a4b98d 100644 --- a/new-api-details/topics/xr.json +++ b/new-api-details/topics/xr.json @@ -1,7 +1,7 @@ { "slug": "xr", "name": "xr", - "published_at": "2026-01-25T16:06:29.367Z", + "published_at": "2026-02-19T13:36:02.345Z", "organizationCount": 2, "projectCount": 2, "years": [ @@ -44,6 +44,6 @@ }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.367Z" + "generated_at": "2026-02-19T13:36:02.345Z" } } \ No newline at end of file diff --git a/new-api-details/topics/zephyr.json b/new-api-details/topics/zephyr.json index 8c3a328c..6489409f 100644 --- a/new-api-details/topics/zephyr.json +++ b/new-api-details/topics/zephyr.json @@ -1,10 +1,11 @@ { "slug": "zephyr", "name": "zephyr", - "published_at": "2026-01-25T16:06:29.701Z", + "published_at": "2026-02-19T13:36:02.938Z", "organizationCount": 1, "projectCount": 137, "years": [ + 2026, 2025, 2024, 2023, @@ -21,7 +22,7 @@ "slug": "the-linux-foundation", "name": "The Linux Foundation", "first_year": 2016, - "last_year": 2025, + "last_year": 2026, "total_projects": 137, "is_currently_active": true, "active_years": [ @@ -34,7 +35,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -78,10 +80,14 @@ "2025": { "organizationCount": 1, "projectCount": 21 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:29.701Z" + "generated_at": "2026-02-19T13:36:02.938Z" } } \ No newline at end of file diff --git a/new-api-details/topics/zero-downtime.json b/new-api-details/topics/zero-downtime.json index 2059118e..c7f9f82f 100644 --- a/new-api-details/topics/zero-downtime.json +++ b/new-api-details/topics/zero-downtime.json @@ -1,10 +1,11 @@ { "slug": "zero-downtime", "name": "zero-downtime", - "published_at": "2026-01-25T16:06:28.682Z", + "published_at": "2026-02-19T13:36:01.090Z", "organizationCount": 1, "projectCount": 18, "years": [ + 2026, 2025, 2024, 2023, @@ -18,7 +19,7 @@ "slug": "criu", "name": "CRIU", "first_year": 2019, - "last_year": 2025, + "last_year": 2026, "total_projects": 18, "is_currently_active": true, "active_years": [ @@ -28,7 +29,8 @@ 2022, 2023, 2024, - 2025 + 2025, + 2026 ] } ], @@ -60,10 +62,14 @@ "2025": { "organizationCount": 1, "projectCount": 3 + }, + "2026": { + "organizationCount": 1, + "projectCount": 0 } }, "meta": { "version": 1, - "generated_at": "2026-01-25T16:06:28.682Z" + "generated_at": "2026-02-19T13:36:01.090Z" } } \ No newline at end of file diff --git a/new-api-details/yearly/google-summer-of-code-2026-organizations-raw.json b/new-api-details/yearly/google-summer-of-code-2026-organizations-raw.json new file mode 100644 index 00000000..6f8272f1 --- /dev/null +++ b/new-api-details/yearly/google-summer-of-code-2026-organizations-raw.json @@ -0,0 +1,11430 @@ +[ + { + "name": "The Libreswan Project", + "slug": "the-libreswan-project", + "logo_url": "https://summerofcode.withgoogle.com/media/org/the-libreswan-project/k7boxaxvirkfj1ti-360.png", + "website_url": "https://libreswan.org", + "tagline": "Encrypting the Internet with IKE / IPsec VPN", + "license": "GPL-3.0", + "categories": [ + "Security", + "Infrastructure and cloud" + ], + "contributor_guidance_url": "https://github.com/libreswan/libreswan/wiki/GSoC-Contributor-Guidance", + "description": "Libreswan implements the IKE and IPsec standards for VPN. These standards have been created and are still maintained at the Internet Engineering Task Force (IETF) in the IPsecME Working Group. Libreswan is used as a remote access VPN as well as site-to-site and cloud encryption.", + "tech_tags": [ + "c", + "kernel", + "nss", + "RFCs", + "libevent" + ], + "topic_tags": [ + "vpn", + "ipsec", + "ikev2" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://web.libera.chat/#libreswan" + }, + { + "name": "email", + "value": "gsoc@libreswan.org" + }, + { + "name": "mailingList", + "value": "swan@lists.libreswan.org" + }, + { + "name": "twitter", + "value": "https://twitter.com/libreswan/" + } + ], + "source_code": "https://github.com/libreswan/libreswan/", + "ideas_link": "https://github.com/libreswan/libreswan/wiki/GSoC-2026-Code-Project-Ideas", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://web.libera.chat/#libreswan" + }, + { + "name": "email", + "value": "gsoc@libreswan.org" + }, + { + "name": "mailingList", + "value": "swan@lists.libreswan.org" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/libreswan/" + } + ] + }, + { + "name": "JSON Schema", + "slug": "json-schema", + "logo_url": "https://summerofcode.withgoogle.com/media/org/json-schema/d3qfjxegxnlrfysi.png", + "website_url": "https://json-schema.org/", + "tagline": "We enable the reliable use of JSON data format.", + "license": "AFL-3.0", + "categories": [ + "Data", + "Programming languages" + ], + "contributor_guidance_url": "https://github.com/json-schema-org/community/blob/main/programs/mentoring/gsoc/CONTRIBUTOR-GUIDANCE.md", + "description": "JSON Schema is a vocabulary that allows you to annotate and validate JSON documents \n\nWe are a community JSON Schema enthusiast dedicated to maintain, evolve and promote the JSON Schema specification. The Community consists of individuals, community members, tooling builders, schema designers, researchers, and representatives from companies and organizations who use or are considering using JSON Schema.", + "tech_tags": [ + "python", + "javascript", + "typescript", + ".net", + "JSON Schema" + ], + "topic_tags": [ + "web", + "apis", + "standards", + "data validation", + "developer tooling" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://json-schema.org/slack" + }, + { + "name": "email", + "value": "info@json-schema.org" + }, + { + "name": "twitter", + "value": "https://twitter.com/jsonschema" + } + ], + "source_code": "https://github.com/json-schema-org", + "ideas_link": "https://github.com/json-schema-org/community/blob/main/programs/mentoring/gsoc/gsoc-2026.md", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://json-schema.org/slack" + }, + { + "name": "email", + "value": "info@json-schema.org" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/jsonschema" + } + ] + }, + { + "name": "Neovim", + "slug": "neovim", + "logo_url": "https://summerofcode.withgoogle.com/media/org/neovim/wsjrusphcrjmo5tf-360.png", + "website_url": "https://neovim.io/", + "tagline": "hyperextensible Vim-based text editor", + "license": "Apache-2.0", + "categories": [ + "End user applications", + "Development tools" + ], + "contributor_guidance_url": "https://github.com/neovim/neovim/wiki/Google-Summer-of-Code", + "description": "Neovim is a fork of the Vim text editor, designed for extensibility and usability.", + "tech_tags": [ + "c", + "lua" + ], + "topic_tags": [ + "ai", + "editor", + "text-editor" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://matrix.to/#/#neovim:matrix.org" + }, + { + "name": "mailingList", + "value": "https://github.com/neovim/neovim/discussions" + }, + { + "name": "twitter", + "value": "https://x.com/neovim" + }, + { + "name": "twitter", + "value": "https://bsky.app/profile/neovim.io" + } + ], + "source_code": "https://github.com/neovim/neovim", + "ideas_link": "https://github.com/neovim/neovim/wiki/Google-Summer-of-Code", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://matrix.to/#/#neovim:matrix.org" + }, + { + "name": "mailingList", + "value": "https://github.com/neovim/neovim/discussions" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://x.com/neovim" + }, + { + "name": "twitter", + "value": "https://bsky.app/profile/neovim.io" + } + ] + }, + { + "name": "ArduPilot", + "slug": "ardupilot", + "logo_url": "https://summerofcode.withgoogle.com/media/org/ardupilot/oveqvcxkpgkuv8wq-360.png", + "website_url": "https://ardupilot.org/", + "tagline": "World's most advanced autonomous vehicle software", + "license": "GPL-3.0", + "categories": [ + "Science and medicine", + "End user applications" + ], + "contributor_guidance_url": "https://ardupilot.org/dev/docs/gsoc.html", + "description": "ArduPilot is the world's most widely used open source flight code software for unmanned autonomous vehicles including planes, multicopters, helicopters, cars, boats, submarines, blimps, antenna trackers and much more.\n\nWritten primarily in C++, ArduPilot supports over 100 different types of autopilot hardware including the well known Pixhawk autopilot.\n\nOur team motto, \"Versatile, Trusted, Open\" reflects our team's aim to provide high quality autopilot software that reliably supports a huge variety of frames, sensors and use cases. The software is open but so is the team, always welcoming of new contributors whether they be software developers, wiki documentors, testers or users.", + "tech_tags": [ + "python", + "lua", + "c++", + "pixhawk" + ], + "topic_tags": [ + "robotics", + "ai", + "Drone", + "autonomous vehicle", + "unmanned vehicle" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://discord.com/channels/674039678562861068/805671364873682954" + }, + { + "name": "mailingList", + "value": "https://discuss.ardupilot.org/c/google-summer-of-code/131" + }, + { + "name": "facebook", + "value": "https://www.facebook.com/groups/ArduPilot.org/" + }, + { + "name": "twitter", + "value": "https://twitter.com/ardupilotteam?lang=en" + } + ], + "source_code": "https://github.com/ArduPilot", + "ideas_link": "https://ardupilot.org/dev/docs/gsoc-ideas-list.html", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://discord.com/channels/674039678562861068/805671364873682954" + }, + { + "name": "mailingList", + "value": "https://discuss.ardupilot.org/c/google-summer-of-code/131" + } + ], + "social_comm_methods": [ + { + "name": "facebook", + "value": "https://www.facebook.com/groups/ArduPilot.org/" + }, + { + "name": "twitter", + "value": "https://twitter.com/ardupilotteam?lang=en" + } + ] + }, + { + "name": "Kornia", + "slug": "kornia", + "logo_url": "https://summerofcode.withgoogle.com/media/org/kornia/p4e366l478clqvvg-360.png", + "website_url": "https://docs.rs/kornia", + "tagline": "Advancing Computer Vision & Spatial AI, Openly", + "license": "Apache-2.0", + "categories": [ + "Programming languages", + "Artificial Intelligence" + ], + "contributor_guidance_url": "https://github.com/kornia/kornia-rs/wiki/Google-Sumer-of-Code-Application", + "description": "Kornia AI is a non-profit organization advancing Spatial Artificial Intelligence through open collaboration. Founded in 2018 and registered as a non-profit in 2023, Kornia AI is supported by a global contributor community. The organization began with Kornia, a widely adopted Python library for Differentiable Computer Vision (>2M downloads/month, 400+ Google Scholar citations).\n In recent years, the core maintainers have shifted focus to kornia-rs, a native Rust stack for high‑performance 3D computer vision and spatial AI. Our direction emphasizes robotics and edge deployment: safe, memory‑efficient, low‑latency pipelines that run on constrained devices (e.g., embedded/Jetson‑class hardware). kornia-rs is gaining traction in the open-source community and is used by leading companies such as Farm-ng, Rerun.io, and Copper Robotics, who have featured the project on their platforms.", + "tech_tags": [ + "cuda", + "rust", + "deep learning", + "data science", + "Spatial AI" + ], + "topic_tags": [ + "machine learning", + "artificial intelligence", + "robotics", + "computer vision", + "3D Geometry" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://discord.gg/HfnywwpBnD" + }, + { + "name": "email", + "value": "hello@kornia.org" + }, + { + "name": "twitter", + "value": "https://twitter.com/kornia_foss" + } + ], + "source_code": "https://github.com/kornia/kornia-rs", + "ideas_link": "https://github.com/kornia/kornia-rs/wiki/%5B2026%5D-Google-Sumer-of-Code-Application", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://discord.gg/HfnywwpBnD" + }, + { + "name": "email", + "value": "hello@kornia.org" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/kornia_foss" + } + ] + }, + { + "name": "Meshery", + "slug": "meshery", + "logo_url": "https://summerofcode.withgoogle.com/media/org/meshery/4ywkbdszwd1sw2rq-360.png", + "website_url": "https://meshery.io", + "tagline": "the extensible, collaborative, Kubernetes manager", + "license": "Apache-2.0", + "categories": [ + "Infrastructure and cloud", + "Development tools" + ], + "contributor_guidance_url": "https://docs.meshery.io/project/contributing", + "description": "As a self-service engineering platform, Meshery enables collaborative design and operation of cloud and cloud native infrastructure.\n\nMeshery is for all cloud and cloud native infrastructure. Kubernetes-centric. Kubernetes not required.\n\nInfrastructure diversity is a reality for any enterprise. Whether you’re running a single Kubernetes cluster or multiple Kubernetes clusters, on one cloud or multiple clouds, you’ll find that Meshery supports your infrastructure diversity (or lack thereof).\n\nMeshery is for engineering teams. Whether you are a Platform Engineer, Site Reliability Engineer, DevOps Engineer, Developer, or Operator, Meshery provides a platform for you to collaborate on the design and operation of your cloud native infrastructure.\n\nWhether making a Day 0 adoption choice, a Day 1 configuration and provisioning, or maintaining a Day 2 deployment, Meshery has useful capabilities in either circumstance. Targeted audience for Meshery project would be any technology operators that leverage Cloud and cloud native infrastructure.\n\nMeshery is like Google Docs for DevOps. Using Meshery extensions you can freely collaborate across projects and team with multi-player infrastructure design and operation.\n\nMeshery enables cloud native best practices with design patterns and the Meshery Catalog. Through Models, Meshery describes infrastructure under management, enabling you to define cloud native designs and patterns and then to export those designs and share within the Meshery Catalog.", + "tech_tags": [ + "javascript", + "golang", + "kubernetes", + "ai", + "visual design" + ], + "topic_tags": [ + "collaboration", + "devops", + "Platform Engineering", + "cloud native infrastructure", + "infrastructure as design" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://slack.meshery.io" + }, + { + "name": "email", + "value": "https://meshery.io/subscribe" + }, + { + "name": "mailingList", + "value": "http://discuss.meshery.io" + }, + { + "name": "blog", + "value": "https://meshery.io/blog" + }, + { + "name": "twitter", + "value": "https://x.com/mesheryio" + }, + { + "name": "facebook", + "value": "https://www.linkedin.com/showcase/meshery" + } + ], + "source_code": "https://github.com/meshery", + "ideas_link": "https://meshery.io/programs/gsoc/2026", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://slack.meshery.io" + }, + { + "name": "email", + "value": "https://meshery.io/subscribe" + }, + { + "name": "mailingList", + "value": "http://discuss.meshery.io" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://meshery.io/blog" + }, + { + "name": "twitter", + "value": "https://x.com/mesheryio" + }, + { + "name": "facebook", + "value": "https://www.linkedin.com/showcase/meshery" + } + ] + }, + { + "name": "Haiku", + "slug": "haiku", + "logo_url": "https://summerofcode.withgoogle.com/media/org/haiku/lnrgd3agfl2kogbo-360.png", + "website_url": "https://www.haiku-os.org", + "tagline": "Operating system that targets personal computing.", + "license": "MIT", + "categories": [ + "Operating systems", + "End user applications" + ], + "contributor_guidance_url": "https://www.haiku-os.org/community/gsoc/2026/contributors", + "description": "Haiku is a fast, efficient, easy to use and lean open source operating system inspired by the BeOS that specifically targets personal computing.\n\nHaiku is not a Linux distribution, nor does it use the Linux kernel. Haiku is the spiritual successor to BeOS and it is derived from the NewOS kernel, which was authored by Travis Geiselbrecht (geist), who was formerly employed by Be Inc. — the developers of BeOS.\n\nLinux-based distributions stack up software – the Linux kernel, the X Window System, and various DEs with disparate toolkits such as GTK+ and Qt – that do not necessarily share the same guidelines and/or goals. This lack of consistency and overall vision manifests itself in increased complexity, insufficient integration, and inefficient solutions, making the use of your computer more complicated than it should actually be.\n\nInstead, Haiku has a single focus on personal computing and is driven by a unified vision for the whole OS. That, we believe, enables Haiku to provide a leaner, cleaner and more efficient system capable of providing a better user experience that is simple and uniform throughout.", + "tech_tags": [ + "c++", + "posix", + "unix" + ], + "topic_tags": [ + "desktop", + "kernel", + "network", + "media", + "gui" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://www.haiku-os.org/community/irc" + }, + { + "name": "mailingList", + "value": "https://discuss.haiku-os.org" + }, + { + "name": "mailingList", + "value": "https://www.haiku-os.org/community/ml" + }, + { + "name": "blog", + "value": "https://www.haiku-os.org/blog/" + } + ], + "source_code": "https://www.haiku-os.org/guides/building/get-source-git", + "ideas_link": "https://www.haiku-os.org/community/gsoc/2026/ideas", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://www.haiku-os.org/community/irc" + }, + { + "name": "mailingList", + "value": "https://discuss.haiku-os.org" + }, + { + "name": "mailingList", + "value": "https://www.haiku-os.org/community/ml" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://www.haiku-os.org/blog/" + } + ] + }, + { + "name": "OpenELIS Global", + "slug": "openelis-global", + "logo_url": "https://summerofcode.withgoogle.com/media/org/openelis-global/k6rnzk3hcktzabst-360.png", + "website_url": "https://openelis-global.org/", + "tagline": "Empowering labs to Ensure Quality Health Care", + "license": "MPL-2.0", + "categories": [ + "Science and medicine" + ], + "contributor_guidance_url": "https://uwdigi.atlassian.net/wiki/spaces/OG/pages/245694473/GSoC+Guidelines+for+Students", + "description": "OpenELIS Global (Open Enterprise laboratory Information System) is an open-source, standards-based, and secure lab information system for labs of any size and need.\n\nIt is an enterprise-level laboratory information system built on open-source web-based technologies that has been tailored for low- and middle-income country public health laboratories.\n\nThe software serves as both an effective laboratory software solution and a business process framework. It supports the effective functioning of public health laboratories for best laboratory practice and accreditation.", + "tech_tags": [ + "postgresql", + "javascript", + "java", + "react", + "spring" + ], + "topic_tags": [ + "Health Care", + "Laboratory Information System" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://talk.openelis-global.org/" + }, + { + "name": "chat", + "value": "https://digi-team-uw.slack.com/archives/CFUH9HLUF" + }, + { + "name": "blog", + "value": "https://openelis-global.org/blog/" + } + ], + "source_code": "https://github.com/I-TECH-UW/OpenELIS-Global-2", + "ideas_link": "https://uwdigi.atlassian.net/wiki/spaces/OG/pages/931594241/GSoC+2026", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://talk.openelis-global.org/" + }, + { + "name": "chat", + "value": "https://digi-team-uw.slack.com/archives/CFUH9HLUF" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://openelis-global.org/blog/" + } + ] + }, + { + "name": "GNU Compiler Collection (GCC)", + "slug": "gnu-compiler-collection-gcc", + "logo_url": "https://summerofcode.withgoogle.com/media/org/gnu-compiler-collection-gcc/kpspl59nyj0hoxlr-360.png", + "website_url": "https://gcc.gnu.org/", + "tagline": "GNU compilers", + "license": "GPL-3.0", + "categories": [ + "Programming languages", + "Development tools" + ], + "contributor_guidance_url": "https://gcc.gnu.org/wiki/SummerOfCode", + "description": "The GNU Compiler Collection (GCC) is an optimizing compiler produced by the GNU Project supporting various programming languages, hardware architectures and operating systems. It includes front-ends for C, C++, D, Objective-C, Fortran, Ada, and Go, as well as libraries for these languages (such as libgcc and libstdc++). Modula-2, Rust, Cobol, and Algol 68 front-ends are under development too. GCC includes a Static Analyzer, and supports OpenMP, OpenACC with code offloading to Nvidia and AMD GPUs.", + "tech_tags": [ + "c/c++", + "gnu make", + "gnu autotools" + ], + "topic_tags": [ + "compilers", + "developer tools", + "toolchain", + "openmp", + "link time optimization" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://gcc.gnu.org/mailman/listinfo/gcc" + }, + { + "name": "chat", + "value": "https://gcc.gnu.org/wiki/GCConIRC" + }, + { + "name": "chat", + "value": "https://gcc-rust.zulipchat.com/login/" + }, + { + "name": "twitter", + "value": "https://twitter.com/gnutools" + } + ], + "source_code": "https://gcc.gnu.org/git.html", + "ideas_link": "https://gcc.gnu.org/wiki/SummerOfCode", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://gcc.gnu.org/mailman/listinfo/gcc" + }, + { + "name": "chat", + "value": "https://gcc.gnu.org/wiki/GCConIRC" + }, + { + "name": "chat", + "value": "https://gcc-rust.zulipchat.com/login/" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/gnutools" + } + ] + }, + { + "name": "Git", + "slug": "git", + "logo_url": "https://summerofcode.withgoogle.com/media/org/git/mbqqznjbaohwgq80-360.png", + "website_url": "https://git-scm.com/", + "tagline": "Fast,Scalable,Distributed revision control system", + "license": "GPL-2.0", + "categories": [ + "Programming languages", + "Development tools" + ], + "contributor_guidance_url": "https://git.github.io/General-Application-Information/", + "description": "Git is the most widely-used revision control system in Open Source. It is a distributed system with an emphasis on speed, data integrity, and support for distributed, non-linear workflows.\n\nMany large and successful projects use Git, including the Linux Kernel, Perl, Eclipse, Gnome, KDE, Qt, Ruby on Rails, Android, PostgreSQL, Debian, and X.org.\n\nThis organization covers projects for Git itself. Other git-based software or services are not covered by this organization.", + "tech_tags": [ + "shell script", + "git", + "c language" + ], + "topic_tags": [ + "version control", + "dvcs" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://git-scm.com/community" + }, + { + "name": "mailingList", + "value": "https://git-scm.com/community" + }, + { + "name": "email", + "value": "git@vger.kernel.org" + }, + { + "name": "twitter", + "value": "https://discord.gg/GRFVkzgxRd" + } + ], + "source_code": "https://github.com/git/git", + "ideas_link": "https://git.github.io/SoC-2026-Ideas/", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://git-scm.com/community" + }, + { + "name": "mailingList", + "value": "https://git-scm.com/community" + }, + { + "name": "email", + "value": "git@vger.kernel.org" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://discord.gg/GRFVkzgxRd" + } + ] + }, + { + "name": "Konflux", + "slug": "konflux", + "logo_url": "https://summerofcode.withgoogle.com/media/org/konflux/7znpk8j83biro6rn.png", + "website_url": "https://konflux-ci.dev/", + "tagline": "Secure software pipelines, the K8s way", + "license": "Apache-2.0", + "categories": [ + "Infrastructure and cloud", + "Development tools" + ], + "contributor_guidance_url": null, + "description": "Konflux is an open source, opinionated Kubernetes-native software factory built on Tekton, focused on software supply chain security. It provides an end-to-end pipeline: hermetic builds from source, cryptographic signing, provenance attestation, vulnerability scanning, policy verification, and release automation. Konflux integrates with the broader supply chain security ecosystem (Sigstore, SLSA, Conforma) and is built by a welcoming community that values collaboration, transparency, and mentorship.\nContributors work with cutting-edge cloud-native technologies and help shape how we solve one of the most critical challenges in modern software delivery.", + "tech_tags": [ + "python", + "go", + "docker", + "kubernetes", + "tekton" + ], + "topic_tags": [ + "cloud-native", + "CI/CD", + "Tekton", + "SLSA", + "supplychain" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://groups.google.com/g/konflux" + }, + { + "name": "chat", + "value": "https://join.slack.com/t/konflux-ci/shared_invite/zt-3g36o0a4x-Dmsy25XEGuBV79S7kd04CA" + }, + { + "name": "blog", + "value": "https://join.slack.com/t/konflux-ci/shared_invite/zt-3g36o0a4x-Dmsy25XEGuBV79S7kd04CA" + } + ], + "source_code": "https://github.com/konflux-ci", + "ideas_link": "https://github.com/konflux-ci/community/wiki/Google-Summer-of-Code-&-Outreachy-Project-Ideas-%E2%80%90-2026", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://groups.google.com/g/konflux" + }, + { + "name": "chat", + "value": "https://join.slack.com/t/konflux-ci/shared_invite/zt-3g36o0a4x-Dmsy25XEGuBV79S7kd04CA" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://join.slack.com/t/konflux-ci/shared_invite/zt-3g36o0a4x-Dmsy25XEGuBV79S7kd04CA" + } + ] + }, + { + "name": "FLARE", + "slug": "flare", + "logo_url": "https://summerofcode.withgoogle.com/media/org/flare/6so0wjs76qeewe9v-360.png", + "website_url": "https://cloud.google.com/security/flare", + "tagline": "Industry leading malware analysis", + "license": "Apache-2.0", + "categories": [ + "Security", + "Artificial Intelligence" + ], + "contributor_guidance_url": "https://github.com/mandiant/flare-gsoc/blob/2026/doc/contributor-guidance.md", + "description": "The Mandiant FLARE team is a collection of about 40 reverse engineers that analyze malware in support of threat intel, incident response, and computer forensic investigations. We spend our days using disassemblers, debuggers, decompilers, and emulators to figure out what malware does and how we can contain it. We’re known for delivering training sessions that share our experience and releasing open source software that automates the boring things. If you have even a passing interest in reverse engineering or malware analysis, reach out so that we can chat!", + "tech_tags": [ + "python", + "Sandbox", + "ida-pro" + ], + "topic_tags": [ + "emulation", + "disassembly", + "decompilation", + "malware-analysis", + "reverse-engineering" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://github.com/mandiant/flare-gsoc/discussions" + }, + { + "name": "twitter", + "value": "https://x.com/Mandiant" + }, + { + "name": "blog", + "value": "https://cloud.google.com/blog/topics/threat-intelligence/" + } + ], + "source_code": "https://github.com/search?q=topic%3Agsoc-2026+org%3Amandiant&type=Repositories", + "ideas_link": "https://github.com/mandiant/flare-gsoc/blob/2026/doc/project-ideas.md", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://github.com/mandiant/flare-gsoc/discussions" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://x.com/Mandiant" + }, + { + "name": "blog", + "value": "https://cloud.google.com/blog/topics/threat-intelligence/" + } + ] + }, + { + "name": "gprMax", + "slug": "gprmax", + "logo_url": "https://summerofcode.withgoogle.com/media/org/gprmax/vm8kavyxz3csja8f-360.png", + "website_url": "https://www.gprmax.com", + "tagline": "Simulating electromagnetic wave propagation", + "license": "GPL-3.0", + "categories": [ + "Science and medicine", + "Artificial Intelligence" + ], + "contributor_guidance_url": "https://github.com/gprMax/GSoC/blob/main/project-template.md", + "description": "gprMax is open source software that simulates electromagnetic wave propagation. It uses Yee's algorithm to solve Maxwell’s equations in 3D using the Finite-Difference Time-Domain (FDTD) method.\n\nIt is designed for simulating Ground Penetrating Radar (GPR) and is used to model electromagnetic wave propagation in fields such as engineering, geophysics, archaeology, and medicine. There are a wide range of applications from assessing infrastructure such as bridges and roads, locating buried utilities, mapping glaciers, finding anti-personnel landmines, to detecting tumours in the human body, and exploring the sub-surface of Mars and the Moon.\n\ngprMax is command-line-driven software written in Python with performance-critical parts written in Cython. It does not currently feature a graphical user interface (GUI) which allows it to be very flexible and scriptable software that can run in high-performance computing (HPC) environments, i.e. on supercomputers.\n\ngprMax can be run on either CPU or GPU. The CPU solver has been parallelised using OpenMP which enables it to run on multi-core CPUs. The GPU solver has been developed using the NVIDIA CUDA programming model. gprMax also features a Messaging Passing Interface (MPI) task farm, which can operate with CPU nodes or multiple GPUs.", + "tech_tags": [ + "python", + "cuda", + "openmp", + "mpi", + "opencl" + ], + "topic_tags": [ + "science", + "engineering", + "geophysics", + "electromagnetics", + "ground penetrating radar" + ], + "contact_links": [ + { + "name": "email", + "value": "info@gprmax.com" + }, + { + "name": "chat", + "value": "https://gprmax.zulipchat.com/join/gkhcp65r3zin6rfoqdhhhbu3/" + }, + { + "name": "twitter", + "value": "https://twitter.com/gprmax_fdtd" + }, + { + "name": "facebook", + "value": "https://www.facebook.com/gprmax/" + } + ], + "source_code": "https://github.com/gprMax/gprMax", + "ideas_link": "https://github.com/gprMax/GSoC/blob/main/project-ideas-2026.md", + "direct_comm_methods": [ + { + "name": "email", + "value": "info@gprmax.com" + }, + { + "name": "chat", + "value": "https://gprmax.zulipchat.com/join/gkhcp65r3zin6rfoqdhhhbu3/" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/gprmax_fdtd" + }, + { + "name": "facebook", + "value": "https://www.facebook.com/gprmax/" + } + ] + }, + { + "name": "LibreOffice", + "slug": "libreoffice", + "logo_url": "https://summerofcode.withgoogle.com/media/org/libreoffice/3g60m1gvsyzwzvvk-360.png", + "website_url": "https://www.libreoffice.org/", + "tagline": "LibreOffice is a free and open source office suite", + "license": "MPL-2.0", + "categories": [ + "End user applications" + ], + "contributor_guidance_url": "https://wiki.documentfoundation.org/Development/GSoC/2025#How_to_apply", + "description": "LibreOffice is a modern Free & Open Source Office suite, one of the largest open source projects, and used by millions of users worldwide. LibreOffice is compatible with many file formats like Microsoft® Word, Excel, PowerPoint and Publisher. At its heart though, LibreOffice is built around an open standard, the OpenDocument Format, as its native file format.\nLibreOffice is developed by users who, just like you, believe in the principles of Free Software and in sharing their work with the world in non-restrictive ways. The development of LibreOffice is supported by The Document Foundation which provides the infrastructure for the project.\nWe believe that users should have the freedom to run, copy, distribute, study, change and improve the software that we distribute. While we do offer no-cost downloads of the LibreOffice suite of programs, Free Software is first and foremost a matter of liberty, not price. We campaign for these freedoms because we believe that everyone deserves them.\nThough the members of our community hail from many different backgrounds, we all value personal choice and transparency, which translates practically into wider compatibility, more utility, and no end-user lock-in to a single product. We believe that Free Software can provide better-quality, higher-reliability, increased-security, and greater-flexibility than proprietary alternatives. LibreOffice is a large project (approx. 6MLOC), which makes it interestingly complex, but at the same time, provides a place for all sorts of contribution & skills.\nThe community behind LibreOffice is the heart of the project, without which we would not have the resources to continue developing our software. The passion and drive that every individual brings to the community results in collaborative development that often exceeds our own expectations. With tons of different roles in the project, we invite everyone to join us in our work and help us to make LibreOffice known, prosper, and accessible to all.", + "tech_tags": [ + "python", + "java", + "c++" + ], + "topic_tags": [ + "office suite", + "desktop application", + "end user application" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://wiki.documentfoundation.org/Website/IRC" + }, + { + "name": "mailingList", + "value": "https://wiki.documentfoundation.org/Development/Mailing_List" + }, + { + "name": "twitter", + "value": "https://twitter.com/libreoffice" + } + ], + "source_code": "https://www.libreoffice.org/about-us/source-code/", + "ideas_link": "https://wiki.documentfoundation.org/Development/GSoC/Ideas", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://wiki.documentfoundation.org/Website/IRC" + }, + { + "name": "mailingList", + "value": "https://wiki.documentfoundation.org/Development/Mailing_List" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/libreoffice" + } + ] + }, + { + "name": "IOOS", + "slug": "ioos", + "logo_url": "https://summerofcode.withgoogle.com/media/org/ioos/oe7caipkhwnizoyr-360.png", + "website_url": "https://ioos.noaa.gov/", + "tagline": "Our eyes on the ocean, coasts, and Great Lakes", + "license": "BSD-3-Clause-LBNL", + "categories": [ + "Science and medicine", + "Data" + ], + "contributor_guidance_url": "https://github.com/ioos/gsoc/blob/main/contributor-guidance.md", + "description": "U.S. IOOS is a national and regional partnership working to provide ocean, coastal and Great Lakes observations, data, tools, and forecasts to improve safety, enhance the economy, and protect our environment. Our primary purpose is to provide free and open data about the state of our oceans and Great Lakes to our users. These data are fundamental to understanding the health of our marine ecosystems, to monitor the climate signal as captured in oceanographic conditions, and to provide predictions about the future state of our oceans and coasts.", + "tech_tags": [ + "python", + "java", + "r", + "Zarr", + "NetCDF" + ], + "topic_tags": [ + "open data", + "open science", + "data management", + "Oceanography", + "Marine Biodiversity" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://groups.google.com/g/ioos_tech/" + }, + { + "name": "email", + "value": "micah.wengren@noaa.gov" + }, + { + "name": "email", + "value": "mathew.biddle@noaa.gov" + }, + { + "name": "email", + "value": "ocefpaf@gmail.com" + }, + { + "name": "twitter", + "value": "https://x.com/usioosgov" + }, + { + "name": "facebook", + "value": "https://www.facebook.com/usioosgov" + } + ], + "source_code": "https://github.com/ioos", + "ideas_link": "https://github.com/ioos/gsoc/blob/main/2026/ideas-list.md", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://groups.google.com/g/ioos_tech/" + }, + { + "name": "email", + "value": "micah.wengren@noaa.gov" + }, + { + "name": "email", + "value": "mathew.biddle@noaa.gov" + }, + { + "name": "email", + "value": "ocefpaf@gmail.com" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://x.com/usioosgov" + }, + { + "name": "facebook", + "value": "https://www.facebook.com/usioosgov" + } + ] + }, + { + "name": "OpenAFS", + "slug": "openafs", + "logo_url": "https://summerofcode.withgoogle.com/media/org/openafs/hhf0h2zemmqes7kt-360.png", + "website_url": "https://www.openafs.org", + "tagline": "An open source distributed filesystem.", + "license": "IPL-1.0", + "categories": [ + "Operating systems", + "Infrastructure and cloud" + ], + "contributor_guidance_url": "https://www.openafs.org/gsoc.html", + "description": "OpenAFS is a distributed filesystem originally developed at Carnegie Mellon University and IBM. It offers a client-server architecture for federated file sharing and replicated read-only content distribution, providing location independence, scalability, security, and transparent migration capabilities. OpenAFS is available for a broad range of systems including UNIX, Linux, MacOS X, and Microsoft Windows.", + "tech_tags": [ + "c", + "python", + "javascript", + "git", + "tcp/udp" + ], + "topic_tags": [ + "testing", + "kernel", + "network", + "storage", + "filesystems" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://www.openafs.org/support.html" + }, + { + "name": "email", + "value": "foundation@openafs.org" + }, + { + "name": "mailingList", + "value": "https://lists.openafs.org/mailman/listinfo" + }, + { + "name": "blog", + "value": "https://www.openafs.org" + } + ], + "source_code": "https://git.openafs.org/?p=openafs.git;a=summary", + "ideas_link": "https://www.openafs.org/gsoc/project-ideas.html", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://www.openafs.org/support.html" + }, + { + "name": "email", + "value": "foundation@openafs.org" + }, + { + "name": "mailingList", + "value": "https://lists.openafs.org/mailman/listinfo" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://www.openafs.org" + } + ] + }, + { + "name": "preCICE", + "slug": "precice", + "logo_url": "https://summerofcode.withgoogle.com/media/org/precice/19ymcw80uxn8g9ia-360.png", + "website_url": "https://precice.org/", + "tagline": "The coupling library for multi-physics simulations", + "license": "LGPL-3.0", + "categories": [ + "Science and medicine", + "Other" + ], + "contributor_guidance_url": "https://precice.org/community-contribute-open-projects.html#google-summer-of-code", + "description": "preCICE is an open-source coupling library and ecosystem for general partitioned multi-physics and multi-scale simulations, including surface and volume coupling.\n\nPartitioned means that preCICE couples existing programs/solvers capable of simulating a subpart of the complete physics involved in a simulation. This allows for the high flexibility that is needed to keep a decent time-to-solution for complex coupled problems.\n\nThe software offers convenient methods for transient equation coupling, communication, time interpolation, and data mapping.", + "tech_tags": [ + "c", + "python", + "shell", + "c++" + ], + "topic_tags": [ + "scientific computing", + "simulation" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://precice.discourse.group/c/jobs/gsoc/15" + }, + { + "name": "chat", + "value": "https://precice.org/community-channels.html" + }, + { + "name": "blog", + "value": "https://precice.discourse.group/c/news" + } + ], + "source_code": "https://github.com/precice/", + "ideas_link": "https://precice.org/community-contribute-open-projects.html", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://precice.discourse.group/c/jobs/gsoc/15" + }, + { + "name": "chat", + "value": "https://precice.org/community-channels.html" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://precice.discourse.group/c/news" + } + ] + }, + { + "name": "The ns-3 Network Simulator Project", + "slug": "the-ns-3-network-simulator-project", + "logo_url": "https://summerofcode.withgoogle.com/media/org/the-ns-3-network-simulator-project/0zmaec44y4jcfuj2-360.png", + "website_url": "https://www.nsnam.org", + "tagline": "ns-3 is a simulation tool for computer networks.", + "license": "GPL-2.0", + "categories": [ + "Science and medicine" + ], + "contributor_guidance_url": "https://www.nsnam.org/wiki/GSOC2026ContributorGuide", + "description": "Are you interested in contributing to a widely-used performance evaluation tool for computer networking research? ns-3 is a *discrete-event, packet-level network simulator* with an emphasis on networking research and education. Users of ns-3 can construct simulations of computer networks using models of traffic generators, protocols such as TCP/IP, and devices and channels such as Wi-Fi and LTE, and analyze or visualize the results. Simulation plays a vital role in the research and education process, because of the ability for simulations to obtain reproducible results (particularly for wireless protocol design), scale to large networks, and study systems that have not yet been implemented. A particular emphasis in ns-3 is a high degree of realism in the models (including frameworks for using real application and kernel code) and integration of the tool with virtual machine environments and testbeds. Very large scale simulations are possible; simulations of hundreds of millions of nodes have been published. ns-3 has been in development since 2005 and has been making regular releases since June 2008. The simulator is written in C++, with bindings for Python scripting, and uses the CMake build system. We use a GPLv2 licensing model and heavily use mailing lists and Zulip chat, but typically not other social media.", + "tech_tags": [ + "python", + "django", + "c++" + ], + "topic_tags": [ + "computer networking", + "network simulation" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://groups.google.com/g/ns-developers" + }, + { + "name": "chat", + "value": "https://ns-3.zulipchat.com" + }, + { + "name": "blog", + "value": "https://ns-3.zulipchat.com" + } + ], + "source_code": "https://gitlab.com/nsnam/ns-3-dev", + "ideas_link": "https://www.nsnam.org/wiki/GSOC2026Projects", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://groups.google.com/g/ns-developers" + }, + { + "name": "chat", + "value": "https://ns-3.zulipchat.com" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://ns-3.zulipchat.com" + } + ] + }, + { + "name": "Stichting SU2", + "slug": "stichting-su2", + "logo_url": "https://summerofcode.withgoogle.com/media/org/stichting-su2/vexbqtmew7yd92hp-360.png", + "website_url": "https://su2foundation.org", + "tagline": "Computational Fluid Dynamics and Optimization", + "license": "LGPL-2.1", + "categories": [ + "Science and medicine", + "End user applications" + ], + "contributor_guidance_url": "https://su2code.github.io/gsoc/Participation/", + "description": "Computational analysis tools have revolutionized the way we design engineering systems as a society, but most established codes are proprietary, unavailable, or prohibitively expensive for many users. The SU2 Foundation will change this, making multiphysics analysis and design optimization software free and publicly available, in a single place, without restriction on who can contribute to its creation and development.\nThe SU2 Foundation is an educational and scientific not-for-profit that will bring together computational scientists and engineers through the SU2 Foundation platform. The SU2 Foundation develops, maintains, and supports a collection of C++ and Python-based software tools for performing Partial Differential Equation (PDE) analysis and solving PDE-constrained optimization problems. Through maintaining and improving the quality of software, documentation, and tutorials, and by growing the community of users and developers, the SU2 Foundation will ensure quality improvement of multiphysics software tools, accessible by everyone, for continued innovation in the engineering sciences.", + "tech_tags": [ + "python", + "c++" + ], + "topic_tags": [ + "aerodynamics", + "Computational Fluid Dynamics", + "Multi-Disciplinary Optimization", + "Adjoint Design Optimization", + "Fluid Dynamics" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://www.cfd-online.com/Forums/su2/" + }, + { + "name": "chat", + "value": "https://su2devteam.slack.com" + }, + { + "name": "blog", + "value": "https://www.cfd-online.com/Forums/su2/" + } + ], + "source_code": "https://github.com/su2code/SU2", + "ideas_link": "https://su2code.github.io/gsoc/Introduction/", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://www.cfd-online.com/Forums/su2/" + }, + { + "name": "chat", + "value": "https://su2devteam.slack.com" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://www.cfd-online.com/Forums/su2/" + } + ] + }, + { + "name": "MIT App Inventor", + "slug": "mit-app-inventor", + "logo_url": "https://summerofcode.withgoogle.com/media/org/mit-app-inventor/8ppq0spvr3j3gx8q-360.png", + "website_url": "http://appinventor.mit.edu", + "tagline": "Anyone can build apps with global impact", + "license": "Apache-2.0", + "categories": [ + "Development tools", + "Artificial Intelligence" + ], + "contributor_guidance_url": "https://github.com/mit-cml/appinventor-sources/wiki/Google-Summer-of-Code-2025", + "description": "MIT App Inventor is a free, open source web app that anyone can use to build mobile apps. It has been used by over 8 million people worldwide who have built more than 30 million apps. It is available in twelve different languages and used by people from ages 13 and up.", + "tech_tags": [ + "javascript", + "java", + "gwt", + "swift" + ], + "topic_tags": [ + "education", + "development tools", + "android", + "ios" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://community.appinventor.mit.edu" + }, + { + "name": "blog", + "value": "https://appinventor.mit.edu/explore/blog" + } + ], + "source_code": "https://github.com/mit-cml/appinventor-sources", + "ideas_link": "https://docs.google.com/document/d/1hxtNVrg58HSPTyPsJDTi8BcOePXlpojC_1BzfcqXrm8/edit?tab=t.", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://community.appinventor.mit.edu" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://appinventor.mit.edu/explore/blog" + } + ] + }, + { + "name": "rocket.chat", + "slug": "rocketchat", + "logo_url": "https://summerofcode.withgoogle.com/media/org/rocketchat/qnog9kebwa9atw3l-360.png", + "website_url": "https://github.com/RocketChat", + "tagline": "Open source communications platform for the AI age", + "license": "MIT", + "categories": [ + "Social and communication", + "Artificial Intelligence" + ], + "contributor_guidance_url": "https://github.com/RocketChat/google-summer-of-code/blob/main/google-summer-of-code-2026.md#how-to-apply", + "description": "Open source team chat and communications platform \n\nRocket.Chat is one of the largest active open source (permissive MIT license) nodeJS communications platform communities on GitHub, connecting 2,500+ global community contributors (across projects) from 30+ countries, with 41,700+ GitHub stars, 11,100 forks, 1,005+ total releases and 15,100+ issues since inception in 2015.\n\nRocket.Chat is a team chat platform written in full-stack Typescript. It offers a fully featured team chat experience on modern browsers, comparable to Slack and Microsoft Teams. Mobile and desktop clients run on iOS, Android, Mac, Windows, and Linux. The server can scale from a small family messaging server for 5 users on a Raspberry Pi 5, to clustered micro-services configuration that can support hundred thousands of users. On-premises Rocket.Chat can ensure 100% complete security and privacy of your valuable communications/data.\n\nRocket.Chat is now installed on over 500k servers and counts over 12m users worldwide. Federated communication support extends our reach exponentially. \n\nUsers can set up Rocket.Chat on cloud or by hosting their own servers on-premises. Thanks to its extension support via Rocket.Chat Apps, and rich APIs, startups and innovators have customized Rocket.Chat into new products and services. Omnichannel extends reach to wherever user may be including WhatsApp, Instagram, Facebook Messenger and more. Increasingly, innovators in Generative AI and LLM app developers are launching their concepts on the Rocket.Chat platform to keep all data flows and communications 100% private and secure. \n\nRocket.Chat has won multiple prizes such as a 2016 Bossie Award for Best Open Source Application and first prize in the 2017 edition of All Things Open’s Startup Competition.\n\nRocket.Chat's community interacts 24 x 7 at the community Rocket.Chat server https://open.rocket.chat since 2015.", + "tech_tags": [ + "javascript", + "typescript", + "node", + "LLM", + "generative ai" + ], + "topic_tags": [ + "communications", + "messaging", + "group chat", + "Team Collaboration", + "Chat platform" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://open.rocket.chat/channel/opensource2026" + }, + { + "name": "mailingList", + "value": "https://forums.rocket.chat/t/welcome-to-google-summer-of-code-2026-with-rocket-chat/22692" + }, + { + "name": "email", + "value": "gsoc+2026@rocket.chat" + }, + { + "name": "twitter", + "value": "https://twitter.com/rocketchat4all" + } + ], + "source_code": "https://github.com/RocketChat/Rocket.Chat", + "ideas_link": "https://github.com/RocketChat/google-summer-of-code/blob/main/google-summer-of-code-2026.md#-project-ideas", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://open.rocket.chat/channel/opensource2026" + }, + { + "name": "mailingList", + "value": "https://forums.rocket.chat/t/welcome-to-google-summer-of-code-2026-with-rocket-chat/22692" + }, + { + "name": "email", + "value": "gsoc+2026@rocket.chat" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/rocketchat4all" + } + ] + }, + { + "name": "Apache Software Foundation", + "slug": "apache-software-foundation", + "logo_url": "https://summerofcode.withgoogle.com/media/org/apache-software-foundation/hq22fwtmvdfjnsh9-360.png", + "website_url": "https://apache.org", + "tagline": "Open source software to the public free of charge", + "license": "Apache-2.0", + "categories": [ + "Web", + "Other" + ], + "contributor_guidance_url": "https://community.apache.org/gsoc/", + "description": "The Foundation provides an established framework for intellectual property and financial contributions that simultaneously limits contributors potential legal exposure. Through a collaborative and meritocratic development process, Apache projects deliver enterprise-grade, freely available software products that attract large communities of users. The pragmatic Apache License makes it easy for all users, commercial and individual, to deploy Apache products.", + "tech_tags": [ + "c", + "java", + "c++" + ], + "topic_tags": [ + "big data", + "cloud", + "libraries", + "other" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "http://apache.org/foundation/mailinglists.html" + }, + { + "name": "twitter", + "value": "https://twitter.com/theasf" + } + ], + "source_code": "https://github.com/apache", + "ideas_link": "https://s.apache.org/gsoc2026ideas", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "http://apache.org/foundation/mailinglists.html" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/theasf" + } + ] + }, + { + "name": "API Dash", + "slug": "api-dash", + "logo_url": "https://summerofcode.withgoogle.com/media/org/api-dash/wgtarubdkvdp5qih-360.png", + "website_url": "https://apidash.dev", + "tagline": "Next-gen Open Source API DevTool powered by AI", + "license": "Apache-2.0", + "categories": [ + "Development tools", + "Artificial Intelligence" + ], + "contributor_guidance_url": "https://github.com/foss42/apidash/discussions/1048", + "description": "API Dash is a beautiful open-source cross-platform (macOS, Windows, Linux, Android & iOS) API Client built using Flutter & powered by AI which can help you easily create & customize your HTTP, GraphQL, SSE & AI API requests, visually inspect responses and generate API integration code.", + "tech_tags": [ + "python", + "react", + "flutter", + "typescript", + "ai" + ], + "topic_tags": [ + "testing", + "api", + "developer tools", + "ai", + "Agents" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://discord.com/invite/bBeSdtJ6Ue" + }, + { + "name": "email", + "value": "ankit@apidash.dev" + }, + { + "name": "blog", + "value": "https://www.linkedin.com/company/apidash/" + }, + { + "name": "twitter", + "value": "https://x.com/apidashdev" + } + ], + "source_code": "https://github.com/foss42/apidash", + "ideas_link": "https://github.com/foss42/apidash/discussions/1054", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://discord.com/invite/bBeSdtJ6Ue" + }, + { + "name": "email", + "value": "ankit@apidash.dev" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://www.linkedin.com/company/apidash/" + }, + { + "name": "twitter", + "value": "https://x.com/apidashdev" + } + ] + }, + { + "name": "Rizin", + "slug": "rizin", + "logo_url": "https://summerofcode.withgoogle.com/media/org/rizin/7ageygqfyv7wzlee-360.png", + "website_url": "https://rizin.re", + "tagline": "Rizin reverse engineering framework and toolset", + "license": "LGPL-3.0", + "categories": [ + "Security" + ], + "contributor_guidance_url": "https://rizin.re/gsoc/2024", + "description": "The Rizin project is a fork of the famous Radare2 project that started in 2006. Since then the codebase has been rewritten multiple times, modularized and extended to support many new features. The Rizin project aims to provide stability, focus on the most important features, and provide a user friendly interface. Along with Cutter - a Qt-based GUI and the RzGhidra decompiler it makes the effective tool for everyday reversing tasks.\n\nRizin is composed of a hexadecimal editor at its core, with support for several architectures and binary formats. It features code analysis capabilities, scripting, data and code visualization through graphs and other means, a visual mode, easy UNIX integration, a binary diffing engine for code and data, a shellcode compiler, multi-platform debug with reverse debug capabilities and much, much more!", + "tech_tags": [ + "c", + "python", + "go", + "c++", + "qt" + ], + "topic_tags": [ + "reverse engineering", + "computer security", + "debugging", + "emulation", + "disassembly" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://im.rizin.re" + }, + { + "name": "email", + "value": "gsoc@rizin.re" + }, + { + "name": "twitter", + "value": "https://twitter.com/rizinorg" + }, + { + "name": "twitter", + "value": "https://fosstodon.org/@rizin" + }, + { + "name": "twitter", + "value": "https://bsky.app/profile/rizin.re" + } + ], + "source_code": "https://github.com/rizinorg", + "ideas_link": "https://rizin.re/gsoc/2026/#project-ideas", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://im.rizin.re" + }, + { + "name": "email", + "value": "gsoc@rizin.re" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/rizinorg" + }, + { + "name": "twitter", + "value": "https://fosstodon.org/@rizin" + }, + { + "name": "twitter", + "value": "https://bsky.app/profile/rizin.re" + } + ] + }, + { + "name": "MoFA Org", + "slug": "mofa-org", + "logo_url": "https://summerofcode.withgoogle.com/media/org/mofa-org/fa7e34trht3ou7yo-360.png", + "website_url": "https://mofa.ai", + "tagline": "Empower extraordinary with Composition AI", + "license": "Apache-2.0", + "categories": [ + "Development tools", + "Artificial Intelligence" + ], + "contributor_guidance_url": "https://github.com/mofa-org/GSoC/blob/main/README.md", + "description": "mofa-org is an open-source organization that builds and maintains the MoFA ecosystem — a modular AI agent framework that makes it easy to build, compose, and run complex AI applications & a collection of open-source tools and frameworks designed to:\n\n- Allow developers to compose AI agents like building blocks\n- Enable complex AI systems without heavy boilerplate or bespoke pipelines\n- Provide visual tooling (like MoFA Stage) for developer productivity", + "tech_tags": [ + "python", + "rust" + ], + "topic_tags": [ + "development framework", + "AI Agent", + "Compostion AI" + ], + "contact_links": [ + { + "name": "email", + "value": "dev@mofa.ai" + }, + { + "name": "chat", + "value": "https://discord.gg/hKJZzDMMm9" + }, + { + "name": "blog", + "value": "https://mofa.ai/blog/" + }, + { + "name": "twitter", + "value": "https://x.com/mofa_ai" + } + ], + "source_code": "https://github.com/mofa-org", + "ideas_link": "https://github.com/mofa-org/GSoC/blob/main/ideas-list.md", + "direct_comm_methods": [ + { + "name": "email", + "value": "dev@mofa.ai" + }, + { + "name": "chat", + "value": "https://discord.gg/hKJZzDMMm9" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://mofa.ai/blog/" + }, + { + "name": "twitter", + "value": "https://x.com/mofa_ai" + } + ] + }, + { + "name": "United Nations Office of Information Communication Technology", + "slug": "united-nations-office-of-information-communication-technology", + "logo_url": "https://summerofcode.withgoogle.com/media/org/united-nations-office-of-information-communication-technology/bl0zv6y6mjmzuybz-360.png", + "website_url": "https://unite.un.org/en", + "tagline": "Sustainable future through innovative technology.", + "license": "Apache-2.0", + "categories": [ + "End user applications", + "Other" + ], + "contributor_guidance_url": "https://opensource.unicc.org/un/unoict/mentorship-programme/google-summer-of-code/", + "description": "The Open Source Team at the United Nations, based within the UN Office of Information and Communications Technology (UNOICT), supports the development and adoption of open source technologies across the UN system and in collaboration with external partners. The team works to advance digital public goods that address global challenges such as climate resilience, sustainable food systems, and inclusive digital participation.\nThrough initiatives including “Reboot the Earth” and other open source collaborations, our team enables early-stage ideas to mature into scalable, production-ready solutions. Our work emphasizes open collaboration, responsible use of emerging technologies such as AI, focusing on deployment in real-world, resource-constrained environments. The Open Source Team also provides technical guidance, mentorship, and governance support to ensure projects not only align with UN values but also prioritize long-term sustainability.\nDisclaimer: All Summer of Code work is conducted independently. Contributors are not considered United Nations employees or official representatives.", + "tech_tags": [ + "python", + "javascript", + "css" + ], + "topic_tags": [ + "Technology", + "innovation" + ], + "contact_links": [ + { + "name": "email", + "value": "mithusa.kajendran@un.org" + }, + { + "name": "email", + "value": "mohsine@un.org" + }, + { + "name": "email", + "value": "martinez-navarrete@un.org" + }, + { + "name": "twitter", + "value": "https://x.com/UN_OICT" + } + ], + "source_code": "https://github.com/OSeMOSYS/MUIO/", + "ideas_link": "https://opensource.unicc.org/un/unoict/mentorship-programme/google-summer-of-code/-/blob/main/README.md", + "direct_comm_methods": [ + { + "name": "email", + "value": "mithusa.kajendran@un.org" + }, + { + "name": "email", + "value": "mohsine@un.org" + }, + { + "name": "email", + "value": "martinez-navarrete@un.org" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://x.com/UN_OICT" + } + ] + }, + { + "name": "Swift", + "slug": "swift", + "logo_url": "https://summerofcode.withgoogle.com/media/org/swift/moutmu5fv3rozvrz-360.png", + "website_url": "https://swift.org", + "tagline": "Fast, safe, and expressive programming language", + "license": "Apache-2.0", + "categories": [ + "Programming languages" + ], + "contributor_guidance_url": "https://www.swift.org/contributing/", + "description": "Swift is a general-purpose programming language built using a modern approach to safety, performance, and software design patterns.\n\nThe goal of the Swift project is to create the best available language for uses ranging from systems programming, to mobile and desktop apps, scaling up to cloud services. Most importantly, Swift is designed to make writing and maintaining correct programs easier for the developer.", + "tech_tags": [ + "c++", + "cmake", + "swift" + ], + "topic_tags": [ + "compilers", + "cross-platform", + "Packages", + "Server development", + "Standard Libraries" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://forums.swift.org" + }, + { + "name": "twitter", + "value": "https://twitter.com/SwiftLang" + } + ], + "source_code": "https://github.com/apple/swift", + "ideas_link": "https://www.swift.org/gsoc2026/", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://forums.swift.org" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/SwiftLang" + } + ] + }, + { + "name": "MoganLab", + "slug": "moganlab", + "logo_url": "https://summerofcode.withgoogle.com/media/org/moganlab/tuz5k2kmoivlkods-360.png", + "website_url": "https://mogan.app/en/", + "tagline": "Make acedemic writing as nature as breathing", + "license": "GPL-3.0", + "categories": [ + "Programming languages", + "Development tools", + "Artificial Intelligence" + ], + "contributor_guidance_url": "https://github.com/XmacsLabs/mogan/blob/main/devel/Develop_on_Linux.md", + "description": "Moganlab develops Mogan STEM, a professional scientific writing platform specifically designed for mathematics, physics, statistics, and computer science, targeting complex formula-based documents. It is deeply optimized from GNU TeXmacs, with emphasis on performance and user experience. With Mogan STEM, you can create documents 100 times faster than LaTeX", + "tech_tags": [ + "c++", + "qt", + "scheme" + ], + "topic_tags": [ + "editor", + "latex", + "AI for math" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "yansong@liii.pro" + }, + { + "name": "blog", + "value": "https://www.reddit.com/r/TeXmacs/" + } + ], + "source_code": "https://github.com/XmacsLabs/mogan", + "ideas_link": "https://github.com/MoganLab/GSoC-2026-MoganLab/blob/main/idelas/main.md", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "yansong@liii.pro" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://www.reddit.com/r/TeXmacs/" + } + ] + }, + { + "name": "PEcAn Project", + "slug": "pecan-project", + "logo_url": "https://summerofcode.withgoogle.com/media/org/pecan-project/kijyzllr7r1g0ukz-360.png", + "website_url": "https://pecanproject.github.io/", + "tagline": "Develop and promote tools for ecosystem modeling", + "license": "BSD-3-Clause", + "categories": [ + "Science and medicine", + "Data" + ], + "contributor_guidance_url": "https://pecanproject.github.io/gsoc", + "description": "Climate change science has witnessed an explosion in the amount and types of data that can be brought to bear on the potential responses of the terrestrial carbon cycle and biodiversity to global change. Many of the most pressing questions about global change are not necessarily limited by the need to collect new data as much as by our ability to synthesize existing data. This project specifically seeks to improve this ability. Because no one measurement provides a complete picture, multiple data sources must be integrated in a sensible manner. Process-based models represent an ideal framework for integrating these data streams because they represent multiple processes at different spatial and temporal scales in ways that capture our current understanding of the causal connections across scales and among data types. Three components are required to bridge this gap between the available data and the required level of understanding: 1) state-of-the-art ecosystem model, 2) a workflow management system to handle the numerous streams of data, and 3) a data assimilation statistical framework in order to synthesize the data with the model.", + "tech_tags": [ + "r", + "docker", + "api", + "geospatial" + ], + "topic_tags": [ + "data science", + "ecosystem models", + "scientific visualization", + "climate science", + "Ecological Forecasting," + ], + "contact_links": [ + { + "name": "chat", + "value": "https://join.slack.com/t/pecanproject/shared_invite/enQtMzkyODUyMjQyNTgzLWEzOTM1ZjhmYWUxNzYwYzkxMWVlODAyZWQwYjliYzA0MDA0MjE4YmMyOTFhMjYyMjYzN2FjODE4N2Y4YWFhZmQ" + }, + { + "name": "twitter", + "value": "https://twitter.com/PEcAnProject" + } + ], + "source_code": "https://github.com/pecanproject/pecan", + "ideas_link": "https://pecanproject.github.io/gsoc_ideas", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://join.slack.com/t/pecanproject/shared_invite/enQtMzkyODUyMjQyNTgzLWEzOTM1ZjhmYWUxNzYwYzkxMWVlODAyZWQwYjliYzA0MDA0MjE4YmMyOTFhMjYyMjYzN2FjODE4N2Y4YWFhZmQ" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/PEcAnProject" + } + ] + }, + { + "name": "FFmpeg", + "slug": "ffmpeg", + "logo_url": "https://summerofcode.withgoogle.com/media/org/ffmpeg/9nltyc13lvn7dqn0-360.png", + "website_url": "https://ffmpeg.org/", + "tagline": "Record, convert and stream audio & video", + "license": "LGPL-2.1", + "categories": [ + "Media" + ], + "contributor_guidance_url": "https://trac.ffmpeg.org/wiki/SponsoringPrograms/GSoC/2025", + "description": "FFmpeg is the leading multimedia framework, able to decode, encode, transcode, mux, demux, stream, filter and play pretty much anything that humans and machines have created. It supports the most obscure ancient formats up to the cutting edge. No matter if they were designed by some standards committee, the community or a corporation. It is also highly portable: FFmpeg compiles, runs, and passes our testing infrastructure FATE across Linux, Mac OS X, Microsoft.", + "tech_tags": [ + "c", + "git", + "asm" + ], + "topic_tags": [ + "audio", + "video", + "subtitles", + "multimedia" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "http://ffmpeg.org/contact.html#MailingLists" + }, + { + "name": "chat", + "value": "http://ffmpeg.org/contact.html#IRCChannels" + }, + { + "name": "blog", + "value": "https://ffmpeg.org/contact.html" + } + ], + "source_code": "https://git.ffmpeg.org/ffmpeg.git", + "ideas_link": "https://trac.ffmpeg.org/wiki/SponsoringPrograms/GSoC/2026", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "http://ffmpeg.org/contact.html#MailingLists" + }, + { + "name": "chat", + "value": "http://ffmpeg.org/contact.html#IRCChannels" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://ffmpeg.org/contact.html" + } + ] + }, + { + "name": "Processing Foundation", + "slug": "processing-foundation", + "logo_url": "https://summerofcode.withgoogle.com/media/org/processing-foundation/xr2sncljbvtlop1n-360.png", + "website_url": "http://processingfoundation.org", + "tagline": "To empower all people to learn to program", + "license": "LGPL-2.1", + "categories": [ + "Programming languages", + "Media" + ], + "contributor_guidance_url": "https://github.com/processing/Processing-Foundation-GSoC", + "description": "Our mission is to promote software learning within the arts, artistic learning within technology-related fields, and to celebrate the diverse communities that make these fields vibrant, liberatory, and innovative. Our goal is to support people of all backgrounds in learning how to program and make creative work with code, especially those who might not otherwise have access to tools and resources. We also believe that some of the most radical futures and innovative technologies are being built by communities that have been pushed to the margins by dominant tech. We hope to support those who have been marginalized by technology in continued self-determination by providing time, space, and resources.\n\nWe work toward our goals by developing and distributing a group of related software projects, which includes Processing (Java), p5.js (JavaScript), and p5.js Editor (JavaScript), and by facilitating partnerships and collaborations with allied organizations and individuals to build a more diverse community around software and the arts.", + "tech_tags": [ + "javascript", + "java", + "typescript", + "webgl", + "GitHub Actions" + ], + "topic_tags": [ + "education", + "web", + "graphics", + "creative coding", + "design" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "http://discourse.processing.org" + }, + { + "name": "twitter", + "value": "https://twitter.com/ProcessingOrg" + }, + { + "name": "blog", + "value": "https://medium.com/@ProcessingOrg" + }, + { + "name": "blog", + "value": "https://discourse.processing.org/t/updates-about-gsoc-2026-org-application-in-progress/47450" + } + ], + "source_code": "https://github.com/processing/", + "ideas_link": "https://github.com/processing/Processing-Foundation-GSoC/wiki/Project-Ideas-List-(GSoC-2026)#project-ideas-list", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "http://discourse.processing.org" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/ProcessingOrg" + }, + { + "name": "blog", + "value": "https://medium.com/@ProcessingOrg" + }, + { + "name": "blog", + "value": "https://discourse.processing.org/t/updates-about-gsoc-2026-org-application-in-progress/47450" + } + ] + }, + { + "name": "The JPF team", + "slug": "the-jpf-team-hg", + "logo_url": "https://summerofcode.withgoogle.com/media/org/the-jpf-team-hg/rvqtnz4hyojrfgvw.png", + "website_url": "https://github.com/javapathfinder/jpf-core/wiki", + "tagline": "JPF is a Java VM used to verify and debug software", + "license": "Apache-2.0", + "categories": [ + "Programming languages", + "Security" + ], + "contributor_guidance_url": "https://github.com/javapathfinder/jpf-core/wiki/JPF-Google-Summer-of-Code-2024", + "description": "The Java Pathfinder (JPF) project was initially conceived and developed at NASA Ames Research Center in 1999. JPF was open sourced in April 2005 as one of the first ongoing NASA development projects to date, and it is now released under the Apache license, 2.0. JPF is an extensible Java virtual machine written in Java itself. It is used to create a variety of verification and debugging tools, ranging from software model checkers to test case generators using symbolic execution. JPF is a research platform and a production tool at the same time. Although JPF has major contributions from companies and government agencies, our main user community is academic - there are ongoing collaborations with more than 20 universities worldwide. The JPF team for GSoC 2024 includes researchers from NASA Ames Research Center, KTH Royal Institute of Technology - Sweden, Carnegie Mellon University, Boise State University, University of Minnesota, Charles University - Czech Republic, and Singapore University of Technology and Design.\n\nJPF is designed to be highly extensible. There are well-defined extension mechanisms, directory structures and build procedures, which keep the core relatively stable and provide suitable, well-separated testbeds for new ideas and alternative implementations. As a consequence, we host a number of such extension projects on our own, public JPF server, together with a Wiki that provides a central location for learning about, obtaining, and contributing to JPF.\n\nJPF has been used for a variety of application domains and research topics such as verification of multi-threaded applications, graphical user interfaces, networking, and distributed applications. In addition to its continued presence in academia, JPF has matured enough to support verification of production code and frameworks such as Android. JPF is constantly being extended with support for verification of new types of correctness properties and for new types of application domains.", + "tech_tags": [ + "android", + "java", + "distributed systems", + "jvm" + ], + "topic_tags": [ + "model checking", + "symbolic execution", + "verification of concurrent systems", + "program analysis", + "test input generation" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://groups.google.com/g/java-pathfinder" + }, + { + "name": "chat", + "value": "https://discord.gg/sX4YZUVHK7" + }, + { + "name": "twitter", + "value": "https://twitter.com/Java_Pathfinder" + } + ], + "source_code": "https://github.com/javapathfinder/jpf-core", + "ideas_link": "https://github.com/javapathfinder/jpf-core/wiki/GSoC-2026-Project-Ideas", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://groups.google.com/g/java-pathfinder" + }, + { + "name": "chat", + "value": "https://discord.gg/sX4YZUVHK7" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/Java_Pathfinder" + } + ] + }, + { + "name": "Invesalius", + "slug": "invesalius", + "logo_url": "https://summerofcode.withgoogle.com/media/org/invesalius/ktlk8dmldhfmlyb2-360.png", + "website_url": "https://invesalius.github.io/", + "tagline": "3D Medical visualization and neuronavigation tool", + "license": "GPL-2.0", + "categories": [ + "Science and medicine", + "End user applications" + ], + "contributor_guidance_url": "https://github.com/invesalius/gsoc/blob/main/gsoc_application.md", + "description": "InVesalius is an Open Source organization that works developing free software for reconstruction of computed tomography and magnetic resonance images. The software is mainly used for rapid prototyping, teaching, forensics, and in the medical field. It is possible to use it on the Microsoft Windows, GNU/Linux and Apple Mac OS X platforms. \n\nInVesalius main software started began their development on 2001 by Centro de Tecnologia da Informação Renato Archer (CTI), in Brazil, later it was released under GNU license and more practitioners joins the organization to improve their development.\n\nAt that time, there was no medical image software in Portuguese that fulfilled the Brazilian hospitals and clinics needs. Therefore, InVesalius came as a proposal of development with the aim to be a medical software image analysis with null acquisition cost, capability of execution on low-cost personal computers and the\ncapability of execution on different operating systems and act as a platform to encourage the use and development of medical images in Brazil.", + "tech_tags": [ + "python", + "cython", + "numpy", + "dicom", + "Vtk" + ], + "topic_tags": [ + "ehealth", + "medical imaging", + "3D Reconstruction", + "3d printing", + "Neuronavigation" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://github.com/invesalius/invesalius3/discussions" + }, + { + "name": "blog", + "value": "https://www.youtube.com/@invesalius/videos" + }, + { + "name": "blog", + "value": "https://invesalius.github.io/publication.html" + } + ], + "source_code": "https://github.com/invesalius/invesalius3", + "ideas_link": "https://github.com/invesalius/gsoc/blob/main/gsoc_2026_ideas.md", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://github.com/invesalius/invesalius3/discussions" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://www.youtube.com/@invesalius/videos" + }, + { + "name": "blog", + "value": "https://invesalius.github.io/publication.html" + } + ] + }, + { + "name": "Graphite", + "slug": "graphite", + "logo_url": "https://summerofcode.withgoogle.com/media/org/graphite-labs/p5x1ehnbihaxxqoq-360.png", + "website_url": "https://graphite.art", + "tagline": "Multimedia art/design editor and graphics engine", + "license": "Apache-2.0", + "categories": [ + "End user applications", + "Media" + ], + "contributor_guidance_url": "https://graphite.art/volunteer/guide/student-projects/", + "description": "Graphite is an in-development raster and vector graphics editing suite that's free and open source. It is powered by a node graph compositing engine that fuses layers with nodes, bringing a generative, procedural approach to the workflows of artists, designers, and animators ranging from students and hobbyists to creative professionals and studios.\n\nThe node-based compositing engine is built similar to a game engine. It is both a real time render pipeline and a visual programming language, complete with a custom compiler letting artists export dynamic content to other applications.\n\nOver time, Graphite intends to evolve into the \"everything app\" across every major 2D creative discipline— a versatile creation suite for graphic design, photo manipulation, digital painting, motion graphics, desktop publishing, and generative art (both procedural and AI-powered).\n\nThe five-year-old project is being rapidly developed by a global team of volunteers, composed mostly of students, who are passionate about crafting high-quality code that will transform and democratize the broader 2D creative industry.\n\nThe mission of Graphite strives to unshackle the creativity of every budding artist and seasoned professional by building the best comprehensive art and design tool that's accessible to all. Mission success will come when Graphite is an industry standard. A cohesive product vision and focus on innovation over imitation is the strategy that will make that possible.", + "tech_tags": [ + "rust", + "vulkan", + "webgpu" + ], + "topic_tags": [ + "compilers", + "programming languages", + "graphics", + "computational geometry", + "fonts" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://discord.graphite.rs" + }, + { + "name": "twitter", + "value": "https://twitter.com/GraphiteEditor/" + }, + { + "name": "blog", + "value": "https://graphite.art/blog/internships-for-a-rust-graphics-engine-gsoc-2025/" + } + ], + "source_code": "https://github.com/GraphiteEditor/Graphite", + "ideas_link": "https://graphite.art/volunteer/guide/student-projects/", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://discord.graphite.rs" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/GraphiteEditor/" + }, + { + "name": "blog", + "value": "https://graphite.art/blog/internships-for-a-rust-graphics-engine-gsoc-2025/" + } + ] + }, + { + "name": "OWASP Foundation", + "slug": "owasp-foundation", + "logo_url": "https://summerofcode.withgoogle.com/media/org/owasp-foundation/haks8qbp0yvjvzge-360.png", + "website_url": "https://owasp.org", + "tagline": "No more insecure software.", + "license": "GPL-3.0", + "categories": [ + "Security" + ], + "contributor_guidance_url": null, + "description": "As the world’s largest non-profit organization concerned with software security, OWASP:\n\n* Supports the building of impactful projects; \n* Develops & nurtures communities through events and chapter meetings worldwide; \n* Provides educational publications & resources\n\nin order to enable developers to write better software, and security professionals to make the world's software more secure.", + "tech_tags": [ + "python", + "javascript", + "java", + "ZAP", + "Juice Shop" + ], + "topic_tags": [ + "web", + "cloud", + "application security", + "cybersecurity", + "DevSecOps" + ], + "contact_links": [ + { + "name": "email", + "value": "gsoc-admins@owasp.org" + }, + { + "name": "chat", + "value": "https://owasp.org/slack/invite" + }, + { + "name": "mailingList", + "value": "https://groups.google.com/g/owasp-gsoc?pli=1" + }, + { + "name": "twitter", + "value": "https://twitter.com/owasp" + } + ], + "source_code": "https://github.com/owasp", + "ideas_link": "https://owasp.org/www-community/initiatives/gsoc/gsoc2026ideas", + "direct_comm_methods": [ + { + "name": "email", + "value": "gsoc-admins@owasp.org" + }, + { + "name": "chat", + "value": "https://owasp.org/slack/invite" + }, + { + "name": "mailingList", + "value": "https://groups.google.com/g/owasp-gsoc?pli=1" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/owasp" + } + ] + }, + { + "name": "The Julia Language", + "slug": "the-julia-language", + "logo_url": "https://summerofcode.withgoogle.com/media/org/the-julia-language/49fck3n7j5aqnpwu-360.png", + "website_url": "https://julialang.org", + "tagline": "A fresh approach to technical computing", + "license": "MIT", + "categories": [ + "Science and medicine", + "Programming languages" + ], + "contributor_guidance_url": "https://julialang.org/jsoc/guidelines/", + "description": "The Julia Language is an open-source, high level, and dynamic language built to be easy to use like Python while having speed near C++. As an umbrella organization, we house projects related to core Julia (the language) as well as packages from the broader Julia ecosystem.", + "tech_tags": [ + "machine learning", + "julia", + "data science", + "compilers", + "garbage-collection" + ], + "topic_tags": [ + "math", + "artificial intelligence", + "science", + "data science", + "graphs" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://julialang.org/slack/" + }, + { + "name": "mailingList", + "value": "https://discourse.julialang.org" + }, + { + "name": "twitter", + "value": "https://twitter.com/JuliaLanguage" + }, + { + "name": "blog", + "value": "https://julialang.org/blog/" + } + ], + "source_code": "https://github.com/JuliaLang/julia", + "ideas_link": "https://julialang.org/jsoc/project", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://julialang.org/slack/" + }, + { + "name": "mailingList", + "value": "https://discourse.julialang.org" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/JuliaLanguage" + }, + { + "name": "blog", + "value": "https://julialang.org/blog/" + } + ] + }, + { + "name": "Open HealthCare Network", + "slug": "open-healthcare-network", + "logo_url": "https://summerofcode.withgoogle.com/media/org/open-healthcare-network/eutslgqeknc9vlgd-360.png", + "website_url": "https://ohc.network/", + "tagline": "Reimagining Healthcare Delivery", + "license": "MIT", + "categories": [ + "Science and medicine", + "End user applications" + ], + "contributor_guidance_url": "https://oss.ohc.network/", + "description": "Open Healthcare Network (OHC), originally established as Coronasafe Network, is a pioneering open-source organization dedicated to enhancing healthcare delivery and management. At the core of OHC's innovation is its flagship Electronic Medical Record (EMR) system, recognized as the 50th Digital Public Good by the United Nations. This system transcends being merely a digital repository of patient records, evolving into a platform that supports advanced TeleICU capabilities.\n\nOHC represents a unique fusion of professional expertise and community-driven innovation, primarily fueled by a small team of dedicated developers and a dynamic community of college students. This collaborative model showcases a new paradigm in healthcare technology, emphasizing impactful, sustainable, and scalable solutions.\n\nOriginally a volunteer-driven initiative during the COVID-19 pandemic, OHC has continually addressed citizen-level healthcare problems. Its CARE software, adopted by several Indian states, played a crucial role in optimizing healthcare resource management during the pandemic. As the pandemic waned, CARE evolved to support the 10BedICU Project, enabling technology-driven ICU care in rural India and providing TeleICU services to the remotest regions, impacting thousands of lives.\n\nToday, beyond the 10BedICU Project, CARE is being adopted for various healthcare applications, including palliative care digitization, demonstrating its adaptability and growing significance in improving healthcare delivery across diverse settings. OHC's journey is a testament to the transformative impact of youth-driven initiatives in healthcare, touching the lives of millions across India.", + "tech_tags": [ + "python", + "django", + "react", + "typescript", + "NextJs" + ], + "topic_tags": [ + "electronic medical records", + "Digital Public Goods", + "Telemedicine and Remote Care", + "AI in Health", + "HMIS" + ], + "contact_links": [ + { + "name": "email", + "value": "mohammed.nihal@egovernments.org" + }, + { + "name": "chat", + "value": "https://slack.ohc.network/" + }, + { + "name": "mailingList", + "value": "Info@ohc.network" + }, + { + "name": "facebook", + "value": "https://www.facebook.com/openhealthcarenetwork" + }, + { + "name": "blog", + "value": "https://www.linkedin.com/company/ohcnetwork/" + } + ], + "source_code": "https://github.com/ohcnetwork/", + "ideas_link": "https://github.com/ohcnetwork/care_fe/issues?q=is%3Aissue%20state%3Aopen%20label%3AGSoC", + "direct_comm_methods": [ + { + "name": "email", + "value": "mohammed.nihal@egovernments.org" + }, + { + "name": "chat", + "value": "https://slack.ohc.network/" + }, + { + "name": "mailingList", + "value": "Info@ohc.network" + } + ], + "social_comm_methods": [ + { + "name": "facebook", + "value": "https://www.facebook.com/openhealthcarenetwork" + }, + { + "name": "blog", + "value": "https://www.linkedin.com/company/ohcnetwork/" + } + ] + }, + { + "name": "cBioPortal for Cancer Genomics", + "slug": "cbioportal-for-cancer-genomics", + "logo_url": "https://summerofcode.withgoogle.com/media/org/cbioportal-for-cancer-genomics/fdxtjhb0urtqcyfe-360.png", + "website_url": "https://www.cbioportal.org/", + "tagline": "Aid discovery in complex cancer genomics data", + "license": "LGPL-3.0", + "categories": [ + "Science and medicine", + "Artificial Intelligence" + ], + "contributor_guidance_url": "https://github.com/cBioPortal/GSoC", + "description": "The cBioPortal for Cancer Genomics is a resource designed to provide broad community access to cancer genomic data. It provides a unique user-friendly and \"biology-centric computational user interface\", with the goal of making genomic data more easily accessible to translational scientists, biologists, and clinicians. The interface was explicitly built and continues to evolve with careful usability studies involving multiple biological and clinical users, and an active and engaged user base.\n\nThe public instance of cBioPortal (https://cbioportal.org/) is one of the most popular online resources for cancer genomics data and attracts more than 3,000 unique visitors (cancer researchers and clinicians) per day. The three papers documenting the cBioPortal: Cerami et al. Cancer Discov. 2012; Gao et al. Sci. Signal. 2013; and de Bruijn et al. Cancer Res. 2023; have been cited more than 16,000, 17,000, and 800 times, respectively. There are more than 100 actively used cBioPortal instances in hospitals, universities, pharmaceutical companies, and other institutes around the globe.\n\nWe are a group of software engineers, bioinformaticians, and cancer biologists building software solutions for precision medicine for cancer patients. Our overall goal is to build infrastructure to support clinical decisions for personalized cancer treatment by utilizing “big data” of cancer genomics and patient clinical profiles. Our multi-institutional team currently has more than 30 active members, primarily from Memorial Sloan Kettering Cancer Center, the Dana-Farber Cancer Institute, Princess Margaret Cancer Centre, Children's Hospital of Philadelphia, and The Hyve, a bioinformatics company from the Netherlands.", + "tech_tags": [ + "mysql", + "javascript", + "java", + "react", + "typescript" + ], + "topic_tags": [ + "genomics", + "cancer", + "bioinformatics", + "big data", + "precision medicine" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://slack.cbioportal.org" + }, + { + "name": "twitter", + "value": "https://x.com/cbioportal" + } + ], + "source_code": "https://github.com/cBioPortal", + "ideas_link": "https://github.com/cBioPortal/GSoC/issues?q=is%3Aissue%20state%3Aopen%20label%3AGSoC-2026", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://slack.cbioportal.org" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://x.com/cbioportal" + } + ] + }, + { + "name": "GRAME", + "slug": "grame", + "logo_url": "https://summerofcode.withgoogle.com/media/org/grame/joff5sziiuapvits-360.png", + "website_url": "https://faust.grame.fr", + "tagline": "Domain specific language for audio", + "license": "LGPL-2.1", + "categories": [ + "Programming languages", + "Media" + ], + "contributor_guidance_url": "https://github.com/grame-cncm/faustideas", + "description": "Faust (Functional Audio Stream) is a functional programming language for sound synthesis and audio processing with a strong focus on the design of synthesizers, musical instruments, audio effects, etc. Faust targets high-performance signal processing applications and audio plug-ins for a variety of platforms and standards.", + "tech_tags": [ + "c", + "javascript", + "c++", + "rust", + "typescript" + ], + "topic_tags": [ + "audio", + "compiler", + "digital signal processing", + "function programming language" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://discord.gg/qPPcXzJdmR" + }, + { + "name": "email", + "value": "research@grame.fr" + }, + { + "name": "mailingList", + "value": "https://faust.grame.fr/community/help/" + }, + { + "name": "blog", + "value": "https://github.com/grame-cncm/faustideas" + } + ], + "source_code": "https://github.com/grame-cncm/faust", + "ideas_link": "https://github.com/grame-cncm/faustideas/blob/master/GSOC.md", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://discord.gg/qPPcXzJdmR" + }, + { + "name": "email", + "value": "research@grame.fr" + }, + { + "name": "mailingList", + "value": "https://faust.grame.fr/community/help/" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://github.com/grame-cncm/faustideas" + } + ] + }, + { + "name": "Uramaki LAB", + "slug": "uramaki-lab", + "logo_url": "https://summerofcode.withgoogle.com/media/org/uramaki-lab/pr3ivuk0zg7lhgj1-360.png", + "website_url": "https://github.com/ruxailab", + "tagline": "The User Experience LAB based on IA", + "license": "MIT", + "categories": [ + "End user applications", + "Artificial Intelligence" + ], + "contributor_guidance_url": "https://github.com/ruxailab/gsoc/tree/main", + "description": "The RUXAILAB is an open-source organization dedicated to democratizing usability and accessibility evaluation through the use of Artificial Intelligence. We provide a suite of AI-powered tools that enable remote usability and accessibility testing, ensuring that professionals and researchers can analyze user experience through different methodologies.\n\nOur platform supports multiple methods such as User Testing, Heuristic Evaluation, Eye-Tracking system, Sentimental Analysis, a semi-automated tool for prototyping virtual reality environments in 2D, and heatmap analysis for advanced data extraction. \n\nOur mission is to eliminate financial and technological barriers to usability and accessibility research, making it possible for anyone, anywhere to set up their own usability lab at zero cost.\n\nWe invite developers, designers, and researchers to join us in expanding our toolkit, refining our existing solutions, and fostering a more accessible digital world. 🚀🌍", + "tech_tags": [ + "python", + "javascript", + "html", + "css", + "Firebase" + ], + "topic_tags": [ + "artificial intelligence", + "user experience", + "Usability", + "Eye Tracking" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://github.com/ruxailab/RUXAILAB/issues" + }, + { + "name": "email", + "value": "ruxailab@gmail.com" + }, + { + "name": "mailingList", + "value": "https://discord.gg/6P4C6xuqtC" + }, + { + "name": "blog", + "value": "https://blog-ruxailab.web.app/" + } + ], + "source_code": "https://github.com/ruxailab", + "ideas_link": "https://ruxailab.github.io/gsoc/", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://github.com/ruxailab/RUXAILAB/issues" + }, + { + "name": "email", + "value": "ruxailab@gmail.com" + }, + { + "name": "mailingList", + "value": "https://discord.gg/6P4C6xuqtC" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://blog-ruxailab.web.app/" + } + ] + }, + { + "name": "Neuroinformatics Unit", + "slug": "neuroinformatics-unit", + "logo_url": "https://summerofcode.withgoogle.com/media/org/neuroinformatics-unit/ebzgcbxkxvbe9igk.png", + "website_url": "https://neuroinformatics.dev", + "tagline": "Open-source tools for neuroscience and ML", + "license": "BSD-3-Clause", + "categories": [ + "Science and medicine", + "Data" + ], + "contributor_guidance_url": "https://neuroinformatics.dev/get-involved/gsoc/guidelines", + "description": "The Neuroinformatics Unit is dedicated to the development of high quality, accurate, robust, easy to use and maintainable open-source software for neuroscience and machine learning. We collaborate with researchers and other software engineers to advance neuroscience research and make new algorithms and tools available to the global community.", + "tech_tags": [ + "python", + "numpy", + "pytorch", + "Scipy", + "napari" + ], + "topic_tags": [ + "visualization", + "neuroscience", + "data-science", + "Computer-Vision", + "neuroanatomy" + ], + "contact_links": [ + { + "name": "email", + "value": "hello@neuroinformatics.dev" + }, + { + "name": "chat", + "value": "https://neuroinformatics.zulipchat.com" + }, + { + "name": "blog", + "value": "https://neuroinformatics.dev/blog/index.html" + } + ], + "source_code": "https://github.com/neuroinformatics-unit", + "ideas_link": "https://neuroinformatics.dev/get-involved/gsoc/2026", + "direct_comm_methods": [ + { + "name": "email", + "value": "hello@neuroinformatics.dev" + }, + { + "name": "chat", + "value": "https://neuroinformatics.zulipchat.com" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://neuroinformatics.dev/blog/index.html" + } + ] + }, + { + "name": "Metaflow", + "slug": "metaflow", + "logo_url": "https://summerofcode.withgoogle.com/media/org/metaflow/lxpx64opqtnss7yx-360.png", + "website_url": "https://metaflow.org/", + "tagline": "A human centric machine learning framework", + "license": "Apache-2.0", + "categories": [ + "Infrastructure and cloud", + "Artificial Intelligence" + ], + "contributor_guidance_url": "https://github.com/Netflix/metaflow/blob/master/GSOC_CONTRIBUTOR_GUIDANCE.md", + "description": "Metaflow is a human-friendly Python library that makes it straightforward to develop, deploy, and operate various kinds of data-intensive applications, in particular those involving data science, ML, and AI. Metaflow was originally developed at Netflix to boost the productivity of data scientists who work on a wide variety of projects, from classical statistics to state-of-the-art deep learning. \n\nMetaflow provides a unified API across the entire infrastructure stack required to execute data science projects from prototype to production.", + "tech_tags": [ + "python", + "javascript", + "kubernetes" + ], + "topic_tags": [ + "machine learning", + "data science", + "ML Ops", + "Orchestrator" + ], + "contact_links": [ + { + "name": "email", + "value": "help@metaflow.org" + }, + { + "name": "mailingList", + "value": "http://chat.metaflow.org/" + }, + { + "name": "twitter", + "value": "https://x.com/MetaflowOSS" + } + ], + "source_code": "https://github.com/Netflix/metaflow", + "ideas_link": "https://github.com/Netflix/metaflow/blob/master/GSOC_2026_PROPOSALS.md", + "direct_comm_methods": [ + { + "name": "email", + "value": "help@metaflow.org" + }, + { + "name": "mailingList", + "value": "http://chat.metaflow.org/" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://x.com/MetaflowOSS" + } + ] + }, + { + "name": "UC OSPO", + "slug": "uc-ospo", + "logo_url": "https://summerofcode.withgoogle.com/media/org/center-for-research-in-open-source-software-cross/ndbkr7fqcqp4nguq-360.png", + "website_url": "https://ucsc-ospo.github.io/osre26/", + "tagline": "Amplifying Research Impact through Open Source", + "license": "0BSD", + "categories": [ + "Science and medicine", + "Artificial Intelligence" + ], + "contributor_guidance_url": "https://ucsc-ospo.github.io/osre26/#forstudents", + "description": "The UCSC Open Source Program Office (OSPO) and the UC OSPO Network supports open source work throughout the University of California system. Beginning in 2022, the UCSC OSPO took over the programmatic responsibilities of the UCSC Center for Research in Open Source Software (CROSS), including mentorship activities such as GSoC. The UCSC OSPO creates partnerships with stakeholders within and outside the UC system in order to help students learn from open source communities, support scientists in using open source to accelerate research efforts, and connect students and scientists with sponsors from industry, government, and foundations. The OSPO helps bridge the gap between academic research and successful open source projects by promoting innovative projects maintained by UC-affiliated scientists and researchers. We support the transfer of cutting-edge technology resulting from UC-originating research to industry via successful open source projects. Due to the multi-campus nature of our current efforts, the projects we support and promote cover a wide range of topics and technologies - including:\n\n- Open Source Hardware and Chip Design\n- AI / Machine Learning\n- Storage Systems and Devices\n- Data Science and visualization\n- Scientific Computing & Research Infrastructure\n- Reproducibility\n- Cloud-based computation\nAll of our mentors are scientists and researchers who are actively involved in one or more of these open source projects.", + "tech_tags": [ + "python", + "javascript", + "c/c++", + "machine learning", + "pytorch" + ], + "topic_tags": [ + "education", + "bioinformatics", + "data science", + "AI/ML", + "research software" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://ucosre.slack.com/home" + }, + { + "name": "email", + "value": "ospo-info-group@ucsc.edu" + }, + { + "name": "blog", + "value": "https://ucsc-ospo.github.io/#blog" + } + ], + "source_code": "https://github.com/uccross", + "ideas_link": "https://ucsc-ospo.github.io/osre26/#projects", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://ucosre.slack.com/home" + }, + { + "name": "email", + "value": "ospo-info-group@ucsc.edu" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://ucsc-ospo.github.io/#blog" + } + ] + }, + { + "name": "Open Technologies Alliance - GFOSS", + "slug": "open-technologies-alliance-gfoss", + "logo_url": "https://summerofcode.withgoogle.com/media/org/open-technologies-alliance-gfoss/kiyijull8pfdypve-360.png", + "website_url": "http://www.gfoss.eu", + "tagline": "Promote Open Standards and Open Source", + "license": "EUPL-1.2", + "categories": [ + "Science and medicine", + "Development tools", + "Artificial Intelligence" + ], + "contributor_guidance_url": "https://ellak.gr/wiki/index.php?title=Google_Summer_of_Code_2025_proposed_ideas", + "description": "Open Technologies Alliance (GFOSS) is a non-profit organization, with 37 Universities and Research Centers as its shareholders. Our main goal is to promote Openness.\nGFOSS – Open Technologies Alliance is a platform for Open Standards, Free Software, Open Content, Open Data & Open Hardware in Greece. The major Greek Universities and Research Centers participate in GFOSS – Open Technologies Alliance, while leading members of the Greek community of developers play a key role in the implementation of our policies. Through our initiatives we aspire to contribute and coordinate the efforts of groups of volunteers, public servants, university researchers and students enabling them to form the backbone of Greek FOSS development and implementation. GFOSS is one of the strategic actors for the promotion of OSS throughout Greece (see https://joinup.ec.europa.eu/sites/default/files/inline-files/OSS%20Country%20Intelligence%20Report_GR.pdf ). Many public administrations and academic institutions collaborate with GFOSS to implement open source projects and through Google Summer of Code we give the opportunity to students to actively engage in the production and the actual implementation of an open source project. GFOSS also contributes and advises on the development of various open source projects related to e-government and digital transformation in Greece (e.g. https://howto.gov.gr/ - https://forma.gov.gr/) and actively promotes the use of Open Source software and hardware in the Greek primary and secondary education through the Open Educational Technologies Competition (https://openedtech.ellak.gr/ )", + "tech_tags": [ + "javascript", + "c/c++", + "nodejs", + "python 3", + "Machine Learning (ML)" + ], + "topic_tags": [ + "web", + "robotics", + "open hardware", + "c++", + "Artificial Inteligence" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://lists.ellak.gr/gsoc-developers/listinfo.html" + }, + { + "name": "email", + "value": "info@eellak.gr" + }, + { + "name": "twitter", + "value": "https://twitter.com/eellak" + }, + { + "name": "blog", + "value": "https://gfoss.eu/" + } + ], + "source_code": "https://github.com/eellak", + "ideas_link": "https://ellak.gr/wiki/index.php?title=Google_Summer_of_Code_2026_proposed_ideas", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://lists.ellak.gr/gsoc-developers/listinfo.html" + }, + { + "name": "email", + "value": "info@eellak.gr" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/eellak" + }, + { + "name": "blog", + "value": "https://gfoss.eu/" + } + ] + }, + { + "name": "omegaUp", + "slug": "omegaup", + "logo_url": "https://summerofcode.withgoogle.com/media/org/omegaup/uvgilx7vyspavjox-360.png", + "website_url": "https://omegaup.org", + "tagline": "Open CS Education as a catalyst for social change", + "license": "BSD-3-Clause", + "categories": [ + "End user applications", + "Web" + ], + "contributor_guidance_url": "https://github.com/omegaup/omegaup/wiki/Google-Summer-of-Code-2025", + "description": "omegaUp is a non-profit organization (501c3) aimed to increase the number of talented Software Engineers in Latin America. Our open source platform omegaUp.com lets students immerse in a learning environment that fosters self paced learning of computer science skills with a democratic access to state-of-the-art learning tools.\n\nTeachers and tutors can create new coding challenges or use existing ones to start online programming competitions with local, national or even international reach, with automated grading of student's coding solutions. The omegaUp.com platform also enables teachers to leverage Competitive Programming tools and concepts inside the classroom to improve their educational experience.", + "tech_tags": [ + "python", + "mysql", + "php", + "typescript", + "vue.js" + ], + "topic_tags": [ + "education", + "web", + "cloud", + "edtech", + "UX/UI" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://discord.com/invite/gMEMX7Mrwe" + }, + { + "name": "blog", + "value": "https://blog.omegaup.com/" + } + ], + "source_code": "https://github.com/omegaup", + "ideas_link": "https://github.com/omegaup/omegaup/blob/main/frontend/www/docs/Google-Summer-of-Code-2026.md", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://discord.com/invite/gMEMX7Mrwe" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://blog.omegaup.com/" + } + ] + }, + { + "name": "LibreHealth", + "slug": "librehealth", + "logo_url": "https://summerofcode.withgoogle.com/media/org/librehealth/wulnuhdjtsi0ngiv-360.png", + "website_url": "https://librehealth.io", + "tagline": "Healthcare for Humanity", + "license": "MPL-2.0", + "categories": [ + "Science and medicine", + "Data" + ], + "contributor_guidance_url": "https://forums.librehealth.io/t/readme-making-a-successful-gsoc-proposal/4359", + "description": "LibreHealth is the foundation of a worldwide ecosystem of open source Health IT innovation and is a place where people can come together to build tools that enhance the quality of healthcare around the world.\n\nWe currently have under our umbrella the following projects:\n\n- LibreHealth Toolkit (http://librehealth.io/projects/lh-toolkit/), a foundational base for - building Health IT tools\n\n- LibreHealth EHR (http://librehealth.io/projects/lh-ehr/), an electronic health record derived from best practices and technology from leading open source systems.\n\n- LibreHealth Radiology (https://librehealth.io/projects/lh-radiology), a specialized distribution of LibreHealth Toolkit customized for radiology healthcare professionals\n\nOur GSoC student projects will address the real-life needs of our projects to help improve the delivery of health care around the world. We have a team of expert mentors with decades of experience to help you in your work. They will be continually adding project ideas to our forum (https://forums.librehealth.io), and we encourage you to suggest ideas too as you learn more about our projects.\n\nCheck out project ideas (this will change from year to year): https://forums.librehealth.io/ideas", + "tech_tags": [ + "python", + "javascript", + "android", + "java", + "dart/flutter" + ], + "topic_tags": [ + "web", + "deep learning", + "hfoss", + "radiology", + "mobile apps" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://forums.librehealth.io" + }, + { + "name": "twitter", + "value": "https://twitter.com/LibreHealthIO" + }, + { + "name": "twitter", + "value": "https://floss.social/@librehealth" + } + ], + "source_code": "https://gitlab.com/librehealth", + "ideas_link": "https://forums.librehealth.io/ideas", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://forums.librehealth.io" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/LibreHealthIO" + }, + { + "name": "twitter", + "value": "https://floss.social/@librehealth" + } + ] + }, + { + "name": "DBpedia", + "slug": "dbpedia", + "logo_url": "https://summerofcode.withgoogle.com/media/org/dbpedia/cgjegpmawtu5fr6w-360.png", + "website_url": "https://www.dbpedia.org/", + "tagline": "Global and Unified Access to Knowledge Graphs.", + "license": "Apache-2.0", + "categories": [ + "Data", + "Web" + ], + "contributor_guidance_url": "https://docs.google.com/document/d/e/2PACX-1vQA3I-8JnxH78UOyVhVy1cpDCxwWvqs8BCN9YsR8UqOBiA-OigrSFd9SvTd2AuWdko1TSPtjip6NM65/pub", + "description": "DBpedia is a crowd-sourced community effort to extract structured information from Wikipedia and make this information available on the Web. It allows for a global and unified access to Knowledge Graphs.", + "tech_tags": [ + "python", + "javascript", + "java", + "scala", + "rdf" + ], + "topic_tags": [ + "machine learning", + "semantic web", + "linked data", + "knowledge graph", + "largelanguagemodel" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://dbpedia.slack.com/" + }, + { + "name": "mailingList", + "value": "https://forum.dbpedia.org/" + }, + { + "name": "email", + "value": "dbpedia@infai.org" + }, + { + "name": "blog", + "value": "https://www.dbpedia.org/blog/" + }, + { + "name": "twitter", + "value": "https://twitter.com/dbpedia" + } + ], + "source_code": "https://github.com/dbpedia/", + "ideas_link": "https://forum.dbpedia.org/tag/gsoc2026-ideas", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://dbpedia.slack.com/" + }, + { + "name": "mailingList", + "value": "https://forum.dbpedia.org/" + }, + { + "name": "email", + "value": "dbpedia@infai.org" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://www.dbpedia.org/blog/" + }, + { + "name": "twitter", + "value": "https://twitter.com/dbpedia" + } + ] + }, + { + "name": "Liquid Galaxy project", + "slug": "liquid-galaxy-project", + "logo_url": "https://summerofcode.withgoogle.com/media/org/liquid-galaxy-project/idbd8hebl6j7ajxn-360.png", + "website_url": "https://www.liquidgalaxy.eu", + "tagline": "We code immersive and interactive apps with GEarth", + "license": "Apache-2.0", + "categories": [ + "Data" + ], + "contributor_guidance_url": "https://www.liquidgalaxy.eu/2025/11/GSoC2026.html", + "description": "Liquid Galaxy is a remarkable panoramic system that is tremendously compelling. It started off as a Google 20% project to run Google Earth across a small cluster of PC's and it has grown from there! \nLiquid Galaxy hardware consists of one or more computers driving multiple displays. Liquid Galaxy applications have been developed using a master/slave architecture. The view orientation of each slave display is configured in reference to the view of the master display. Navigation on the system is done from the master instance and the location on the master is broadcast to the slaves over UDP. The slave instances, knowing their own locations in reference to the master, then change their views accordingly.\nThe Liquid Galaxy Project, while making use of Google Earth software, does not develop the Google Earth code-base itself. Google Earth is not open-source software, although it is free (as in beer). Instead, the Liquid Galaxy Project works on extending the Liquid Galaxy system with open-source software both improving its administration and enabling open-source applications, so that content of various types can be displayed in the immersive panoramic environment.\nArtificial Intelligence focus:\n2026 is the year when AI is going to change the coding industry, and GSoC and the open-source projects on it, have to jump on.\nAt the Liquid Galaxy community, we’ve been using AI for years to obtain data to be shown on Google Earth for our projects, using many models and technologies. \nThis 2026, all the projects will have an Artificial Intelligence voice, and most of them will use of diferent AI models to handle queries and arrange data, starting from Google's Gemini and Gemma.", + "tech_tags": [ + "linux", + "android", + "nodejs", + "flutter", + "Google Earth" + ], + "topic_tags": [ + "visualization", + "artificial intelligence", + "networking", + "maps", + "ux" + ], + "contact_links": [ + { + "name": "email", + "value": "liquidgalaxylab@gmail.com" + }, + { + "name": "mailingList", + "value": "https://discord.gg/peGA5K8tJU" + }, + { + "name": "twitter", + "value": "https://twitter.com/_liquidgalaxy" + } + ], + "source_code": "https://github.com/LiquidGalaxyLAB/", + "ideas_link": "https://www.liquidgalaxy.eu/2026/01/gsoc-2026-project-ideas.html", + "direct_comm_methods": [ + { + "name": "email", + "value": "liquidgalaxylab@gmail.com" + }, + { + "name": "mailingList", + "value": "https://discord.gg/peGA5K8tJU" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/_liquidgalaxy" + } + ] + }, + { + "name": "Open Food Facts", + "slug": "open-food-facts", + "logo_url": "https://summerofcode.withgoogle.com/media/org/open-food-facts/ypo4wfmbo5ueujuf-360.png", + "website_url": "https://world.openfoodfacts.org/discover", + "tagline": "Better food choices for your health & the planet", + "license": "AGPL-3.0", + "categories": [ + "Science and medicine", + "End user applications" + ], + "contributor_guidance_url": "https://world.openfoodfacts.org/google-summer-of-code", + "description": "Open Food Facts is the \"Wikipedia of food\". Our community collects information about all the food products in the world, using mobile phones to help people make better choices for themselves and the planet, and to transform the whole food system along the way.\nWe do so using mobile crowdsourcing, community involvement and machine learning,", + "tech_tags": [ + "python", + "javascript", + "machine learning", + "perl", + "flutter" + ], + "topic_tags": [ + "open data", + "health", + "environment", + "mobile", + "food" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://slack.openfoodfacts.org" + }, + { + "name": "email", + "value": "contact@openfoodfacts.org" + }, + { + "name": "twitter", + "value": "https://twitter.com/OpenFoodFacts" + }, + { + "name": "blog", + "value": "https://blog.openfoodfacts.org/en/news/tis-the-season" + }, + { + "name": "facebook", + "value": "https://facebook.com/OpenFoodFacts" + } + ], + "source_code": "https://github.com/openfoodfacts", + "ideas_link": "https://wiki.openfoodfacts.org/GSOC/2026_ideas_list", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://slack.openfoodfacts.org" + }, + { + "name": "email", + "value": "contact@openfoodfacts.org" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/OpenFoodFacts" + }, + { + "name": "blog", + "value": "https://blog.openfoodfacts.org/en/news/tis-the-season" + }, + { + "name": "facebook", + "value": "https://facebook.com/OpenFoodFacts" + } + ] + }, + { + "name": "ScummVM", + "slug": "scummvm", + "logo_url": "https://summerofcode.withgoogle.com/media/org/scummvm/bnok4srtehdy3fbj-360.png", + "website_url": "https://www.scummvm.org/", + "tagline": "Adventure and RPG preservation project", + "license": "GPL-3.0", + "categories": [ + "End user applications", + "Media" + ], + "contributor_guidance_url": "https://wiki.scummvm.org/index.php/GSoC_Application", + "description": "ScummVM is a game preservation project with a quickly growing code base since more than 20 years. Originally focused on 2D Point&Click adventure games, its scope widened in 2016 to RPG thanks to successful GSoC students and to 3D games in 2020 after the merge with its sister project, ResidualVM. The purpose is only to replace the game executable, not to enhance or replace the game assets.", + "tech_tags": [ + "python", + "opengl", + "c++", + "assembly", + "sdl" + ], + "topic_tags": [ + "games", + "game engines", + "software preservation", + "software archeology" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://discord.gg/4cDsMNtcpG" + }, + { + "name": "mailingList", + "value": "https://wiki.scummvm.org/index.php/Summer_of_Code/GSoC_Contact" + }, + { + "name": "blog", + "value": "https://planet.scummvm.org/" + } + ], + "source_code": "https://github.com/scummvm/", + "ideas_link": "https://www.scummvm.org/gsoc-2026-ideas", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://discord.gg/4cDsMNtcpG" + }, + { + "name": "mailingList", + "value": "https://wiki.scummvm.org/index.php/Summer_of_Code/GSoC_Contact" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://planet.scummvm.org/" + } + ] + }, + { + "name": "Open Science Labs", + "slug": "open-science-labs", + "logo_url": "https://summerofcode.withgoogle.com/media/org/open-science-labs/rjv8l7mrkiwlv9ab-360.png", + "website_url": "https://opensciencelabs.org", + "tagline": "The community open to science and technology.", + "license": "BSD-3-Clause", + "categories": [ + "Science and medicine", + "Development tools" + ], + "contributor_guidance_url": "https://opensciencelabs.org/opportunities/gsoc/guides/contributor/", + "description": "Open Science Labs is a global community dedicated to creating an open space for\nteaching, learning, and sharing information about open science and computational\ntools. Our community develops tools that address real-world problems and\ncollaborates with other projects and workgroups to improve technology and create\ninternational opportunities for our community. Although our focus may seem\nbroad, we initially prioritize supporting Research Software Engineers (RSEs) who\noften face computational challenges in their work. We recognize that many\ncolleagues in scientific fields may not be familiar with programming languages,\ncomputational libraries, version control systems, databases, DevOps, and other\ncomputational tools. Therefore, we aim to provide a safe and open space for\nindividuals to learn and share their knowledge. Our community is open to\neveryone, including students, professors, and industry professionals, as we\nbelieve that the challenges and technologies used in these fields are frequently\nsimilar, if not the same (in many cases).", + "tech_tags": [ + "python", + "javascript", + "llvm", + "c++", + "docker" + ], + "topic_tags": [ + "web", + "ai", + "devops", + "devtools", + "open-science" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://opensciencelabs.org/discord" + }, + { + "name": "twitter", + "value": "https://twitter.com/opensciencelabs" + }, + { + "name": "blog", + "value": "https://opensciencelabs.org/blog/" + } + ], + "source_code": "https://github.com/OpenScienceLabs", + "ideas_link": "https://opensciencelabs.org/opportunities/gsoc/project-ideas", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://opensciencelabs.org/discord" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/opensciencelabs" + }, + { + "name": "blog", + "value": "https://opensciencelabs.org/blog/" + } + ] + }, + { + "name": "Boa", + "slug": "boa", + "logo_url": "https://summerofcode.withgoogle.com/media/org/boa/vhimc4zkw6j9t8wm-360.png", + "website_url": "https://boajs.dev/", + "tagline": "An ECMAScript engine written in Rust", + "license": "MIT", + "categories": [ + "Programming languages", + "Web" + ], + "contributor_guidance_url": "https://boajs.dev/docs/contributing", + "description": "Boa is an open-source, embeddable JavaScript engine written in Rust. The project aims to provide a correct, safe, and performant implementation of the ECMAScript specification, with a strong focus on long-term maintainability and developer ergonomics.\n\nBoa is designed to be used as a library, enabling developers to embed JavaScript into Rust applications, tooling, and experimental runtimes. The project emphasizes clear internal architecture, rigorous testing, and close alignment with the evolving ECMAScript standard.\n\nDevelopment is community-driven and spans multiple areas of language runtime engineering, including parsing, bytecode compilation, virtual machine execution, garbage collection, performance optimization, and specification conformance. Boa is actively developed and used as a platform for exploring modern JavaScript engine design in a memory-safe systems programming language.\n\nIn 2026 Boa's work has been used in browsers such as Google Chrome and Node.js to implement Temporal, you can read more about this in https://boajs.dev/blog/2025/09/24/temporal-release. Boa has also been used as an implementation to help drive standards within TC39 (the standards committee behind JavaScript).", + "tech_tags": [ + "javascript", + "rust" + ], + "topic_tags": [ + "compilers", + "web", + "performance", + "interpreters" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://matrix.to/#/#boa:matrix.org" + }, + { + "name": "chat", + "value": "https://discord.gg/tUFFk9Y" + }, + { + "name": "twitter", + "value": "https://bsky.app/profile/boajs.dev" + }, + { + "name": "blog", + "value": "https://boajs.dev" + } + ], + "source_code": "https://github.com/boa-dev/boa", + "ideas_link": "https://boajs.dev/roadmap", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://matrix.to/#/#boa:matrix.org" + }, + { + "name": "chat", + "value": "https://discord.gg/tUFFk9Y" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://bsky.app/profile/boajs.dev" + }, + { + "name": "blog", + "value": "https://boajs.dev" + } + ] + }, + { + "name": "OSGeo (Open Source Geospatial Foundation)", + "slug": "osgeo-open-source-geospatial-foundation", + "logo_url": "https://summerofcode.withgoogle.com/media/org/osgeo-open-source-geospatial-foundation/yundulx00fbd1akm-360.png", + "website_url": "https://www.osgeo.org/", + "tagline": "The Open Source Geospatial Foundation", + "license": "GPL-2.0", + "categories": [ + "End user applications", + "Other" + ], + "contributor_guidance_url": "https://wiki.osgeo.org/wiki/Google_Summer_of_Code_Recommendations_for_Students", + "description": "The Open Source Geospatial Foundation (OSGeo) is a not-for-profit organization whose mission is to foster global adoption of open geospatial technology by being an inclusive software foundation devoted to an open philosophy and participatory community-driven development.\n\nOSGeo serves as an umbrella organization for the Open Source Geospatial community in general and several code projects in particular:\n* Web Mapping: deegree, geomajas, GeoMOOSE, GeoServer, Mapbender, MapFish, MapGuide Open Source, MapServer, OpenLayers.\n* Desktop Applications: GRASS GIS, gvSIG, Marble, QGIS.\n* Geospatial Libraries: FDO, GDAL/OGR, GEOS, GeoTools, OSSIM, PostGIS.\n* Metadata Catalogues: GeoNetwork, pycsw.\n* Content Management Systems: GeoNode.\n* Community Projects: pgRouting, istSOS, MetaCRS, Opticks, Orfeo ToolBox (OTB), PyWPS, Team Engine, ZOO-Project.\n* Other (non-code) Projects: GeoForAll (Education and Curriculum), OSGeoLive DVD, Public Geospatial Data.\n\nWe host regional and international FOSS4G conferences with typical attendance of 500-1100+ geospatial developers, industry and government leaders, and researchers. Our mailing lists collectively go out to ~ 30,000 unique subscribers.", + "tech_tags": [ + "c", + "python", + "javascript", + "java", + "c++" + ], + "topic_tags": [ + "open science", + "gis", + "citizen science", + "geolocation", + "mapping" + ], + "contact_links": [ + { + "name": "email", + "value": "gsoc-admin@osgeo.org" + }, + { + "name": "chat", + "value": "https://wiki.osgeo.org/wiki/Google_Summer_of_Code_Recommendations_for_Students#How_to_get_in_contact_via_IRC" + }, + { + "name": "mailingList", + "value": "https://www.osgeo.org/community/communications/" + }, + { + "name": "twitter", + "value": "https://x.com/osgeo" + }, + { + "name": "facebook", + "value": "https://www.facebook.com/OSGeoFoundation/" + }, + { + "name": "blog", + "value": "http://planet.osgeo.org/" + } + ], + "source_code": "https://github.com/OSGeo", + "ideas_link": "https://wiki.osgeo.org/wiki/Google_Summer_of_Code_2026_Ideas", + "direct_comm_methods": [ + { + "name": "email", + "value": "gsoc-admin@osgeo.org" + }, + { + "name": "chat", + "value": "https://wiki.osgeo.org/wiki/Google_Summer_of_Code_Recommendations_for_Students#How_to_get_in_contact_via_IRC" + }, + { + "name": "mailingList", + "value": "https://www.osgeo.org/community/communications/" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://x.com/osgeo" + }, + { + "name": "facebook", + "value": "https://www.facebook.com/OSGeoFoundation/" + }, + { + "name": "blog", + "value": "http://planet.osgeo.org/" + } + ] + }, + { + "name": "KubeVirt", + "slug": "kubevirt", + "logo_url": "https://summerofcode.withgoogle.com/media/org/kubevirt/pqdi8ojm0atxoo1s-360.png", + "website_url": "https://kubevirt.io", + "tagline": "Building a virtualization API for Kubernetes", + "license": "Apache-2.0", + "categories": [ + "Infrastructure and cloud" + ], + "contributor_guidance_url": "https://github.com/kubevirt/community/wiki/Google-Summer-of-Code-2025#how-and-where-to-find-help", + "description": "KubeVirt is a virtual machine management extension for Kubenetes, allowing you to create and manage virtualised workloads natively alongside container workloads. It does this by adding virtualization resources through the Kubernetes Custom Resource Definition API.\n\nKubeVirt is a Cloud Native Computing Project (CNCF) incubating project.", + "tech_tags": [ + "golang", + "grpc" + ], + "topic_tags": [ + "virtualization", + "containers", + "kubernetes" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://kubernetes.slack.com/archives/C0163DT0R8X" + }, + { + "name": "mailingList", + "value": "https://groups.google.com/forum/#!forum/kubevirt-dev" + }, + { + "name": "twitter", + "value": "https://twitter.com/kubevirt" + } + ], + "source_code": "https://github.com/kubevirt", + "ideas_link": "https://github.com/kubevirt/community/wiki/Google-Summer-of-Code-2026", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://kubernetes.slack.com/archives/C0163DT0R8X" + }, + { + "name": "mailingList", + "value": "https://groups.google.com/forum/#!forum/kubevirt-dev" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/kubevirt" + } + ] + }, + { + "name": "KDE Community", + "slug": "kde-community", + "logo_url": "https://summerofcode.withgoogle.com/media/org/kde-community/1mbnnsqwd2ejcmy8-360.png", + "website_url": "https://kde.org/", + "tagline": "Control your digital life", + "license": "LGPL-2.1", + "categories": [ + "End user applications" + ], + "contributor_guidance_url": "https://community.kde.org/GSoC", + "description": "Community of technologists, designers, writers and advocates who work to ensure freedom for all people through our software.", + "tech_tags": [ + "c++", + "qt", + "qml", + "data structures" + ], + "topic_tags": [ + "education", + "science", + "applications", + "desktop environment" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://community.kde.org/Matrix" + }, + { + "name": "mailingList", + "value": "https://mail.kde.org/mailman/listinfo/kde-devel" + }, + { + "name": "chat", + "value": "https://userbase.kde.org/IRC_Channels" + }, + { + "name": "twitter", + "value": "https://twitter.com/kdecommunity" + } + ], + "source_code": "https://invent.kde.org", + "ideas_link": "https://community.kde.org/GSoC/2026/Ideas", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://community.kde.org/Matrix" + }, + { + "name": "mailingList", + "value": "https://mail.kde.org/mailman/listinfo/kde-devel" + }, + { + "name": "chat", + "value": "https://userbase.kde.org/IRC_Channels" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/kdecommunity" + } + ] + }, + { + "name": "OpenMS Inc", + "slug": "openms-inc", + "logo_url": "https://summerofcode.withgoogle.com/media/org/openms-inc/qhamer7p2auro5cs-360.png", + "website_url": "https://OpenMS.org", + "tagline": "Advancing Algorithms & AI for Biomedical Insights", + "license": "BSD-3-Clause", + "categories": [ + "Science and medicine", + "Data" + ], + "contributor_guidance_url": "https://openms.de/news/gsoc2026/", + "description": "OpenMS is an open-source C++ software library for mass spectrometry data management and analysis with python wrappers. OpenMS houses an expansive modular toolset and ready-to-use scientific workflows in Galaxy, KNIME and nextflow.", + "tech_tags": [ + "python", + "cython", + "c++", + "pytorch", + "Streamlit" + ], + "topic_tags": [ + "open science", + "deep learning", + "algorithms", + "mass spectrometry", + "webdev" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://discord.com/invite/4TAGhqJ7s5" + }, + { + "name": "blog", + "value": "https://openms.de/news/" + } + ], + "source_code": "https://github.com/OpenMS/OpenMS", + "ideas_link": "https://openms.de/news/gsoc2026/", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://discord.com/invite/4TAGhqJ7s5" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://openms.de/news/" + } + ] + }, + { + "name": "LabLua", + "slug": "lablua", + "logo_url": "https://summerofcode.withgoogle.com/media/org/lablua/thpyrwywpx4z6p6s.png", + "website_url": "http://www.lua.inf.puc-rio.br", + "tagline": "Programming Language Research with emphasis on Lua", + "license": "MIT", + "categories": [ + "Operating systems", + "Programming languages" + ], + "contributor_guidance_url": "https://github.com/labluapucrio/gsoc/blob/main/apply.md", + "description": "LabLua is a research lab at the Catholic University of Rio de Janeiro (PUC-Rio), affiliated with its Computer Science Department. It is dedicated to research on programming languages, with emphasis on the Lua language and reactive programming. It was founded on May 2004 by Prof. Roberto Ierusalimschy, the chief architect of the Lua language.\n\n\nLabLua consists of people from a wide range of backgrounds, including PhD candidates, professors and alumni who are the developers and maintainers of projects that are used by the Lua community at large.\n\n\nWhat is Lua?\n\n\nLua is a powerful, efficient, lightweight, embeddable scripting language. It supports procedural programming, object-oriented programming, functional programming, data-driven programming, and data description.\n\n\nLua has been used in many industrial applications (e.g., Adobe's Photoshop Lightroom), with an emphasis on embedded systems (e.g., the Ginga middleware for digital TV in Brazil) and games (e.g., World of Warcraft and Angry Birds). Several versions of Lua have been released and used in real applications since its creation in 1993.\n\nWhat is Lunatik?\n\nLunatik is an extension framework for Linux that combines the approaches of Extensible Operating Systems and Scripting Languages. This approach, named Kernel Scripting, advocates that OS kernels can be dynamically extended by using a high-level scripting language. Lunatik is a programming and execution environment that offers two main features: it allows developers to make subsystems scriptable and allows users to run Lua scripts in the kernel.\n\nWhat is Pallene?\n\nPallene is a statically-typed programming language, intended to serve as a more performant companion to Lua. It is designed to seamlessly interoperate with Lua, with first-class support for Lua data types. Pallene is able to be faster than Lua (sometimes as fast as LuaJIT) by taking advantage of the type annotations in Pallene in order to guide the compiler into outputting efficient executable code.", + "tech_tags": [ + "lua", + "luarocks", + "kernel", + "lunatik", + "pallene" + ], + "topic_tags": [ + "compilers", + "scripting languages", + "kernel scripting", + "statically-typed languages" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://groups.google.com/g/labluagsoc" + }, + { + "name": "chat", + "value": "https://matrix.to/#/#lablua:matrix.org" + }, + { + "name": "twitter", + "value": "https://twitter.com/labluapucrio" + } + ], + "source_code": "http://www.lua.inf.puc-rio.br/projects.html", + "ideas_link": "https://github.com/labluapucrio/gsoc", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://groups.google.com/g/labluagsoc" + }, + { + "name": "chat", + "value": "https://matrix.to/#/#lablua:matrix.org" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/labluapucrio" + } + ] + }, + { + "name": "RTEMS Project", + "slug": "rtems-project", + "logo_url": "https://summerofcode.withgoogle.com/media/org/rtems-project/mgzdqflwj84er5ml-360.png", + "website_url": "https://www.rtems.org/", + "tagline": "A real-time operating system for Earth & Space", + "license": "BSD-2-Clause", + "categories": [ + "Operating systems", + "Science and medicine" + ], + "contributor_guidance_url": "https://projects.rtems.org/gsoc/", + "description": "RTEMS (Real-Time Executive for Multiprocessor Systems) is a free real-time operating system (RTOS) designed for deeply embedded systems such as automobile electronics, robotic controllers, and on-board satellite instruments. \n\nRTEMS is free open source software that supports multi-processor systems for over a dozen CPU architectures and over 150 specific system boards. In addition, RTEMS is designed to support embedded applications with the most stringent real-time requirements while being compatible with open standards such as POSIX. RTEMS includes optional functional features such as TCP/IP and file systems while still offering minimum executable sizes under 20 KB in useful configurations.\n\nThe RTEMS Project is the collection of individuals, companies, universities, and research institutions that collectively maintain and enhance the RTEMS software base. As a community, we are proud to be popular in the space application software and experimental physics communities. RTEMS has been to Venus, circles Mars, is aboard Curiosity, is in the asteroid belt, is on its way to Jupiter, and is circling the sun. It is in use in many high energy physics research labs around the world. There are many RTEMS users who do not belong to the space or physics communities, but our small part in contributing to basic scientific knowledge makes us proud.", + "tech_tags": [ + "python", + "c/c++", + "assembly", + "posix" + ], + "topic_tags": [ + "kernel", + "embedded", + "real-time", + "multicore", + "rtos" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://www.rtems.org/discord" + }, + { + "name": "mailingList", + "value": "https://users.rtems.org/" + }, + { + "name": "facebook", + "value": "https://www.facebook.com/groups/4847496844" + } + ], + "source_code": "https://gitlab.rtems.org/rtems/", + "ideas_link": "https://projects.rtems.org/gsoc/", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://www.rtems.org/discord" + }, + { + "name": "mailingList", + "value": "https://users.rtems.org/" + } + ], + "social_comm_methods": [ + { + "name": "facebook", + "value": "https://www.facebook.com/groups/4847496844" + } + ] + }, + { + "name": "Learning Unlimited", + "slug": "learning-unlimited", + "logo_url": "https://summerofcode.withgoogle.com/media/org/learning-unlimited/prqi7cnmji8guahm-360.png", + "website_url": "https://www.learningu.org/", + "tagline": "Building excitement for teaching and learning", + "license": "MIT", + "categories": [ + "End user applications", + "Web" + ], + "contributor_guidance_url": "https://docs.google.com/document/d/e/2PACX-1vSQrzex-1PlqTGwOiFmiFnGlm1_3ajsf-Wo2z-9hUzJybZQOBD4EraIH_iW7Qn87TPB2SR5O_JX1T6C/pub", + "description": "Learning Unlimited's mission is to create educational opportunities for high school and middle school students, and to provide leadership and teaching opportunities for college students. Learning Unlimited strives to engage students of all ages in an educational setting to share and discover their passions. To accomplish this, Learning Unlimited links local universities with their communities. Our open source work revolves around building and maintaining website infrastructure for these chapters to use.", + "tech_tags": [ + "python", + "javascript", + "django", + "html", + "css" + ], + "topic_tags": [ + "education", + "web", + "full stack", + "Outreach" + ], + "contact_links": [ + { + "name": "email", + "value": "gsoc-mentors-2026@learningu.org" + }, + { + "name": "facebook", + "value": "https://www.facebook.com/SplashLearningUnlimited" + } + ], + "source_code": "https://github.com/learning-unlimited", + "ideas_link": "https://docs.google.com/document/d/e/2PACX-1vQHE4OyXDdhDPkP2X7OWdSjauW_rQi1Fhr3RwEgTrSjDbrHO3nePDCdJkCheeocMrRTdqbHqnmb9WcG/pub", + "direct_comm_methods": [ + { + "name": "email", + "value": "gsoc-mentors-2026@learningu.org" + } + ], + "social_comm_methods": [ + { + "name": "facebook", + "value": "https://www.facebook.com/SplashLearningUnlimited" + } + ] + }, + { + "name": "Global Alliance for Genomics and Health", + "slug": "global-alliance-for-genomics-and-health", + "logo_url": "https://summerofcode.withgoogle.com/media/org/global-alliance-for-genomics-and-health/0bnlmihuhff098xd-360.png", + "website_url": "https://ga4gh.org", + "tagline": "We develop genomics tools to benefit human health", + "license": "Apache-2.0", + "categories": [ + "Science and medicine", + "Web" + ], + "contributor_guidance_url": "https://docs.google.com/document/d/1Sje_91qcUMkRK9d_BS_8Y-c2r7cCa8h4Csy6d0-xKlQ/edit?usp=sharing", + "description": "The Global Alliance for Genomics and Health (GA4GH) was formed to help accelerate the potential of genomic medicine to advance human health. It brings together over 400 leading genome institutes and centers with IT industry leaders to create global standards and tools for the secure, privacy respecting and interoperable sharing of Genomic data.", + "tech_tags": [ + "python", + "postgresql", + "java", + "react", + "rust" + ], + "topic_tags": [ + "security", + "genomics", + "bioinformatics", + "genetics", + "standards" + ], + "contact_links": [ + { + "name": "email", + "value": "gsoc-mentors-2025@ga4gh.org" + }, + { + "name": "twitter", + "value": "https://twitter.com/ga4gh" + } + ], + "source_code": "https://github.com/ga4gh", + "ideas_link": "https://docs.google.com/document/d/1SeDP5Ny7Gt42g5oY9jdN15Wx6RXtJ9dDcaPeYBvKBcE/edit?tab=t.0#heading=h.qflicizcqlm", + "direct_comm_methods": [ + { + "name": "email", + "value": "gsoc-mentors-2025@ga4gh.org" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/ga4gh" + } + ] + }, + { + "name": "Zulip", + "slug": "zulip", + "logo_url": "https://summerofcode.withgoogle.com/media/org/zulip/sx5ruvwv6nyugbk7-360.png", + "website_url": "https://zulip.com/", + "tagline": "Organized chat for distributed teams", + "license": "Apache-2.0", + "categories": [ + "End user applications", + "Social and communication" + ], + "contributor_guidance_url": "https://zulip.readthedocs.io/en/latest/outreach/apply.html", + "description": "Zulip is the only modern team chat app that is ideal for both live and asynchronous conversations. Zulip has a web app, a cross-platform mobile app for iOS and Android, cross-platform desktop and terminal apps, and over 100 native integrations. The entire Zulip codebase is 100% open source.\n\nZulip has been gaining in popularity since it was released as open source software in late 2015, with code contributions from over 1000 people from all around the world. Thousands of people use Zulip every day, and your work on Zulip will have meaningful impact on their experience.\n\nAs an organization, we value engaged, responsive mentorship and making sure our product quality is extremely high. You can expect to receive disciplined code reviews by highly experienced engineers. Since Zulip is a team chat product, your GSoC experience with the Zulip project will be highly interactive.\n\nAs part of our commitment to mentorship, Zulip has over 160,000 words of documentation for developers, much of it designed to explain not just how Zulip works, but why Zulip works the way that it does.\n\nTo learn more about the experience of doing GSoC with Zulip, check out our blog post: https://blog.zulip.com/2025/12/02/google-summer-of-code-2025/", + "tech_tags": [ + "python", + "django", + "flutter", + "css", + "typescript" + ], + "topic_tags": [ + "great developer tooling", + "visual design", + "teaching quality codebase", + "team chat", + "integrations" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://chat.zulip.org/" + }, + { + "name": "blog", + "value": "https://blog.zulip.com/" + } + ], + "source_code": "https://github.com/zulip/zulip", + "ideas_link": "https://zulip.readthedocs.io/en/latest/outreach/gsoc.html", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://chat.zulip.org/" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://blog.zulip.com/" + } + ] + }, + { + "name": "The NetBSD Foundation", + "slug": "the-netbsd-foundation", + "logo_url": "https://summerofcode.withgoogle.com/media/org/the-netbsd-foundation/gi3vozsqpecopqku-360.png", + "website_url": "https://www.NetBSD.org/", + "tagline": "Of course it runs NetBSD", + "license": "BSD-2-Clause", + "categories": [ + "Operating systems", + "Programming languages" + ], + "contributor_guidance_url": "https://wiki.NetBSD.org/projects/gsoc/", + "description": "NetBSD is a free, fast, secure, and highly portable Unix-like Open Source operating system. It is available for a wide range of platforms, from large-scale servers and powerful desktop systems to handheld and embedded devices. Its clean design and advanced features make it excellent for use in both production and research environments, and the source code is freely available under a business-friendly license. NetBSD is developed and supported by a large and vivid international community. Many applications are readily available through pkgsrc, the NetBSD Packages Collection.", + "tech_tags": [ + "c", + "shell script", + "make", + "unix", + "bsd" + ], + "topic_tags": [ + "kernel", + "packaging", + "userland", + "unix", + "bsd" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://web.libera.chat/#NetBSD-code" + }, + { + "name": "mailingList", + "value": "https://www.NetBSD.org/mailinglists/" + }, + { + "name": "blog", + "value": "https://blog.NetBSD.org/" + }, + { + "name": "twitter", + "value": "https://twitter.com/netbsd" + } + ], + "source_code": "https://github.com/NetBSD", + "ideas_link": "https://wiki.NetBSD.org/projects/gsoc/", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://web.libera.chat/#NetBSD-code" + }, + { + "name": "mailingList", + "value": "https://www.NetBSD.org/mailinglists/" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://blog.NetBSD.org/" + }, + { + "name": "twitter", + "value": "https://twitter.com/netbsd" + } + ] + }, + { + "name": "Ceph", + "slug": "ceph", + "logo_url": "https://summerofcode.withgoogle.com/media/org/ceph/rvqqprqtyq0rfrcc-360.png", + "website_url": "https://ceph.io/en/", + "tagline": "The Future of Storage", + "license": "LGPL-2.1", + "categories": [ + "Data", + "Infrastructure and cloud" + ], + "contributor_guidance_url": "https://docs.ceph.com/en/latest/dev/developer_guide/", + "description": "An open-source storage platform that implements storage on a single distributed computer cluster and provides a 3-in-1 interface for object-, block- and file-level storage.", + "tech_tags": [ + "python", + "javascript", + "c++" + ], + "topic_tags": [ + "distributed systems", + "Software-Defined-Storage" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://ceph.io/en/community/connect/" + }, + { + "name": "chat", + "value": "https://join.slack.com/t/ceph-storage/shared_invite/zt-1n8yigss2-yYg099VlTiGMCLIziG_h4Q" + }, + { + "name": "blog", + "value": "https://ceph.io/en/news/blog/" + }, + { + "name": "twitter", + "value": "https://twitter.com/ceph" + } + ], + "source_code": "https://github.com/ceph", + "ideas_link": "https://ceph.io/en/developers/google-summer-of-code/", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://ceph.io/en/community/connect/" + }, + { + "name": "chat", + "value": "https://join.slack.com/t/ceph-storage/shared_invite/zt-1n8yigss2-yYg099VlTiGMCLIziG_h4Q" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://ceph.io/en/news/blog/" + }, + { + "name": "twitter", + "value": "https://twitter.com/ceph" + } + ] + }, + { + "name": "GNOME Foundation", + "slug": "gnome-foundation", + "logo_url": "https://summerofcode.withgoogle.com/media/org/gnome-foundation/aqwqx1x6ozjnxsak-360.png", + "website_url": "https://gnome.org", + "tagline": "A diverse and sustainable free software desktop.", + "license": "GPL-2.0", + "categories": [ + "Operating systems", + "Development tools" + ], + "contributor_guidance_url": "https://gsoc.gnome.org", + "description": "The GNOME Foundation is a non-profit organization that believes in a world where everyone is empowered by technology they can trust. We do this by building a diverse and sustainable free software personal computing ecosystem.", + "tech_tags": [ + "c", + "linux", + "rust", + "gtk", + "Flatpak" + ], + "topic_tags": [ + "operating systems", + "desktop", + "graphics", + "open source", + "apps" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://handbook.gnome.org/get-in-touch.html" + }, + { + "name": "mailingList", + "value": "https://discourse.gnome.org/" + }, + { + "name": "twitter", + "value": "https://floss.social/@gnome" + }, + { + "name": "blog", + "value": "https://foundation.gnome.org/news/" + } + ], + "source_code": "https://gitlab.gnome.org/", + "ideas_link": "https://gsoc.gnome.org/2026/", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://handbook.gnome.org/get-in-touch.html" + }, + { + "name": "mailingList", + "value": "https://discourse.gnome.org/" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://floss.social/@gnome" + }, + { + "name": "blog", + "value": "https://foundation.gnome.org/news/" + } + ] + }, + { + "name": "FOSSology", + "slug": "fossology", + "logo_url": "https://summerofcode.withgoogle.com/media/org/fossology/bqfblnvpsqnfg5bh-360.png", + "website_url": "https://fossology.org", + "tagline": "Open Source License Compliance by OSS", + "license": "GPL-2.0", + "categories": [ + "Web", + "Security" + ], + "contributor_guidance_url": "", + "description": "FOSSology is an open source license compliance software system and toolkit. As a toolkit you can run license, copyright and export control scans from the command line. As a system, a database and web UI are provided to give you a compliance workflow. License, copyright and export scanners are tools used in the workflow.", + "tech_tags": [ + "python", + "postgresql", + "c/c++", + "go", + "php" + ], + "topic_tags": [ + "automation", + "spdx", + "license compliance", + "nlp", + "compliance automation" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "fossology-devel@fossology.org" + }, + { + "name": "chat", + "value": "https://fossology.slack.com/" + }, + { + "name": "blog", + "value": "https://fossology.org" + } + ], + "source_code": "https://github.com/fossology/fossology", + "ideas_link": "https://github.com/fossology/fossology/discussions/3267", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "fossology-devel@fossology.org" + }, + { + "name": "chat", + "value": "https://fossology.slack.com/" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://fossology.org" + } + ] + }, + { + "name": "MDAnalysis", + "slug": "mdanalysis", + "logo_url": "https://summerofcode.withgoogle.com/media/org/mdanalysis/kf8rugznsqeskumi-360.png", + "website_url": "https://www.mdanalysis.org", + "tagline": "Analysis of molecular simulations data with Python", + "license": "LGPL-3.0", + "categories": [ + "Science and medicine", + "Data" + ], + "contributor_guidance_url": "https://github.com/MDAnalysis/mdanalysis/wiki/Google-Summer-Of-Code", + "description": "MDAnalysis is a Python library for the analysis of computer simulations of many-body systems at the molecular scale, spanning use cases from interactions of drugs with proteins to novel materials. It is written by scientists for scientists and is used for cutting edge research in biophysics, chemistry, soft-matter physics, and materials research around the world in academia and national research labs. MDAnalysis strives to be highly interoperable and hence a growing number of projects use MDAnalysis as their foundational library or integrate it.\n\nThe goal of MDAnalysis is to make it easy for users to analyze data that are produced by simulations (primarily molecular dynamics simulations) that run on some of the largest supercomputers in the world. MDAnalysis accomplishes this goal by providing a toolkit of programming building blocks that provide an abstract Python interface to the simulation data — agnostic of the specific simulation package that produced it — that lends itself to interactive data exploration and rapid prototyping but is also a robust foundational library that can form the basis for new computational tools.\n\nMDAnalysis allows one to read particle-based trajectories such as the ones produced by MD simulations or individual coordinate frames (such as biomolecules in the Protein Databank format) and access the atomic coordinates through NumPy arrays. Together with a powerful selection language and many implemented analysis algorithms, MDAnalysis provides a flexible and fast framework for complex analysis tasks. Welcoming documentation such as the User Guide https://userguide.mdanalysis.org/ make it easy to get started. New releases are downloaded a few thousand times and the academic papers describing MDAnalysis are cited more than almost two thousand times, indicating the widespread use in the academic community.", + "tech_tags": [ + "python", + "cython", + "c/c++" + ], + "topic_tags": [ + "science", + "computational-chemistry", + "high-performance-computing", + "molecular-simulation", + "machine-learning" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://github.com/MDAnalysis/mdanalysis/discussions" + }, + { + "name": "chat", + "value": "https://discord.com/channels/807348386012987462/" + }, + { + "name": "blog", + "value": "https://www.mdanalysis.org/blog/" + } + ], + "source_code": "https://github.com/MDAnalysis/mdanalysis", + "ideas_link": "https://github.com/MDAnalysis/mdanalysis/wiki/GSoC-2026-Project-Ideas", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://github.com/MDAnalysis/mdanalysis/discussions" + }, + { + "name": "chat", + "value": "https://discord.com/channels/807348386012987462/" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://www.mdanalysis.org/blog/" + } + ] + }, + { + "name": "Kubeflow", + "slug": "kubeflow", + "logo_url": "https://summerofcode.withgoogle.com/media/org/kubeflow/uqphmd1y7opxpjim-360.png", + "website_url": "https://kubeflow.org", + "tagline": "The Machine Learning Toolkit for Kubernetes (AI)", + "license": "Apache-2.0", + "categories": [ + "Infrastructure and cloud", + "Artificial Intelligence" + ], + "contributor_guidance_url": null, + "description": "Our goal is to streamline the process of scaling and deploying machine learning (ML) models to production by leveraging Kubernetes' strengths: \n\n- Seamless deployments: Effortless, repeatable, and portable deployments across diverse infrastructure, allowing you to experiment on local machines and then seamlessly transition to on-premises clusters or the cloud.\n\n- Microservice management: Efficient deployment and management of loosely-coupled microservices for building modular and scalable ML pipelines.\n\n- Dynamic scaling: Automated scaling based on demand, ensuring optimal resource utilization.\n\nUser-centric design: Recognizing the diverse tool preferences within the ML community, we prioritize user customization (within reasonable boundaries). Our system takes care of the repetitive tasks, freeing users to focus on the core ML challenges.\n\nStarting focused, expanding rapidly: While we initially focused on specific technologies, we actively collaborate with various projects to integrate additional tools and broaden our reach.\n\nOur vision: A future where simple manifests empower you to utilize a user-friendly ML stack anywhere Kubernetes runs, with self-configuration capabilities based on the deployment environment.", + "tech_tags": [ + "python", + "go", + "kubernetes", + "typescript", + "YAML" + ], + "topic_tags": [ + "machine learning", + "kubernetes", + "AI/ML", + "generative AI" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://cloud-native.slack.com/archives/C0742LBR5BM" + }, + { + "name": "email", + "value": "https://groups.google.com/g/kubeflow-discuss" + }, + { + "name": "twitter", + "value": "https://twitter.com/kubeflow" + } + ], + "source_code": "https://github.com/kubeflow", + "ideas_link": "https://www.kubeflow.org/events/upcoming-events/gsoc-2026/", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://cloud-native.slack.com/archives/C0742LBR5BM" + }, + { + "name": "email", + "value": "https://groups.google.com/g/kubeflow-discuss" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/kubeflow" + } + ] + }, + { + "name": "BRL-CAD", + "slug": "brl-cad", + "logo_url": "https://summerofcode.withgoogle.com/media/org/brl-cad/4ec07aqdfrvygfed-360.png", + "website_url": "https://opencax.github.io/", + "tagline": "3D CAD & other computer-aided tech (CAx)", + "license": "ISC", + "categories": [ + "Media", + "Artificial Intelligence" + ], + "contributor_guidance_url": "https://opencax.github.io/gsoc_checklist.html", + "description": "This is the place to be if you love computer graphics. We do 2D/3D modeling, 3D printing, solid geometry, design, and more. Depending on the project, you have the opportunity to work with C/C++, Python, OpenGL, OpenCL, Qt, Javascript, and more... Help us develop open source computer-aided technologies (CAx)!\n\nWe operates as an umbrella organization with several CAx communities including:\n\n\n - OpenSCAD is a solid 3D modeler with a rich syntax for programmable geometry.\n - LibreCAD is a 2D modeling system specializing in blueprint-style drawings and draftings.\n - IfcOpenShell is a library for working with standard IFC building model data.\n - BRL-CAD is a solid modeling suite with conversion and advanced solid ray tracing features.\n - Manifold is a solid geometry mesh processing library.\n\n\nWe want to select at least one student for each, so feel free to ask us where to start.\n\n", + "tech_tags": [ + "python", + "c/c++", + "opengl", + "opencl", + "scripting" + ], + "topic_tags": [ + "geometry", + "2d/3d graphics", + "ray tracing", + "high-performance computing", + "deep neural net rendering" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://opencax.github.io" + }, + { + "name": "email", + "value": "devs@brlcad.org" + }, + { + "name": "chat", + "value": "https://brlcad.zulipchat.com" + }, + { + "name": "chat", + "value": "https://web.libera.chat/?channel=#librecad" + }, + { + "name": "chat", + "value": "https://web.libera.chat/?channel=#openscad" + }, + { + "name": "mailingList", + "value": "https://sourceforge.net/p/ifcopenshell/discussion/" + }, + { + "name": "facebook", + "value": "https://fb.me/BRL-CAD" + } + ], + "source_code": "https://github.com/BRL-CAD/brlcad", + "ideas_link": "https://github.com/opencax/GSoC/issues?q=is%3Aissue+is%3Aopen+label%3A%22GSoC+2026%22", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://opencax.github.io" + }, + { + "name": "email", + "value": "devs@brlcad.org" + }, + { + "name": "chat", + "value": "https://brlcad.zulipchat.com" + }, + { + "name": "chat", + "value": "https://web.libera.chat/?channel=#librecad" + }, + { + "name": "chat", + "value": "https://web.libera.chat/?channel=#openscad" + }, + { + "name": "mailingList", + "value": "https://sourceforge.net/p/ifcopenshell/discussion/" + } + ], + "social_comm_methods": [ + { + "name": "facebook", + "value": "https://fb.me/BRL-CAD" + } + ] + }, + { + "name": "R project for statistical computing", + "slug": "r-project-for-statistical-computing", + "logo_url": "https://summerofcode.withgoogle.com/media/org/r-project-for-statistical-computing/7regeqcjh95nenso-360.png", + "website_url": "https://www.r-project.org/", + "tagline": "R software for statistical computing & graphics", + "license": "GPL-2.0", + "categories": [ + "Science and medicine", + "Data" + ], + "contributor_guidance_url": "https://github.com/rstats-gsoc/gsoc2022/wiki", + "description": "R provides a wide variety of statistical and graphical techniques, and is highly extensible. R is often the tool of choice for research in statistical methodology.\n\nR is an integrated suite of software facilities for data manipulation, calculation and graphical display. It includes\n\n* an effective data handling and storage facility,\n* a suite of operators for calculations on arrays, in particular matrices,\n* a large, coherent, integrated collection of intermediate tools for data analysis,\n* graphical facilities for data analysis and display either on-screen or on hardcopy, and\n* a well-developed, simple and effective programming language which includes conditionals, loops, user-defined recursive functions and input and output facilities.\n\nThe term “environment” is intended to characterize it as a fully planned and coherent system, rather than an incremental accretion of very specific and inflexible tools, as is frequently the case with other data analysis software.\n\nR, like S, is designed around a true computer language, and it allows users to add additional functionality by defining new functions. Much of the system is itself written in the R dialect of S, which makes it easy for users to follow the algorithmic choices made. For computationally-intensive tasks, C, C++ and Fortran code can be linked and called at run time. Advanced users can write C code to manipulate R objects directly.\n\nMany users think of R as a statistics system. We prefer to think of it of an environment within which statistical techniques are implemented. R can be extended (easily) via packages. There are about eight packages supplied with the R distribution and many more are available through the CRAN family of Internet sites covering a very wide range of modern statistics.\n\nR has its own LaTeX-like documentation format, which is used to supply comprehensive documentation, both on-line in a number of formats and in hardcopy.", + "tech_tags": [ + "c", + "javascript", + "c++", + "r-project", + "fortran" + ], + "topic_tags": [ + "visualization", + "machine learning", + "data science", + "graphics", + "statistics" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "gsoc-r@googlegroups.com" + }, + { + "name": "email", + "value": "gsoc-r@googlegroups.com" + }, + { + "name": "blog", + "value": "https://www.r-bloggers.com/" + }, + { + "name": "blog", + "value": "https://rweekly.org/" + } + ], + "source_code": "https://cran.r-project.org/", + "ideas_link": "https://github.com/rstats-gsoc/gsoc2026/wiki/table-of-proposed-coding-projects", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "gsoc-r@googlegroups.com" + }, + { + "name": "email", + "value": "gsoc-r@googlegroups.com" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://www.r-bloggers.com/" + }, + { + "name": "blog", + "value": "https://rweekly.org/" + } + ] + }, + { + "name": "OpenAstronomy", + "slug": "openastronomy", + "logo_url": "https://summerofcode.withgoogle.com/media/org/openastronomy/3wvadxwxjc2arepg-360.png", + "website_url": "https://openastronomy.org/", + "tagline": "Look at the Universe with the power of Open Source", + "license": "BSD-3-Clause", + "categories": [ + "Science and medicine" + ], + "contributor_guidance_url": "https://openastronomy.org/gsoc/student_guidelines.html", + "description": "OpenAstronomy is a collaboration between open source astronomy, astrophysics & heliophysics projects that are used by researchers and software engineers around the world to study our universe either by analysing the data obtained from amazing instruments like the [James Webb Space telescope](https://jwst.nasa.gov/), the [Square Kilometer Array](https://www.skatelescope.org/) or the [Solar Dynamic Observatory](http://sdo.gsfc.nasa.gov/), developing very sophisticated numerical models (eg., [FLASH](http://flash.uchicago.edu/)) or designing interplanetary trajectories for human-made spacecraft. The analysis of such data helps multiple types of research, from being able to forecast solar storms to detecting planets in other stars, to understanding how galaxies are formed to explain the expansion and the origin of the universe.\n\nOpenAstronomy currently consists of [18 projects](https://openastronomy.org/members/) that develop tools, the range of which is wide. \nFor example: \n- [Astropy](https://www.astropy.org/) is a general Python library for astronomy, providing common tools such as celestial coordinates, image processing, tabular data, reading and writing, units and support for astronomy-specific file formats; \n- [SunPy](https://sunpy.org/) provides utilities for obtaining and representing solar physics data, with access to the largest online solar physics data archives and solar specific analysis tools and visualisation code;\n- [Julia Astro](https://juliaastro.org/dev/index.html) is a set of packages for general astronomy and astrophysics analysis using Julia;\n- And more!\n\nAs a single organisation, we strive to strengthen collaborations between each sub-organisation, and at the same time increase the awareness among our users on the capabilities of our \"sister\" projects. With the goal being unification of standards and libraries to enable true multidisciplinary research.", + "tech_tags": [ + "c", + "python", + "c++", + "julia" + ], + "topic_tags": [ + "image processing", + "astronomy", + "data analysis", + "solar physics", + "high energy astrophysics" + ], + "contact_links": [ + { + "name": "email", + "value": "openastronomy.organization@gmail.com" + }, + { + "name": "chat", + "value": "https://openastronomy.element.io/#/room/#openastronomy:openastronomy.org" + }, + { + "name": "mailingList", + "value": "https://community.openastronomy.org/" + }, + { + "name": "blog", + "value": "https://openastronomy.org/Universe_OA/" + }, + { + "name": "twitter", + "value": "https://astrodon.social/@OpenAstronomy" + } + ], + "source_code": "http://openastronomy.org/members/", + "ideas_link": "https://openastronomy.org/gsoc/gsoc2026/#/projects", + "direct_comm_methods": [ + { + "name": "email", + "value": "openastronomy.organization@gmail.com" + }, + { + "name": "chat", + "value": "https://openastronomy.element.io/#/room/#openastronomy:openastronomy.org" + }, + { + "name": "mailingList", + "value": "https://community.openastronomy.org/" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://openastronomy.org/Universe_OA/" + }, + { + "name": "twitter", + "value": "https://astrodon.social/@OpenAstronomy" + } + ] + }, + { + "name": "Project Mesa", + "slug": "project-mesa", + "logo_url": "https://summerofcode.withgoogle.com/media/org/project-mesa/fh3o8surszufvjpv-360.png", + "website_url": "https://mesa.readthedocs.io/latest/", + "tagline": "Mesa: Agent-based modeling in Python 3+", + "license": "Apache-2.0", + "categories": [ + "Science and medicine", + "Artificial Intelligence" + ], + "contributor_guidance_url": "https://github.com/projectmesa/mesa/wiki/Google-Summer-of-Code-2026", + "description": "Mesa is an Apache2 licensed agent-based modeling (or ABM) framework in Python.\n\nIt allows users to quickly create agent-based models using built-in core components (such as spatial grids and agent schedulers) or customized implementations; visualize them using a browser-based interface; and analyze their results using Python’s data analysis tools. \n\nIts goal is to provide an ecosystem to support generative science approaches, improve understanding of complex systems and aid practical decision-making.", + "tech_tags": [ + "python", + "gis", + "object oriented programming", + "LLMs", + "network topology" + ], + "topic_tags": [ + "simulation", + "Agent Based Models", + "Generative Science" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://matrix.to/#/#GSoC:matrix.org" + }, + { + "name": "mailingList", + "value": "https://github.com/projectmesa/mesa/discussions" + }, + { + "name": "email", + "value": "maintainers@projectmesa.dev" + }, + { + "name": "blog", + "value": "https://www.linkedin.com/company/projectmesa/" + } + ], + "source_code": "https://github.com/projectmesa/mesa", + "ideas_link": "https://github.com/mesa/mesa/wiki/GSoC-2026-Project-Ideas", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://matrix.to/#/#GSoC:matrix.org" + }, + { + "name": "mailingList", + "value": "https://github.com/projectmesa/mesa/discussions" + }, + { + "name": "email", + "value": "maintainers@projectmesa.dev" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://www.linkedin.com/company/projectmesa/" + } + ] + }, + { + "name": "Eclipse Foundation", + "slug": "eclipse-foundation", + "logo_url": "https://summerofcode.withgoogle.com/media/org/eclipse-foundation/xo1ntao7atq7yjg2-360.png", + "website_url": "https://www.eclipse.org/", + "tagline": "The Global Open Source Foundation", + "license": "EPL-2.0", + "categories": [ + "Programming languages", + "Infrastructure and cloud" + ], + "contributor_guidance_url": "https://gitlab.eclipse.org/eclipsefdn/emo-team/gsoc-at-the-ef/-/blob/main/README.md", + "description": "The Eclipse Foundation provides our global community of individuals & organizations with a mature, scalable, and business-friendly environment for OSS collaboration and innovation.\n\nEclipse is an open source community that's focused around key principles of transparency, openness, and vendor neutrality: the work that we do is done in a manner that can be observed by anybody with an interest; project teams welcome new ideas, and invites others to participate; and vendor neutrality ensures that no single vendor can dominate a project and that everybody plays by the same set of rules (a so-called \"level playing field\").\n\nNaturally, Eclipse projects are also all about the code. With over three hundred and\nsixty (https://projects.eclipse.org/) open source projects covering a diverse set of of\ntechnologies, there's something here for everybody. \n\nEclipse projects build technology in areas such as Internet of Things (https://projects.eclipse.org/technology-type/internet-things), Programming Languages and IDE (https://projects.eclipse.org/technology-type/language), and\nRuntimes (https://projects.eclipse.org/technology-type/runtime) like Jetty and\nEE4J (http://www.eclipse.org/ee4j) (currently known as Java EE).\n\nFor those students interested in research, we have an entire working group focused\non Science (https://projects.eclipse.org/projects/science) where researches from\nsome of the world's most prestigious labs do open source development to support\ntheir research areas.", + "tech_tags": [ + "java", + "rtos", + "eclipsejavaide", + "jakartaee", + "softwaredefinedvehicles" + ], + "topic_tags": [ + "robotics", + "automotive", + "tools", + "cloud native java", + "iot & edge" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://dev.eclipse.org/mailman/listinfo/soc-dev" + }, + { + "name": "email", + "value": "emo@eclipse-foundation.org" + }, + { + "name": "twitter", + "value": "https://twitter.com/EclipseFdn" + } + ], + "source_code": "https://github.com/eclipse", + "ideas_link": "https://gitlab.eclipse.org/eclipsefdn/emo-team/gsoc-at-the-ef/-/issues/?sort=created_date&state=opened&label_name%5B%5D=GSoC%202026&first_page_size=100", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://dev.eclipse.org/mailman/listinfo/soc-dev" + }, + { + "name": "email", + "value": "emo@eclipse-foundation.org" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/EclipseFdn" + } + ] + }, + { + "name": "QC-Devs", + "slug": "qc-devs", + "logo_url": "https://summerofcode.withgoogle.com/media/org/qc-devs/nywcx8edxlpsz2kg-360.png", + "website_url": "https://qcdevs.org/", + "tagline": "Sustainable software for quantum chemistry & more", + "license": "GPL-3.0", + "categories": [ + "Science and medicine", + "Data" + ], + "contributor_guidance_url": "https://qcdevs.org/join/qcdevs_gsoc/#contributor-guidance", + "description": "QC-Devs develops free, open-source, and cross-platform libraries for the computational sciences, focusing on theoretical and computational chemistry. Our goal is to make programming accessible to students and researchers, to catalyze scientific collaborations, and to promote precepts of sustainable software development. We're adapting some of the same principles to develop free and open-source educational materials (qc-edu.org) to modernize scientific education by integrating hands-on computation and computer programming.", + "tech_tags": [ + "python", + "github", + "c++", + "julia", + "jupyter" + ], + "topic_tags": [ + "data science", + "scientific visualization", + "quantum chemistry", + "Computational Science", + "numerical algorithms" + ], + "contact_links": [ + { + "name": "email", + "value": "qcdevs@qcdevs.org" + }, + { + "name": "twitter", + "value": "https://twitter.com/QCDevs" + } + ], + "source_code": "https://github.com/theochem", + "ideas_link": "https://qcdevs.org/join/qcdevs_gsoc/", + "direct_comm_methods": [ + { + "name": "email", + "value": "qcdevs@qcdevs.org" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/QCDevs" + } + ] + }, + { + "name": "stdlib", + "slug": "stdlib", + "logo_url": "https://summerofcode.withgoogle.com/media/org/stdlib/7ornclj6w5zz9fca-360.png", + "website_url": "https://stdlib.io", + "tagline": "The fundamental numerical library for JavaScript", + "license": "Apache-2.0", + "categories": [ + "Science and medicine", + "Data" + ], + "contributor_guidance_url": "https://github.com/stdlib-js/google-summer-of-code", + "description": "stdlib is a standard library for JavaScript and Node.js with an emphasis on numerical and scientific computing applications. The project aims to provide functionality similar to NumPy and SciPy for use in JavaScript environments with special consideration for the unique constraints and opportunities afforded by the Web. stdlib is primarily written in JavaScript, C, and Fortran.", + "tech_tags": [ + "c", + "javascript", + "node.js", + "typescript", + "webassembly" + ], + "topic_tags": [ + "mathematics", + "web", + "scientific computing", + "numerical computing", + "statistics" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://stdlib.zulipchat.com" + }, + { + "name": "twitter", + "value": "https://x.com/stdlibjs" + }, + { + "name": "blog", + "value": "https://blog.stdlib.io" + } + ], + "source_code": "https://github.com/stdlib-js/stdlib", + "ideas_link": "https://github.com/stdlib-js/google-summer-of-code/blob/main/ideas.md", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://stdlib.zulipchat.com" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://x.com/stdlibjs" + }, + { + "name": "blog", + "value": "https://blog.stdlib.io" + } + ] + }, + { + "name": "OpenMRS", + "slug": "openmrs", + "logo_url": "https://summerofcode.withgoogle.com/media/org/openmrs/evthgp3dhsqx5kyx-360.png", + "website_url": "https://openmrs.org/", + "tagline": "Write Code, Save Lives.", + "license": "MPL-2.0", + "categories": [ + "Science and medicine", + "End user applications" + ], + "contributor_guidance_url": "https://wiki.openmrs.org/display/RES/GSoC+-+Proposal+Guidelines", + "description": "OpenMRS provides the foundational, electronic medical record technology for more than 6,500 health facilities in over 80 countries, touching and helping millions of patients throughout the world. \n\nThe OpenMRS Community’s mission is to improve healthcare delivery in resource-constrained environments. \n\nWe coordinate a global community that creates and sustains a robust, scalable, user-driven and open-source medical record platform and reference frontend application.\n\nWe maintain a platform that countries and implementers use to create a customized EMR system in response to actual needs on the ground.", + "tech_tags": [ + "mysql", + "javascript", + "java", + "reactjs", + "fhir" + ], + "topic_tags": [ + "platform", + "frontend", + "Electronic Medical Record System", + "QA automation" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://talk.openmrs.org/" + }, + { + "name": "chat", + "value": "https://slack.openmrs.org/" + }, + { + "name": "twitter", + "value": "https://twitter.com/openmrs" + } + ], + "source_code": "https://github.com/openmrs", + "ideas_link": "https://openmrs.atlassian.net/wiki/spaces/RES/pages/752844801/Summer+of+Code+2026", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://talk.openmrs.org/" + }, + { + "name": "chat", + "value": "https://slack.openmrs.org/" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/openmrs" + } + ] + }, + { + "name": "Sugar Labs", + "slug": "sugar-labs", + "logo_url": "https://summerofcode.withgoogle.com/media/org/sugar-labs/pgbt7fp6gr6lhihd-360.png", + "website_url": "https://sugarlabs.org", + "tagline": "Learning software for children", + "license": "GPL-3.0", + "categories": [ + "End user applications", + "Programming languages" + ], + "contributor_guidance_url": "https://github.com/sugarlabs/GSoC", + "description": "Sugar is an activity-focused, free/libre open-source software (FLOSS) learning platform for children. Collaboration, reflection, and discovery are integrated directly into the user interface. Through Sugar's clarity of design, children and teachers have the opportunity to use computers on their own terms. Students can reshape, reinvent, and reapply both software and content into powerful learning activities. Sugar's focus on sharing, constructive criticism, and exploration is grounded in the culture of free software and the ideals of learn-by-doing \"Constructionism\".", + "tech_tags": [ + "python", + "gtk", + "typescript", + "javascipt", + "LLM" + ], + "topic_tags": [ + "education", + "programming languages", + "games", + "desktop", + "generative AI" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://lists.sugarlabs.org/listinfo/sugar-devel" + }, + { + "name": "chat", + "value": "https://matrix.to/#/#sugar:matrix.org" + }, + { + "name": "chat", + "value": "https://discord.com/channels/1078051575580336249/1078051576284975226" + }, + { + "name": "facebook", + "value": "https://www.facebook.com/SugarLabsforall/" + } + ], + "source_code": "https://github.com/sugarlabs", + "ideas_link": "https://github.com/sugarlabs/GSoC/blob/master/Ideas-2026.md", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://lists.sugarlabs.org/listinfo/sugar-devel" + }, + { + "name": "chat", + "value": "https://matrix.to/#/#sugar:matrix.org" + }, + { + "name": "chat", + "value": "https://discord.com/channels/1078051575580336249/1078051576284975226" + } + ], + "social_comm_methods": [ + { + "name": "facebook", + "value": "https://www.facebook.com/SugarLabsforall/" + } + ] + }, + { + "name": "Blender Foundation", + "slug": "blender-foundation", + "logo_url": "https://summerofcode.withgoogle.com/media/org/blender-foundation/vdfgx9yyygdjjvym-360.png", + "website_url": "https://www.blender.org", + "tagline": "The Freedom to Create", + "license": "GPL-2.0", + "categories": [ + "End user applications", + "Media" + ], + "contributor_guidance_url": "https://developer.blender.org/docs/programs/gsoc/", + "description": "Blender is a free and open source 3D creation suite, providing individuals and small teams a complete pipeline for 3D graphics, modeling, animation and games.\n\nBlender is being made by 100s of active volunteers from all around the world; by studios and individual artists, professionals and hobbyists, scientists and students, vfx experts and animators, and so on. All of them are united by an interest to have access to a fully free/open source 3D creation pipeline. Blender Foundation supports and facilitates these goals - even employs a staff for that - but fully depends on the online community to achieve it.", + "tech_tags": [ + "c", + "python", + "opengl", + "c++", + "vulkan" + ], + "topic_tags": [ + "games", + "graphics", + "3d", + "rendering", + "animation" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://devtalk.blender.org/c/contributing-to-blender/summer-of-code/15" + }, + { + "name": "chat", + "value": "https://blender.chat/channel/gsoc-2026" + }, + { + "name": "blog", + "value": "https://devtalk.blender.org/c/contributing-to-blender/summer-of-code/15" + } + ], + "source_code": "https://projects.blender.org/blender/blender", + "ideas_link": "https://developer.blender.org/docs/programs/gsoc/ideas/", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://devtalk.blender.org/c/contributing-to-blender/summer-of-code/15" + }, + { + "name": "chat", + "value": "https://blender.chat/channel/gsoc-2026" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://devtalk.blender.org/c/contributing-to-blender/summer-of-code/15" + } + ] + }, + { + "name": "FreeCAD", + "slug": "freecad", + "logo_url": "https://summerofcode.withgoogle.com/media/org/freecad/hka287elz3d4wvzu.png", + "website_url": "https://freecad.org", + "tagline": "Cross-platform 3D parametric modeler", + "license": "LGPL-2.1", + "categories": [ + "End user applications", + "Media" + ], + "contributor_guidance_url": "https://wiki.freecad.org/GSoC_Checklist", + "description": "FreeCAD is a general-purpose parametric 3D computer-aided design (CAD) modeler and a building information modeling (BIM) software application with finite element method (FEM) support. It is intended for mechanical engineering product design but also expands to a wider range of uses around engineering, such as architecture or electrical engineering. FreeCAD is free and open-source, under the LGPL-2.0-or-later license, and available for Linux, macOS, and Windows operating systems. Users can extend the functionality of the software using the Python programming language.", + "tech_tags": [ + "python", + "c++", + "qt", + "OpenCASCADE", + "OpenInventor" + ], + "topic_tags": [ + "engineering", + "graphics", + "cad", + "3d", + "architecture", + "BIM", + "CAM" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://forum.freecad.org" + }, + { + "name": "chat", + "value": "https://matrix.to/#/#FreeCAD_FreeCAD:gitter.im" + }, + { + "name": "twitter", + "value": "https://twitter.com/freecadnews" + }, + { + "name": "facebook", + "value": "https://www.facebook.com/FreeCAD/" + }, + { + "name": "blog", + "value": "https://blog.freecad.org/" + } + ], + "source_code": "https://github.com/freecad/freecad", + "ideas_link": "https://wiki.freecad.org/Google_Summer_of_Code_2026", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://forum.freecad.org" + }, + { + "name": "chat", + "value": "https://matrix.to/#/#FreeCAD_FreeCAD:gitter.im" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/freecadnews" + }, + { + "name": "facebook", + "value": "https://www.facebook.com/FreeCAD/" + }, + { + "name": "blog", + "value": "https://blog.freecad.org/" + } + ] + }, + { + "name": "AnkiDroid", + "slug": "ankidroid", + "logo_url": "https://summerofcode.withgoogle.com/media/org/ankidroid/cxtovrlsuuluttgi-360.png", + "website_url": "https://github.com/ankidroid/Anki-Android", + "tagline": "AnkiDroid makes remembering things easy", + "license": "GPL-3.0", + "categories": [ + "End user applications" + ], + "contributor_guidance_url": "https://github.com/ankidroid/Anki-Android/wiki/Google-Summer-of-Code", + "description": "Memorize anything with AnkiDroid!\n\nAnkiDroid lets you learn flashcards very efficiently by showing them just before you would forget. It is fully compatible with the spaced repetition software Anki (including synchronization), which is available for Windows/Mac/Linux/ChromeOS.\n\nStudy all sorts of things wherever and whenever you want. Make good use of idle times on bus trips, in supermarket queues or any other waiting situation!\n\nCreate your own flashcard decks or download free decks compiled for many languages and topics (more than 6000 available).\n\nAdd material through the desktop application Anki or directly through AnkiDroid. The application even supports adding material automatically from a dictionary!\n\n★ Key features:\n• supported flashcard contents: text, images, sounds, LaTeX & MathJax\n• spaced repetition (supermemo 2 algorithm)\n• text-to-speech integration\n• check your pronunciation\n• more than 6000 premade decks\n• progress widget\n• detailed statistics\n• syncing with AnkiWeb\n• open source", + "tech_tags": [ + "android", + "rust", + "kotlin", + "mobile" + ], + "topic_tags": [ + "education", + "mobile", + "android", + "user generated content", + "Flashcards" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://discord.gg/qjzcRTx" + }, + { + "name": "mailingList", + "value": "https://groups.google.com/forum/#!forum/anki-android" + }, + { + "name": "facebook", + "value": "https://www.facebook.com/AnkiDroid/" + } + ], + "source_code": "https://github.com/ankidroid/Anki-Android", + "ideas_link": "https://docs.google.com/document/d/1ygIJl-Tp5_wJDKkSXrCC8h5K3WUG8D4BcJa_j70F0Zo", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://discord.gg/qjzcRTx" + }, + { + "name": "mailingList", + "value": "https://groups.google.com/forum/#!forum/anki-android" + } + ], + "social_comm_methods": [ + { + "name": "facebook", + "value": "https://www.facebook.com/AnkiDroid/" + } + ] + }, + { + "name": "C2SI", + "slug": "c2si", + "logo_url": "https://summerofcode.withgoogle.com/media/org/c2si/35pwh3uirrpdctn8.png", + "website_url": "https://c2si.org/", + "tagline": "C2SI develops FOSS softwares for everyone!!!", + "license": "Apache-2.0", + "categories": [ + "End user applications", + "Security" + ], + "contributor_guidance_url": "https://docs.google.com/document/d/e/2PACX-1vREmzfBRMW1QmehqstK9v094j1t6IvPA5qbvj8MOV7x2wQETcn-AsnhzCaOuO12ltltwBh_cpoRj7pi/pub", + "description": "The Ceylon Computer Science Institute (C2SI) conducts research in various domains, including security, artificial intelligence, mobile applications, cloud computing, and software tools. Our research aims to create computing solutions by identifying low-cost methodologies and strategies that promote sustainability. Currently, C2SI is at a pivotal stage in its evolution, having secured high donor confidence, as evidenced by multiple foreign-funded projects. The institute focuses on developing sustainable computing solutions that leverage low-cost computing and communication technologies, particularly for developing and emerging regions worldwide. We have developed several affordable and sustainable ICT solutions, with a special focus on the needs of the developing world. These solutions are briefly described in the projects section.", + "tech_tags": [ + "python", + "java", + "go", + "nodejs", + "tensorflow" + ], + "topic_tags": [ + "security", + "cloud", + "ai", + "mobile", + "software" + ], + "contact_links": [ + { + "name": "email", + "value": "gsoc@c2si.org" + }, + { + "name": "chat", + "value": "https://join.slack.com/t/c2si-org/shared_invite/zt-2c4enytwh-ONEWumBjZC5hbUOAmBDP8A" + }, + { + "name": "mailingList", + "value": "https://groups.google.com/g/c2si-community" + }, + { + "name": "blog", + "value": "https://blog.c2si.org" + }, + { + "name": "twitter", + "value": "https://twitter.com/c2si_org" + }, + { + "name": "facebook", + "value": "https://www.facebook.com/c2si.org/" + } + ], + "source_code": "https://github.com/c2siorg", + "ideas_link": "https://c2si.org/gsoc/", + "direct_comm_methods": [ + { + "name": "email", + "value": "gsoc@c2si.org" + }, + { + "name": "chat", + "value": "https://join.slack.com/t/c2si-org/shared_invite/zt-2c4enytwh-ONEWumBjZC5hbUOAmBDP8A" + }, + { + "name": "mailingList", + "value": "https://groups.google.com/g/c2si-community" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://blog.c2si.org" + }, + { + "name": "twitter", + "value": "https://twitter.com/c2si_org" + }, + { + "name": "facebook", + "value": "https://www.facebook.com/c2si.org/" + } + ] + }, + { + "name": "Free and Open Source Silicon Foundation", + "slug": "free-and-open-source-silicon-foundation", + "logo_url": "https://summerofcode.withgoogle.com/media/org/free-and-open-source-silicon-foundation/aie951otsp3xucok.png", + "website_url": "https://www.fossi-foundation.org", + "tagline": "Working together for Free and Open Source Silicon", + "license": "MIT", + "categories": [ + "Other", + "Infrastructure and cloud" + ], + "contributor_guidance_url": "https://www.fossi-foundation.org/gsoc", + "description": "The FOSSi (Free and Open Source Silicon) Foundation is a not-for-profit organization with the support the growing community of open source silicon hardware. We do this with a variety of activities and through Google Summer of Code we bring together enthusiastic mentees and outstanding projects. Under our umbrella are open source silicon hardware projects, operating systems and compilers for such projects, tools for electronic design automation and the related ecosystem.", + "tech_tags": [ + "verilog", + "vhdl", + "risc-v", + "compiler" + ], + "topic_tags": [ + "hardware", + "debug", + "simulation", + "electronic design tools" + ], + "contact_links": [ + { + "name": "email", + "value": "gsoc@fossi-foundation.org" + }, + { + "name": "chat", + "value": "https://gitter.im/librecores/Lobby" + }, + { + "name": "blog", + "value": "https://mastodon.social/@fossifoundation" + }, + { + "name": "blog", + "value": "https://fossi-foundation.org/news" + } + ], + "source_code": "https://github.com/fossi-foundation", + "ideas_link": "https://fossi-foundation.org/gsoc/gsoc26-ideas", + "direct_comm_methods": [ + { + "name": "email", + "value": "gsoc@fossi-foundation.org" + }, + { + "name": "chat", + "value": "https://gitter.im/librecores/Lobby" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://mastodon.social/@fossifoundation" + }, + { + "name": "blog", + "value": "https://fossi-foundation.org/news" + } + ] + }, + { + "name": "MetaCall", + "slug": "metacall", + "logo_url": "https://summerofcode.withgoogle.com/media/org/metacall/rezoq3uue7dpdzw5-360.png", + "website_url": "https://metacall.io", + "tagline": "Simplifying the embedding of programming languages", + "license": "Apache-2.0", + "categories": [ + "Programming languages", + "Infrastructure and cloud" + ], + "contributor_guidance_url": "https://github.com/metacall/gsoc-2026", + "description": "When working with different technologies and developers of different programming languages, the productivity of the entire team worsens due to the lack of interoperability and communication between them. If the developers need two technologies which are written in different programming languages, for instance, a C/C++ library called from NodeJS, the team usually needs to port to one of the two languages or write a wrapper around them. Maintaining a port of a library or the plumbing code is frequently error-prone, time-consuming, and does not add any value to the final product.\n\nThe main objective of MetaCall is to provide a transparent interoperability in both ways, no matter what language you are using, so you feel like you are using a library written in the same language but in fact, it may be written in C, NodeJS or any other language.\n\nMetaCall currently provides a mechanism to introspect the types and function signatures, which allows us to provide this type info to the caller language. You can have type safety and at the same time avoid boilerplate in both directions.\n\nIt addresses the main shortcomings of embedding independent languages separately. Having a common implementation with a plugin architecture allows you to implement newer languages without rewriting more code. With a single solution you get C#, Ruby, Python or any other language you prefer. We can improve the core continuously and add new languages.\n\nFinally, we are using the polyglot runtime in cloud computing so we take advantage of the interoperability capabilities and allow to build complex polyglot distributed systems with ease. It is possible to build monolithic and mono-repo projects that can be distributed and scaled separately through our Function as a Service built on top of MetaCall, allowing the developer to maximize the productivity without the need of DevOps plumbing or thinking about intercommunication protocols and architectural details.", + "tech_tags": [ + "python", + "c++", + "rust", + "nodejs", + "docker" + ], + "topic_tags": [ + "cloud", + "polyglot", + "faas", + "languages", + "ffi" + ], + "contact_links": [ + { + "name": "email", + "value": "contact@metacall.io" + }, + { + "name": "chat", + "value": "https://discord.gg/upwP4mwJWa" + }, + { + "name": "chat", + "value": "https://t.me/joinchat/BMSVbBatp0Vi4s5l4VgUgg" + }, + { + "name": "chat", + "value": "https://matrix.to/#/#metacall:matrix.org" + }, + { + "name": "twitter", + "value": "https://twitter.com/metacallio" + } + ], + "source_code": "https://github.com/metacall", + "ideas_link": "https://github.com/metacall/gsoc-2026", + "direct_comm_methods": [ + { + "name": "email", + "value": "contact@metacall.io" + }, + { + "name": "chat", + "value": "https://discord.gg/upwP4mwJWa" + }, + { + "name": "chat", + "value": "https://t.me/joinchat/BMSVbBatp0Vi4s5l4VgUgg" + }, + { + "name": "chat", + "value": "https://matrix.to/#/#metacall:matrix.org" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/metacallio" + } + ] + }, + { + "name": "The OpenROAD Initiative", + "slug": "the-openroad-initiative", + "logo_url": "https://summerofcode.withgoogle.com/media/org/the-openroad-initiative/wsxrroe08v4rdaga-360.png", + "website_url": "https://www.openroadinitiative.org", + "tagline": "Collaboratively building an OpenROAD ecosystem", + "license": "BSD-3-Clause", + "categories": [ + "Infrastructure and cloud", + "Artificial Intelligence" + ], + "contributor_guidance_url": "https://openroad.readthedocs.io/en/latest/contrib/GettingInvolved.html", + "description": "ORI is a 501(c)(3) nonprofit that provides long-term stewardship, governance, and ecosystem leadership for the OpenROAD open-source EDA ecosystem.\nOur Vision: Making chip design open and accessible to all—building a collaborative ecosystem driven by transparency and shared innovation.\n\nOur Mission: To advance and sustain the open-source EDA ecosystem by fostering collaborative innovation across research, education, and industry—transforming ideas into silicon.", + "tech_tags": [ + "python", + "verilog", + "c++", + "tcl", + "OpenRoad" + ], + "topic_tags": [ + "ASIC design", + "OpenROAD chip design", + "Open EDA", + "Open-source Design", + "LLM chip design" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://github.com/The-OpenROAD-Project/OpenROAD/discussions" + }, + { + "name": "twitter", + "value": "https://x.com/OpenROAD_EDA" + } + ], + "source_code": "https://github.com/The-OpenROAD-Project/OpenROAD", + "ideas_link": "https://docs.google.com/document/d/1X6xxUonxgEQ_iD5G5vFp2ZOH1vbkRSspEdYrpSf4khE/edit?usp=sharing", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://github.com/The-OpenROAD-Project/OpenROAD/discussions" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://x.com/OpenROAD_EDA" + } + ] + }, + { + "name": "HumanAI", + "slug": "humanai", + "logo_url": "https://summerofcode.withgoogle.com/media/org/humanai/n5oaqivpu4hu4alm-360.png", + "website_url": "http://humanai.foundation", + "tagline": "AI for the Arts and the Humanities", + "license": "LGPL-3.0", + "categories": [ + "Media", + "Artificial Intelligence" + ], + "contributor_guidance_url": null, + "description": "Machine learning and Artificial Intelligence techniques can be broadly applicable and transferable across many domains. The goals of HumanAI projects are to grow the open-source community in machine learning for the domains of the Arts, Social Sciences and Humanities in addressing various important societal challenges and introducing and transferring the knowledge and tools of machine learning across these disciplines.", + "tech_tags": [ + "python", + "machine learning", + "c++", + "data analysis", + "artificial intelligence" + ], + "topic_tags": [ + "machine learning", + "artificial intelligence", + "ai", + "Arts", + "Humanities" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "human-ai@cern.ch" + }, + { + "name": "mailingList", + "value": "https://simba3.web.cern.ch/simba3/SelfSubscription.aspx?groupName=humanai-announce" + }, + { + "name": "chat", + "value": "https://app.gitter.im/#/room/#humanai-foundation:gitter.im" + }, + { + "name": "blog", + "value": "http://humanai.foundation" + } + ], + "source_code": "https://github.com/humanai-foundation", + "ideas_link": "https://humanai.foundation/activities/gsoc2026.html", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "human-ai@cern.ch" + }, + { + "name": "mailingList", + "value": "https://simba3.web.cern.ch/simba3/SelfSubscription.aspx?groupName=humanai-announce" + }, + { + "name": "chat", + "value": "https://app.gitter.im/#/room/#humanai-foundation:gitter.im" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "http://humanai.foundation" + } + ] + }, + { + "name": "OpenWISP", + "slug": "openwisp", + "logo_url": "https://summerofcode.withgoogle.com/media/org/openwisp/xgfy0r7femccwzvj-360.png", + "website_url": "https://openwisp.org", + "tagline": "The Hackable Network Management System", + "license": "GPL-3.0", + "categories": [ + "End user applications", + "Web" + ], + "contributor_guidance_url": "https://openwisp.io/docs/developer/contributing.html", + "description": "OpenWISP is an open source network management system which runs on low cost hardware and can be used to manage networks: from public wifi, university wifi, to mesh networks and IoT.", + "tech_tags": [ + "python", + "javascript", + "django", + "lua", + "openwrt" + ], + "topic_tags": [ + "networking", + "network management system", + "wifi", + "vpn", + "sdn" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://gitter.im/openwisp/development" + }, + { + "name": "chat", + "value": "https://gitter.im/openwisp/general" + }, + { + "name": "mailingList", + "value": "https://groups.google.com/forum/#!aboutgroup/openwisp" + }, + { + "name": "twitter", + "value": "https://twitter.com/openwisp" + }, + { + "name": "facebook", + "value": "https://www.facebook.com/OpenWISP" + }, + { + "name": "twitter", + "value": "https://www.linkedin.com/company/openwisp/" + }, + { + "name": "blog", + "value": "https://openwisp.org/blog/" + } + ], + "source_code": "https://github.com/openwisp", + "ideas_link": "https://openwisp.io/docs/dev/developer/gsoc-ideas-2026.html", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://gitter.im/openwisp/development" + }, + { + "name": "chat", + "value": "https://gitter.im/openwisp/general" + }, + { + "name": "mailingList", + "value": "https://groups.google.com/forum/#!aboutgroup/openwisp" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/openwisp" + }, + { + "name": "facebook", + "value": "https://www.facebook.com/OpenWISP" + }, + { + "name": "twitter", + "value": "https://www.linkedin.com/company/openwisp/" + }, + { + "name": "blog", + "value": "https://openwisp.org/blog/" + } + ] + }, + { + "name": "GNU Project", + "slug": "gnu-project-av", + "logo_url": "https://summerofcode.withgoogle.com/media/org/gnu-project-av/aht1h1aunalkojoq-360.png", + "website_url": "https://www.gnu.org", + "tagline": "Development of the GNU Operating System", + "license": "GPL-3.0", + "categories": [ + "Operating systems", + "Development tools" + ], + "contributor_guidance_url": "https://www.gnu.org/software/soc-projects/guidelines.html", + "description": "GNU is an operating system consisting entirely of free software, meaning it respects users’ freedom. The GNU operating system consists of GNU packages, which are programs released by the GNU Project, as well as free software released by third parties. The development of GNU made it possible to use a computer without relying on software that restricts or undermines user freedom. The GNU Project is the collective organization of maintainers and developers, webmasters, translators, and other contributors who develop and maintain more than 400 programs that together form the GNU operating system.", + "tech_tags": [ + "c", + "c++", + "gcc", + "autotools", + "GNU" + ], + "topic_tags": [ + "compilers", + "operating system", + "toolchain", + "command line", + "OS" + ], + "contact_links": [ + { + "name": "email", + "value": "summer-of-code@gnu.org" + }, + { + "name": "blog", + "value": "https://planet.gnu.org" + } + ], + "source_code": "https://savannah.gnu.org", + "ideas_link": "https://www.gnu.org/s/soc-projects/ideas.html", + "direct_comm_methods": [ + { + "name": "email", + "value": "summer-of-code@gnu.org" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://planet.gnu.org" + } + ] + }, + { + "name": "Debian", + "slug": "debian", + "logo_url": "https://summerofcode.withgoogle.com/media/org/debian/mmld9soj4mti8bjn-360.png", + "website_url": "https://debian.org", + "tagline": "The Universal Operating System", + "license": "GPL-3.0", + "categories": [ + "Operating systems", + "End user applications" + ], + "contributor_guidance_url": "https://wiki.debian.org/SummerOfCode2025", + "description": "The Debian Project is an association of Free Software developers who\nvolunteer their time and effort in order to produce and maintain a completely free\noperating system Debian. Since its launch, the Debian project has grown to comprise more than 1,000 members with official developer status, alongside many more volunteers and contributors. Today, Debian encompasses over 50,000 packages of free, open source applications and documentation.", + "tech_tags": [ + "python", + "java", + "perl", + "c++", + "rust" + ], + "topic_tags": [ + "ai", + "CI/CD", + "autopkgtest", + "raspberrypi_builds", + "mobian" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://lists.debian.org/debian-outreach" + }, + { + "name": "email", + "value": "outreach@debian.org" + }, + { + "name": "blog", + "value": "https://bits.debian.org/" + } + ], + "source_code": "https://salsa.debian.org", + "ideas_link": "https://wiki.debian.org/SummerOfCode2026/Projects", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://lists.debian.org/debian-outreach" + }, + { + "name": "email", + "value": "outreach@debian.org" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://bits.debian.org/" + } + ] + }, + { + "name": "Open Genome Informatics", + "slug": "open-genome-informatics", + "logo_url": "https://summerofcode.withgoogle.com/media/org/open-genome-informatics/p6nhalhjwargwd5s-360.png", + "website_url": "http://gmod.org/wiki/GSoC", + "tagline": "Open access genomics and bioinformatics projects", + "license": "Apache-2.0", + "categories": [ + "Science and medicine", + "Artificial Intelligence" + ], + "contributor_guidance_url": "http://gmod.org/wiki/GSoC", + "description": "The Open Genome Informatics group represents an umbrella organization consisting of several open source and open access genomics and bioinformatics projects worldwide. Our goals are to develop and maintain a collection of sustainable software tools for managing, analyzing, visualizing, storing, and disseminating genomic data.", + "tech_tags": [ + "python", + "react", + "r-project", + "graph", + "angular" + ], + "topic_tags": [ + "genomics", + "bioinformatics", + "biology", + "data discovery" + ], + "contact_links": [ + { + "name": "email", + "value": "rhaw@oicr.on.ca" + }, + { + "name": "email", + "value": "awright@oicr.on.ca" + }, + { + "name": "mailingList", + "value": "http://groups.google.com/group/genome-informatics" + }, + { + "name": "blog", + "value": "https://gmod.org/" + } + ], + "source_code": "http://gmod.org/wiki/Source_Code_Repositories", + "ideas_link": "https://gmod.org/wiki/GSOC_Project_Ideas_2026", + "direct_comm_methods": [ + { + "name": "email", + "value": "rhaw@oicr.on.ca" + }, + { + "name": "email", + "value": "awright@oicr.on.ca" + }, + { + "name": "mailingList", + "value": "http://groups.google.com/group/genome-informatics" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://gmod.org/" + } + ] + }, + { + "name": "MLLAM", + "slug": "mllam", + "logo_url": "https://summerofcode.withgoogle.com/media/org/mllam/ltm3mtlosvdcrw0c.png", + "website_url": "https://github.com/mllam", + "tagline": "Research software for AI weather forecasting", + "license": "MIT", + "categories": [ + "Science and medicine", + "Artificial Intelligence" + ], + "contributor_guidance_url": "https://github.com/mllam/neural-lam/wiki/GSoC-ideas", + "description": "MLLAM is a collaborative community dedicated to advancing machine learning applications in weather forecasting, specifically for Limited Area Modeling (LAM). The organization hosts several open-source key repositories, including neural-lam, which focuses on neural weather prediction using graph-based models. Members are from various research institutions and national weather services committed to improve weather forecasting at regional, high-resolution scale.", + "tech_tags": [ + "python", + "numpy", + "pytorch", + "xarray", + "Zarr" + ], + "topic_tags": [ + "machine learning", + "ai", + "deep learning", + "earth science", + "Weather Forecasting" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://kutt.it/mllam" + }, + { + "name": "blog", + "value": "https://github.com/mllam/neural-lam/wiki" + } + ], + "source_code": "https://github.com/mllam/neural-lam", + "ideas_link": "https://github.com/mllam/neural-lam/wiki/GSoC-ideas", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://kutt.it/mllam" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://github.com/mllam/neural-lam/wiki" + } + ] + }, + { + "name": "SymPy", + "slug": "sympy", + "logo_url": "https://summerofcode.withgoogle.com/media/org/sympy/iz2tcxocrknp1sm0-360.png", + "website_url": "https://www.sympy.org/", + "tagline": "SymPy is a Python library for symbolic mathematics", + "license": "BSD-3-Clause", + "categories": [ + "Science and medicine" + ], + "contributor_guidance_url": "https://github.com/sympy/sympy/wiki/GSoC-Student-Instructions", + "description": "SymPy is a Python library for symbolic mathematics. It aims to become a full-featured computer algebra system (CAS) while keeping the code as simple as possible in order to be comprehensible and easily extensible. SymPy is written entirely in Python.", + "tech_tags": [ + "python", + "numpy", + "jupyter" + ], + "topic_tags": [ + "mathematics", + "physics", + "symbolic mathematics" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://groups.google.com/g/sympy" + } + ], + "source_code": "https://github.com/sympy/sympy", + "ideas_link": "https://github.com/sympy/sympy/wiki/GSoC-Ideas", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://groups.google.com/g/sympy" + } + ], + "social_comm_methods": [] + }, + { + "name": "Ruby", + "slug": "ruby", + "logo_url": "https://summerofcode.withgoogle.com/media/org/ruby/dc6i7iw8w39rktw1-360.png", + "website_url": "https://www.ruby-lang.org/", + "tagline": "Ruby is an object-oriented programming language", + "license": "BSD-2-Clause", + "categories": [ + "Programming languages", + "Web" + ], + "contributor_guidance_url": "https://github.com/rubygsoc/rubygsoc/wiki/Getting-Involved", + "description": "The Ruby organization collects mentors and students working on the Ruby language (MRI), the Ruby packaging system (Bundler, RubyGems, and RubyGems.org), and other Ruby projects. Any Ruby OSS project is eligible to be included in the Ruby GSOC organization.", + "tech_tags": [ + "c", + "java", + "ruby on rails", + "ruby", + "rubygems" + ], + "topic_tags": [ + "security", + "web", + "cloud", + "server", + "application" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://discord.gg/7ESQJSjr" + }, + { + "name": "email", + "value": "saroj@zoras.me" + }, + { + "name": "blog", + "value": "https://rubygsoc.github.io/" + } + ], + "source_code": "https://github.com/ruby", + "ideas_link": "https://github.com/rubygsoc/rubygsoc/wiki/Ideas-List-(2026)", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://discord.gg/7ESQJSjr" + }, + { + "name": "email", + "value": "saroj@zoras.me" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://rubygsoc.github.io/" + } + ] + }, + { + "name": "TARDIS RT Collaboration", + "slug": "tardis-rt-collaboration", + "logo_url": "https://summerofcode.withgoogle.com/media/org/tardis-rt-collaboration/0ocxr3jw3fwdloye-360.png", + "website_url": "https://tardis-sn.github.io", + "tagline": "Exploring supernovae made easy", + "license": "BSD-3-Clause", + "categories": [ + "Science and medicine" + ], + "contributor_guidance_url": "https://tardis-sn.github.io/summer_of_code/gsoc_home/", + "description": "TARDIS is a tool that creates synthetic observations (spectra) for exploding stars (supernovae). \n\nA supernova marks the brilliant death throes of a star, during which it outshines its entire galaxy. Through their explosive stellar death, supernovae enrich the Universe with new elements necessary for the formation of planets and life as we know it. From the iron in your blood to the silicon in your laptop, supernovae are responsible for producing many important elements from the primordial hydrogen and helium left over from the Big Bang.\n\nTARDIS provides a link between theory and observations: by creating synthetic spectra from theoretical assumptions and comparing these to observations, we can both interpret data and test models for why, when and how supernova explosions occur.\nWe, the community around TARDIS, are interested in combining astronomy, computer science, statistics and modern software design to build a tool that is useful both in research and teaching alike (with supporting documentation that would, in theory, allow anyone to recreate the project from scratch). Please join us on https://gitter.im/tardis-sn/gsoc.", + "tech_tags": [ + "python", + "numba", + "numpy", + "jupyter", + "pandas" + ], + "topic_tags": [ + "visualization", + "big data", + "simulation", + "astrophysics" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://gitter.im/tardis-sn/gsoc" + }, + { + "name": "twitter", + "value": "https://twitter.com/tardis_sn" + } + ], + "source_code": "https://github.com/tardis-sn", + "ideas_link": "https://tardis-sn.github.io/summer_of_code/ideas/", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://gitter.im/tardis-sn/gsoc" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/tardis_sn" + } + ] + }, + { + "name": "GNU Mailman", + "slug": "gnu-mailman", + "logo_url": "https://summerofcode.withgoogle.com/media/org/gnu-mailman/cg5sxkouo8rjtjw2-360.png", + "website_url": "https://www.list.org", + "tagline": "GNU Mailman manages your mailing lists.", + "license": "GPL-3.0", + "categories": [ + "Social and communication" + ], + "contributor_guidance_url": "https://wiki.list.org/DEV/Google%20Summer%20of%20Code%202022", + "description": "The Mailman project develops the GNU Mailman mailing list manager. Our goals are RFC conformance and powerful convenient tools for subscribers, moderators, list owners, domain administrators, and site adminstrators of mailing lists.", + "tech_tags": [ + "python", + "django", + "rest", + "sqlalchemy", + "zope" + ], + "topic_tags": [ + "email", + "archives", + "list management" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "mailman-developers@python.org" + }, + { + "name": "mailingList", + "value": "mailman-users@mailman3.org" + }, + { + "name": "chat", + "value": "https://web.libera.chat/#mailman" + } + ], + "source_code": "https://gitlab.com/mailman", + "ideas_link": "https://wiki.list.org/DEV/Google%20Summer%20of%20Code%202026", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "mailman-developers@python.org" + }, + { + "name": "mailingList", + "value": "mailman-users@mailman3.org" + }, + { + "name": "chat", + "value": "https://web.libera.chat/#mailman" + } + ], + "social_comm_methods": [] + }, + { + "name": "Joplin", + "slug": "joplin", + "logo_url": "https://summerofcode.withgoogle.com/media/org/joplin/0b4z6iftngd1afrp-360.png", + "website_url": "https://github.com/laurent22/joplin", + "tagline": "The secure note taking application", + "license": "AGPL-3.0", + "categories": [ + "End user applications", + "Security" + ], + "contributor_guidance_url": "https://github.com/joplin/gsoc/?tab=readme-ov-file#google-summer-of-code-2025", + "description": "Joplin is a note-taking app designed with strong security and privacy in mind. It features end-to-end encryption (E2EE), ensuring the notes remain protected during synchronization. Users can store notes locally or sync them via trusted services like Nextcloud, Dropbox, or self-hosted servers, retaining full data ownership.\n\nAdditionally Joplin can manage a large number of notes that can be organised using notebooks or tags, thus making it suitable to manage a knowledge base. The notes can be searched using simple or advanced queries.\n\nThe application can be customised using plugins and themes, and you can also easily create your own. It is available for Windows, Linux, macOS, Android and iOS.", + "tech_tags": [ + "javascript", + "react", + "typescript", + "electron", + "React-Native" + ], + "topic_tags": [ + "security", + "search", + "synchronisation", + "note-taking", + "AI/ML" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://discourse.joplinapp.org/" + }, + { + "name": "chat", + "value": "https://discord.com/invite/VSj7AFHvpq" + }, + { + "name": "twitter", + "value": "https://twitter.com/joplinapp" + } + ], + "source_code": "https://github.com/laurent22/joplin/", + "ideas_link": "https://github.com/joplin/gsoc/blob/master/ideas.md", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://discourse.joplinapp.org/" + }, + { + "name": "chat", + "value": "https://discord.com/invite/VSj7AFHvpq" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/joplinapp" + } + ] + }, + { + "name": "Gambit: The package for computation in game theory", + "slug": "gambit-the-package-for-computation-in-game-theory", + "logo_url": "https://summerofcode.withgoogle.com/media/org/gambit-the-package-for-computation-in-game-theory/09u5sma4pizmwbqt-360.png", + "website_url": "https://www.gambit-project.org", + "tagline": "The package for computation in game theory", + "license": "GPL-2.0", + "categories": [ + "Science and medicine", + "Artificial Intelligence" + ], + "contributor_guidance_url": "https://www.gambit-project.org/gsoc_2026/", + "description": "Gambit is a set of software tools for doing computation on finite, noncooperative games in extensive or strategy form and a set of file formats for storing and communicating games to external tools.\n\nThe Gambit Project was founded in the mid-1980s at the California Institute of Technology and to this day is actively developed by a community of contributors, with core development led by The Alan Turing Institute as part of its project: Automated analysis of strategic interactions.", + "tech_tags": [ + "python", + "c++", + "wxwidgets", + "visualization" + ], + "topic_tags": [ + "algorithms", + "game theory", + "mathematical optimizaton" + ], + "contact_links": [ + { + "name": "email", + "value": "ted.turocy@gmail.com" + }, + { + "name": "email", + "value": "rahul.savani@gmail.com" + }, + { + "name": "email", + "value": "echalstrey@turing.ac.uk" + }, + { + "name": "twitter", + "value": "https://x.com/thegambitproj" + } + ], + "source_code": "https://github.com/gambitproject/gambit/", + "ideas_link": "https://www.gambit-project.org/gsoc_2026/", + "direct_comm_methods": [ + { + "name": "email", + "value": "ted.turocy@gmail.com" + }, + { + "name": "email", + "value": "rahul.savani@gmail.com" + }, + { + "name": "email", + "value": "echalstrey@turing.ac.uk" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://x.com/thegambitproj" + } + ] + }, + { + "name": "dora-rs", + "slug": "dora-rs-tb", + "logo_url": "https://summerofcode.withgoogle.com/media/org/dora-rs-tb/u8emntrmqq6vgcih-360.png", + "website_url": "https://dora-rs.ai", + "tagline": "Simplify robotic apps with AI", + "license": "Artistic-2.0", + "categories": [ + "End user applications", + "Programming languages" + ], + "contributor_guidance_url": "https://github.com/dora-rs/dora/blob/main/CONTRIBUTING.md", + "description": "DORA (Dataflow-Oriented Robotic Architecture) is middleware designed to streamline and simplify the creation of AI-based robotic applications. It offers low latency, composable, and distributed dataflow capabilities. Applications are modeled as directed graphs, also referred to as pipelines.", + "tech_tags": [ + "python", + "ros", + "c++", + "rust" + ], + "topic_tags": [ + "middleware", + "Embodied AI", + "Python Robotics", + "Autonomous Drive", + "Robot Dataflow" + ], + "contact_links": [ + { + "name": "email", + "value": "bding@dora-rs.org" + }, + { + "name": "email", + "value": "huangyu@dora-rs.org" + }, + { + "name": "blog", + "value": "https://x.com/bobd98846595?t=b3gA64CFMvmEF-0sIKrNsA&s=09" + } + ], + "source_code": "https://github.com/dora-rs", + "ideas_link": "https://github.com/dora-rs/dora/wiki/GSoC_2026", + "direct_comm_methods": [ + { + "name": "email", + "value": "bding@dora-rs.org" + }, + { + "name": "email", + "value": "huangyu@dora-rs.org" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://x.com/bobd98846595?t=b3gA64CFMvmEF-0sIKrNsA&s=09" + } + ] + }, + { + "name": "Neutralinojs", + "slug": "neutralinojs", + "logo_url": "https://summerofcode.withgoogle.com/media/org/neutralinojs/thloxs47w1aa1uts-360.png", + "website_url": "https://neutralino.js.org", + "tagline": "Lightweight cross-platform desktop app framework", + "license": "MIT", + "categories": [ + "Web", + "Development tools" + ], + "contributor_guidance_url": "https://neutralino.js.org/docs/contributing/framework-developer-guide/", + "description": "Neutralinojs is a lightweight and portable desktop application development framework. It lets you develop lightweight cross-platform desktop applications using JavaScript, HTML, and CSS. You can extend Neutralinojs with any programming language (via extensions IPC) and use Neutralinojs as a part of any source file (via child processes IPC).", + "tech_tags": [ + "c", + "javascript", + "node.js", + "c++", + "typescript" + ], + "topic_tags": [ + "app development", + "framework", + "cross-platform", + "Desktop App Development", + "lightweight framework" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://discord.gg/cybpp4guTJ" + }, + { + "name": "email", + "value": "neutralinojs@gmail.com" + }, + { + "name": "twitter", + "value": "https://twitter.com/NeutralinoJs" + } + ], + "source_code": "https://github.com/neutralinojs", + "ideas_link": "https://github.com/neutralinojs/gsoc2026/blob/main/project-ideas.md", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://discord.gg/cybpp4guTJ" + }, + { + "name": "email", + "value": "neutralinojs@gmail.com" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/NeutralinoJs" + } + ] + }, + { + "name": "Accord Project", + "slug": "accord-project", + "logo_url": "https://summerofcode.withgoogle.com/media/org/accord-project/1q3vpch01xpsriu9-360.png", + "website_url": "https://accordproject.org", + "tagline": "Open source software for smart legal contracts", + "license": "Apache-2.0", + "categories": [ + "Programming languages", + "Artificial Intelligence" + ], + "contributor_guidance_url": "https://github.com/accordproject/techdocs/blob/master/CONTRIBUTING.md", + "description": "Accord Project champions the importance of contract text alongside computer-code when automating contracts. This is often referred to as Computable Contracts or Smart Legal Contracts.\n\nThe Accord Project is a non-profit, collaborative, initiative developing an ecosystem and open source tools for computational contracts. The community includes participants from law firms, technology companies, universities, government and private individuals.\n\nToday, the community maintains a technology neutral foundation for smart legal contracts, based on the union of legal text with a machine readable data model, and machine executable logic. This definition of a smart legal contract is recognised across the industry, including by statutory and standards bodies. \n\nAccord Project is a top-level Linux Foundation project.", + "tech_tags": [ + "python", + "javascript", + "json", + "react", + "artificial intelligence" + ], + "topic_tags": [ + "natural language processing", + "data modeling", + "legal technology", + "contract management", + "document assembly" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://discord.gg/Zm99SKhhtA" + }, + { + "name": "blog", + "value": "https://accordproject.org/news" + } + ], + "source_code": "https://github.com/accordproject", + "ideas_link": "https://github.com/accordproject/techdocs/wiki/Google-Summer-of-Code-2026-Ideas-List", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://discord.gg/Zm99SKhhtA" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://accordproject.org/news" + } + ] + }, + { + "name": "Django Software Foundation", + "slug": "django-software-foundation-8o", + "logo_url": "https://summerofcode.withgoogle.com/media/org/django-software-foundation-8o/685unxpkksrvfugu-360.png", + "website_url": "https://www.djangoproject.com", + "tagline": "Web framework for perfectionists with deadlines", + "license": "BSD-3-Clause", + "categories": [ + "Web" + ], + "contributor_guidance_url": "https://code.djangoproject.com/wiki/SummerOfCode2026", + "description": "Django is a high-level Python Web framework originally developed at the Lawrence-Journal World. Django was designed to handle two challenges: the intensive deadlines of a newsroom and the stringent requirements of the experienced Web developers who wrote it. It lets you build high-performing, elegant Web applications quickly.", + "tech_tags": [ + "python", + "django" + ], + "topic_tags": [ + "web", + "python" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://forum.djangoproject.com/c/internals/mentorship/10" + }, + { + "name": "blog", + "value": "https://www.djangoproject.com/weblog/" + } + ], + "source_code": "https://github.com/django/django", + "ideas_link": "https://code.djangoproject.com/wiki/SummerOfCode2026", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://forum.djangoproject.com/c/internals/mentorship/10" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://www.djangoproject.com/weblog/" + } + ] + }, + { + "name": "JdeRobot", + "slug": "jderobot", + "logo_url": "https://summerofcode.withgoogle.com/media/org/jderobot/xwu8zkcagffmlqdj-360.png", + "website_url": "http://jderobot.github.io", + "tagline": "Toolkit for developing Robotics applications", + "license": "GPL-3.0", + "categories": [ + "Other", + "Artificial Intelligence" + ], + "contributor_guidance_url": "https://jderobot.github.io/activities/gsoc/2026#application-instructions-for-gsoc-2026", + "description": "Robotics applications are typically distributed, made up of a collection of concurrent asynchronous components which communicate using some middleware (ROS messages, DDS...). Building robotics applications is a complex task. Integrating existing nodes or libraries that provide already solved functionality, and using several tools may increase the software robustness and shorten the development time. JdeRobot provides several tools, libraries and reusable nodes. They have been written in C++, Python or JavaScript.\n\nOur community mainly works on four development areas:\n1.- Education in Robotics\n* RoboticsAcademy (https://jderobot.github.io/RoboticsAcademy/): a ROS-based framework to learn robotics and computer vision with drones, autonomous cars.... It is a collection of Python programmed exercises for engineering students. \n* Unibotics: a web based framework for teaching robotics.\n\n2.- Robot Programming Tools\t\n* VisualCircuit (https://jderobot.github.io/VisualCircuit/) for robot programming with connected blocks, as in electronic circuits, in a visual way\n* VisualStates for robot programming with Finite State Machines in a visual way\n* WebSim2D robot simulator with web technologies\n\n3.- MachineLearning in Robotics\n* DeepLearningSuite: neural networks for robot control. It includes the BehaviorMetrics tool for assessment of neural networks for autonomous driving\n* RL-Studio: Robotic library for the training of Reinforcement Learning algorithms\n* DetectionMetrics tool for evaluation of visual detection neural networks and algorithms\n\n4.- FPGAs in Robotics\n* FPGA-robotics (https://github.com/JdeRobot/FPGA-robotics): programming robots with reconfigurable computing (FPGAs) using open tools as IceStudio and Symbiflow. Verilog-based reusable blocks for robotics applications.\n* NeuralFPGA: running deeplearning networks on FPGAs", + "tech_tags": [ + "python", + "ros", + "gazebo", + "opencv", + "tensorflow" + ], + "topic_tags": [ + "education", + "artificial intelligence", + "robotics", + "computer vision", + "developer tools" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://github.com/orgs/JdeRobot/discussions" + }, + { + "name": "email", + "value": "jderobot@gmail.com" + }, + { + "name": "mailingList", + "value": "https://gsyc.urjc.es/cgi-bin/mailman/listinfo/jde-developers" + }, + { + "name": "twitter", + "value": "https://twitter.com/JdeRobot" + }, + { + "name": "blog", + "value": "https://www.linkedin.com/company/jderobot/" + } + ], + "source_code": "https://github.com/jderobot", + "ideas_link": "https://jderobot.github.io/activities/gsoc/2026#ideas-list", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://github.com/orgs/JdeRobot/discussions" + }, + { + "name": "email", + "value": "jderobot@gmail.com" + }, + { + "name": "mailingList", + "value": "https://gsyc.urjc.es/cgi-bin/mailman/listinfo/jde-developers" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/JdeRobot" + }, + { + "name": "blog", + "value": "https://www.linkedin.com/company/jderobot/" + } + ] + }, + { + "name": "Learning Equality", + "slug": "learning-equality", + "logo_url": "https://summerofcode.withgoogle.com/media/org/learning-equality/iptmmzjiktknrg9p-360.png", + "website_url": "https://learningequality.org/", + "tagline": "Building equity in education to transform lives", + "license": "MIT", + "categories": [ + "End user applications", + "Other" + ], + "contributor_guidance_url": "https://learningequality.org/r/gsoc-contributor-guidelines", + "description": "Learning Equality is an education technology nonprofit focused on fostering student-centered learning and advancing organizations working with underserved teachers and learners globally. Through community-driven innovation and strategic partnerships, we provide offline-first, open-source digital tools and implementation support to help them thrive.\nWe create and support open-source technology that directly and focally addresses the infrastructural and resource equity gaps that further marginalize learners with limited Internet. We started by enabling offline access to Khan Academy's videos and exercises and grew to become a key player in the global education technology landscape. For the past 13 years we’ve focused on boosting learning outcomes in some of the most challenging contexts, supporting disconnected learning in refugee camps, rural schools, out-of-school programs, and more.\nLearning Equality develops and maintains Kolibri, an adaptable set of open tools specially designed to support teaching and learning with tech but without the Internet for the third of the world that still lacks access to connectivity.\nKolibri is centered around an offline-first learning platform that runs on a variety of low-cost and legacy devices. It is complemented by a curricular tool, a library of open educational materials, and a toolkit of resources to support training and implementation. These tools are open and available in a variety of languages to better support learners and educators globally.\nAs a community-driven nonprofit, Learning Equality works closely to co-design Kolibri with a core network of collaborators, including national NGOs, UN agencies, government, and corporate partners. We also adopt a needs-based approach, constantly gathering insights from our community to inform the development of our tools.\nThrough its do-it-yourself adoption model and strategic collaborations, Learning Equality has conservatively reached 13 million learners and educators in every country in the world. Given our offline access and distribution model, we learn about usage of Kolibri through a combination of telemetry ping backs of high level, aggregate, anonymized statistics, data from partners, and use of our Kolibri Data Portal. Since instances of Kolibri never need to connect to the Internet to be used, we do not know about usage across every instance, which is why this is an informed estimate from years of data.", + "tech_tags": [ + "python", + "javascript", + "django", + "vue.js" + ], + "topic_tags": [ + "education", + "distributed databases", + "offline", + "learning" + ], + "contact_links": [ + { + "name": "email", + "value": "gsoc@learningequality.org" + }, + { + "name": "mailingList", + "value": "https://community.learningequality.org/" + }, + { + "name": "blog", + "value": "https://blog.learningequality.org/" + } + ], + "source_code": "https://github.com/learningequality/kolibri", + "ideas_link": "https://docs.google.com/document/d/e/2PACX-1vShAAywLDbBu5WH-Wv44rxetISCOQmHxBwxDw63Nt_OcpPVIZW2jjT8sd_GLTpeNvspze8W-_c9JUdl/pub", + "direct_comm_methods": [ + { + "name": "email", + "value": "gsoc@learningequality.org" + }, + { + "name": "mailingList", + "value": "https://community.learningequality.org/" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://blog.learningequality.org/" + } + ] + }, + { + "name": "Drupal Association", + "slug": "drupal-association", + "logo_url": "https://summerofcode.withgoogle.com/media/org/drupal-association/kfbn4ws0uftixkho-360.png", + "website_url": "https://drupal.org", + "tagline": "Build Bold Digital Experiences on Best Open Source", + "license": "GPL-2.0", + "categories": [ + "Web", + "Social and communication" + ], + "contributor_guidance_url": "https://www.drupal.org/community/contributor-guide/reference-information/google-summer-of-code/for-gsoc-students-where-to", + "description": "Drupal is a powerful Content Management System (CMS) and framework built on PHP, used globally by governments, universities, and businesses to build complex websites and applications, offering unmatched flexibility, security, and scalability through its modular architecture (modules and themes) and community-driven development.", + "tech_tags": [ + "mysql", + "javascript", + "html", + "php", + "symfony" + ], + "topic_tags": [ + "web", + "cloud", + "DXP", + "Massive community", + "Inclusive" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://groups.drupal.org/google-summer-code" + }, + { + "name": "chat", + "value": "https://www.drupal.org/community/contributor-guide/reference-information/talk/tools/slack" + }, + { + "name": "twitter", + "value": "https://twitter.com/drupal" + } + ], + "source_code": "https://git.drupalcode.org/project/drupal.git", + "ideas_link": "https://www.drupal.org/project/issues/gsoc?text=2026&status=All&priorities=All&categories=All&version=All&component=All", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://groups.drupal.org/google-summer-code" + }, + { + "name": "chat", + "value": "https://www.drupal.org/community/contributor-guide/reference-information/talk/tools/slack" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/drupal" + } + ] + }, + { + "name": "Kiwix", + "slug": "kiwix", + "logo_url": "https://summerofcode.withgoogle.com/media/org/kiwix/b6zuffwiyoulh0ku-360.png", + "website_url": "https://www.kiwix.org", + "tagline": "Internet content available offline.", + "license": "GPL-3.0", + "categories": [ + "End user applications", + "Other" + ], + "contributor_guidance_url": "https://kiwix.org/en/writing-your-google-summer-of-code-application/", + "description": "Kiwix provides copies of websites that can be browsed offline. We run scrapers that will crawl a given website and compress it into a single .zim archive (based on the openZIM format). \n\nThe zim files can then be stored locally and read on the fly by Kiwix in such a way that the user experience is similar to being online. \n\nWe can fit the entirety of Wikipedia on a regular Android phone, but there are more than 7,000 zim files available in 100+ languages, mostly focused on educational content (e.g. Wikipedia, StackOverflow, Khan Academy, etc.).\n\n\n\nKiwix runs on all platforms (Linux, Windows, Android, etc.) and has around 10-12 million users worldwide, in pretty much any place you can think of that has limited or no connectivity: prisons, rural schools, refugee camps, even Antarctic bases!\n\nOur big challenge is to make it as easy as possible to access or share offline content.", + "tech_tags": [ + "python", + "c++", + "nodejs", + "kotlin", + "vue.js" + ], + "topic_tags": [ + "offline", + "browser", + "compression" + ], + "contact_links": [ + { + "name": "email", + "value": "contact+gsoc@kiwix.org" + }, + { + "name": "chat", + "value": "https://join.slack.com/t/kiwixoffline/shared_invite/zt-c5fgl342-VDYtm7fwY6w0BAeBqYxIGg" + }, + { + "name": "twitter", + "value": "https://mastodon.social/@kiwix" + } + ], + "source_code": "https://www.github.com/kiwix", + "ideas_link": "https://kiwix.org/en/google-summer-of-code/", + "direct_comm_methods": [ + { + "name": "email", + "value": "contact+gsoc@kiwix.org" + }, + { + "name": "chat", + "value": "https://join.slack.com/t/kiwixoffline/shared_invite/zt-c5fgl342-VDYtm7fwY6w0BAeBqYxIGg" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://mastodon.social/@kiwix" + } + ] + }, + { + "name": "SW360", + "slug": "sw360", + "logo_url": "https://summerofcode.withgoogle.com/media/org/sw360/scylub8cx6f9mkzk-360.png", + "website_url": "https://eclipse.dev/sw360/", + "tagline": "Software supply chain management done right !", + "license": "EPL-2.0", + "categories": [ + "Web", + "Security" + ], + "contributor_guidance_url": "https://eclipse.dev/sw360/docs/development/", + "description": "SW360 is an open source software project licensed under the EPL-2.0 that provides both a web application and a repository to collect, organize and make available information about software components. It establishes a central hub for software components in an organization.", + "tech_tags": [ + "java", + "react", + "couchdb", + "SpringBoot" + ], + "topic_tags": [ + "license compliance", + "compliance automation", + "SBOM", + "component repository", + "vulnerabilities management" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "sw360-dev@eclipse.org" + }, + { + "name": "chat", + "value": "https://sw360chat.slack.com/" + }, + { + "name": "chat", + "value": "https://matrix.to/#/#technology.sw360-general:matrix.eclipse.org" + }, + { + "name": "blog", + "value": "https://eclipse.dev/sw360/" + } + ], + "source_code": "https://github.com/eclipse-sw360/sw360", + "ideas_link": "https://eclipse.dev/sw360/gsoc/gsoc-projects-2026/", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "sw360-dev@eclipse.org" + }, + { + "name": "chat", + "value": "https://sw360chat.slack.com/" + }, + { + "name": "chat", + "value": "https://matrix.to/#/#technology.sw360-general:matrix.eclipse.org" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://eclipse.dev/sw360/" + } + ] + }, + { + "name": "openSUSE Project", + "slug": "opensuse-project", + "logo_url": "https://summerofcode.withgoogle.com/media/org/opensuse-project/zq11ebxj038xotbe-360.png", + "website_url": "https://get.opensuse.org/", + "tagline": "Makers' choice for sysadmins, developers & users", + "license": "GPL-2.0", + "categories": [ + "Operating systems", + "Development tools" + ], + "contributor_guidance_url": "https://github.com/openSUSE/mentoring/wiki/Contributor-Guidance-for-Google-Summer-of-Code", + "description": "The openSUSE Project is a worldwide effort that promotes the use of Linux, tools around it, and open source. The openSUSE community is made up of multiple contributing communities that collaborate as part of a global open-source network. The openSUSE community develops, builds and maintains many of the packages, tools and infrastructure for the distribution. The community works together in an open, transparent and friendly manner as part of the global Free and Open Source Software community. openSUSE creates one of the world's best Linux distributions, as well as a variety of tools, such as OBS, OpenQA, Kiwi, YaST, OSEM and Uyuni. Distributions include a rolling release (Tumbleweed), a stable annual release (Leap) and operating systems for edge, embedded, cloud and containers through MicroOS and ALP.\n\nThe project is controlled by its community and relies on the contributions of individuals, working as testers, writers, translators, usability experts, artists and ambassadors or developers. The project embraces a wide variety of technology, people with different levels of expertise, speaking different languages and having different cultural backgrounds.", + "tech_tags": [ + "python", + "c/c++", + "go", + "ruby", + "reactjs javascript" + ], + "topic_tags": [ + "AIML", + "operating system developer tools", + "containers kubernetes", + "Security Cryptography", + "systems management" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://chat.opensuse.org/" + }, + { + "name": "chat", + "value": "https://discord.com/invite/opensuse" + }, + { + "name": "mailingList", + "value": "https://lists.opensuse.org/archives/list/project@lists.opensuse.org/" + }, + { + "name": "mailingList", + "value": "https://lists.opensuse.org/archives/list/factory@lists.opensuse.org/" + }, + { + "name": "email", + "value": "ddemaio@opensuse.org" + }, + { + "name": "twitter", + "value": "https://x.com/openSUSE" + }, + { + "name": "facebook", + "value": "https://www.facebook.com/groups/opensuseproject/" + } + ], + "source_code": "https://github.com/openSUSE", + "ideas_link": "https://github.com/openSUSE/mentoring/issues", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://chat.opensuse.org/" + }, + { + "name": "chat", + "value": "https://discord.com/invite/opensuse" + }, + { + "name": "mailingList", + "value": "https://lists.opensuse.org/archives/list/project@lists.opensuse.org/" + }, + { + "name": "mailingList", + "value": "https://lists.opensuse.org/archives/list/factory@lists.opensuse.org/" + }, + { + "name": "email", + "value": "ddemaio@opensuse.org" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://x.com/openSUSE" + }, + { + "name": "facebook", + "value": "https://www.facebook.com/groups/opensuseproject/" + } + ] + }, + { + "name": "St. Jude Children's Research Hospital", + "slug": "st-jude-childrens-research-hospital-ai", + "logo_url": "https://summerofcode.withgoogle.com/media/org/st-jude-childrens-research-hospital-ai/qnfe4pckkvrq5tfw-360.png", + "website_url": "https://stjude.org", + "tagline": "Find cures. Saving children.", + "license": "MIT", + "categories": [ + "Science and medicine", + "Programming languages" + ], + "contributor_guidance_url": "https://gist.github.com/claymcleod/ee8e62831a4975cba2032d888bb52080", + "description": "St. Jude Children's Research Hospital is a non-profit research hospital dedicated to advancing cures and means of prevention for children with catastrophic diseases. With respect to Google Summer of Code, we're interested in building modern, open-source infrastructure upon which large-scale scientific analyses can be done (typically focused on bioinformatics or genomics specifically).", + "tech_tags": [ + "python", + "rust", + "simd", + "WDL" + ], + "topic_tags": [ + "programming languages", + "genomics", + "developer tools", + "cloud" + ], + "contact_links": [ + { + "name": "email", + "value": "clay.mcleod@stjude.org" + }, + { + "name": "email", + "value": "stephanie.sandor@stjude.org" + }, + { + "name": "twitter", + "value": "https://x.com/claylmcleod" + } + ], + "source_code": "https://github.com/stjude-rust-labs", + "ideas_link": "https://gist.github.com/claymcleod/ee8e62831a4975cba2032d888bb52080", + "direct_comm_methods": [ + { + "name": "email", + "value": "clay.mcleod@stjude.org" + }, + { + "name": "email", + "value": "stephanie.sandor@stjude.org" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://x.com/claylmcleod" + } + ] + }, + { + "name": "Measurement Lab", + "slug": "measurement-lab", + "logo_url": "https://summerofcode.withgoogle.com/media/org/measurement-lab/0sttrnvo03uejp1z.png", + "website_url": "https://www.measurementlab.net/", + "tagline": "Providing Internet performance data since 2009.", + "license": "Apache-2.0", + "categories": [ + "Data", + "Web" + ], + "contributor_guidance_url": "https://github.com/m-lab/gsoc", + "description": "Founded in 2009, Measurement Lab (M-Lab) is an open platform for studying Internet performance and neutrality over time. We provide public, transparent data to empower researchers, policymakers, and open Internet advocates to make informed decisions about Internet infrastructure and policies.", + "tech_tags": [ + "python", + "javascript", + "html", + "sql", + "css" + ], + "topic_tags": [ + "data analysis", + "speed test", + "Internet measurements", + "Internet quality" + ], + "contact_links": [ + { + "name": "email", + "value": "pavlos@measurementlab.net" + }, + { + "name": "email", + "value": "mnewcomb@measurementlab.net" + }, + { + "name": "twitter", + "value": "https://x.com/MeasurementLab" + }, + { + "name": "blog", + "value": "https://www.measurementlab.net/blog/" + } + ], + "source_code": "https://github.com/m-lab/", + "ideas_link": "https://github.com/m-lab/gsoc", + "direct_comm_methods": [ + { + "name": "email", + "value": "pavlos@measurementlab.net" + }, + { + "name": "email", + "value": "mnewcomb@measurementlab.net" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://x.com/MeasurementLab" + }, + { + "name": "blog", + "value": "https://www.measurementlab.net/blog/" + } + ] + }, + { + "name": "Alaska", + "slug": "alaska", + "logo_url": "https://summerofcode.withgoogle.com/media/org/alaska/uuu8lxevgc3jof9c.png", + "website_url": "https://www.uaa.alaska.edu/research", + "tagline": "Many Traditions, One Alaska", + "license": "Apache-2.0", + "categories": [ + "Science and medicine", + "Artificial Intelligence" + ], + "contributor_guidance_url": "https://github.com/uaanchorage/GSoC/blob/main/CONTRIBUTOR-GUIDE.md", + "description": "Alaska Project Ideas are mentored by the researchers and collaborators of the University of Alaska and supported by other open-source entities in Alaska, such as Alaska Dev Alliance.\n\nWe aim to represent the open-source ecosystem of the 49th state, Alaska. Anchorage, the largest city in Alaska, has a vibrant open-source community. Through this GSoC initiative, industrial experts who are part of the Alaska Developer Alliance and faculty and researchers from the University of Alaska Anchorage (UAA) and the University of Alaska Fairbanks (UAF) join hands to provide a perfect mentoring experience for interested contributors globally. We offer a glimpse of this northern state and its tech landscape to the Lower 48 and the outside world through this open-source remote summer coding program organized and funded by Google. Our projects focus on healthcare, climate science, polar science, and other research fields critical to the Circumpolar North and the rest of the world.", + "tech_tags": [ + "python", + "mysql", + "java", + "matlab", + "dicom" + ], + "topic_tags": [ + "deep learning", + "neuroscience", + "radiology", + "heathcare", + "Polar Science" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://github.com/uaanchorage/GSoC/discussions" + }, + { + "name": "blog", + "value": "https://github.com/uaanchorage/GSoC/wiki" + } + ], + "source_code": "https://github.com/uaanchorage/GSoC", + "ideas_link": "https://github.com/uaanchorage/GSoC", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://github.com/uaanchorage/GSoC/discussions" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://github.com/uaanchorage/GSoC/wiki" + } + ] + }, + { + "name": "INCF", + "slug": "incf", + "logo_url": "https://summerofcode.withgoogle.com/media/org/incf/gnryoa8kunjogh9a-360.png", + "website_url": "https://www.incf.org", + "tagline": "An open & FAIR neuroscience standards organization", + "license": "BSD-3-Clause", + "categories": [ + "Science and medicine", + "Artificial Intelligence" + ], + "contributor_guidance_url": "https://docs.google.com/document/d/16H8MlUl_0EbhL1IC4ddRZKYeMAd9JtAHCuxY5piZOGc/", + "description": "The International Neuroinformatics Coordinating Facility (INCF; www.incf.org) is an international organization launched in 2005, following a proposal from the Global Science Forum of the OECD. \n\nINCF was established to facilitate and promote the sharing of data and computing resources in the international neuroscience community. A larger objective of INCF is to help develop scalable, portable, and extensible applications that can be used by neuroscience laboratories worldwide. \n\nThe mission of INCF is to make neuroscience FAIR (Findable, Accessible, Interoperable and Reusable) by sharing and integrating neuroscience data and knowledge worldwide. We foster scientific community collaboration to develop standards for data sharing, analysis modeling and simulation in order to catalyze insights into brain function in health and disease.\n\nINCF activities are open to all who can contribute to neuroinformatics at the international level. We have a global community of neuroscience researchers working on new and improved tools for all of neuroscience – enabling other researchers to make more and faster discoveries, and improving our understanding of the brain.", + "tech_tags": [ + "python", + "javascript", + "java", + "c++", + "gpu" + ], + "topic_tags": [ + "machine learning", + "data visualization", + "neuroscience", + "brain modelling", + "neuroimage processing" + ], + "contact_links": [ + { + "name": "email", + "value": "gsoc@incf.org" + }, + { + "name": "email", + "value": "arnab1896@gmail.com" + }, + { + "name": "email", + "value": "mathew@incf.org" + }, + { + "name": "twitter", + "value": "https://twitter.com/INCForg" + } + ], + "source_code": "https://github.com/INCF", + "ideas_link": "https://docs.google.com/document/d/1XkelmTUV8zMtg99GsZhbYvPoyUG5uzEIWji7IXj0M4k/edit?tab=t.0", + "direct_comm_methods": [ + { + "name": "email", + "value": "gsoc@incf.org" + }, + { + "name": "email", + "value": "arnab1896@gmail.com" + }, + { + "name": "email", + "value": "mathew@incf.org" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/INCForg" + } + ] + }, + { + "name": "Jitsi", + "slug": "jitsi", + "logo_url": "https://summerofcode.withgoogle.com/media/org/jitsi/p3456ygkk7vdq0or-360.png", + "website_url": "https://jitsi.org", + "tagline": "State-of-the-art video conferencing", + "license": "Apache-2.0", + "categories": [ + "Media", + "Web" + ], + "contributor_guidance_url": "https://jitsi.github.io/handbook/docs/dev-guide/dev-guide-contributing", + "description": "Jitsi is a set of Open Source projects which empower users to deploy secure, scalable and easy to use video conferencing platforms with state-of-the-art video quality and features.", + "tech_tags": [ + "javascript", + "java", + "react", + "kotlin", + "webrtc" + ], + "topic_tags": [ + "video", + "multimedia", + "video conferencing", + "WebRTC" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://community.jitsi.org/" + }, + { + "name": "email", + "value": "gsoc@jitsi.org" + }, + { + "name": "twitter", + "value": "https://x.com/jitsinews" + } + ], + "source_code": "https://github.com/jitsi/", + "ideas_link": "https://github.com/jitsi/gsoc-ideas/blob/master/2026/README.md", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://community.jitsi.org/" + }, + { + "name": "email", + "value": "gsoc@jitsi.org" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://x.com/jitsinews" + } + ] + }, + { + "name": "LibreCube Initiative", + "slug": "librecube-initiative", + "logo_url": "https://summerofcode.withgoogle.com/media/org/librecube-initiative/zkfjswciuihmdxu1-360.png", + "website_url": "https://librecube.org", + "tagline": "Open Source Space Exploration", + "license": "MIT", + "categories": [ + "Science and medicine" + ], + "contributor_guidance_url": "https://librecube.org/google-summer-of-code-proposal/", + "description": "LibreCube develops an ecosystem of open source space technology for exploration systems. \n\nOur vision is to enable everyone to get involved in building systems for exploration using open source hardware and software. We believe that discovering new worlds and getting scientific insights should be a matter to all humankind.\n\n\nLibreCube is based on these three pillars: \n\n\n1) Open Source: Everything we do at LibreCube is made available to the public free and open source. Also, we only use free and open source tools for our work – this way, really everyone can get involved!\n\n\n2) Free and Open Standards: We rely on proven and tested standards for our system designs, with preference for standards from the space domain.\n\n\n3) Reference Architecture: Defining a generic architecture of system that have standardized interfaces makes it possible to combine and re-use elements for various different mission applications.", + "tech_tags": [ + "python", + "docker", + "raspberry pi", + "micropython" + ], + "topic_tags": [ + "robotics", + "automation", + "space" + ], + "contact_links": [ + { + "name": "email", + "value": "info@librecube.org" + }, + { + "name": "blog", + "value": "https://fosstodon.org/@librecube" + } + ], + "source_code": "https://gitlab.com/librecube", + "ideas_link": "https://librecube.org/google-summer-of-code/", + "direct_comm_methods": [ + { + "name": "email", + "value": "info@librecube.org" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://fosstodon.org/@librecube" + } + ] + }, + { + "name": "The Linux Foundation", + "slug": "the-linux-foundation", + "logo_url": "https://summerofcode.withgoogle.com/media/org/the-linux-foundation/ydeu9rliawhe6of9-360.png", + "website_url": "http://www.linuxfoundation.org/", + "tagline": "Non-profit consortium fostering growth of Linux", + "license": "MIT", + "categories": [ + "Operating systems" + ], + "contributor_guidance_url": "https://github.com/LinuxFoundationGSoC/ProjectIdeas/wiki/Google-Summer-of-Code-2026", + "description": "The Linux Foundation is a non-profit consortium dedicated to fostering the growth of Linux. Founded in 2007 as a merger of the former Free Standards Group (FSG) and the former Open Source Developer Lab (OSDL), the LF sponsors the work of Linux creator Linus Torvalds and is supported by leading Linux and open source companies and developers from around the world. The Linux Foundation promotes, protects and standardizes Linux by providing unified resources and services needed for open source to successfully compete with closed platforms. For more see our [About page](https://www.linuxfoundation.org/about/). All software produced by us is free software published under OSI-approved licenses. See project ideas page for the license used by each project.", + "tech_tags": [ + "c", + "linux", + "cups", + "ai", + "fuzz-testing" + ], + "topic_tags": [ + "kernel", + "automotive", + "printing", + "iio", + "zephyr" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://github.com/LinuxFoundationGSoC/ProjectIdeas/wiki/Google-Summer-of-Code-2026#contact-us" + }, + { + "name": "chat", + "value": "https://github.com/LinuxFoundationGSoC/ProjectIdeas/wiki/Google-Summer-of-Code-2026#contact-us" + }, + { + "name": "email", + "value": "till@linux.com" + }, + { + "name": "blog", + "value": "https://linuxfoundation.org/blog/" + } + ], + "source_code": "https://github.com/LinuxFoundationGSoC/ProjectIdeas/wiki/Google-Summer-of-Code-2026#our-source-code-repositories", + "ideas_link": "https://github.com/LinuxFoundationGSoC/ProjectIdeas/wiki/Google-Summer-of-Code-2026", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://github.com/LinuxFoundationGSoC/ProjectIdeas/wiki/Google-Summer-of-Code-2026#contact-us" + }, + { + "name": "chat", + "value": "https://github.com/LinuxFoundationGSoC/ProjectIdeas/wiki/Google-Summer-of-Code-2026#contact-us" + }, + { + "name": "email", + "value": "till@linux.com" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://linuxfoundation.org/blog/" + } + ] + }, + { + "name": "Typelevel", + "slug": "typelevel", + "logo_url": "https://summerofcode.withgoogle.com/media/org/typelevel/hxlcctbqekguxcxx.png", + "website_url": "https://typelevel.org", + "tagline": "We do functional programming together", + "license": "Apache-2.0", + "categories": [ + "Programming languages", + "Web" + ], + "contributor_guidance_url": "https://typelevel.org/gsoc/", + "description": "Typelevel is an ecosystem of projects and a community of people united to foster an inclusive, welcoming, and safe environment around functional programming in Scala. We work together to develop projects that apply functional programming to challenging problems relevant in industry. Our community culture embraces curiosity and mentoring and we don't shy away from experimenting with new and exciting ideas. Most of all, we love to make programming joyful and social.", + "tech_tags": [ + "linux", + "node.js", + "jvm", + "scala", + "wasm" + ], + "topic_tags": [ + "web", + "functional programming", + "cloud", + "AI/ML", + "cats" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://discord.gg/382Z3w8QTj" + }, + { + "name": "email", + "value": "gsoc@typelevel.org" + }, + { + "name": "blog", + "value": "https://typelevel.org/blog/" + }, + { + "name": "twitter", + "value": "https://bsky.app/profile/typelevel.org" + } + ], + "source_code": "https://github.com/typelevel", + "ideas_link": "https://typelevel.org/gsoc/ideas/", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://discord.gg/382Z3w8QTj" + }, + { + "name": "email", + "value": "gsoc@typelevel.org" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://typelevel.org/blog/" + }, + { + "name": "twitter", + "value": "https://bsky.app/profile/typelevel.org" + } + ] + }, + { + "name": "The Honeynet Project", + "slug": "the-honeynet-project", + "logo_url": "https://summerofcode.withgoogle.com/media/org/the-honeynet-project/pvycoc21p2ketj7b-360.png", + "website_url": "https://honeynet.org", + "tagline": "Honeypots and Threat Intelligence R&D", + "license": "MIT", + "categories": [ + "Security" + ], + "contributor_guidance_url": "https://www.honeynet.org/gsoc/", + "description": "The Honeynet Project is a leading international 501c3 non-profit security research organization, dedicated to investigating the latest attacks and developing open source security tools to improve Internet security. With Chapters around the world, our volunteers have contributed to fight against malware (such as Conficker), discovering new attacks and creating security tools used by businesses and government agencies all over the world.\n\nThe Honeynet Project uses GSoC as a incubator for new R&D projects, and to recruit active new members.", + "tech_tags": [ + "python", + "javascript", + "django", + "go", + "docker" + ], + "topic_tags": [ + "honeypots", + "malware analysis", + "Threat Intelligence" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://discord.gg/68B8Ru5fSU" + }, + { + "name": "blog", + "value": "https://www.honeynet.org/blog/" + } + ], + "source_code": "https://github.com/honeynet", + "ideas_link": "https://www.honeynet.org/gsoc/gsoc-2026/google-summer-of-code-2026-project-ideas/", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://discord.gg/68B8Ru5fSU" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://www.honeynet.org/blog/" + } + ] + }, + { + "name": "International Catrobat Association", + "slug": "international-catrobat-association", + "logo_url": "https://summerofcode.withgoogle.com/media/org/international-catrobat-association/dfkxzmsqlkyvwi2o-360.png", + "website_url": "https://www.catrobat.org", + "tagline": "Free visual coding apps for computational thinking", + "license": "AGPL-3.0", + "categories": [ + "Programming languages", + "Artificial Intelligence" + ], + "contributor_guidance_url": "https://docs.google.com/document/d/1vOGY2C80raXLV6RVRHXoqiAhcnBJFeZdU8wqMm-Rgo0/edit?usp=sharing", + "description": "Computational thinking for all with free visual coding apps\nThe Catrobat project develops useful frameworks to create games, animations, or apps easily within a short time. This set of mobile creativity tools for smartphones is inspired by the well-known Scratch framework by the Lifelong Kindergarten Group at the MIT Media Lab. The motivation behind the project is that programming is an important cultural technique on the same level as mathematics and physics, from a practical as well as from a philosophical point of view. Our aim thus is to popularize the skills needed to program from an early age in a fun and engaging way that will facilitate the spread of its adoption among young people all over the world.\n\nOur awarded Android app “Pocket Code” is currently the most famous outcome of the project. Without the need for any further devices, users have the possibility to create their first program directly on their mobile device in just a few steps using visual \"Bricks\". Pocket Code supports all common device sensors, provides special \"Bricks\" for different robotic devices (Lego Mindstorms, Robotix Phiro, etc.) as well as for hardware devices such as the Arduino board or the Raspberry Pi, and of course offers elements of programming languages such as variables, if-statements, concurrency, etc. We also work on \"Pocket Code\" for iOS and on a large number of extensions. That’s why developers of different fields help us to keep our products up-to-date to meet the current needs of our users.\n\nMotivated by prizes (such as the Lovie Award, the Austrian National Innovation Award or the Re-Imagine Education Award) and being featured by different programs (like Google Play for Education or code.org), our team is working on many different subprojects and extensions. Over 870 developers already contributed to our project on different topics such as app development, web technologies, graphics, usability, internationalization, or design.", + "tech_tags": [ + "python", + "javascript", + "swift", + "kotlin", + "flutter" + ], + "topic_tags": [ + "education", + "visual programming", + "mobile programming", + "game engines", + "creativity tools" + ], + "contact_links": [ + { + "name": "email", + "value": "contact@catrobat.org" + }, + { + "name": "chat", + "value": "https://github.com/Catrobat/Catroid#contributing" + }, + { + "name": "twitter", + "value": "https://x.com/Pocket_Code" + } + ], + "source_code": "https://github.com/Catrobat/", + "ideas_link": "https://developer.catrobat.org/pages/development/google-summer-of-code/2026/", + "direct_comm_methods": [ + { + "name": "email", + "value": "contact@catrobat.org" + }, + { + "name": "chat", + "value": "https://github.com/Catrobat/Catroid#contributing" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://x.com/Pocket_Code" + } + ] + }, + { + "name": "AboutCode", + "slug": "aboutcode", + "logo_url": "https://summerofcode.withgoogle.com/media/org/aboutcode/v8yhhmpej4djujai-360.png", + "website_url": "https://aboutcode.org", + "tagline": "Scan code for origin, license and vulnerabilities", + "license": "Apache-2.0", + "categories": [ + "Security", + "Development tools" + ], + "contributor_guidance_url": "https://github.com/aboutcode-org/aboutcode/wiki/GSOC-2026", + "description": "AboutCode.org is a community of open source developers who are trying to make open source easier to use by providing open source tools to discover, identify and track open source components (aka. Software Composition Analysis – SCA). This includes tools, data and standards for code origin, FOSS licenses and security vulnerabilities.", + "tech_tags": [ + "python", + "javascript", + "Django+PostgreSQL", + "C/Rust/Go" + ], + "topic_tags": [ + "dependencies", + "vulnerabilities", + "SoftwareCompositionAnalysis", + "License", + "SBOM" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://matrix.to/#/#aboutcode-org_gsoc2026:gitter.im" + }, + { + "name": "blog", + "value": "https://aboutcode.org/blog/" + } + ], + "source_code": "https://github.com/aboutcode-org", + "ideas_link": "https://github.com/aboutcode-org/aboutcode/wiki/GSOC-2026-project-ideas", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://matrix.to/#/#aboutcode-org_gsoc2026:gitter.im" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://aboutcode.org/blog/" + } + ] + }, + { + "name": "webpack", + "slug": "webpack", + "logo_url": "https://summerofcode.withgoogle.com/media/org/webpack/bb5phgrkm0y4op3e-360.png", + "website_url": "https://webpack.js.org", + "tagline": "webpack is the module bundler for web projects", + "license": "MIT", + "categories": [ + "Web", + "Development tools" + ], + "contributor_guidance_url": "https://webpack.js.org/contribute/", + "description": "webpack is THE build tool for modern web applications run on NodeJS\nwebpack is a module bundler. Its main purpose is to bundle JavaScript files for usage in a browser, yet it is also capable of transforming, bundling, or packaging just about any resource or asset.\n\nOverview\nCurrently in the web, modules are not fully adopted, and therefore we need tooling to help compile your module code into something that will work in the browser. webpack champions this by not only supporting CommonJS, AMD, RequireJS module systems, but also ECMAScript Modules (ESM).\n\nWhat makes webpack unique?\nExtensibility webpack is built using an extensible event-driven architecture. This means that a majority of our code is Plugins that hook into a set of lifecycle events. This means that it is infinitely flexible and configurable. This architecture also lets us pivot very quickly. Plugins isolate functionality (and can even be used in your configuration), and allow us to add and drop new functionality without breaking the rest of the system.\n\nFocused around Web Performance webpack revived a classic technique from Google Web Toolkit known as \"code splitting\". Code splitting let's developers write imperative instructions (as a part of their code), to split up their JavaScript bundles (at build time) into multiple pieces that can be loaded lazily.\n\nBuilt in JavaScript webpack's configuration format, and architecture is all built and run on NodeJS. This means that anyone comfortable with JavaScript can break open our source code with a low level of entry to learn, contribute to, and improve.\n\nUsed at Scale webpack is used by companies like AirBnB, Microsoft, Housing.com, Flipkart, Alibaba, to build high performance, scaled web applications.\n\nCommunity Owned webpack is not backed by a single organization, rather by its users, contributors, backers, sponsors, and shareholders. This means that every decision we make is for them, and them only.", + "tech_tags": [ + "javascript", + "typescript", + "node" + ], + "topic_tags": [ + "web development", + "javascript", + "webassembly", + "Node.js", + "webpack" + ], + "contact_links": [ + { + "name": "email", + "value": "evenstensberg@gmail.com" + }, + { + "name": "chat", + "value": "https://discord.gg/5sxFZPdx2k" + }, + { + "name": "chat", + "value": "https://twitter.com/evenstensberg" + }, + { + "name": "twitter", + "value": "https://twitter.com/webpack?lang=en" + }, + { + "name": "blog", + "value": "https://medium.com/webpack" + } + ], + "source_code": "https://github.com/webpack", + "ideas_link": "https://docs.google.com/document/d/1Mr_IPVdbupGwmGtcvLlVqFEL8wYN_rlfHUghJ2EPBVE/edit?usp=sharing", + "direct_comm_methods": [ + { + "name": "email", + "value": "evenstensberg@gmail.com" + }, + { + "name": "chat", + "value": "https://discord.gg/5sxFZPdx2k" + }, + { + "name": "chat", + "value": "https://twitter.com/evenstensberg" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/webpack?lang=en" + }, + { + "name": "blog", + "value": "https://medium.com/webpack" + } + ] + }, + { + "name": "Pharo Consortium", + "slug": "pharo-consortium", + "logo_url": "https://summerofcode.withgoogle.com/media/org/pharo-consortium/zrxygkl3ycuvw6nb-360.png", + "website_url": "https://pharo.org/", + "tagline": "Modern and immersive programming language", + "license": "MIT", + "categories": [ + "Programming languages", + "Development tools" + ], + "contributor_guidance_url": "https://gsoc.pharo.org/", + "description": "Pharo is a dynamic, purely object-oriented programming language (where everything is an object) that is inspired by Smalltalk. It also includes a powerful IDE that focuses on simplicity and quick feedback. Its entire syntax can fit on a postcard, and you can code directly in the debugger. Pharo has useful tools that help you work efficiently.\n\nThe goal of Pharo is to provide a clean, innovative, free, and open-source environment. With a stable and small core system, great development tools, and regular updates, Pharo is a good choice for building and running important applications.\n\nPharo supports a healthy community made up of both private and commercial contributors who help improve and maintain the core system and its external packages.", + "tech_tags": [ + "git", + "smalltalk", + "pharo", + "spec", + "SUnit" + ], + "topic_tags": [ + "machine learning", + "programming languages", + "virtual machines", + "Modelling", + "Live music" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://discord.gg/QewZMZa" + }, + { + "name": "mailingList", + "value": "pharo-users@lists.pharo.org" + }, + { + "name": "email", + "value": "https://gsoc.pharo.org/ideas" + }, + { + "name": "twitter", + "value": "https://twitter.com/pharoproject" + }, + { + "name": "blog", + "value": "https://thepharo.dev/" + } + ], + "source_code": "https://github.com/pharo-project/pharo", + "ideas_link": "https://gsoc.pharo.org/ideas", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://discord.gg/QewZMZa" + }, + { + "name": "mailingList", + "value": "pharo-users@lists.pharo.org" + }, + { + "name": "email", + "value": "https://gsoc.pharo.org/ideas" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/pharoproject" + }, + { + "name": "blog", + "value": "https://thepharo.dev/" + } + ] + }, + { + "name": "The Mifos Initiative", + "slug": "the-mifos-initiative", + "logo_url": "https://summerofcode.withgoogle.com/media/org/the-mifos-initiative/etmiqn0lkvfxvm5p-360.png", + "website_url": "https://mifos.org", + "tagline": "End Poverty One Line of Code at a Time", + "license": "MPL-2.0", + "categories": [ + "End user applications", + "Artificial Intelligence" + ], + "contributor_guidance_url": "https://mifosforge.jira.com/wiki/spaces/RES/pages/4456638/Application+Template", + "description": "We are a global 501(c)3 fintech non-profit leveraging the cloud, mobile & open source community to democratize financial services worldwide and digitally transform the world’s 3 billion poor and underbanked. Mifos has pioneered open source banking technology for the past fifteen years transforming the entire sector at each major stage of evolution from microfinance to financial inclusion to digital financial services and now embedded finance. Mifos guides the open source community, steers the roadmap, and stewards the vibrant ecosystem of organizations building solutions on its open platform. Our building blocks for banking, recognized as digital public goods, make core banking commoditized infrastructure, empowering any organization, anywhere to embed any financial service to any customer via any channel. These building blocks provide the common functionalities for creating customers, managing wallets, savings and loan accounts, orchestrating payments, and maintaining the financial ledger & reports. More than 65 million clients are reached by 500+ financial institutions across 70 countries using solutions powered by our APIs.", + "tech_tags": [ + "android", + "java", + "kotlin", + "spring", + "angular" + ], + "topic_tags": [ + "artificial intelligence", + "cloud", + "fintech", + "financial inclusion", + "mobile banking" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://mifos.short.gy/slack" + }, + { + "name": "mailingList", + "value": "https://mifos.org/resources/community/communications/" + }, + { + "name": "email", + "value": "info@mifos.org" + }, + { + "name": "twitter", + "value": "https://twitter.com/mifos" + }, + { + "name": "blog", + "value": "https://mifos.org/blog" + }, + { + "name": "facebook", + "value": "https://facebook.com/mifos" + }, + { + "name": "blog", + "value": "https://linkedin.com/company/mifos" + } + ], + "source_code": "https://github.com/openmf", + "ideas_link": "https://mifosforge.jira.com/wiki/spaces/RES/pages/5021990914/2026+Google+Summer+of+Code+Ideas+List", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://mifos.short.gy/slack" + }, + { + "name": "mailingList", + "value": "https://mifos.org/resources/community/communications/" + }, + { + "name": "email", + "value": "info@mifos.org" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/mifos" + }, + { + "name": "blog", + "value": "https://mifos.org/blog" + }, + { + "name": "facebook", + "value": "https://facebook.com/mifos" + }, + { + "name": "blog", + "value": "https://linkedin.com/company/mifos" + } + ] + }, + { + "name": "Synfig", + "slug": "synfig", + "logo_url": "https://summerofcode.withgoogle.com/media/org/synfig/ohcj3eigerib4jym-360.png", + "website_url": "https://synfig.org", + "tagline": "Open-source 2D animation software", + "license": "GPL-3.0", + "categories": [ + "Media" + ], + "contributor_guidance_url": "https://synfig-docs-dev.readthedocs.io/en/latest/gsoc/2026/getting-started.html", + "description": "Synfig is a 2D open-source animation software. It is capable to produce vector artwork and also can work with bitmap images.\n\nThe main concept of Synfig is \"tweening\" - you can define object positions or shapes of vector objects at certain points of time and program will interpolate in-between frames automatically. You can also use bones to control your animation on higher level.\n\nWith Synfig you can easily create motion graphics and cut-out animations for product explanation videos, tutorial videos, and more.", + "tech_tags": [ + "python", + "c++", + "gtk", + "gtkmm" + ], + "topic_tags": [ + "2d/3d graphics", + "animation", + "vector graphics" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://forums.synfig.org/t/google-summer-of-code-2026/16911" + }, + { + "name": "blog", + "value": "https://www.synfig.org/news/" + }, + { + "name": "twitter", + "value": "https://twitter.com/synfig" + }, + { + "name": "facebook", + "value": "https://www.facebook.com/synfig.org" + } + ], + "source_code": "https://github.com/synfig/synfig", + "ideas_link": "https://github.com/synfig/synfig-docs-dev/blob/master/docs/gsoc/2026/ideas.rst", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://forums.synfig.org/t/google-summer-of-code-2026/16911" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://www.synfig.org/news/" + }, + { + "name": "twitter", + "value": "https://twitter.com/synfig" + }, + { + "name": "facebook", + "value": "https://www.facebook.com/synfig.org" + } + ] + }, + { + "name": "DeepChem", + "slug": "deepchem", + "logo_url": "https://summerofcode.withgoogle.com/media/org/deepchem/ffdofoxp3ba1qqmh-360.png", + "website_url": "https://www.deepchem.io", + "tagline": "Democratize AI for drug discovery.", + "license": "MIT", + "categories": [ + "Science and medicine", + "Artificial Intelligence" + ], + "contributor_guidance_url": "https://forum.deepchem.io/t/gsoc-proposal-guidelines-2024/1102", + "description": "We democratize access to AI tools for drug discovery and other scientific applications of deep learning more broadly. We also maintain a collection of scientific datasets for benchmarking and building new deep learning architectures along with an extensive open source collection of scientific machine learning tutorials. DeepChem has a strong educational component and partners with a broad range of academic and governmental institutions.", + "tech_tags": [ + "python", + "numpy", + "pytorch", + "HuggingFace" + ], + "topic_tags": [ + "artificial intelligence", + "chemistry", + "biology", + "materials science", + "Drug Discovery" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://discord.gg/RYTrUY8Ssn" + }, + { + "name": "mailingList", + "value": "https://forum.deepchem.io/" + }, + { + "name": "twitter", + "value": "https://twitter.com/deep_chem" + } + ], + "source_code": "https://github.com/deepchem/deepchem", + "ideas_link": "https://github.com/deepchem/deepchem/discussions/4703", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://discord.gg/RYTrUY8Ssn" + }, + { + "name": "mailingList", + "value": "https://forum.deepchem.io/" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/deep_chem" + } + ] + }, + { + "name": "LLVM Compiler Infrastructure", + "slug": "llvm-compiler-infrastructure", + "logo_url": "https://summerofcode.withgoogle.com/media/org/llvm-compiler-infrastructure/ize6lrlftlvdxtqe-360.png", + "website_url": "http://www.llvm.org", + "tagline": "LLVM Compiler Infrastructure", + "license": "Apache-2.0", + "categories": [ + "Programming languages", + "Development tools" + ], + "contributor_guidance_url": "https://discourse.llvm.org/t/gsoc-2025-projects-proposals-and-other-information/85035", + "description": "The LLVM Project is a collection of modular and reusable compiler and toolchain technologies. Despite its name, LLVM has little to do with traditional virtual machines. The name \"LLVM\" itself is not an acronym; it is the full name of the project.\n\nLLVM began as a research project at the University of Illinois, with the goal of providing a modern, SSA-based compilation strategy capable of supporting both static and dynamic compilation of arbitrary programming languages. Since then, LLVM has grown to be an umbrella project consisting of a number of subprojects, many of which are being used in production by a wide variety of commercial and open source projects as well as being widely used in academic research.\n\nIn addition to official subprojects of LLVM, there are a broad variety of other projects that use components of LLVM for various tasks. Through these external projects you can use LLVM to compile Ruby, Python, Haskell, Rust, D, PHP, Pure, Lua, Julia, and a number of other languages. A major strength of LLVM is its versatility, flexibility, and reusability, which is why it is being used for such a wide variety of different tasks: everything from doing light-weight JIT compiles of embedded languages like Lua to compiling Fortran code for massive super computers.", + "tech_tags": [ + "llvm", + "c++", + "clang", + "mlir" + ], + "topic_tags": [ + "compilers", + "development tools", + "libraries" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://discourse.llvm.org/c/community/gsoc/32" + }, + { + "name": "chat", + "value": "https://discord.com/channels/636084430946959380/642374147640524831" + }, + { + "name": "blog", + "value": "https://blog.llvm.org/" + }, + { + "name": "twitter", + "value": "https://twitter.com/llvmorg" + } + ], + "source_code": "https://github.com/llvm/llvm-project/", + "ideas_link": "https://llvm.org/OpenProjects.html", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://discourse.llvm.org/c/community/gsoc/32" + }, + { + "name": "chat", + "value": "https://discord.com/channels/636084430946959380/642374147640524831" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://blog.llvm.org/" + }, + { + "name": "twitter", + "value": "https://twitter.com/llvmorg" + } + ] + }, + { + "name": "German Center for Open Source AI", + "slug": "german-center-for-open-source-ai", + "logo_url": "https://summerofcode.withgoogle.com/media/org/german-center-for-open-source-ai/mir4i7v7wopcc7wn-360.png", + "website_url": "https://gcos.ai/", + "tagline": "Democratically governed AI for society", + "license": "BSD-3-Clause", + "categories": [ + "Data", + "Artificial Intelligence" + ], + "contributor_guidance_url": "https://github.com/gc-os-ai/mentoring-projects/blob/main/README.md#contributor-guides", + "description": "German Center for Open Source AI (GC.OS) builds open source AI software and a sovereign tech stack that is democratically run by its users.", + "tech_tags": [ + "python", + "pytorch", + "scikit-learn" + ], + "topic_tags": [ + "machine learning", + "time-series", + "Causal Inference" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://discord.gg/7uKdHfdcJG" + }, + { + "name": "blog", + "value": "https://www.linkedin.com/company/german-center-for-open-source-ai" + } + ], + "source_code": "https://github.com/gc-os-ai/.github/blob/main/profile/README.md", + "ideas_link": "https://github.com/gc-os-ai/mentoring-projects/blob/main/2026/ideas_list.md", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://discord.gg/7uKdHfdcJG" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://www.linkedin.com/company/german-center-for-open-source-ai" + } + ] + }, + { + "name": "SageMath", + "slug": "sagemath", + "logo_url": "https://summerofcode.withgoogle.com/media/org/sagemath/1tcj7svgwadc13cj-360.png", + "website_url": "https://www.sagemath.org", + "tagline": "Open-source mathematics software system", + "license": "GPL-3.0", + "categories": [ + "Science and medicine" + ], + "contributor_guidance_url": "https://wiki.sagemath.org/GSoC/Contributors", + "description": "Mathematicians, scientists, researchers, and students need a powerful tool for their work or study. SageMath is a freely available open-source mathematical software system bundling the functionality of many software libraries, exposing their features in a common interface and extending on top of this with its own powerful algorithms. By leveraging the flexibility and universality of the underlying Python interpreter, SageMath is able to accommodate for a vast range of their requirements.\n\nThe mission of SageMath is to create a viable open-source alternative to all major proprietary mathematical software systems.\n\nPython is the main programming language inside the SageMath library and also the language of choice for all interactions with the built-in objects and functions for expressing mathematical concepts and calculations. Besides a command-line and programming-library interface, its primary user interface is a dynamic self-hosted website. From the perspective of a user, the interface language is Python, but with a thin extension built directly on top of it.\n\nAlmost all areas of mathematics are represented in SageMath, at various levels of sophistication. This includes symbolic calculus, 2D and 3D graphics, polynomials, graph theory, group theory, abstract algebra, combinatorics, cryptography, elliptic curves and modular forms, numerical mathematics, linear algebra and matrix calculations (over various rings), support for parallel computing, and a powerful coercion framework to “mix” elements from different sets for calculations. SageMath’s features also expand into neighboring fields like Statistics and Physics.", + "tech_tags": [ + "python", + "cython" + ], + "topic_tags": [ + "mathematics", + "education", + "research" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://groups.google.com/g/sage-gsoc" + }, + { + "name": "chat", + "value": "https://twitter.com/sagemath" + }, + { + "name": "email", + "value": "tcscrims@gmail.com" + }, + { + "name": "chat", + "value": "https://sagemath.zulipchat.com/" + }, + { + "name": "twitter", + "value": "https://twitter.com/sagemath" + } + ], + "source_code": "https://git.sagemath.org/sage.git/", + "ideas_link": "https://wiki.sagemath.org/GSoC/2026", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://groups.google.com/g/sage-gsoc" + }, + { + "name": "chat", + "value": "https://twitter.com/sagemath" + }, + { + "name": "email", + "value": "tcscrims@gmail.com" + }, + { + "name": "chat", + "value": "https://sagemath.zulipchat.com/" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/sagemath" + } + ] + }, + { + "name": "Wagtail", + "slug": "wagtail", + "logo_url": "https://summerofcode.withgoogle.com/media/org/wagtail/so6hnqeqh2cp4jbx-360.png", + "website_url": "https://wagtail.org/", + "tagline": "The powerful Python CMS for modern websites", + "license": "BSD-3-Clause", + "categories": [ + "Web" + ], + "contributor_guidance_url": "https://wagtail.org/gsoc/", + "description": "We build Wagtail, a popular content management system. It's built on Python, by an active and engaged open source community, which has grown rapidly since Wagtail's release in 2014. Wagtail is available in over 40 languages, and used by some of the world's best-known organizations, including NASA, Google, Mozilla, MIT, and the UK's National Health Service, as well as museums, universities, non-profits, governments, banks, studios, restaurants, startups and bloggers around the world.", + "tech_tags": [ + "python", + "javascript", + "django" + ], + "topic_tags": [ + "web", + "accessibility", + "cms" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://github.com/wagtail/gsoc/discussions" + }, + { + "name": "twitter", + "value": "https://x.com/wagtailcms" + }, + { + "name": "blog", + "value": "https://wagtail.org/blog/" + } + ], + "source_code": "https://github.com/wagtail/wagtail", + "ideas_link": "https://github.com/wagtail/gsoc/blob/main/project-ideas.md", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://github.com/wagtail/gsoc/discussions" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://x.com/wagtailcms" + }, + { + "name": "blog", + "value": "https://wagtail.org/blog/" + } + ] + }, + { + "name": "Mixxx", + "slug": "mixxx", + "logo_url": "https://summerofcode.withgoogle.com/media/org/mixxx/ivlj1kl8jabpmfs9-360.png", + "website_url": "https://mixxx.org", + "tagline": "DJ Mixing App With Powerful Features For All DJs", + "license": "GPL-2.0", + "categories": [ + "End user applications" + ], + "contributor_guidance_url": "https://github.com/mixxxdj/mixxx/wiki/Gsocadvice", + "description": "Mixxx is a feature rich DJ mixing application. It supports many MIDI and HID DJ controllers, runs on Win Linux and MacOs. It supports effects, harmonic mixing and beatmatching.\n\nMixxx has an unusually broad community for an open-source project, encompassing performing musicians, C++ addicts, amateur DJs, Internet radio broadcasters, and casual users.", + "tech_tags": [ + "javascript", + "c++", + "qt", + "pytorch", + "onnx" + ], + "topic_tags": [ + "music", + "dj", + "streaming" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://mixxx.zulipchat.com/" + }, + { + "name": "blog", + "value": "https://mixxx.org/news/" + } + ], + "source_code": "https://github.com/mixxxdj/mixxx", + "ideas_link": "https://github.com/mixxxdj/mixxx/wiki/GSOC-2026-Ideas", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://mixxx.zulipchat.com/" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://mixxx.org/news/" + } + ] + }, + { + "name": "GeomScale", + "slug": "geomscale", + "logo_url": "https://summerofcode.withgoogle.com/media/org/geomscale/ongpste986nd7t6p-360.png", + "website_url": "https://geomscale.github.io", + "tagline": "Scalable geometric and statistical software", + "license": "LGPL-3.0", + "categories": [ + "Science and medicine", + "Artificial Intelligence" + ], + "contributor_guidance_url": "https://github.com/GeomScale/gsoc25/wiki", + "description": "GeomScale is a research and development project that delivers open source code for state-of-the-art algorithms for problems at the intersection of data science, optimization, geometric, and statistical computing. The current focus of GeomScale is on scalable algorithms for sampling from high-dimensional distributions, integration, convex optimization, and their applications. One of our ambitions is to fill the gap between theory and practice by turning state-of-the-art theoretical tools in geometry and optimization to state-of-the-art implementations. Towards this goal, we will deliver various innovative solutions in a variety of application fields, like finance, computational biology, and statistics that will extend the limits of contemporary computational tools. GeomScale aims in serving as a building block for an international, interdisciplinary, and open community in high dimensional geometrical and statistical computing. The main development is currently performed in volesti, a generic open source C++ library, with R and python interfaces (the latter is hosted in package dingo), for high-dimensional sampling, volume approximation, and copula estimation for financial modelling. In particular, the current implementation scales up to hundred or thousand dimensions, depending on the problem. To our knowledge it is the most efficient software package for sampling and volume computation to date. It is, in several cases, orders of magnitude faster compared to packages that solve the same problems. It can be used to compute challenging multivariate integrals and to approximate optimal solutions in optimization problems. It has already found important applications in systems biology by analyzing large metabolic networks (e.g., the latest human network) and in FinTech by detecting shock events and by evaluating portfolios performance in stock markets with thousands of assets. Other application areas include AI and in particular approximate weighted model integration. Recent studies has shown a potential application of volesti methods in trustworthy AI, static analysis of programs and differential privacy.", + "tech_tags": [ + "python", + "c++", + "r", + "jupyter", + "github-actions" + ], + "topic_tags": [ + "mathematics", + "data science", + "computational biology", + "computational geometry", + "statistics" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://groups.google.com/g/geomscale-gsoc" + }, + { + "name": "chat", + "value": "https://gitter.im/GeomScale/community?utm_source=share-link&utm_medium=link&utm_campaign=share-link" + }, + { + "name": "email", + "value": "geomscale@gmail.com" + }, + { + "name": "twitter", + "value": "https://mobile.twitter.com/GeomScale" + }, + { + "name": "blog", + "value": "https://www.linkedin.com/company/geomscale/" + } + ], + "source_code": "https://github.com/GeomScale", + "ideas_link": "https://github.com/GeomScale/gsoc26/wiki/table-of-proposed-coding-projects", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://groups.google.com/g/geomscale-gsoc" + }, + { + "name": "chat", + "value": "https://gitter.im/GeomScale/community?utm_source=share-link&utm_medium=link&utm_campaign=share-link" + }, + { + "name": "email", + "value": "geomscale@gmail.com" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://mobile.twitter.com/GeomScale" + }, + { + "name": "blog", + "value": "https://www.linkedin.com/company/geomscale/" + } + ] + }, + { + "name": "FOSSASIA", + "slug": "fossasia-bg", + "logo_url": "https://summerofcode.withgoogle.com/media/org/fossasia-bg/rquaoyo4v86xj21l-360.png", + "website_url": "https://fossasia.org", + "tagline": "Free and Open Source Software in Asia", + "license": "Apache-2.0", + "categories": [ + "End user applications", + "Artificial Intelligence" + ], + "contributor_guidance_url": "https://fossasia.org", + "description": "FOSSASIA is an organization developing Open Source software applications and Open Hardware together with a global community from its base in Asia. It is our goal to provide access to open technologies, science applications and knowledge that improve people's lives. We want to enable people to adapt and change technology according to their own ideas and needs and validate science and knowledge through an Open Access approach. FOSSASIA was established 2009 by Hong Phuc Dang and Mario Behling. We organize and participate in conferences, meetups and code camps. The annual FOSSASIA Summit is one of the top tech events in Asia. Other summits take place in Vietnam, Cambodia, Thailand and India. FOSSASIA also runs a number of coding programs such as Codeheat. Please join us and start contributing to our projects, participate as a coder, designer, hardware developer or event organizer.", + "tech_tags": [ + "c", + "python", + "javascript", + "django", + "android" + ], + "topic_tags": [ + "web", + "hardware", + "event solutions", + "android", + "firmware" + ], + "contact_links": [ + { + "name": "email", + "value": "office@fossasia.org" + }, + { + "name": "blog", + "value": "https://fossasia.org/blog" + }, + { + "name": "twitter", + "value": "https://x.com/fossasia" + } + ], + "source_code": "https://github.com/fossasia", + "ideas_link": "https://docs.google.com/document/d/1Tz1KxYefreKzBr98C4vbCv9UwnchZoyTwO8rBrz_lmg/edit?tab=t.0#heading=h.9sjk3ie7l2o2", + "direct_comm_methods": [ + { + "name": "email", + "value": "office@fossasia.org" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://fossasia.org/blog" + }, + { + "name": "twitter", + "value": "https://x.com/fossasia" + } + ] + }, + { + "name": "MetaBrainz Foundation Inc", + "slug": "metabrainz-foundation-inc", + "logo_url": "https://summerofcode.withgoogle.com/media/org/metabrainz-foundation-inc/m7lax42edddowwnl-360.png", + "website_url": "https://metabrainz.org", + "tagline": "Open music / book metadata, music recommendations", + "license": "GPL-2.0", + "categories": [ + "Data", + "Media" + ], + "contributor_guidance_url": "https://wiki.musicbrainz.org/Development/Summer_of_Code/2025", + "description": "The MetaBrainz Foundation is a non-profit that believes in free, open access to data. It has been set up to build community maintained databases and make them available in the public domain or under Creative Commons licenses.\n\nOur data is mostly gathered by volunteers and verified by peer review to ensure it is consistent and correct. All non-commercial use of this data is free, but commercial users are asked to support us in order to help fund the project. We encourage all data users to contribute to the data gathering process so that our data can be as comprehensive as possible.\n\nWith this data we are building a music social network and bias free music recommendations.", + "tech_tags": [ + "python", + "machine learning", + "perl", + "postgres", + "spark" + ], + "topic_tags": [ + "machine learning", + "open data", + "music", + "books", + "music social network" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://metabrainz.org/contact" + }, + { + "name": "email", + "value": "suppport@metabrainz.org" + }, + { + "name": "blog", + "value": "https://blog.metabrainz.org" + } + ], + "source_code": "https://github.com/metabrainz", + "ideas_link": "https://wiki.musicbrainz.org/Development/Summer_of_Code/2026", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://metabrainz.org/contact" + }, + { + "name": "email", + "value": "suppport@metabrainz.org" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://blog.metabrainz.org" + } + ] + }, + { + "name": "NixOS Foundation", + "slug": "nixos-foundation", + "logo_url": "https://summerofcode.withgoogle.com/media/org/nixos-foundation/kvnnwp7viwupdsep.png", + "website_url": "https://nixos.org/", + "tagline": "Declarative builds and deployments", + "license": "BSD-3-Clause", + "categories": [ + "Programming languages", + "Infrastructure and cloud" + ], + "contributor_guidance_url": "https://github.com/NixOS/GSoC/blob/main/contributor-guide.md", + "description": "Our role is to support the infrastructure and development of the NixOS project as a whole.\n\nMost of the development is happening here:\nhttps://github.com/nixos/nix - the Nix cli and language reference implementation\n\nhttps://github.com/nixos/nixpkgs - package definitions for the Nix package manager and NixOS source code\n\nA few key points are:\n- keeping our ci up and running\n- hosting a trustworthy binary cache for the public\n- providing documentation for everything Nix\n- unblocking contributors and keeping things civil", + "tech_tags": [ + "git", + "nix" + ], + "topic_tags": [ + "declarative", + "reproducible", + "InfrastrucutreAsCode" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://matrix.to/#/#community:nixos.org" + }, + { + "name": "mailingList", + "value": "https://discourse.nixos.org/" + }, + { + "name": "blog", + "value": "https://chaos.social/@nixos_org/" + }, + { + "name": "twitter", + "value": "https://twitter.com/nixos_org/" + } + ], + "source_code": "https://github.com/nixos/nixpkgs", + "ideas_link": "https://github.com/NixOS/GSoC/blob/main/ideas/2026.md", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://matrix.to/#/#community:nixos.org" + }, + { + "name": "mailingList", + "value": "https://discourse.nixos.org/" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://chaos.social/@nixos_org/" + }, + { + "name": "twitter", + "value": "https://twitter.com/nixos_org/" + } + ] + }, + { + "name": "libssh", + "slug": "libssh", + "logo_url": "https://summerofcode.withgoogle.com/media/org/libssh/kcfc8lhxh3uyozbu-360.png", + "website_url": "https://www.libssh.org/", + "tagline": "The SSH library", + "license": "LGPL-2.1", + "categories": [ + "Programming languages", + "Security" + ], + "contributor_guidance_url": "https://www.libssh.org/development/google-summer-of-code/", + "description": "This project is for programmers needing a working SSH implementation by the mean of a library. The complete control of the client is made by the programmer. With libssh, you can remotely execute programs, transfer files, use a secure and transparent tunnel for your remote programs. With its Secure FTP implementation, you can play with remote files easily, without third-party programs others than libcrypto (from openssl), libgcrypt or mbedTLS.", + "tech_tags": [ + "c", + "git", + "ci", + "ssh", + "sftp" + ], + "topic_tags": [ + "security", + "cryptography" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://www.libssh.org/communication/" + }, + { + "name": "chat", + "value": "https://matrix.to/#/!yBkUIMByeIPFgUzcVM:matrix.org?via=matrix.org" + }, + { + "name": "blog", + "value": "https://www.libssh.org/" + } + ], + "source_code": "https://git.libssh.org/projects/libssh.git", + "ideas_link": "https://www.libssh.org/development/google-summer-of-code/", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://www.libssh.org/communication/" + }, + { + "name": "chat", + "value": "https://matrix.to/#/!yBkUIMByeIPFgUzcVM:matrix.org?via=matrix.org" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://www.libssh.org/" + } + ] + }, + { + "name": "MariaDB", + "slug": "mariadb", + "logo_url": "https://summerofcode.withgoogle.com/media/org/mariadb/0nbzguld3ntsgeqv-360.png", + "website_url": "https://mariadb.org", + "tagline": "The fastest growing Open Source Database", + "license": "GPL-2.0", + "categories": [ + "Data" + ], + "contributor_guidance_url": "", + "description": "MariaDB Foundation is the non-profit organization behind MariaDB Server, the fastest growing open source databases. MariaDB Foundation's mission is to ensure the continuity of the MariaDB Server code as well as foster and facilitated collaboration within the MariaDB ecosystem. As part of GSoC, MariaDB Foundation seeks to bring more developers into the MariaDB Server (and related projects) code base.", + "tech_tags": [ + "python", + "javascript", + "c/c++", + "perl", + "databases" + ], + "topic_tags": [ + "Database Engines", + "SQL Features" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://mariadb.zulipchat.com/" + }, + { + "name": "mailingList", + "value": "https://lists.mariadb.org/postorius/lists/developers.lists.mariadb.org/" + } + ], + "source_code": "https://github.com/MariaDB/server", + "ideas_link": "https://mariadb.com/docs/general-resources/community/contributing-participating/google-summers-of-code/google-summer-of-code-2026", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://mariadb.zulipchat.com/" + }, + { + "name": "mailingList", + "value": "https://lists.mariadb.org/postorius/lists/developers.lists.mariadb.org/" + } + ], + "social_comm_methods": [] + }, + { + "name": "Machine Learning for Science (ML4SCI)", + "slug": "machine-learning-for-science-ml4sci", + "logo_url": "https://summerofcode.withgoogle.com/media/org/machine-learning-for-science-ml4sci/rs5cxhuyh9dpwekt-360.png", + "website_url": "https://ml4sci.org/", + "tagline": "Machine learning applications in science", + "license": "LGPL-3.0", + "categories": [ + "Science and medicine", + "Data" + ], + "contributor_guidance_url": null, + "description": "Machine Learning for Science (ML4SCI) is an umbrella organization for machine learning-related projects in science. ML4SCI brings together researchers from universities and scientific laboratories with motivated students to join existing scientific collaborations and contribute to cutting edge science projects across a wide variety of disciplines. Students work on existing problems to develop new machine learning-based approaches and produce open source code that directly contributes to solving these scientific challenges. \n\nML4SCI currently includes projects from a variety of fields. For example, some of them explore the uses of machine learning for particle reconstruction and classification in high-energy physics, deep learning-based searches for dark matter in astrophysics, applications of machine learning techniques to data returned from planetary science missions, applications of quantum machine learning to science, and others.\n\nMachine learning ideas and approaches can be broadly applicable and transferable across the scientific domains. The goals of ML4SCI projects are to grow the open-source community in machine learning for science by addressing important scientific challenges and transferring the knowledge and tools of machine learning across the disciplines. We look forward to your applications!", + "tech_tags": [ + "python", + "machine learning", + "c++", + "data analysis", + "artificial intelligence" + ], + "topic_tags": [ + "machine learning", + "science and medicine", + "algorithms", + "physics", + "astronomy" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "ml4-sci@cern.ch" + }, + { + "name": "mailingList", + "value": "https://simba3.web.cern.ch/simba3/SelfSubscription.aspx?groupName=ml4sci-announce" + }, + { + "name": "chat", + "value": "https://app.gitter.im/#/room/#ML4SCI_general:gitter.im" + } + ], + "source_code": "https://github.com/ML4SCI", + "ideas_link": "https://ml4sci.org/activities/gsoc2026.html", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "ml4-sci@cern.ch" + }, + { + "name": "mailingList", + "value": "https://simba3.web.cern.ch/simba3/SelfSubscription.aspx?groupName=ml4sci-announce" + }, + { + "name": "chat", + "value": "https://app.gitter.im/#/room/#ML4SCI_general:gitter.im" + } + ], + "social_comm_methods": [] + }, + { + "name": "Submitty", + "slug": "submitty", + "logo_url": "https://summerofcode.withgoogle.com/media/org/submitty/jlpoxlj2rvpot6zv-360.png", + "website_url": "https://submitty.org", + "tagline": "Homework Autograding and Course Management Tools", + "license": "BSD-3-Clause", + "categories": [ + "End user applications", + "Web" + ], + "contributor_guidance_url": "https://submitty.org/developer/google_summer_of_code", + "description": "Submitty is an open source programming assignment submission system with secure and automated testing and grading, efficient manual TA/instructor grading, and additional tools for overall course management and communication between students and instructional staff. Submitty was launched by the Rensselaer Center for Open Source Software (RCOS) in 2014.\n\nhttps://github.com/Submitty/\n\nKey Features\n\n+ Secure testing of many programming languages: Python, C/C++, Java, etc.\n+ Customizable automated grading with immediate feedback to students, and optional hidden or randomized tests.\n+ Advanced grading tools: static analysis, unit testing, code coverage, memory debuggers, networked assignments, custom Docker containers, and screenshots/GIFs of graphics programs.\n+ Individual or team assignments submitted by drag-and-drop or version control.\n+ Correct mistakes through multiple submissions, flexible ``late day’’ policy.\n+ Interface for complementary instructor/TA manual grading, regrade requests, anonymized peer grading.\n+ Instructor bulk upload of scanned .pdf exams, QR code name matching, pdf annotation.\n+ Supports course material hosting, term grades spreadsheet, plagiarism detection.\n+ Integrated discussion forum, email announcements, lecture polling, office hours queue, and student activity dashboard.\n+ Scales to multiple courses, thousands of students, multiple instructors and TAs per course.\n+ Open-source, free to use, install on your own hardware, or VPS.\n\nSubmitty has been used at a half dozen other universities and we aim to grow to more users and developers. The courses using Submitty cover the undergraduate and graduate curriculum from introductory programming courses, intermediate and advanced theory courses, popular junior/senior electives with team projects and written reports, and specialized graduate courses.\n\nWe regularly present our work at the annual ACM SIGCSE conference.", + "tech_tags": [ + "python", + "postgresql", + "javascript", + "c++", + "php" + ], + "topic_tags": [ + "education", + "visualization", + "web", + "privacy/security", + "communication" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://submitty.zulipchat.com/join/7keujybzs4ismpedptpqsqpv/" + }, + { + "name": "mailingList", + "value": "https://submitty.org/index/contact" + }, + { + "name": "twitter", + "value": "https://twitter.com/submitty" + } + ], + "source_code": "https://github.com/Submitty", + "ideas_link": "https://submitty.org/developer/getting_started/project_ideas", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://submitty.zulipchat.com/join/7keujybzs4ismpedptpqsqpv/" + }, + { + "name": "mailingList", + "value": "https://submitty.org/index/contact" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/submitty" + } + ] + }, + { + "name": "AOSSIE", + "slug": "aossie", + "logo_url": "https://summerofcode.withgoogle.com/media/org/aossie/oo1wd34pc1ytrq6a-360.png", + "website_url": "https://www.aossie.org", + "tagline": "Australian Umbrella Org for Open-Source Projects", + "license": "GPL-3.0", + "categories": [ + "End user applications", + "Other" + ], + "contributor_guidance_url": "https://github.com/AOSSIE-Org/Info/blob/main/GoogleSummerOfCode.md", + "description": "We are an Australian not-for-profit charity, founded in 2016, that serves as an umbrella organization for open-source projects. We believe the open-source philosophy is a resource-efficient approach to transfer knowledge, educate and innovate. \n\nWe have almost 200 repositories in 3 GitHub spaces:\n* https://github.com/orgs/AOSSIE-Org (our main space)\n* https://github.com/StabilityNexus (for our blockchain projects)\n* https://github.com/DjedAlliance (for our stablecoin projects)\n\nOur projects span a wide range of topics and themes, including: financial stability, environmental sustainability, governance, trust, decentralized communication, artificial intelligence. The common ground under all our projects is our passion for making the world a better place, by empowering people with free software than can be run with minimal dependencies.\n\nWe have a diverse group of mentors, including GSoC students from previous years who decided to become long-term contributors as well as academics with extensive experience in supervising undergraduate, M.Sc. and PhD students on theses and projects, whose results are often published and presented in the most prestigious conferences of our research fields.", + "tech_tags": [ + "python", + "javascript", + "flutter", + "Blockchain", + "Solidity" + ], + "topic_tags": [ + "web", + "artificial intelligence", + "communication", + "mobile", + "blockchain" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://discord.gg/xnmAPS7zqB" + }, + { + "name": "chat", + "value": "https://discord.gg/fuuWX4AbJt" + }, + { + "name": "twitter", + "value": "https://twitter.com/aossie_org" + } + ], + "source_code": "https://github.com/AOSSIE-Org", + "ideas_link": "https://github.com/AOSSIE-Org/Info/blob/main/GSoC-Ideas/2026/index.md", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://discord.gg/xnmAPS7zqB" + }, + { + "name": "chat", + "value": "https://discord.gg/fuuWX4AbJt" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/aossie_org" + } + ] + }, + { + "name": "JabRef e.V.", + "slug": "jabref-ev", + "logo_url": "https://summerofcode.withgoogle.com/media/org/jabref-ev/ylevworrwqf9bw9g-360.png", + "website_url": "https://www.jabref.org/", + "tagline": "Stay on top of your Literature", + "license": "MIT", + "categories": [ + "Science and medicine", + "Artificial Intelligence" + ], + "contributor_guidance_url": "https://github.com/JabRef/jabref/wiki/GSOC-Application", + "description": "JabRef is one of the most widely used citation and reference management tools. It helps students and researchers to stay on top of their literature by assisting at every step of a research project: collecting and organizing literature sources, discovering the latest research, citing references in LaTeX and other text editors, and sharing interesting papers with collaborators.\n\nJabRef is open-source and cross-platform. It is written in Java using JavaFX as the user interface technology. It is licensed under the MIT license.\n\nSince 2020 JabRef is maintained by the non-profit organization JabRef e.V.", + "tech_tags": [ + "java", + "javafx", + "ai", + "bibtex" + ], + "topic_tags": [ + "science", + "library", + "literature", + "latex", + "bibliography" + ], + "contact_links": [ + { + "name": "chat", + "value": "http://gitter.im/JabRef/jabref" + }, + { + "name": "mailingList", + "value": "https://discourse.jabref.org/" + }, + { + "name": "twitter", + "value": "https://twitter.com/jabref_org" + } + ], + "source_code": "https://github.com/JabRef/jabref", + "ideas_link": "https://jabref.github.io/GSoC/projects/", + "direct_comm_methods": [ + { + "name": "chat", + "value": "http://gitter.im/JabRef/jabref" + }, + { + "name": "mailingList", + "value": "https://discourse.jabref.org/" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/jabref_org" + } + ] + }, + { + "name": "The Rust Foundation", + "slug": "the-rust-foundation", + "logo_url": "https://summerofcode.withgoogle.com/media/org/the-rust-foundation/pplrhxvka7dufvsn.png", + "website_url": "https://www.rust-lang.org", + "tagline": "A language empowering everyone", + "license": "MIT", + "categories": [ + "Programming languages" + ], + "contributor_guidance_url": "https://github.com/rust-lang/google-summer-of-code/blob/main/gsoc/proposal-guide.md", + "description": "The Rust Project is a group of developers and maintainers who build and support the Rust programming language. Organised into teams, they develop new features and mantain the Rust language, its compiler and standard library, and also all kinds of infrastructure that supports Rust. This application is being made by the Rust Foundation, the legal entity for the Rust Programming language, working in close association with representatives from the Rust Project.", + "tech_tags": [ + "python", + "rust" + ], + "topic_tags": [ + "compilers", + "programming languages" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://rust-lang.zulipchat.com/#narrow/stream/421156-gsoc" + }, + { + "name": "blog", + "value": "https://blog.rust-lang.org/" + }, + { + "name": "twitter", + "value": "https://twitter.com/rustlang" + } + ], + "source_code": "https://github.com/rust-lang/rust", + "ideas_link": "https://github.com/rust-lang/google-summer-of-code", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://rust-lang.zulipchat.com/#narrow/stream/421156-gsoc" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://blog.rust-lang.org/" + }, + { + "name": "twitter", + "value": "https://twitter.com/rustlang" + } + ] + }, + { + "name": "PostgreSQL", + "slug": "postgresql", + "logo_url": "https://summerofcode.withgoogle.com/media/org/postgresql/hj9srl9x0o6iendy-360.png", + "website_url": "https://postgresql.org", + "tagline": "The Most Advanced Open Source Relational Database", + "license": "PostgreSQL", + "categories": [ + "Data", + "Web" + ], + "contributor_guidance_url": "https://wiki.postgresql.org/wiki/GSoC", + "description": "PostgreSQL is a powerful, open source object-relational database system with over 30 years of active development that has earned it a strong reputation for reliability, feature robustness, and performance.", + "tech_tags": [ + "c", + "python", + "postgresql", + "javascript", + "go" + ], + "topic_tags": [ + "web", + "database", + "ui", + "sql", + "Benchmark" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "pgsql-hackers@lists.postgresql.org" + }, + { + "name": "chat", + "value": "https://www.postgresql.org/community/irc/" + }, + { + "name": "chat", + "value": "http://pgtreats.info/slack-invite" + }, + { + "name": "blog", + "value": "https://planet.postgresql.org/" + } + ], + "source_code": "https://git.postgresql.org/gitweb/?p=postgresql.git;a=summary", + "ideas_link": "https://wiki.postgresql.org/wiki/GSoC_2026", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "pgsql-hackers@lists.postgresql.org" + }, + { + "name": "chat", + "value": "https://www.postgresql.org/community/irc/" + }, + { + "name": "chat", + "value": "http://pgtreats.info/slack-invite" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://planet.postgresql.org/" + } + ] + }, + { + "name": "Gemini CLI", + "slug": "gemini-cli", + "logo_url": "https://summerofcode.withgoogle.com/media/org/gemini-cli/mhi8cx7tyjt91i6n-360.png", + "website_url": "https://geminicli.com", + "tagline": "Gemini CLI brings the power of Gemini directly into your terminal", + "license": "Apache-2.0", + "categories": [ + "Development tools", + "Artificial Intelligence" + ], + "contributor_guidance_url": "https://github.com/google-gemini/gemini-cli/blob/main/CONTRIBUTING.md", + "description": "The Gemini CLI team maintains the Gemini CLI OSS project in order to deliver a high-quality, state-of-the-art agent to a large, global user base. Maintainers manage a set of public and internal (Google) backlog goals, open source community contributions, and build/release infrastructure.", + "tech_tags": [ + "typescript", + "GenAI", + "MCP", + "Software Agent", + "A2A" + ], + "topic_tags": [ + "developer tools", + "GenAI" + ], + "contact_links": [ + { + "name": "email", + "value": "gemini-cli-soc-2026@google.com" + }, + { + "name": "twitter", + "value": "https://x.com/geminicli" + } + ], + "source_code": "https://github.com/google-gemini/gemini-cli/", + "ideas_link": "https://docs.google.com/document/d/1ImMaW0msCtvbRMEArEt7sQRw3RIGRfv98FGhsTsQTBU/edit?usp=sharing", + "direct_comm_methods": [ + { + "name": "email", + "value": "gemini-cli-soc-2026@google.com" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://x.com/geminicli" + } + ] + }, + { + "name": "Genome Assembly and Annotation", + "slug": "genome-assembly-and-annotation", + "logo_url": "https://summerofcode.withgoogle.com/media/org/genome-assembly-and-annotation/ixuasrqx18soo7ml-360.png", + "website_url": "https://www.ebi.ac.uk/", + "tagline": "Unleashing the potential of big data in biology", + "license": "Apache-2.0", + "categories": [ + "Science and medicine", + "Data" + ], + "contributor_guidance_url": "https://www.ebi.ac.uk/about/events/events/public-event/2025/2026-google-summer-of-code/#contributor-guide", + "description": "EMBL-EBI is a global centre for biological data, developing and maintaining open data resources and open-source software that support life science research worldwide. Our services are used daily by researchers across academia, healthcare, and industry, and span genomics, transcriptomics, metagenomics, molecular interactions, chemistry, and functional annotation.\n\nEMBL-EBI develops and maintains a wide range of long-standing, high-impact resources, including Ensembl for genome data, the European Nucleotide Archive (ENA) for sequence data, MGnify for metagenomics analysis, and BioStudies for structured biological datasets. Together, these resources support data submission, analysis, integration, and reuse at global scale.\n\nGiven the rapid growth and increasing complexity of biological data, EMBL-EBI operates a fast-evolving software ecosystem and continuously explores new approaches to data processing, storage, distribution, and visualisation. Our codebases are open source, our data are freely available, and we actively engage with the open-source community to ensure our infrastructure remains robust, scalable, and accessible.\n\nThrough Google Summer of Code, EMBL-EBI offers contributors the opportunity to work on real-world scientific software, gaining experience in open-source development while contributing to tools and resources used by the global life science community.", + "tech_tags": [ + "python", + "mysql", + "docker", + "pytorch", + "nextflow" + ], + "topic_tags": [ + "machine learning", + "genomics", + "big data", + "cloud", + "hpc" + ], + "contact_links": [ + { + "name": "email", + "value": "helpdesk@ensembl.org" + }, + { + "name": "twitter", + "value": "https://x.com/emblebi" + }, + { + "name": "twitter", + "value": "https://x.com/ensembl" + }, + { + "name": "twitter", + "value": "https://x.com/MGnifyDB" + }, + { + "name": "twitter", + "value": "https://x.com/ENASequence" + }, + { + "name": "twitter", + "value": "https://x.com/BioStudiesEBI" + } + ], + "source_code": "https://github.com/Ensembl", + "ideas_link": "https://www.ebi.ac.uk/about/events/events/public-event/2025/2026-google-summer-of-code/", + "direct_comm_methods": [ + { + "name": "email", + "value": "helpdesk@ensembl.org" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://x.com/emblebi" + }, + { + "name": "twitter", + "value": "https://x.com/ensembl" + }, + { + "name": "twitter", + "value": "https://x.com/MGnifyDB" + }, + { + "name": "twitter", + "value": "https://x.com/ENASequence" + }, + { + "name": "twitter", + "value": "https://x.com/BioStudiesEBI" + } + ] + }, + { + "name": "GNU Image Manipulation Program", + "slug": "gnu-image-manipulation-program", + "logo_url": "https://summerofcode.withgoogle.com/media/org/gnu-image-manipulation-program/n73ytwpnna15tra2-360.png", + "website_url": "https://www.gimp.org/", + "tagline": "GIMP is a cross-platform image editor", + "license": "GPL-3.0", + "categories": [ + "End user applications", + "Media" + ], + "contributor_guidance_url": "https://developer.gimp.org/core/internship/", + "description": "GIMP is a cross-platform image editor available for GNU/Linux, macOS, Windows and more operating systems. It is free software, you can change its source code and distribute your changes.\n\nWhether you are a graphic designer, photographer, illustrator, or scientist, GIMP provides you with sophisticated tools to get your job done. You can further enhance your productivity with GIMP thanks to many customization options and 3rd party plugins.", + "tech_tags": [ + "c", + "GEGL" + ], + "topic_tags": [ + "graphics", + "design", + "photography", + "illustration" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://www.gimp.org/discuss.html#irc-matrix" + }, + { + "name": "twitter", + "value": "https://twitter.com/GIMP_Official" + }, + { + "name": "facebook", + "value": "https://www.facebook.com/gimpofficial/" + }, + { + "name": "blog", + "value": "https://www.gimp.org/news/" + } + ], + "source_code": "https://gitlab.gnome.org/GNOME/gimp/", + "ideas_link": "https://developer.gimp.org/core/internship/ideas/", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://www.gimp.org/discuss.html#irc-matrix" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/GIMP_Official" + }, + { + "name": "facebook", + "value": "https://www.facebook.com/gimpofficial/" + }, + { + "name": "blog", + "value": "https://www.gimp.org/news/" + } + ] + }, + { + "name": "CGAL Project", + "slug": "cgal-project", + "logo_url": "https://summerofcode.withgoogle.com/media/org/cgal-project/9ubuadbe0eg5xfcw-360.png", + "website_url": "https://www.cgal.org", + "tagline": "C++ library of computational geometry", + "license": "GPL-3.0", + "categories": [ + "Science and medicine" + ], + "contributor_guidance_url": "https://github.com/CGAL/cgal/wiki/Project-Ideas#information-candidates-should-supply", + "description": "CGAL is a software library that offers a number of reliable geometric data structures and algorithms. CGAL components operate in 2D and 3D, and sometime in arbitrary dimensions. Examples of components include convex hulls, convex decomposition, Delaunay triangulations, Voronoi diagrams, polygonal surface mesh data-structures, mesh generation, Boolean operations, envelope computations, intersection detection, surface reconstruction, and subdivision surfaces.\n\nCGAL is used in a variety of application domains such as CAD/CAM (computer aided design and modeling), GIS (geographic information systems), geophysics, image processing, molecular biology, robotics, motion planning, and graphics.\n\nCGAL is written in C++ and rigorously adheres to the generic-programming paradigm.\n\nCGAL became an Open Source project in 2003. Most of CGAL is under the GPL v3+ license, and some core parts are under the LGPL v3+. The semi-annual releases have currently about 10,000 downloads. CGAL is commercially supported by the spin-off company GeometryFactory.", + "tech_tags": [ + "c++", + "qt" + ], + "topic_tags": [ + "geometry", + "mesh processing", + "computation geometry", + "geometry processing" + ], + "contact_links": [ + { + "name": "email", + "value": "gsoc-cgal@inria.fr" + } + ], + "source_code": "https://github.com/CGAL/cgal", + "ideas_link": "https://github.com/CGAL/cgal/wiki/Project-Ideas", + "direct_comm_methods": [ + { + "name": "email", + "value": "gsoc-cgal@inria.fr" + } + ], + "social_comm_methods": [] + }, + { + "name": "Cuneiform Digital Library Initiative (CDLI)", + "slug": "cuneiform-digital-library-initiative-cdli", + "logo_url": "https://summerofcode.withgoogle.com/media/org/cuneiform-digital-library-initiative-cdli/pcifkvibocfw8hiy.png", + "website_url": "https://cdli.earth", + "tagline": "Curating humanity’s earliest written history", + "license": "MIT", + "categories": [ + "Science and medicine", + "Web" + ], + "contributor_guidance_url": "https://gitlab.com/cdli/framework/-/wikis/Writing-a-GSoC-proposal-for-CDLI", + "description": "The Cuneiform Digital Library Initiative (CDLI) is a global collaboration of Assyriologists, museum curators, and historians working together to make the world’s earliest written records accessible online. CDLI focuses on cuneiform inscriptions dating back to the very beginning of writing around 3350 BC. Today, more than 500,000 such artifacts are held in museums and private collections worldwide, and CDLI has already digitally catalogued over 350,000 of them, helping researchers and the public explore humanity’s oldest written heritage.", + "tech_tags": [ + "mysql", + "javascript", + "docker", + "php", + "SCSS" + ], + "topic_tags": [ + "data", + "linguistics", + "History", + "culture", + "assyriology" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://gitlab.com/cdli/framework/-/wikis/Join-the-Community-and-GSoC-Contact" + }, + { + "name": "email", + "value": "nisheal.work@gmail.com" + }, + { + "name": "blog", + "value": "https://www.linkedin.com/company/cuneiform-digital-library-initiative" + } + ], + "source_code": "https://gitlab.com/cdli/framework", + "ideas_link": "https://gitlab.com/cdli/framework/-/wikis/Google-Summer-of-Code-GSoC-2026-Cuneiform-Digital-Library-Initiative-(CDLI)-ideas-list", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://gitlab.com/cdli/framework/-/wikis/Join-the-Community-and-GSoC-Contact" + }, + { + "name": "email", + "value": "nisheal.work@gmail.com" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://www.linkedin.com/company/cuneiform-digital-library-initiative" + } + ] + }, + { + "name": "Joomla!", + "slug": "joomla", + "logo_url": "https://summerofcode.withgoogle.com/media/org/joomla/dwntn9vfd52jkr9z.png", + "website_url": "https://www.joomla.org/", + "tagline": "The flexible platform empowering website creators.", + "license": "GPL-2.0", + "categories": [ + "End user applications", + "Web" + ], + "contributor_guidance_url": "https://community.joomla.org/gsoc", + "description": "The Joomla CMS is a PHP based application that powers about 2.2% of the web, 3.5% of all CMS based websites, as well as many intranets. Joomla has been downloaded over 119 Million times: https://downloads.joomla.org/\n\nThe Joomla project has hundreds of contributors, organized in a set of working groups and teams, and a leadership group. These are coordinated by the [Departments](https://volunteers.joomla.org/departments/ \"Joomla Departments\").\n\nJoomla is a community driven FOSS project developed and maintained by an international community encompassing over 150 countries. Joomla is used by millions of websites and web applications ranging from the hobbyist, professional web developer, to large enterprises, for both the World Wide Web and intranets.\n\nJoomla is available in 76 languages with an active and dedicated translation team\nhttps://community.joomla.org/translations/joomla-3-translations.html\n\n\nThe Joomla Project is a community effort which strives to engage contributors from diverse backgrounds and varying interests and skills in building and supporting great software together. The [mission, vision and values](https://www.joomla.org/about-joomla/the-project/mission-vision-and-values.html \"Joomla Mission vision and values\") of the Joomla Project reflect this.\n\nThe official umbrella organisation is Open Source Matters (OSM), the not for profit organization that manages financial and legal issues for the Joomla Project. A team of experienced people drawn from many areas of the project will manage the 2025 GSoC project for Joomla.", + "tech_tags": [ + "mysql", + "javascript", + "html", + "php", + "ai" + ], + "topic_tags": [ + "web", + "programming languages", + "web development", + "web applications", + "cms" + ], + "contact_links": [ + { + "name": "email", + "value": "gsoc@joomla.org" + }, + { + "name": "mailingList", + "value": "https://forms.gle/jE63n81vfctCTAeE7" + }, + { + "name": "chat", + "value": "https://joomlacommunity.cloud.mattermost.com/main/channels/gsoc-2026" + }, + { + "name": "twitter", + "value": "https://twitter.com/joomla" + }, + { + "name": "facebook", + "value": "https://www.facebook.com/joomla/" + } + ], + "source_code": "https://github.com/joomla/joomla-cms", + "ideas_link": "https://community.joomla.org/gsoc/projects-2026.html", + "direct_comm_methods": [ + { + "name": "email", + "value": "gsoc@joomla.org" + }, + { + "name": "mailingList", + "value": "https://forms.gle/jE63n81vfctCTAeE7" + }, + { + "name": "chat", + "value": "https://joomlacommunity.cloud.mattermost.com/main/channels/gsoc-2026" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/joomla" + }, + { + "name": "facebook", + "value": "https://www.facebook.com/joomla/" + } + ] + }, + { + "name": "KolibriOS Project Team", + "slug": "kolibrios-project-team", + "logo_url": "https://summerofcode.withgoogle.com/media/org/kolibrios-project-team/mrtxpzuxixjqff62-360.png", + "website_url": "https://kolibrios.org", + "tagline": "A tiny and fast operating system in fasm", + "license": "GPL-2.0", + "categories": [ + "Operating systems" + ], + "contributor_guidance_url": "https://wiki.kolibrios.org/wiki/Ideas_Page#Google_Summer_of_Code'26_Contributor_Requirements", + "description": "KolibriOS is a tiny open-source graphical operating system for x86 (and compatible) architecture computers, developed and maintained by the KolibriOS Project Team. It contains a monolithic kernel that runs in 32-bit protected mode and supports full preemptive multitasking.\n\nKolibriOS is a fork of MenuetOS, written almost entirely in FASM (assembly language). However, C, Sphinx C--, C++, Free Pascal, Forth, among other high-level languages and compilers, can also be used in user application development (although FASM is preferred).\n\nThe OS features a rich set of applications that include a word processor, image viewer, graphical editor, textual web browser, and over 30 games. Full FAT12/16/32 and EXT2/3/4 support is implemented, as well as read-only support for NTFS, ISO9660 and XFS. Drivers are written for popular sound, network and graphics cards.\n\nKolibriOS is VERY light on system requirements, using as little as 1MB of disk space and 8MB RAM to run. In terms of processing power, Intel®'s original Pentium® (P5 microarchitecture) or compatible CPU is sufficient to fully enjoy KolibriOS. We strive to become the OS of choice for all older computers, and provide their owners full modern OS experience.", + "tech_tags": [ + "c", + "assembly", + "asm", + "fasm", + "pci" + ], + "topic_tags": [ + "kernel", + "operating system", + "drivers", + "OS", + "low-level" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://board.kolibrios.org" + }, + { + "name": "chat", + "value": "https://web.libera.chat/#kolibrios" + }, + { + "name": "chat", + "value": "https://t.me/kolibri_os" + }, + { + "name": "chat", + "value": "https://discord.com/invite/FeB2NvE6bF" + }, + { + "name": "blog", + "value": "https://board.kolibrios.org" + } + ], + "source_code": "https://github.com/KolibriOS", + "ideas_link": "https://wiki.kolibrios.org/wiki/Ideas_Page", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://board.kolibrios.org" + }, + { + "name": "chat", + "value": "https://web.libera.chat/#kolibrios" + }, + { + "name": "chat", + "value": "https://t.me/kolibri_os" + }, + { + "name": "chat", + "value": "https://discord.com/invite/FeB2NvE6bF" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://board.kolibrios.org" + } + ] + }, + { + "name": "VideoLAN", + "slug": "videolan", + "logo_url": "https://summerofcode.withgoogle.com/media/org/videolan/9h28hsncvrt01voz-360.png", + "website_url": "https://www.videolan.org", + "tagline": "Open Source Multimedia for everyone!", + "license": "GPL-2.0", + "categories": [ + "End user applications", + "Media" + ], + "contributor_guidance_url": "https://wiki.videolan.org/SoC_2024/", + "description": "The VideoLAN project is led by and composed of a team of volunteers who believe in the power of open source to rock the multimedia world. We produce multimedia software notably the famous VLC media player as well as designated libraries and codecs.", + "tech_tags": [ + "c", + "c++", + "qt", + "assembly", + "video" + ], + "topic_tags": [ + "audio", + "streaming", + "video", + "codecs", + "media database" + ], + "contact_links": [ + { + "name": "chat", + "value": "#videolan on Libera.chat" + }, + { + "name": "email", + "value": "videolan@videolan.org" + }, + { + "name": "twitter", + "value": "https://twitter.com/videolan" + }, + { + "name": "facebook", + "value": "https://www.facebook.com/vlc.media.player" + } + ], + "source_code": "https://code.videolan.org/videolan/", + "ideas_link": "https://wiki.videolan.org/SoC_2026/", + "direct_comm_methods": [ + { + "name": "chat", + "value": "#videolan on Libera.chat" + }, + { + "name": "email", + "value": "videolan@videolan.org" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/videolan" + }, + { + "name": "facebook", + "value": "https://www.facebook.com/vlc.media.player" + } + ] + }, + { + "name": "The FreeBSD Project", + "slug": "the-freebsd-project", + "logo_url": "https://summerofcode.withgoogle.com/media/org/the-freebsd-project/4jmspor6mcto9wti-360.png", + "website_url": "https://www.freebsd.org/", + "tagline": "An OS for servers to embedded devices", + "license": "BSD-2-Clause", + "categories": [ + "Operating systems" + ], + "contributor_guidance_url": "https://www.freebsd.org/projects/summerofcode/", + "description": "FreeBSD is an operating system renowned for its advanced networking capabilities, robust security features, and exceptional performance. It is used across a wide spectrum of computing environments, ranging from the most heavily trafficked websites to desktop computers and embedded devices. Our source code is the foundation for well-known products such as the Sony PlayStation, Junos (the operating system powering Juniper routers), and elements of Apple's macOS. Additionally, FreeBSD runs on servers at Netflix that stream terabits of video content every second.\n\nThe FreeBSD Project has a rich history spanning over 30 years, originating in 1993 but rooted in work from the Berkeley Computer Systems Research Group dating back to 1978. Over the years, our codebase has undergone continuous development and played an important role in developing essential software components used by numerous open-source projects. Examples include bsnmp, jemalloc, libarchive, and OpenPAM.\n\nFreeBSD maintains an active mentoring program to welcome new developers into our vibrant community. With approximately 300 developers with write access to our repositories and numerous other contributors, our community thrives on collaboration and shared expertise. Many of our past Google Summer of Code contributors have transitioned into becoming key members of the FreeBSD development team.\n\nCommunication within the FreeBSD community occurs through various channels, including mailing lists, forums, blogs, IRC channels, and user groups, all listed on our main website.", + "tech_tags": [ + "c", + "llvm", + "assembly", + "make", + "POSIX shell" + ], + "topic_tags": [ + "virtualization", + "operating system", + "Embedded System" + ], + "contact_links": [ + { + "name": "email", + "value": "soc-admins@FreeBSD.org" + }, + { + "name": "chat", + "value": "https://wiki.freebsd.org/SummerOfCode/IRC" + }, + { + "name": "mailingList", + "value": "https://lists.freebsd.org/mailman/listinfo/freebsd-hackers" + }, + { + "name": "twitter", + "value": "https://twitter.com/freebsdfndation" + } + ], + "source_code": "https://cgit.freebsd.org/", + "ideas_link": "https://wiki.freebsd.org/SummerOfCodeIdeas", + "direct_comm_methods": [ + { + "name": "email", + "value": "soc-admins@FreeBSD.org" + }, + { + "name": "chat", + "value": "https://wiki.freebsd.org/SummerOfCode/IRC" + }, + { + "name": "mailingList", + "value": "https://lists.freebsd.org/mailman/listinfo/freebsd-hackers" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/freebsdfndation" + } + ] + }, + { + "name": "Data for the Common Good", + "slug": "data-for-the-common-good", + "logo_url": "https://summerofcode.withgoogle.com/media/org/data-for-the-common-good/tk4snywy4ejlztpt-360.png", + "website_url": "https://commons.cri.uchicago.edu", + "tagline": "Connect. Share. Discover.", + "license": "Apache-2.0", + "categories": [ + "Web", + "Infrastructure and cloud" + ], + "contributor_guidance_url": "https://docs.pedscommons.org/GSoC/proposal", + "description": "Data for the Common Good is dedicated to building communities, platforms, and ecosystems that maximize the potential of data to drive discovery and improve human health. Headquartered in the Department of Pediatrics at the University of Chicago, our team of experts works with collaborators all over the world to connect and share useful, high-quality data between institutions, groups, and countries to increase opportunities for discovery.", + "tech_tags": [ + "python", + "javascript", + "kubernetes", + "reactjs", + "terraform" + ], + "topic_tags": [ + "web", + "health", + "data", + "infrastructure", + "software" + ], + "contact_links": [ + { + "name": "email", + "value": "lgraglia@uchicago.edu" + }, + { + "name": "twitter", + "value": "https://twitter.com/PedsDataCommons" + } + ], + "source_code": "https://github.com/chicagopcdc", + "ideas_link": "https://chicagopcdc.github.io/GSoC/ideas", + "direct_comm_methods": [ + { + "name": "email", + "value": "lgraglia@uchicago.edu" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/PedsDataCommons" + } + ] + }, + { + "name": "AFLplusplus", + "slug": "aflplusplus", + "logo_url": "https://summerofcode.withgoogle.com/media/org/aflplusplus/dw8yelaswljerorz-360.png", + "website_url": "https://aflplus.plus", + "tagline": "State of the art fuzzing for better security", + "license": "Apache-2.0", + "categories": [ + "Security" + ], + "contributor_guidance_url": "https://github.com/AFLplusplus/LibAFL/blob/main/CONTRIBUTING.md", + "description": "We are dedicated to provide the most effective fuzzing frameworks. Our work includes AFL++, the most effective and flexible fuzzer, and libafl, a library to build your own fuzzer with the most modern techniques and technologies.", + "tech_tags": [ + "llvm", + "rust", + "fuzzing", + "qemu" + ], + "topic_tags": [ + "fuzzing", + "ci" + ], + "contact_links": [ + { + "name": "email", + "value": "afl@aflplus.plus" + } + ], + "source_code": "https://github.com/AFLplusplus", + "ideas_link": "https://github.com/AFLplusplus/LibAFL/issues/3706", + "direct_comm_methods": [ + { + "name": "email", + "value": "afl@aflplus.plus" + } + ], + "social_comm_methods": [] + }, + { + "name": "CircuitVerse.org", + "slug": "circuitverseorg", + "logo_url": "https://summerofcode.withgoogle.com/media/org/circuitverseorg/rxan5pn96f3m4yfu-360.png", + "website_url": "http://circuitverse.org/", + "tagline": "Build and learn logic circuits in the cloud!", + "license": "MIT", + "categories": [ + "Science and medicine", + "End user applications" + ], + "contributor_guidance_url": "https://docs.google.com/document/d/1oeYPAuqWxeC79d-R5I9uFJywQJv4ooO4obF4pwifyTY/edit", + "description": "CircuitVerse is an easy to use digital logic circuit simulator which aims at providing a platform to create, share and learn digital circuits. It can run on almost any device without the need for installing any software. The platform has been designed for use by students, professionals and hobbyists alike. The vision is to develop a community around the platform that will aid students to self-learn digital logic design. The platform is currently used by several universities worldwide. Apart from the simulator, users can create, learn, collaborate and share their work. Teachers can create groups and host assignments on the platform. The platform’s impact has been more evident than ever in the Covid 19 pandemic as CircuitVerse enabled schools and colleges to move their courses online.", + "tech_tags": [ + "javascript", + "ruby", + "rails", + "canvas", + "vue" + ], + "topic_tags": [ + "education", + "web", + "simulation", + "pedagogy", + "digital logic design" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://circuitverse.org/slack" + }, + { + "name": "mailingList", + "value": "https://github.com/CircuitVerse/CircuitVerse/discussions" + }, + { + "name": "blog", + "value": "https://blog.circuitverse.org/" + }, + { + "name": "twitter", + "value": "https://twitter.com/circuitverse?lang=en" + } + ], + "source_code": "https://github.com/circuitverse", + "ideas_link": "https://github.com/CircuitVerse/CircuitVerse/wiki/GSoC'26-Project-List", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://circuitverse.org/slack" + }, + { + "name": "mailingList", + "value": "https://github.com/CircuitVerse/CircuitVerse/discussions" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://blog.circuitverse.org/" + }, + { + "name": "twitter", + "value": "https://twitter.com/circuitverse?lang=en" + } + ] + }, + { + "name": "Dart", + "slug": "dart", + "logo_url": "https://summerofcode.withgoogle.com/media/org/dart/hsghljw4m6popf0x-360.png", + "website_url": "https://dart.dev", + "tagline": "Dart is a client language for apps on any platform", + "license": "BSD-3-Clause", + "categories": [ + "Programming languages" + ], + "contributor_guidance_url": "https://github.com/dart-lang/sdk/blob/main/docs/gsoc/Dart-GSoC-2025-Project-Ideas.md", + "description": "The Dart language gives you a fast developer experience and works on any platform. Dart powers hot reload enabling you to make a code change and instantly see results in your running app, and compiles to ARM and x64 machine code enabling quick app startup times for mobile, desktop and the web.\n\nDart powers Flutter, Google’s UI toolkit for building beautiful, natively compiled applications for mobile, web, and desktop from a single codebase.", + "tech_tags": [ + "flutter", + "dart" + ], + "topic_tags": [ + "programming languages", + "mobile apps" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://groups.google.com/g/dart-gsoc" + }, + { + "name": "blog", + "value": "https://medium.com/dartlang" + } + ], + "source_code": "https://github.com/dart-lang/", + "ideas_link": "https://github.com/dart-lang/sdk/blob/main/docs/gsoc/Dart-GSoC-2026-Project-Ideas.md", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://groups.google.com/g/dart-gsoc" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://medium.com/dartlang" + } + ] + }, + { + "name": "GNU Radio", + "slug": "gnu-radio", + "logo_url": "https://summerofcode.withgoogle.com/media/org/gnu-radio/v1g5y6exzlwgfulv-360.png", + "website_url": "https://www.gnuradio.org", + "tagline": "The free & open software radio ecosystem", + "license": "GPL-3.0", + "categories": [ + "Science and medicine" + ], + "contributor_guidance_url": "https://www.gnuradio.org/gsoc/", + "description": "GNU Radio is a free & open-source software development toolkit that provides signal processing blocks to implement software radios. It can be used with readily-available low-cost external RF hardware to create software-defined radios, or without hardware in a simulation-like environment. It is widely used in research, industry, academia, government, and hobbyist environments to support both wireless communications research and real-world radio systems.\n\nIn brief, a software radio is a radio system which performs the required signal processing in software instead of using dedicated integrated circuits in hardware. The benefit is that since software can be easily replaced in the radio system, the same hardware can be used to create many kinds of radios for many different communications standards; thus, one software radio can be used for a variety of applications!\n\nYou can use GNU Radio to write applications to receive and transmit data with radio hardware, or to create entirely simulation-based applications. GNU Radio has filters, channel codes, synchronization elements, equalizers, demodulators, vocoders, decoders, and many other types of blocks which are typically found in signal processing systems. More importantly, it includes a method of connecting these blocks and then manages how data is passed from one block to another. Extending GNU Radio is also quite easy; if you find a specific block that is missing, you can quickly create and add it.\n\nGNU Radio applications can be written in either C++ or Python, while the performance-critical signal processing path is implemented in C++ using processor floating-point extensions where available. This enables the developer to implement real-time, high-throughput radio systems in a simple-to-use, rapid-application-development environment.", + "tech_tags": [ + "python", + "c++", + "qt", + "simd" + ], + "topic_tags": [ + "real-time", + "dsp", + "communications engineering", + "cybersecurity", + "Software-Defined Radio" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://lists.gnu.org/mailman/listinfo/discuss-gnuradio" + }, + { + "name": "chat", + "value": "https://chat.gnuradio.org/#/welcome" + }, + { + "name": "twitter", + "value": "https://twitter.com/gnuradio" + }, + { + "name": "blog", + "value": "https://www.gnuradio.org/blog/" + } + ], + "source_code": "https://github.com/gnuradio/gnuradio", + "ideas_link": "https://wiki.gnuradio.org/index.php/GSoCIdeas", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://lists.gnu.org/mailman/listinfo/discuss-gnuradio" + }, + { + "name": "chat", + "value": "https://chat.gnuradio.org/#/welcome" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/gnuradio" + }, + { + "name": "blog", + "value": "https://www.gnuradio.org/blog/" + } + ] + }, + { + "name": "Python Software Foundation", + "slug": "python-software-foundation", + "logo_url": "https://summerofcode.withgoogle.com/media/org/python-software-foundation/2vpxhpvcsvgyx3kg-360.png", + "website_url": "https://python-gsoc.org/", + "tagline": "A programming language used for science & more", + "license": "Python-2.0", + "categories": [ + "End user applications", + "Programming languages" + ], + "contributor_guidance_url": "https://python-gsoc.org/index.html#gettingstarted", + "description": "Python is a programming language that lets you work more quickly and integrate your systems more effectively.\n\nThe Python Software Foundation serves as an umbrella organization to a\nvariety of Python-related projects, as well as sponsoring projects related to the\ndevelopment of the Python language.\n\nYou can view a full list of participating sub-orgs here:\nhttps://python-gsoc.org/ideas.html\n\nSub-orgs:\n- Borg Collective - backup tools\n- CVE Binary Tool - scanning for known security vulnerabilities\n- DIPY - 3d/4d+ imaging\n- Fury - scientific visualization tools\n- LPython - ahead of time compiler for python\n- MNE-Python - tools for human neurophysiological data\n- Mission Support System - atmospheric science tools for flight planning\n- PyData/Sparse - n-dimensional sparse arrays for pyData\n- PyElastica - simulation and modeling for slender structures", + "tech_tags": [ + "python", + "javascript" + ], + "topic_tags": [ + "security", + "visualization", + "compiler", + "modeling", + "Backup" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://mail.python.org/mailman/listinfo/gsoc-general" + }, + { + "name": "chat", + "value": "https://python-gsoc.org/index.html#contact" + }, + { + "name": "blog", + "value": "https://social.python-gsoc.org/public/local" + } + ], + "source_code": "https://python-gsoc.org/ideas.html", + "ideas_link": "https://python-gsoc.org/ideas.html", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://mail.python.org/mailman/listinfo/gsoc-general" + }, + { + "name": "chat", + "value": "https://python-gsoc.org/index.html#contact" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://social.python-gsoc.org/public/local" + } + ] + }, + { + "name": "OpenStreetMap", + "slug": "openstreetmap", + "logo_url": "https://summerofcode.withgoogle.com/media/org/openstreetmap/ihw4tczyumj0yx81-360.png", + "website_url": "https://www.openstreetmap.org/", + "tagline": "Create and distribute free geodata for the world", + "license": "GPL-2.0", + "categories": [ + "Data", + "End user applications" + ], + "contributor_guidance_url": "https://wiki.openstreetmap.org/wiki/Google_Summer_of_Code/2026", + "description": "OpenStreetMap is a crowdsourcing project that creates and distributes free geographic data for the world. Our data is collected by hundreds of thousands of contributors around the globe and released with an open-content license. We allow free access not only to our map products, but all the underlying map data, which powers websites and apps used by billions of people worldwide.\n\nOSM data can be freely used in both open and closed source software, and has attracted many commercial users. Still, the success of OSM wouldn't be possible without open source software and volunteer developers. The database, website and API running on our own servers, the editing tools used by contributors to improve the map, and many of the most popular libraries and end-user applications within the OSM software ecosystem are all open source software, and developed through a community-driven process.\n\nAs our Google Summer of Code participation spans this diverse set of software projects, most of which are maintained as independent efforts under the OSM umbrella, contributors will encounter a wide range of programming languages, paradigms and use cases. We hope that we have interesting challenges to offer for any developer, no matter their background!", + "tech_tags": [ + "python", + "javascript", + "c++", + "docker", + "glTF" + ], + "topic_tags": [ + "databases", + "web", + "routing", + "ui", + "geodata" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://community.openstreetmap.org/" + }, + { + "name": "blog", + "value": "https://blogs.openstreetmap.org/" + } + ], + "source_code": "https://github.com/openstreetmap/", + "ideas_link": "https://wiki.openstreetmap.org/wiki/Google_Summer_of_Code/2026/Project_ideas", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://community.openstreetmap.org/" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://blogs.openstreetmap.org/" + } + ] + }, + { + "name": "Jenkins", + "slug": "jenkins-wp", + "logo_url": "https://summerofcode.withgoogle.com/media/org/jenkins-wp/7qlgfron9nyj194y-360.png", + "website_url": "https://jenkins.io", + "tagline": "Jenkins, build great things at any scale", + "license": "MIT", + "categories": [ + "Programming languages", + "Development tools" + ], + "contributor_guidance_url": "https://www.jenkins.io/projects/gsoc/contributors", + "description": "Short description:\n\nJenkins is a popular open source automation server which is used for building, testing, CI/CD, deployment and many other use-cases. Our motto is \"Build great things at any scale\".\n\nLong description:\n\nJenkins, originally founded in 2006 as \"Hudson\", is one of the leading automation servers. Jenkins' motto is \"Build great things at any scale\". Using an extensible, plugin-based architecture, developers have created hundreds of plugins to adapt Jenkins to a multitude of build, test, and deployment automation workloads. As Jenkins is open-source, MIT License is used for most of the components.\n\nThis year we invite potential GSoC contributors to join the Jenkins community and to work together to improve Jenkins. We have many strategic project ideas which are important to potentially hundreds of thousands of Jenkins users.\n\nThe project has over 600 active contributors working on Jenkins core, plugins, website, project infrastructure, localization activities, etc. In total we have more than 2,000 components including plugins, libraries, and various utilities. The main languages in the project are Java, Groovy and JavaScript, but we also have components written in other languages (Go, C/C++, C#, etc.). Jenkins project includes multiple sub-projects (including Configuration-as-Code, Infrastructure and Remoting) and special interest groups. These entities participate in GSoC as a part of the Jenkins project.\n\nThe Jenkins project is a part of Continuous Delivery Foundation (CDF).", + "tech_tags": [ + "javascript", + "java", + "go", + "docker", + "kubernetes" + ], + "topic_tags": [ + "developer tools", + "automation", + "continuous integration", + "continuous delivery", + "devops" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://gitter.im/jenkinsci/gsoc-sig" + }, + { + "name": "mailingList", + "value": "https://community.jenkins.io/c/contributing/gsoc/6" + }, + { + "name": "twitter", + "value": "https://x.com/jenkinsci" + }, + { + "name": "blog", + "value": "https://www.jenkins.io/blog" + } + ], + "source_code": "https://github.com/jenkinsci/", + "ideas_link": "https://www.jenkins.io/projects/gsoc/2026/project-ideas/", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://gitter.im/jenkinsci/gsoc-sig" + }, + { + "name": "mailingList", + "value": "https://community.jenkins.io/c/contributing/gsoc/6" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://x.com/jenkinsci" + }, + { + "name": "blog", + "value": "https://www.jenkins.io/blog" + } + ] + }, + { + "name": "Qubes OS", + "slug": "qubes-os-f3", + "logo_url": "https://summerofcode.withgoogle.com/media/org/qubes-os-f3/4hohuknku00cpaja-360.png", + "website_url": "https://qubes-os.org", + "tagline": "A reasonably secure operating system", + "license": "GPL-2.0", + "categories": [ + "Operating systems", + "Security" + ], + "contributor_guidance_url": "https://doc.qubes-os.org/en/latest/developer/general/gsoc.html#information-for-students", + "description": "Qubes OS is a security- and privacy-focused free-and-open-source operating system that provides a safer platform for communications, information management, and general computing.", + "tech_tags": [ + "c", + "python", + "xen" + ], + "topic_tags": [ + "security", + "privacy", + "OS" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://forum.qubes-o.org" + }, + { + "name": "mailingList", + "value": "https://doc.qubes-os.org/en/latest/introduction/support.html#qubes-devel" + }, + { + "name": "chat", + "value": "https://internal-team.matrix.instance" + }, + { + "name": "blog", + "value": "https://www.qubes-os.org/news/" + }, + { + "name": "twitter", + "value": "https://mastodon.social/@QubesOS" + } + ], + "source_code": "https://github.com/QubesOS/", + "ideas_link": "https://doc.qubes-os.org/en/latest/developer/general/gsoc.html#project-ideas", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://forum.qubes-o.org" + }, + { + "name": "mailingList", + "value": "https://doc.qubes-os.org/en/latest/introduction/support.html#qubes-devel" + }, + { + "name": "chat", + "value": "https://internal-team.matrix.instance" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://www.qubes-os.org/news/" + }, + { + "name": "twitter", + "value": "https://mastodon.social/@QubesOS" + } + ] + }, + { + "name": "JBoss Community", + "slug": "jboss-community", + "logo_url": "https://summerofcode.withgoogle.com/media/org/jboss-community/vno1fifehc0i6aa6-360.png", + "website_url": "http://www.jboss.org/", + "tagline": "Community of projects around JBoss Middleware", + "license": "Apache-2.0", + "categories": [ + "Web", + "Infrastructure and cloud" + ], + "contributor_guidance_url": "https://spaces.redhat.com/display/GSOC/Google+Summer+of+Code+-+contributor+guide", + "description": "JBoss Community is a community of open source projects. The community hosts a diverse set of projects that are written in various programming languages. The primary language is Java, however there are also projects that are written in Go, Rust, Ruby, PHP, Node and other languages.\n\nProject categories range from application servers, microservices, IOT, cloud technologies, web frameworks et cetera", + "tech_tags": [ + "java", + "react", + "golang", + "cloud" + ], + "topic_tags": [ + "artificial intelligence", + "iot", + "cloud", + "microservices", + "kubernetes" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://gitter.im/JBossOutreach/GSoC" + }, + { + "name": "blog", + "value": "https://spaces.redhat.com/display/GSOC/Google+Summer+of+Code+2025+Ideas" + } + ], + "source_code": "https://github.com/jbossas", + "ideas_link": "https://spaces.redhat.com/spaces/GSOC/pages/750884772/Google+Summer+of+Code+2026+Ideas", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://gitter.im/JBossOutreach/GSoC" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://spaces.redhat.com/display/GSOC/Google+Summer+of+Code+2025+Ideas" + } + ] + }, + { + "name": "Oppia Foundation", + "slug": "oppia-foundation", + "logo_url": "https://summerofcode.withgoogle.com/media/org/oppia-foundation/nqvgy9fm3aqshwtv-360.png", + "website_url": "https://www.oppia.org", + "tagline": "Free platform for interactive, tutor-like lessons", + "license": "Apache-2.0", + "categories": [ + "End user applications", + "Artificial Intelligence" + ], + "contributor_guidance_url": "https://github.com/oppia/oppia/wiki/Google-Summer-of-Code-2026#getting-started", + "description": "The Oppia project aims to empower learners across the globe by providing access to high-quality, engaging education. We envision a world where access to high-quality education is not a privilege but a human right. \n\nThe team works on two platforms: \n\n (a) Oppia Web, which provides an online learning tool that enables anyone to learn from effective and engaging interactive lessons (called 'explorations'), which simulate a one-on-one conversation with a tutor. This format makes it possible for students to learn by doing while getting feedback. The Oppia Web platform also provides the infrastructure needed to support lesson creation and translation.\n\n (b) Oppia Android, which provides a way for these lessons to be played offline on an Android app that supports low-end devices and does not require Internet connectivity. \n\nAs a community, we are also aware that millions of students in underserved communities lack access to the educational resources necessary to effectively learn key skills like basic numeracy. Thus, in addition to developing the Oppia platform, the team has launched and continues to develop a set of free and effective lessons on basic mathematics, supplemented by translations and voiceovers. Students using these lessons have shown strong improvements between pre-and post-tests, and we’ve received lots of positive feedback on them. We are planning to extend this offering to other subjects, based on what students (and the nonprofits working with them) tell us would be most useful.", + "tech_tags": [ + "python", + "google app engine", + "angular", + "typescript", + "Apache Beam" + ], + "topic_tags": [ + "education", + "web", + "ai", + "nonprofit", + "social impact" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://github.com/oppia/oppia/discussions" + }, + { + "name": "blog", + "value": "https://www.oppia.org/blog" + }, + { + "name": "facebook", + "value": "https://www.facebook.com/oppiaorg" + }, + { + "name": "twitter", + "value": "https://x.com/oppiaorg" + } + ], + "source_code": "https://github.com/oppia/oppia", + "ideas_link": "https://github.com/oppia/oppia/wiki/Google-Summer-of-Code-2026", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://github.com/oppia/oppia/discussions" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://www.oppia.org/blog" + }, + { + "name": "facebook", + "value": "https://www.facebook.com/oppiaorg" + }, + { + "name": "twitter", + "value": "https://x.com/oppiaorg" + } + ] + }, + { + "name": "Metasploit", + "slug": "metasploit", + "logo_url": "https://summerofcode.withgoogle.com/media/org/metasploit/ggisatrqgjavuwd7-360.png", + "website_url": "https://metasploit.com", + "tagline": "World’s most used penetration testing framework", + "license": "BSD-3-Clause", + "categories": [ + "Security" + ], + "contributor_guidance_url": "https://github.com/rapid7/metasploit-framework/wiki/How-to-Apply-to-GSoC", + "description": "The Metasploit Framework is both a penetration testing system and a development platform for creating security tools and exploits. The framework is used by network security professionals to perform penetration tests, system administrators to verify patch installations, product vendors to perform regression testing, and security researchers world-wide. The framework is written in the Ruby programming language and includes components written in C, many flavors of Assembly, Python, Powershell, PHP, and other languages.\n\nThe framework consists of tools, libraries, modules, and user interfaces. The basic function of the framework is a module launcher, allowing the user to configure an exploit module and launch it at a target system. If the exploit succeeds, the payload is executed on the target and the user is provided with a shell to interact with the payload. Hundreds of exploits and dozens of payload options are available.", + "tech_tags": [ + "c", + "python", + "postgresql", + "ruby", + "assembly" + ], + "topic_tags": [ + "security", + "penetration testing", + "offensive security", + "exploitation" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://metasploit.com/slack" + }, + { + "name": "email", + "value": "msfdev@metasploit.com" + }, + { + "name": "twitter", + "value": "https://twitter.com/metasploit" + } + ], + "source_code": "https://github.com/rapid7/metasploit-framework", + "ideas_link": "https://github.com/rapid7/metasploit-framework/blob/master/docs/metasploit-framework.wiki/GSoC-2026-Project-Ideas.md", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://metasploit.com/slack" + }, + { + "name": "email", + "value": "msfdev@metasploit.com" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/metasploit" + } + ] + }, + { + "name": "NumFOCUS", + "slug": "numfocus", + "logo_url": "https://summerofcode.withgoogle.com/media/org/numfocus/wimcwc2v6kjlidqc-360.png", + "website_url": "https://numfocus.org", + "tagline": "NumFOCUS promotes open source scientific software.", + "license": "MIT", + "categories": [ + "Science and medicine", + "Data" + ], + "contributor_guidance_url": "https://github.com/numfocus/gsoc/blob/master/CONTRIBUTING-students.md", + "description": "NumFOCUS supports and promotes world-class, innovative, open source scientific software. Most individual projects, even the wildly successful ones, find the overhead of a non-profit to be too large for their community to bear. NumFOCUS provides a critical service as an umbrella organization for this projects.", + "tech_tags": [ + "python", + "c++", + "r", + "julia" + ], + "topic_tags": [ + "data science", + "graphics", + "ai", + "scientific computing", + "numerical computation" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://groups.google.com/a/numfocus.org/forum/#!forum/gsoc" + }, + { + "name": "email", + "value": "info@numfocus.org" + }, + { + "name": "twitter", + "value": "https://twitter.com/NumFOCUS/" + } + ], + "source_code": "https://github.com/numfocus/gsoc#organizations-confirmed-under-numfocus-umbrella", + "ideas_link": "https://github.com/numfocus/gsoc/blob/master/2026/ideas-list.md", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://groups.google.com/a/numfocus.org/forum/#!forum/gsoc" + }, + { + "name": "email", + "value": "info@numfocus.org" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/NumFOCUS/" + } + ] + }, + { + "name": "Kotlin Foundation", + "slug": "kotlin-foundation", + "logo_url": "https://summerofcode.withgoogle.com/media/org/kotlin-foundation/2wyghqyy8nvvl4cq-360.png", + "website_url": "https://kotlinfoundation.org/", + "tagline": "Advance the Kotlin programming language", + "license": "Apache-2.0", + "categories": [ + "Programming languages", + "Development tools" + ], + "contributor_guidance_url": "https://kotlinlang.org/docs/gsoc-overview.html", + "description": "Kotlin is a concise, modern, and versatile programming language designed for multiple platforms.\n\nThe Kotlin Foundation, established by JetBrains and Google, later welcomed Meta, Uber, Gradle, Touchlab, Block, and Kotzilla. Together, we promote and advance Kotlin across multiple platforms, including Android, iOS, web, desktop, and server-side.\n \nCurrently, 100+ engineers from JetBrains and Google contribute to the core Kotlin project, alongside 350+ independent contributors and thousands more supporting the broader Kotlin ecosystem.\n\nThe Kotlin Foundation is committed to protecting, promoting, and advancing the evolution of the Kotlin language.", + "tech_tags": [ + "gradle", + "kotlin", + "jvm", + "Parsers & Compilers", + "Multiplatform" + ], + "topic_tags": [ + "compilers", + "programming languages", + "software development", + "libraries", + "Programming & Build Tools" + ], + "contact_links": [ + { + "name": "email", + "value": "gsoc@kotlinfoundation.org" + }, + { + "name": "chat", + "value": "https://slack-chats.kotlinlang.org/c/gsoc" + }, + { + "name": "twitter", + "value": "https://twitter.com/kotlin" + }, + { + "name": "blog", + "value": "https://blog.jetbrains.com/kotlin/" + } + ], + "source_code": "https://github.com/jetbrains/kotlin", + "ideas_link": "https://kotlinlang.org/docs/gsoc-2026.html", + "direct_comm_methods": [ + { + "name": "email", + "value": "gsoc@kotlinfoundation.org" + }, + { + "name": "chat", + "value": "https://slack-chats.kotlinlang.org/c/gsoc" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/kotlin" + }, + { + "name": "blog", + "value": "https://blog.jetbrains.com/kotlin/" + } + ] + }, + { + "name": "Unikraft", + "slug": "unikraft", + "logo_url": "https://summerofcode.withgoogle.com/media/org/unikraft/5nx7anuq3iixdm54.png", + "website_url": "https://unikraft.org/", + "tagline": "A Fast and Secure Unikernel SDK", + "license": "BSD-3-Clause", + "categories": [ + "Operating systems", + "Infrastructure and cloud" + ], + "contributor_guidance_url": "https://unikraft.org/docs/contributing/", + "description": "Unikraft is a fast, secure and open-source Unikernel Development Kit.\n\nBy tailoring the operating system, libraries and configuration to the particular needs of your application, it vastly reduces virtual machine and container image sizes to a few KBs, provides blazing performance, and drastically cuts down your software stack’s attack surface.\n\nUnikraft is developed in the spirit of open source: public discussions on Discord, open source licensing model using BSD-3-Clause, public development and management on GitHub.\n\nIt does so in the context of a vibrant community consisting of highly skilled software engineers, researchers, teachers, students and hobbyists. Periodic meetings, hackathons and a consistent presence in open source events are central to the well functioning of the community.\n\nWe use guidelines for development and maintenance to ensure the creation of high quality code.\n\nPublic releases are planned to happen once every two months. In general, we aim for a public release to happen at the last Monday of each odd month (January, March, May, etc.)\n\nWe welcome contributors and users on Discord and on GitHub. If you are looking for a fun technical project in the area of operating systems, virtualization, come aboard on Discord.", + "tech_tags": [ + "c", + "xen", + "golang", + "kvm", + "assembly language" + ], + "topic_tags": [ + "virtualization", + "cloud", + "software reuse", + "software configurability" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://bit.ly/UnikraftDiscord" + }, + { + "name": "twitter", + "value": "https://twitter.com/unikraftsdk" + }, + { + "name": "blog", + "value": "https://unikraft.org/blog" + } + ], + "source_code": "https://github.com/unikraft/", + "ideas_link": "https://github.com/unikraft/gsoc/blob/staging/gsoc-2026/ideas.md", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://bit.ly/UnikraftDiscord" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/unikraftsdk" + }, + { + "name": "blog", + "value": "https://unikraft.org/blog" + } + ] + }, + { + "name": "CERN-HSF", + "slug": "cern-hsf", + "logo_url": "https://summerofcode.withgoogle.com/media/org/cern-hsf/cjus658sjzba5zhg-360.png", + "website_url": "http://hepsoftwarefoundation.org/activities/gsoc.html", + "tagline": "Umbrella for Particle Physics-related projects", + "license": "LGPL-3.0", + "categories": [ + "Science and medicine", + "Artificial Intelligence" + ], + "contributor_guidance_url": "https://hepsoftwarefoundation.org/activities/gsoc.html#for-students", + "description": "CERN-HSF (High-Energy Physics Software Foundation) is the umbrella organization for high-energy physics-related projects in GSoC. The HEP Software Foundation (http://hepsoftwarefoundation.org/) facilitates the coordination of common international efforts in high-energy physics software and computing.\n\nCERN (European Organization for Nuclear Research, https://home.cern) has participated in GSoC since 2011 as the CERN-SFT group, which provides common software for CERN's experiments. In 2017, the program expanded to include many software projects from the whole field of high-energy physics. The vast majority of our GSoC projects do not require any physics knowledge.\n\nThe experiments at CERN, such as the Large Hadron Collider, the world’s largest and most powerful particle accelerator (http://home.cern/topics/large-hadron-collider) try to answer fundamental questions about the Universe. For example, what is the nature of mass? What are the elementary building blocks of the Universe? What was the early Universe like? What is the nature of dark matter and dark energy? Why is there an asymmetry between matter and antimatter? In 2012, LHC experiments announced the discovery of a new particle, the Higgs Boson, that helps explain how particles obtain mass. Also, CERN is the birthplace of the World Wide Web. Today, particle physicists are working on analyzing the data from the experiments to study the properties of the newly discovered particle and to search for new physics, such as dark matter or extra dimensions. This requires a lot of sophisticated software.\n\nThe open-source high-energy physics projects to which students can contribute during GSoC span many high-energy physics software projects: data analysis, detector and accelerator simulation, event reconstruction, data management and many others. We look forward to your contributions!", + "tech_tags": [ + "python", + "c/c++", + "data analysis", + "artificial intelligence", + "container orchestration" + ], + "topic_tags": [ + "machine learning", + "big data", + "algorithmics", + "particle physics", + "Performance Optimisation" + ], + "contact_links": [ + { + "name": "email", + "value": "hsf-gsoc-admin@googlegroups.com" + }, + { + "name": "twitter", + "value": "https://twitter.com/hepsoftfound" + } + ], + "source_code": "https://github.com/HSF", + "ideas_link": "https://hepsoftwarefoundation.org/gsoc/2026/summary.html", + "direct_comm_methods": [ + { + "name": "email", + "value": "hsf-gsoc-admin@googlegroups.com" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/hepsoftfound" + } + ] + }, + { + "name": "Internet Archive", + "slug": "internet-archive", + "logo_url": "https://summerofcode.withgoogle.com/media/org/internet-archive/uzbgzbb9tvp81c2i.png", + "website_url": "http://archive.org", + "tagline": "Universal Access to All Knowledge", + "license": "GPL-3.0", + "categories": [ + "Science and medicine", + "Media" + ], + "contributor_guidance_url": null, + "description": "The Internet Archive is a non-profit digital library.\n\nWe are the home of the Wayback Machine.", + "tech_tags": [ + "python", + "javascript", + "go", + "elasticsearch", + "hadoop" + ], + "topic_tags": [ + "library", + "media", + "archiving" + ], + "contact_links": [ + { + "name": "email", + "value": "info@archive.org" + }, + { + "name": "twitter", + "value": "https://twitter.com/internetarchive" + } + ], + "source_code": "https://github.com/internetarchive", + "ideas_link": "https://docs.google.com/document/d/1EjzrHVapOZuzdI_Qqd_ravaTgiDWnxlMRbjjbzfd_-I/edit?tab=t.0", + "direct_comm_methods": [ + { + "name": "email", + "value": "info@archive.org" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/internetarchive" + } + ] + }, + { + "name": "The P4 Language Consortium", + "slug": "the-p4-language-consortium", + "logo_url": "https://summerofcode.withgoogle.com/media/org/the-p4-language-consortium/tru8mncy4zqlbxhe.png", + "website_url": "https://p4.org/", + "tagline": "Evolve the programmable data plane ecosystem!", + "license": "Apache-2.0", + "categories": [ + "Programming languages", + "Infrastructure and cloud" + ], + "contributor_guidance_url": "https://github.com/p4lang/gsoc/blob/main/2026/application_instructions.md", + "description": "Programming Protocol-independent Packet Processors (P4) is a domain-specific language for network devices, specifying how data plane devices (switches, NICs, routers, filters, etc.) process packets.\n\nBefore P4, vendors had total control over the functionality supported in the network. And since networking silicon determined much of the possible behavior, silicon vendors controlled the rollout of new features (e.g., VXLAN), and rollouts took years.\n\nP4 turns the traditional model on its head. Application developers and network engineers can now use P4 to implement specific behavior in the network, and changes can be made in minutes instead of years.", + "tech_tags": [ + "llvm", + "c++", + "linux kernel", + "mlir", + "ebpf" + ], + "topic_tags": [ + "networking", + "programming language", + "compiler", + "AI/ML Networking", + "networking security" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://p4lang.zulipchat.com/" + }, + { + "name": "mailingList", + "value": "https://p4.org/join/" + }, + { + "name": "blog", + "value": "https://p4.org/blog/" + }, + { + "name": "twitter", + "value": "https://x.com/p4lang/" + } + ], + "source_code": "https://github.com/p4lang", + "ideas_link": "https://github.com/p4lang/gsoc/blob/main/2026/ideas_list.md", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://p4lang.zulipchat.com/" + }, + { + "name": "mailingList", + "value": "https://p4.org/join/" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://p4.org/blog/" + }, + { + "name": "twitter", + "value": "https://x.com/p4lang/" + } + ] + }, + { + "name": "EROFS filesystem", + "slug": "erofs-filesystem", + "logo_url": "https://summerofcode.withgoogle.com/media/org/erofs-filesystem/qrkpvwkzjqmwoyau-360.png", + "website_url": "https://erofs.docs.kernel.org", + "tagline": "Modern image-based kernel filesystem for everyone", + "license": "GPL-2.0", + "categories": [ + "Operating systems", + "Infrastructure and cloud" + ], + "contributor_guidance_url": null, + "description": "EROFS [1] is a modern, high-performance block-based immutable Linux filesystem with highly-optimized on-disk format and runtime implementation. Since it's landed upstream, it has been widely deployed to billions of devices, and addresses various target scenarios. Nowadays, almost all Linux mainstream distributions support EROFS.\n\nEROFS has become a recommended filesystem [2] for Android system partitions and has already been adopted by the majority of Android vendors. It has also become popular in the Linux container world. For example, Composefs [3] uses the EROFS format for its metadata tree. Containerd 2.1 [4] also officially includes a built-in EROFS support to boost container launch performance. gVisor now supports EROFS as well [5].\n\n[1] https://erofs.docs.kernel.org\n[2] https://source.android.com/docs/core/architecture/kernel/erofs\n[3] https://github.com/containers/composefs\n[4] https://github.com/containerd/containerd/releases/tag/v2.1.0\n[5] https://github.com/google/gvisor/pull/9486", + "tech_tags": [ + "c", + "android", + "linux kernel", + "Containerd", + "gVisor" + ], + "topic_tags": [ + "operating system", + "containers", + "android", + "filesystems", + "agent sandbox" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "linux-erofs@lists.ozlabs.org" + }, + { + "name": "blog", + "value": "https://erofs.docs.kernel.org" + } + ], + "source_code": "https://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs-utils.git", + "ideas_link": "https://erofs.docs.kernel.org/en/latest/roadmap.html", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "linux-erofs@lists.ozlabs.org" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://erofs.docs.kernel.org" + } + ] + }, + { + "name": "checkstyle", + "slug": "checkstyle", + "logo_url": "https://summerofcode.withgoogle.com/media/org/checkstyle/e8ubktvaft8eljli-360.png", + "website_url": "https://checkstyle.org", + "tagline": "Helps to adheres of Java coding standard", + "license": "LGPL-2.1", + "categories": [ + "Programming languages", + "Development tools" + ], + "contributor_guidance_url": "https://github.com/checkstyle/checkstyle/blob/master/.github/GSOC.md", + "description": "Checkstyle is a development tool to help programmers write Java code that is easy to read and adheres to a coding standard. Our utility automates the process of checking Java code to spare humans of this boring (but important) task. This makes it ideal for projects that want to enforce a coding standard. Each and every check also forces our users who are not familiar with these standards to read them and makes them think about why these standards exist.", + "tech_tags": [ + "java", + "antlr", + "artificial-intelligence" + ], + "topic_tags": [ + "static code analysis", + "code review tool", + "coding standards", + "coding conventions", + "artificial-intelligence" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://discord.gg/FsUsYC2ura" + }, + { + "name": "mailingList", + "value": "https://groups.google.com/g/checkstyle-devel" + }, + { + "name": "twitter", + "value": "https://x.com/checkstyle_java" + } + ], + "source_code": "https://github.com/checkstyle", + "ideas_link": "https://github.com/checkstyle/checkstyle/wiki/Checkstyle-GSoC-2026-Project-Ideas", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://discord.gg/FsUsYC2ura" + }, + { + "name": "mailingList", + "value": "https://groups.google.com/g/checkstyle-devel" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://x.com/checkstyle_java" + } + ] + }, + { + "name": "Fortran-lang", + "slug": "fortran-lang", + "logo_url": "https://summerofcode.withgoogle.com/media/org/fortran-lang/ay9se7mc6vgdwgbn-360.png", + "website_url": "https://fortran-lang.org", + "tagline": "High-performance parallel programming language", + "license": "MIT", + "categories": [ + "Programming languages" + ], + "contributor_guidance_url": "https://github.com/fortran-lang/webpage/wiki/GSoC-2025-Contributor-Instructions", + "description": "Fortran-lang is an open-source community that develops tools and libraries for modern Fortran development. Our flagship projects include the standard library, Fortran build system and package manager, as well as the interactive compiler, LFortran. Fortran-lang also provides an inclusive and welcoming space for all Fortran enthusiasts around the world to collaborate.", + "tech_tags": [ + "python", + "c++", + "fortran" + ], + "topic_tags": [ + "compilers", + "programming languages", + "build systems", + "libraries", + "Fortran" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://fortran-lang.discourse.group/" + }, + { + "name": "twitter", + "value": "https://twitter.com/fortranlang" + } + ], + "source_code": "https://github.com/fortran-lang", + "ideas_link": "https://github.com/fortran-lang/webpage/wiki/GSoC-2026-Project-ideas", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://fortran-lang.discourse.group/" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/fortranlang" + } + ] + }, + { + "name": "National Resource for Network Biology (NRNB)", + "slug": "national-resource-for-network-biology-nrnb", + "logo_url": "https://summerofcode.withgoogle.com/media/org/national-resource-for-network-biology-nrnb/5uobjboaxnzrxyoj-360.png", + "website_url": "https://nrnb.org", + "tagline": "Developing open source tools for network biology", + "license": "LGPL-2.1", + "categories": [ + "Science and medicine", + "Data" + ], + "contributor_guidance_url": "https://docs.google.com/document/d/1UdlsHvWoP3lU7QAPzlqs1ctQKeaWrXwdcOEuSIkdmio/edit?usp=sharing", + "description": "The National Resource for Network Biology (NRNB, https://nrnb.org) organizes the development of free, open-source software technologies to enable network-based visualization, analysis, and biomedical discovery. Biomedical research is increasingly dependent on knowledge expressed in terms of networks, including gene, protein and drug interactions, cell-cell and viral-host communication, and vast social networks. Our technologies enable researchers to assemble and analyze these networks and to use them to better understand biological systems and, in particular, how they fail in disease. \nThe NRNB mentoring organization includes projects such as Cytoscape (https://cytoscape.org/), WikiPathways (https://wikipathways.org/), SBML (https://sbml.org/), SBGN (https://sbgn.github.io/) and others. This is a great opportunity to work at the intersection of biology and computing! For example, Cytoscape is downloaded over 24,000 times per month by researchers. We take mentoring seriously and are proud of our 96% success rate (https://nrnb.org/alumni.html#gsoc-tab) with former students and projects. But don’t take our word for it, read testimonials from prior NRNB students (https://nrnb.org/testimonials.html#student-tab) and mentors (https://nrnb.org/testimonials.html#mentor-tab). \nFind out more about the software projects being developed in coordination with NRNB at our website (https://nrnb.org). Also refer to our GSoC page (https://nrnb.org/gsoc.html) for additional resources and application tips.", + "tech_tags": [ + "python", + "javascript", + "html", + "css", + "LLM" + ], + "topic_tags": [ + "machine learning", + "web application", + "data science", + "scientific computing", + "network biology" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://github.com/nrnb/GoogleSummerOfCode/issues" + }, + { + "name": "email", + "value": "kristina.hanspers@gladstone.ucsf.edu" + }, + { + "name": "mailingList", + "value": "https://groups.google.com/g/cytoscape-helpdesk" + }, + { + "name": "blog", + "value": "https://groups.google.com/g/cytoscape-helpdesk" + } + ], + "source_code": "https://github.com/nrnb", + "ideas_link": "https://github.com/nrnb/GoogleSummerOfCode/issues", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://github.com/nrnb/GoogleSummerOfCode/issues" + }, + { + "name": "email", + "value": "kristina.hanspers@gladstone.ucsf.edu" + }, + { + "name": "mailingList", + "value": "https://groups.google.com/g/cytoscape-helpdesk" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://groups.google.com/g/cytoscape-helpdesk" + } + ] + }, + { + "name": "Tiled", + "slug": "tiled", + "logo_url": "https://summerofcode.withgoogle.com/media/org/tiled/bat2ba3t9fujdzyn-360.png", + "website_url": "https://www.mapeditor.org", + "tagline": "A flexible level editor for everyone!", + "license": "GPL-2.0", + "categories": [ + "End user applications" + ], + "contributor_guidance_url": "https://github.com/mapeditor/tiled/wiki/GSoC-2026#application-process", + "description": "Tiled is a 2D engine-agnostic level editor for games. Its primary feature is to edit different types of tile maps, but it also supports free image placement as well as powerful ways to annotate levels with extra information used by the game. Tiled focuses on general flexibility while trying to stay intuitive.", + "tech_tags": [ + "c++", + "qt" + ], + "topic_tags": [ + "games", + "Level Editor" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://discourse.mapeditor.org/t/google-summer-of-code-2026/7732" + }, + { + "name": "chat", + "value": "https://discord.gg/39wbTv7" + }, + { + "name": "email", + "value": "bjorn@mapeditor.org" + }, + { + "name": "twitter", + "value": "https://x.com/TiledApp" + }, + { + "name": "twitter", + "value": "https://floss.social/@tiled" + } + ], + "source_code": "https://github.com/mapeditor/tiled", + "ideas_link": "https://github.com/mapeditor/tiled/wiki/GSoC-2026#project-ideas", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://discourse.mapeditor.org/t/google-summer-of-code-2026/7732" + }, + { + "name": "chat", + "value": "https://discord.gg/39wbTv7" + }, + { + "name": "email", + "value": "bjorn@mapeditor.org" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://x.com/TiledApp" + }, + { + "name": "twitter", + "value": "https://floss.social/@tiled" + } + ] + }, + { + "name": "Ste||ar group", + "slug": "stear-group", + "logo_url": "https://summerofcode.withgoogle.com/media/org/stear-group/sebxbtinyakvrevb-360.png", + "website_url": "http://stellar-group.org/", + "tagline": "Shaping a Scalable Future", + "license": "BSL-1.0", + "categories": [ + "Science and medicine", + "Programming languages" + ], + "contributor_guidance_url": "https://github.com/STEllAR-GROUP/hpx/wiki/GSoC-Submission-Template", + "description": "The STE||AR Group is an international team of researchers who understand that a new approach to parallel computation is needed. Our work is crafted around the idea that we need to invent new ways to more efficiently use the resources that we have and use the knowledge that we gain to help guide the creation of the machines of tomorrow. This organization aims to support, coordinate, and distribute research done in this area by creating a marketplace of ideas where concepts are debated and solutions are transparently developed.", + "tech_tags": [ + "c++", + "hpc" + ], + "topic_tags": [ + "library", + "optimization", + "parallel algorithms", + "hpx", + "application" + ], + "contact_links": [ + { + "name": "email", + "value": "https://mail.cct.lsu.edu/mailman/listinfo/hpx-users" + }, + { + "name": "chat", + "value": "https://github.com/STEllAR-GROUP/hpx/blob/master/.github/SUPPORT.md" + }, + { + "name": "chat", + "value": "https://discord.com/invite/Tn9QuzVjvy" + }, + { + "name": "blog", + "value": "https://github.com/STEllAR-GROUP/hpx" + } + ], + "source_code": "https://github.com/STEllAR-GROUP/hpx", + "ideas_link": "https://github.com/STEllAR-GROUP/hpx/wiki/Google-Summer-of-Code-(GSoC)-2026#2026-hpx-project-ideas", + "direct_comm_methods": [ + { + "name": "email", + "value": "https://mail.cct.lsu.edu/mailman/listinfo/hpx-users" + }, + { + "name": "chat", + "value": "https://github.com/STEllAR-GROUP/hpx/blob/master/.github/SUPPORT.md" + }, + { + "name": "chat", + "value": "https://discord.com/invite/Tn9QuzVjvy" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://github.com/STEllAR-GROUP/hpx" + } + ] + }, + { + "name": "Open Transit Software Foundation", + "slug": "open-transit-software-foundation", + "logo_url": "https://summerofcode.withgoogle.com/media/org/open-transit-software-foundation/uz3p7k5vsxduhrhk-360.png", + "website_url": "https://opentransitsoftwarefoundation.org", + "tagline": "Help make public transit better", + "license": "Apache-2.0", + "categories": [ + "End user applications", + "Web" + ], + "contributor_guidance_url": "https://opentransitsoftwarefoundation.org/2024/02/how-to-craft-a-successful-gsoc-proposal/", + "description": "We are the home for the OneBusAway project. OneBusAway is a suite of open source transit information tools based on real-time vehicle data.\n\nOneBusAway is a suite of open source transit information tools that enable transit agencies to provide real-time vehicle locations, alerts, and arrival information to riders, with iOS and Android apps, a web platform, and robust APIs, as well as back office support. OneBusAway lets transit agencies be in control, without needing to build everything themselves and without cutting corners.", + "tech_tags": [ + "android", + "java", + "golang", + "docker", + "ios" + ], + "topic_tags": [ + "apps", + "Transit", + "travel", + "bus" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://join.slack.com/t/onebusaway/shared_invite/zt-2jve26vs6-~qXjgxv_HkTliUKhAnuSDA" + }, + { + "name": "blog", + "value": "https://opentransitsoftwarefoundation.org/blog/" + } + ], + "source_code": "https://github.com/onebusaway", + "ideas_link": "https://opentransitsoftwarefoundation.org/2026/01/google-summer-of-code-2026-project-ideas/", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://join.slack.com/t/onebusaway/shared_invite/zt-2jve26vs6-~qXjgxv_HkTliUKhAnuSDA" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://opentransitsoftwarefoundation.org/blog/" + } + ] + }, + { + "name": "Haskell.org", + "slug": "haskellorg", + "logo_url": "https://summerofcode.withgoogle.com/media/org/haskellorg/ivy7hfguqhoz8onp-360.png", + "website_url": "https://haskell.org/", + "tagline": "Purely functional programming language", + "license": "BSD-3-Clause", + "categories": [ + "Programming languages", + "Development tools" + ], + "contributor_guidance_url": "https://summer.haskell.org/tips.html", + "description": "Haskell is an advanced, general-purpose, purely functional programming language. It has a strong, static type system with Hindley-Milner type inference.\n\nThe language natively supports lazy evaluation, and lets you track side effects in the type system. This leads to a concise and declarative style of programming, which differs quite a bit from conventional languages. By controlling side effects and working with immutable data, the programmer can avoid whole classes of bugs.\n\nHaskell generally compiles to fast, native code, but it can also be compiled to other targets like JavaScript (through GHCJS) or LLVM.\n\nIn Google Summer of Code, we attempt to improve not only the language, but the whole ecosystem. This includes (aside from the language itself):\n\n- Compilers\n- Commonly used libraries\n- Commonly used applications written in Haskell\n- Profilers, debuggers and other tools\n- Package managers and infrastructure\n\nWe have compiled an ideas list together with long-time Haskell users, compiler contributors and researchers, and as such we believe these are important projects for the industry and academia both.", + "tech_tags": [ + "haskell", + "ghc" + ], + "topic_tags": [ + "compilers", + "programming languages", + "functional programming", + "programming tools" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://discourse.haskell.org/" + }, + { + "name": "email", + "value": "committee@haskell.org" + }, + { + "name": "chat", + "value": "https://www.haskell.org/irc/" + }, + { + "name": "twitter", + "value": "https://twitter.com/HaskellOrg" + }, + { + "name": "facebook", + "value": "https://www.facebook.com/HaskellOrg/" + } + ], + "source_code": "https://github.com/haskell/", + "ideas_link": "https://summer.haskell.org/ideas.html", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://discourse.haskell.org/" + }, + { + "name": "email", + "value": "committee@haskell.org" + }, + { + "name": "chat", + "value": "https://www.haskell.org/irc/" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/HaskellOrg" + }, + { + "name": "facebook", + "value": "https://www.facebook.com/HaskellOrg/" + } + ] + }, + { + "name": "Open Robotics", + "slug": "open-robotics", + "logo_url": "https://summerofcode.withgoogle.com/media/org/open-robotics/6pg3nwfpieq1qmqw-360.png", + "website_url": "https://www.openrobotics.org/", + "tagline": "Open source robotics and a whole lot more!", + "license": "Apache-2.0", + "categories": [ + "End user applications", + "Artificial Intelligence" + ], + "contributor_guidance_url": "https://github.com/osrf/osrf_wiki/wiki/GSoC-2026#application-template-for-students", + "description": "Open Robotics supports the development, distribution, and adoption of open source software for use in robotics research, education, and product development. Open Robotics is an umbrella organization encompassing five projects: \n- Robot Operating System (ROS), a robot development framework.\n- Gazebo, a robot simulation framework.\n- Open-RMF, a framework for coordinating multiple fleets of robots.\n- ros-controls, an extensive control framework built for ROS.\n- The ROS Infrastructure that is used to build and distribute ROS packages.", + "tech_tags": [ + "python", + "ros", + "gazebo", + "c++", + "Bevy" + ], + "topic_tags": [ + "robotics", + "simulation", + "Hardware Control", + "fleet management", + "buildfarms" + ], + "contact_links": [ + { + "name": "email", + "value": "gsoc@openrobotics.org" + }, + { + "name": "blog", + "value": "https://www.openrobotics.org/blog" + }, + { + "name": "twitter", + "value": "https://openrobotics.zulipchat.com/" + }, + { + "name": "blog", + "value": "https://discourse.openrobotics.org/" + } + ], + "source_code": "https://github.com/openrobotics", + "ideas_link": "https://github.com/osrf/osrf_wiki/wiki/GSoC-2026", + "direct_comm_methods": [ + { + "name": "email", + "value": "gsoc@openrobotics.org" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://www.openrobotics.org/blog" + }, + { + "name": "twitter", + "value": "https://openrobotics.zulipchat.com/" + }, + { + "name": "blog", + "value": "https://discourse.openrobotics.org/" + } + ] + }, + { + "name": "52°North Spatial Information Research GmbH", + "slug": "52north-spatial-information-research-gmbh", + "logo_url": "https://summerofcode.withgoogle.com/media/org/52north-spatial-information-research-gmbh/gzamo2sqfwcmcobt-360.png", + "website_url": "https://52north.org/", + "tagline": "Innovative ideas & technologies in geoinformatics", + "license": "GPL-2.0", + "categories": [ + "Science and medicine", + "Data" + ], + "contributor_guidance_url": "https://52north.org/software/contribute/", + "description": "52°North is an open source initiative in the field of geoinformatics. Core topics of our activities are for example sensor web, web-based geoprocessing and earth observation.", + "tech_tags": [ + "javascript", + "android", + "java", + "web services", + "ogc standards" + ], + "topic_tags": [ + "citizen science", + "spatial information infrastructures", + "open standards", + "data analytics", + "Geoinformation" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "gsoc-52n@52north.org" + }, + { + "name": "chat", + "value": "https://52n-gsoc.slack.com/ssb/redirect" + }, + { + "name": "email", + "value": "gsoc@52north.org" + }, + { + "name": "twitter", + "value": "https://twitter.com/fivetwon" + }, + { + "name": "blog", + "value": "https://blog.52north.org/" + } + ], + "source_code": "https://github.com/52North", + "ideas_link": "https://52north.org/outreach-dissemination/google-summer-of-code/project-ideas/", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "gsoc-52n@52north.org" + }, + { + "name": "chat", + "value": "https://52n-gsoc.slack.com/ssb/redirect" + }, + { + "name": "email", + "value": "gsoc@52north.org" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/fivetwon" + }, + { + "name": "blog", + "value": "https://blog.52north.org/" + } + ] + }, + { + "name": "OpenVINO Toolkit", + "slug": "openvino-toolkit", + "logo_url": "https://summerofcode.withgoogle.com/media/org/openvino-toolkit/ivzvok335ujezk2z-360.png", + "website_url": "https://docs.openvino.ai/", + "tagline": "Make AI inference faster and easier to deploy!", + "license": "Apache-2.0", + "categories": [ + "Development tools", + "Artificial Intelligence" + ], + "contributor_guidance_url": "https://github.com/openvinotoolkit/openvino/wiki/Google-Summer-Of-Code#application-template", + "description": "OpenVINO is an open‑source toolkit designed to optimize and deploy deep learning models from cloud to edge. It accelerates inference for a wide range of use cases—including computer vision, generative AI, and agentic AI—supporting models from popular frameworks such as PyTorch, TensorFlow, ONNX, and more. With OpenVINO, you can convert and optimize models, then deploy them across diverse Intel hardware and environments, whether on-premises, at the edge, on AI PCs, or in the cloud.", + "tech_tags": [ + "python", + "c++", + "arm", + "x86" + ], + "topic_tags": [ + "ai", + "inference", + "gen ai", + "Agentic AI", + "Model Serving" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://github.com/openvinotoolkit/openvino/discussions/categories/google-summer-of-code" + }, + { + "name": "blog", + "value": "https://medium.com/openvino-toolkit" + } + ], + "source_code": "https://github.com/openvinotoolkit", + "ideas_link": "https://github.com/openvinotoolkit/openvino/wiki/Google-Summer-Of-Code#project-ideas-for-2026", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://github.com/openvinotoolkit/openvino/discussions/categories/google-summer-of-code" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://medium.com/openvino-toolkit" + } + ] + }, + { + "name": "D Language Foundation", + "slug": "d-language-foundation", + "logo_url": "https://summerofcode.withgoogle.com/media/org/d-language-foundation/u25qvh5ljfkkhkjj.png", + "website_url": "https://dlang.org/", + "tagline": "Write fast, read fast, and run fast.", + "license": "BSL-1.0", + "categories": [ + "Programming languages", + "Development tools" + ], + "contributor_guidance_url": "https://dlang.github.io/GSoC/#become-a-dlang-gsocc-contributor", + "description": "The D Language Foundation manages the D programming language and its entire ecosystem.", + "tech_tags": [ + "linux", + "make", + "d", + "windows", + "C\\C++" + ], + "topic_tags": [ + "operating systems", + "programming languages", + "algorithms", + "data structures", + "optimizations" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://forum.dlang.org/" + }, + { + "name": "email", + "value": "razvan.nitu@dlang.org" + }, + { + "name": "chat", + "value": "https://dlang.slack.com" + }, + { + "name": "chat", + "value": "https://discord.gg/tw2c6mcKAp" + }, + { + "name": "twitter", + "value": "https://twitter.com/D_Programming" + }, + { + "name": "facebook", + "value": "https://www.facebook.com/dlang.org/" + }, + { + "name": "blog", + "value": "https://dlang.org/blog/" + } + ], + "source_code": "https://github.com/dlang", + "ideas_link": "https://dlang.github.io/GSoC/gsoc-2026/project-ideas.html", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://forum.dlang.org/" + }, + { + "name": "email", + "value": "razvan.nitu@dlang.org" + }, + { + "name": "chat", + "value": "https://dlang.slack.com" + }, + { + "name": "chat", + "value": "https://discord.gg/tw2c6mcKAp" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/D_Programming" + }, + { + "name": "facebook", + "value": "https://www.facebook.com/dlang.org/" + }, + { + "name": "blog", + "value": "https://dlang.org/blog/" + } + ] + }, + { + "name": "CCExtractor Development", + "slug": "ccextractor-development", + "logo_url": "https://summerofcode.withgoogle.com/media/org/ccextractor-development/xjqt8fksfnyqyqrd-360.png", + "website_url": "https://www.ccextractor.org", + "tagline": "TV, Rust, Flutter, Linux, VR and C. In any order.", + "license": "GPL-2.0", + "categories": [ + "End user applications", + "Media" + ], + "contributor_guidance_url": "https://ccextractor.org/docs/ideas_page_for_summer_of_code_2025/#your-proposal", + "description": "CCExtractor Development is the creator of the de-facto captions extraction tool - CCExtractor. It is the one tool that is free, portable, open source and community managed that can take a recording from a TV show and generate an external subtitle file for it.\n\nIf you regularly watch content with subtitles you download from fan sites - you should know that the source file is most likely generated by CCExtractor. If you are a student in a university that uses subtitles for natural language study, you should know that most likely we are involved somehow.\n\nWhile we already support subtitles from North America, Europe, Australia and more, our world map is not yet complete. We are actively looking for students that want to help us fill the gaps. We also want to automate many of the processes that are currently done manually, such as achieving perfect sync, our media file management.\n\nIn addition to continuously evolve our core tool, we have a growing number of new projects: support, AI, rclone, cloud, flutter, peer-to-peer and a few more that are starting to take shape.\n\nThe best part is - students have flexibility of choosing projects from a wide range of topics & technologies and even propose their own. We provide exceptional resources for students. Read more about the perks on our website.\n\nWe’re very excited to take part in GSoC for the 9th time. Most of our past students are still involved and are active in the community, which simply goes on to show how friendly and approachable is the environment. If you want to be a part of such community and help achieve our goals, come join our Slack group or mailing list!", + "tech_tags": [ + "c", + "linux", + "rust", + "flutter" + ], + "topic_tags": [ + "vr", + "linux", + "video", + "subtitles", + "mobile" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://ccextractor.org/public/general/support/" + }, + { + "name": "email", + "value": "gsoc@ccextractor.org" + }, + { + "name": "mailingList", + "value": "https://groups.google.com/g/ccextractor-dev" + } + ], + "source_code": "https://github.com/CCExtractor", + "ideas_link": "https://ccextractor.org/docs/ideas_page_for_summer_of_code_2026/", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://ccextractor.org/public/general/support/" + }, + { + "name": "email", + "value": "gsoc@ccextractor.org" + }, + { + "name": "mailingList", + "value": "https://groups.google.com/g/ccextractor-dev" + } + ], + "social_comm_methods": [] + }, + { + "name": "QEMU", + "slug": "qemu", + "logo_url": "https://summerofcode.withgoogle.com/media/org/qemu/gik5gsxljb3j1jx1-360.png", + "website_url": "https://qemu.org/", + "tagline": "Open source machine emulator and virtualizer", + "license": "GPL-2.0", + "categories": [ + "Infrastructure and cloud", + "Development tools" + ], + "contributor_guidance_url": "https://wiki.qemu.org/Google_Summer_of_Code_2026", + "description": "The QEMU Project includes the QEMU open source machine emulator and virtualizer and also acts as an umbrella organization for the KVM Linux kernel module and rust-vmm community.\n\nWhen used as a machine emulator, QEMU can run operating systems and programs made for one machine (e.g. an ARM board) on a different machine (e.g. your own PC). By using dynamic translation, it achieves very good performance.\n\nWhen used as a virtualizer, QEMU achieves near native performances by executing the guest code directly on the host CPU. QEMU supports virtualization when executing under the Xen hypervisor or using the KVM kernel module in Linux. When using KVM, QEMU can virtualize x86, ARM, server and embedded PowerPC, and S390 guests.", + "tech_tags": [ + "c", + "python", + "linux", + "rust" + ], + "topic_tags": [ + "systems programming", + "kernel", + "compiler", + "emulator", + "hypervisor" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://webchat.oftc.net/?channels=qemu-gsoc" + }, + { + "name": "email", + "value": "stefanha@gmail.com" + }, + { + "name": "blog", + "value": "https://qemu.org/blog" + } + ], + "source_code": "https://gitlab.com/qemu-project/qemu", + "ideas_link": "https://wiki.qemu.org/Google_Summer_of_Code_2026", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://webchat.oftc.net/?channels=qemu-gsoc" + }, + { + "name": "email", + "value": "stefanha@gmail.com" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://qemu.org/blog" + } + ] + }, + { + "name": "CNCF", + "slug": "cncf", + "logo_url": "https://summerofcode.withgoogle.com/media/org/cncf/jmxijrttlucfutel-360.png", + "website_url": "https://cncf.io", + "tagline": "Building sustainable ecosystems for cloud native", + "license": "Apache-2.0", + "categories": [ + "Data", + "Infrastructure and cloud" + ], + "contributor_guidance_url": "https://github.com/cncf/mentoring", + "description": "Cloud Native Computing Foundation (CNCF) serves as the vendor-neutral home for many of the fastest-growing open source projects, including Kubernetes, Prometheus, and Envoy.", + "tech_tags": [ + "prometheus", + "kubernetes", + "OpenTelemetry", + "envoy" + ], + "topic_tags": [ + "cloud", + "cloud native", + "observability" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://github.com/cncf/mentoring/discussions" + }, + { + "name": "email", + "value": "soc@cncf.io" + }, + { + "name": "twitter", + "value": "https://twitter.com/cloudnativefdn" + } + ], + "source_code": "https://github.com/cncf/", + "ideas_link": "https://github.com/cncf/mentoring/blob/main/programs/summerofcode/2026.md", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://github.com/cncf/mentoring/discussions" + }, + { + "name": "email", + "value": "soc@cncf.io" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/cloudnativefdn" + } + ] + }, + { + "name": "GNU Octave", + "slug": "gnu-octave", + "logo_url": "https://summerofcode.withgoogle.com/media/org/gnu-octave/0kc85jo6rl3eo2g0-360.png", + "website_url": "https://www.octave.org", + "tagline": "Free Your Numbers", + "license": "GPL-3.0", + "categories": [ + "Science and medicine", + "Programming languages" + ], + "contributor_guidance_url": "https://wiki.octave.org/Summer_of_Code_-_Getting_Started", + "description": "GNU Octave is a high-level interpreted language, primarily intended for numerical computations. It provides capabilities for the numerical solution of linear and nonlinear problems and for performing other numerical experiments. It also provides extensive graphics capabilities for data visualization and manipulation. Octave is normally used through its interactive command line interface, but it can also be used to write non-interactive programs. The Octave language is quite similar to Matlab so that most programs are easily portable.\n\nOctave is continually being upgraded. Student projects may also involve developing or upgrading Octave Forge packages, which can be loaded to provide additional specialized functions that supplement those provided in Core Octave.", + "tech_tags": [ + "c++", + "hg" + ], + "topic_tags": [ + "mathematics", + "scientific computing", + "numerical computation", + "numerical methods", + "matlab" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "https://octave.discourse.group/" + }, + { + "name": "blog", + "value": "https://octave.discourse.group/" + } + ], + "source_code": "https://hg.savannah.gnu.org/hgweb/octave", + "ideas_link": "https://wiki.octave.org/wiki/index.php?title=Summer_of_Code_-_Getting_Started#Suggested_projects", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "https://octave.discourse.group/" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://octave.discourse.group/" + } + ] + }, + { + "name": "Open Science Initiative for Perfusion Imaging", + "slug": "open-science-initiative-for-perfusion-imaging", + "logo_url": "https://summerofcode.withgoogle.com/media/org/open-science-initiative-for-perfusion-imaging/bxlqptrs5g0ovtqz-360.png", + "website_url": "https://osipi.ismrm.org/", + "tagline": "Open access resources for perfusion imaging", + "license": "Apache-2.0", + "categories": [ + "Science and medicine" + ], + "contributor_guidance_url": "https://docs.google.com/document/d/e/2PACX-1vSa8Nvl_Ays9ZL3nYO1UL4hSB9vG2QXfSzWcEaN4jnuWNRJ3Vj58YX0FWI02llw17JaC_jMquAmBoAk/pub", + "description": "Perfusion Magnetic Resonance Imaging (MRI) is a vital medical imaging technique that assesses blood flow in tissues and thus contributes crucial information for diagnosing conditions such as stroke, tumors, and neurological disorders. Unlike the standard MRI methods that are daily used in hospitals, raw perfusion MRI data require further processing and quantification. This requires dedicated software tools. However, the lack of standardization and the availability of standardized and tested analysis code makes perfusion MRI less accessible and hinders its widespread use. The ISMRM Open Science Initiative for Perfusion Imaging (OSIPI) aims to address this gap and create resources for best practices in perfusion MRI including software and data inventories, code repositories, challenges, and educational material.", + "tech_tags": [ + "python", + "github" + ], + "topic_tags": [ + "artificial intelligence", + "data visualization", + "data analysis", + "medical imaging", + "reproducible science" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://join.slack.com/t/osipi/shared_invite/zt-3ozv2ba4i-KwIExrRmqd1riAC0icZrKw" + }, + { + "name": "email", + "value": "ismrmosipi@gmail.com" + }, + { + "name": "twitter", + "value": "https://twitter.com/OSIPI_ISMRM" + } + ], + "source_code": "https://github.com/OSIPI", + "ideas_link": "https://docs.google.com/document/d/e/2PACX-1vTs3n_pm3ZM7t-6rKooThwrBtCRQMCkYJcbIyl0ekhm5O4jBgC0BqdBDFKVUDhDvbFM1ShBoV3Q2pFM/pub", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://join.slack.com/t/osipi/shared_invite/zt-3ozv2ba4i-KwIExrRmqd1riAC0icZrKw" + }, + { + "name": "email", + "value": "ismrmosipi@gmail.com" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/OSIPI_ISMRM" + } + ] + }, + { + "name": "CRIU", + "slug": "criu", + "logo_url": "https://summerofcode.withgoogle.com/media/org/criu/ypjxpancpwtdf698-360.png", + "website_url": "https://criu.org", + "tagline": "Chekpoint/Restore for Linux tasks and containers", + "license": "GPL-2.0", + "categories": [ + "Operating systems", + "Infrastructure and cloud" + ], + "contributor_guidance_url": "https://github.com/checkpoint-restore/criu/blob/criu-dev/CONTRIBUTING.md", + "description": "CRIU (stands for Checkpoint/Restore In Userspace), is a Linux software. It can freeze a running container (or an individual application) and checkpoint its state to disk. The data saved can be used to restore the application and run it exactly as it was during the time of the freeze. Using this functionality, application or container live migration, snapshots, remote debugging, and many other things are now possible. \nCRIU is packaged for all leading Linux distributions and it is integrated wit lots of popular projects such as Docker, Podman, LXC/LXD, OpenVZ, runc, open-mpi and others", + "tech_tags": [ + "c", + "python", + "linux", + "go" + ], + "topic_tags": [ + "cloud", + "containers", + "Checkpoint/Restore" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "criu@lists.linux.dev" + }, + { + "name": "chat", + "value": "https://gitter.im/save-restore/CRIU" + }, + { + "name": "blog", + "value": "https://criu.org" + } + ], + "source_code": "https://github.com/checkpoint-restore/criu", + "ideas_link": "https://criu.org/Google_Summer_of_Code_Ideas", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "criu@lists.linux.dev" + }, + { + "name": "chat", + "value": "https://gitter.im/save-restore/CRIU" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://criu.org" + } + ] + }, + { + "name": "Wikimedia Foundation", + "slug": "wikimedia-foundation-nd", + "logo_url": "https://summerofcode.withgoogle.com/media/org/wikimedia-foundation-nd/2e6sdwa8tksr5sg2-360.png", + "website_url": "http://wikimediafoundation.org/", + "tagline": "Bringing free educational content to the world", + "license": "GPL-2.0", + "categories": [ + "Web" + ], + "contributor_guidance_url": "https://www.mediawiki.org/wiki/Google_Summer_of_Code/Participants#Application_process_steps", + "description": "Wikimedia strives to bring about a world in which every single human being can freely share in the sum of all knowledge; through various projects, chapters, and the support structure of the non-profit Wikimedia Foundation. Wikimedia officially supports 13 projects, including Wikipedia, the seventh most popular site on the internet. Wikipedia receives over 20 billion global page views every month and is available in over 300 languages. The tech behind it ensures that our projects are fast, reliable, and open to all. We design and build the open-source technology that powers Wikimedia projects from hosting Wikipedia to creating edit-checking artificial intelligence (AI). Community volunteers and Foundation technologists collaborate on MediaWiki, which makes sharing free knowledge possible. Read more about Wikimedia on our homepage: https://wikimediafoundation.org/", + "tech_tags": [ + "javascript", + "html", + "php", + "css", + "Phyton" + ], + "topic_tags": [ + "semantic web", + "wikipedia", + "wikimedia", + "mediawiki", + "i18n" + ], + "contact_links": [ + { + "name": "chat", + "value": "https://wikimedia.zulipchat.com/#narrow/channel/561533-GSoC2026" + }, + { + "name": "twitter", + "value": "https://twitter.com/wikimediatech" + } + ], + "source_code": "https://gerrit.wikimedia.org/r/", + "ideas_link": "https://www.mediawiki.org/wiki/Google_Summer_of_Code/2026#Projects", + "direct_comm_methods": [ + { + "name": "chat", + "value": "https://wikimedia.zulipchat.com/#narrow/channel/561533-GSoC2026" + } + ], + "social_comm_methods": [ + { + "name": "twitter", + "value": "https://twitter.com/wikimediatech" + } + ] + }, + { + "name": "MalariaGEN", + "slug": "malariagen", + "logo_url": "https://summerofcode.withgoogle.com/media/org/malariagen/8dgzolp37fdiwm5h-360.png", + "website_url": "https://www.malariagen.net/", + "tagline": "The Malaria Genomic Epidemiology Network", + "license": "MIT", + "categories": [ + "Science and medicine", + "Data" + ], + "contributor_guidance_url": "https://docs.google.com/document/d/178LEZEsC0xbknHDId83k5XzIDRtnyVw243Ta0fhlvPM/edit?usp=sharing", + "description": "MalariaGEN is a global network of global partners who share and integrate data relevant to inform malaria surveillance, our mission is to generate insights and tools that bridge the gaps for analysts in malaria endemic settings to use their data meaningfully to inform public health efforts. We build and optimise data resources and analytical tools to run directly in the cloud. Our flagship project is the Vector Observatory, which includes whole-genome sequence data for over 30,000 mosquitoes, integrating data from 70 partners across the globe from over 17 different mosquito species -- this is the largest resource on genetic variation data for any multicellular organism (other than humans!). Our goal is to enable analysts, scientists, students and public health practitioners to access these data without the need for any dedicated compute infrastructure, by optimising our resources to run within free compute environments (a big shout to Google Colab!) and by developing training resources that support partners to get confident with using cloud-native data and resources for their analysis.", + "tech_tags": [ + "python", + "GCS" + ], + "topic_tags": [ + "machine learning", + "genomics", + "big data", + "cloud", + "analytics" + ], + "contact_links": [ + { + "name": "mailingList", + "value": "support@malariagen.net" + }, + { + "name": "blog", + "value": "https://github.com/malariagen/malariagen-data-python/discussions" + } + ], + "source_code": "https://github.com/malariagen/", + "ideas_link": "https://docs.google.com/document/d/178LEZEsC0xbknHDId83k5XzIDRtnyVw243Ta0fhlvPM/edit?tab=t.0", + "direct_comm_methods": [ + { + "name": "mailingList", + "value": "support@malariagen.net" + } + ], + "social_comm_methods": [ + { + "name": "blog", + "value": "https://github.com/malariagen/malariagen-data-python/discussions" + } + ] + } +] \ No newline at end of file diff --git a/new-api-details/yearly/google-summer-of-code-2026.json b/new-api-details/yearly/google-summer-of-code-2026.json new file mode 100644 index 00000000..ee5711cb --- /dev/null +++ b/new-api-details/yearly/google-summer-of-code-2026.json @@ -0,0 +1,1997 @@ +{ + "year": 2026, + "slug": "google-summer-of-code-2026", + "title": "Google Summer of Code 2026", + "subtitle": "Organizations, projects, technologies, and participation insights", + "description": "A complete overview of Google Summer of Code 2026 including participating organizations, projects, technology trends, and key statistics.", + "published_at": "2026-02-19T13:35:54.193Z", + "finalized": false, + "metrics": { + "total_organizations": 185, + "total_projects": 0, + "total_participants": 0, + "total_mentors": 0, + "first_time_organizations": 18, + "returning_organizations": 167, + "countries_participated": null, + "avg_projects_per_org": 0, + "avg_mentors_per_org": 0, + "avg_participants_per_org": 0 + }, + "organizations": [ + { + "slug": "52north-spatial-information-research-gmbh", + "name": "52°North Spatial Information Research GmbH", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/52north-spatial-information-research-gmbh.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "aboutcode", + "name": "AboutCode", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/aboutcode.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "accord-project", + "name": "Accord Project", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/accord-project.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "aflplusplus", + "name": "AFLplusplus", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/aflplusplus.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "alaska", + "name": "Alaska", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/alaska.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "ankidroid", + "name": "AnkiDroid", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ankidroid.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "aossie", + "name": "AOSSIE", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/aossie.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "apache-software-foundation", + "name": "Apache Software Foundation", + "logo_url": "https://summerofcode.withgoogle.com/media/org/apache-software-foundation/hq22fwtmvdfjnsh9-360.png", + "project_count": 0, + "is_first_time": true + }, + { + "slug": "api-dash", + "name": "API Dash", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/api-dash.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "ardupilot", + "name": "ArduPilot", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ardupilot.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "blender-foundation", + "name": "Blender Foundation", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/blender-foundation.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "boa", + "name": "Boa", + "logo_url": "https://summerofcode.withgoogle.com/media/org/boa/vhimc4zkw6j9t8wm-360.png", + "project_count": 0, + "is_first_time": true + }, + { + "slug": "brl-cad", + "name": "BRL-CAD", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/brl-cad.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "c2si", + "name": "C2SI", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/c2si.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "cbioportal-for-cancer-genomics", + "name": "cBioPortal for Cancer Genomics", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cbioportal-for-cancer-genomics.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "ccextractor-development", + "name": "CCExtractor Development", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ccextractor-development.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "ceph-foundation", + "name": "Ceph Foundation", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ceph-foundation.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "cern-hsf", + "name": "CERN-HSF", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cern-hsf.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "cgal-project", + "name": "CGAL Project", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cgal-project.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "checkstyle", + "name": "checkstyle", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/checkstyle.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "circuitverseorg", + "name": "CircuitVerse.org", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/circuitverseorg.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "cncf", + "name": "CNCF", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cncf.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "criu", + "name": "CRIU", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/criu.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "cuneiform-digital-library-initiative-cdli", + "name": "Cuneiform Digital Library Initiative (CDLI)", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/cuneiform-digital-library-initiative-cdli.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "d-language-foundation", + "name": "D Language Foundation", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/d-language-foundation.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "dart", + "name": "Dart", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/dart.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "data-for-the-common-good", + "name": "Data for the Common Good", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/data-for-the-common-good.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "dbpedia", + "name": "DBpedia", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/dbpedia.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "debian", + "name": "Debian", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/debian.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "deepchem", + "name": "DeepChem", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/deepchem.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "django-software-foundation", + "name": "Django Software Foundation", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/django-software-foundation.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "dora-rs", + "name": "dora-rs", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/dora-rs.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "drupal-association", + "name": "Drupal Association", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/drupal-association.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "eclipse-foundation", + "name": "Eclipse Foundation", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/eclipse-foundation.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "erofs-filesystem", + "name": "EROFS filesystem", + "logo_url": "https://summerofcode.withgoogle.com/media/org/erofs-filesystem/qrkpvwkzjqmwoyau-360.png", + "project_count": 0, + "is_first_time": true + }, + { + "slug": "ffmpeg", + "name": "FFmpeg", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ffmpeg.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "flare", + "name": "FLARE", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/flare.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "fortran-lang", + "name": "Fortran-lang", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/fortran-lang.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "fossasia", + "name": "FOSSASIA", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/fossasia.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "fossology", + "name": "FOSSology", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/fossology.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "free-and-open-source-silicon-foundation", + "name": "Free and Open Source Silicon Foundation", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/free-and-open-source-silicon-foundation.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "freecad", + "name": "FreeCAD", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/freecad.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "gambit-the-package-for-computation-in-game-theory", + "name": "Gambit: The package for computation in game theory", + "logo_url": "https://summerofcode.withgoogle.com/media/org/gambit-the-package-for-computation-in-game-theory/09u5sma4pizmwbqt-360.png", + "project_count": 0, + "is_first_time": true + }, + { + "slug": "gemini-cli", + "name": "Gemini CLI", + "logo_url": "https://summerofcode.withgoogle.com/media/org/gemini-cli/mhi8cx7tyjt91i6n-360.png", + "project_count": 0, + "is_first_time": true + }, + { + "slug": "genome-assembly-and-annotation", + "name": "Genome Assembly and Annotation", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/genome-assembly-and-annotation.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "geomscale", + "name": "GeomScale", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/geomscale.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "german-center-for-open-source-ai", + "name": "German Center for Open Source AI", + "logo_url": "https://summerofcode.withgoogle.com/media/org/german-center-for-open-source-ai/mir4i7v7wopcc7wn-360.png", + "project_count": 0, + "is_first_time": true + }, + { + "slug": "git", + "name": "Git", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/git.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "global-alliance-for-genomics-and-health", + "name": "Global Alliance for Genomics and Health", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/global-alliance-for-genomics-and-health.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "gnome-foundation", + "name": "GNOME Foundation", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnome-foundation.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "gnu-compiler-collection-gcc", + "name": "GNU Compiler Collection (GCC)", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnu-compiler-collection-gcc.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "gnu-image-manipulation-program", + "name": "GNU Image Manipulation Program", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnu-image-manipulation-program.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "gnu-mailman", + "name": "GNU Mailman", + "logo_url": "https://summerofcode.withgoogle.com/media/org/gnu-mailman/cg5sxkouo8rjtjw2-360.png", + "project_count": 0, + "is_first_time": true + }, + { + "slug": "gnu-octave", + "name": "GNU Octave", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnu-octave.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "gnu-project", + "name": "GNU Project", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnu-project.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "gnu-radio", + "name": "GNU Radio", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gnu-radio.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "gprmax", + "name": "gprMax", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/gprmax.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "grame", + "name": "GRAME", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/grame.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "graphite", + "name": "Graphite", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/graphite.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "haiku", + "name": "Haiku", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/haiku.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "haskellorg", + "name": "Haskell.org", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/haskellorg.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "humanai", + "name": "HumanAI", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/humanai.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "incf", + "name": "INCF", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/incf.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "international-catrobat-association", + "name": "International Catrobat Association", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/international-catrobat-association.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "internet-archive", + "name": "Internet Archive", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/internet-archive.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "invesalius", + "name": "Invesalius", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/invesalius.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "ioos", + "name": "IOOS", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ioos.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "jabref-ev", + "name": "JabRef e.V.", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jabref-ev.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "jboss-community", + "name": "JBoss Community", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jboss-community.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "jderobot", + "name": "JdeRobot", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jderobot.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "jenkins", + "name": "Jenkins", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jenkins.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "jitsi", + "name": "Jitsi", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/jitsi.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "joomla", + "name": "Joomla!", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/joomla.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "joplin", + "name": "Joplin", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/joplin.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "json-schema", + "name": "JSON Schema", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/json-schema.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "kde-community", + "name": "KDE Community", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kde-community.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "kiwix", + "name": "Kiwix", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kiwix.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "kolibrios-project-team", + "name": "KolibriOS Project Team", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kolibrios-project-team.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "konflux", + "name": "Konflux", + "logo_url": "https://summerofcode.withgoogle.com/media/org/konflux/7znpk8j83biro6rn.png", + "project_count": 0, + "is_first_time": true + }, + { + "slug": "kornia", + "name": "Kornia", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kornia.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "kotlin-foundation", + "name": "Kotlin Foundation", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kotlin-foundation.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "kubeflow", + "name": "Kubeflow", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kubeflow.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "kubevirt", + "name": "KubeVirt", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/kubevirt.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "lablua", + "name": "LabLua", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/lablua.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "learning-equality", + "name": "Learning Equality", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/learning-equality.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "learning-unlimited", + "name": "Learning Unlimited", + "logo_url": "https://summerofcode.withgoogle.com/media/org/learning-unlimited/prqi7cnmji8guahm-360.png", + "project_count": 0, + "is_first_time": true + }, + { + "slug": "librecube-initiative", + "name": "LibreCube Initiative", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/librecube-initiative.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "librehealth", + "name": "LibreHealth", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/librehealth.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "libreoffice", + "name": "LibreOffice", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/libreoffice.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "libssh", + "name": "libssh", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/libssh.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "liquid-galaxy-project", + "name": "Liquid Galaxy project", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/liquid-galaxy-project.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "llvm-compiler-infrastructure", + "name": "LLVM Compiler Infrastructure", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/llvm-compiler-infrastructure.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "machine-learning-for-science-ml4sci", + "name": "Machine Learning for Science (ML4SCI)", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/machine-learning-for-science-ml4sci.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "malariagen", + "name": "MalariaGEN", + "logo_url": "https://summerofcode.withgoogle.com/media/org/malariagen/8dgzolp37fdiwm5h-360.png", + "project_count": 0, + "is_first_time": true + }, + { + "slug": "mariadb", + "name": "MariaDB", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mariadb.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "mdanalysis", + "name": "MDAnalysis", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mdanalysis.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "measurement-lab", + "name": "Measurement Lab", + "logo_url": "https://summerofcode.withgoogle.com/media/org/measurement-lab/0sttrnvo03uejp1z.png", + "project_count": 0, + "is_first_time": true + }, + { + "slug": "meshery", + "name": "Meshery", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/meshery.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "metabrainz-foundation-inc", + "name": "MetaBrainz Foundation Inc", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/metabrainz-foundation-inc.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "metacall", + "name": "MetaCall", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/metacall.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "metaflow", + "name": "Metaflow", + "logo_url": "https://summerofcode.withgoogle.com/media/org/metaflow/lxpx64opqtnss7yx-360.png", + "project_count": 0, + "is_first_time": true + }, + { + "slug": "metasploit", + "name": "Metasploit", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/metasploit.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "mit-app-inventor", + "name": "MIT App Inventor", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mit-app-inventor.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "mixxx", + "name": "Mixxx", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/mixxx.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "mllam", + "name": "MLLAM", + "logo_url": "https://summerofcode.withgoogle.com/media/org/mllam/ltm3mtlosvdcrw0c.png", + "project_count": 0, + "is_first_time": true + }, + { + "slug": "mofa-org", + "name": "MoFA Org", + "logo_url": "https://summerofcode.withgoogle.com/media/org/mofa-org/fa7e34trht3ou7yo-360.png", + "project_count": 0, + "is_first_time": true + }, + { + "slug": "moganlab", + "name": "MoganLab", + "logo_url": "https://summerofcode.withgoogle.com/media/org/moganlab/tuz5k2kmoivlkods-360.png", + "project_count": 0, + "is_first_time": true + }, + { + "slug": "national-resource-for-network-biology-nrnb", + "name": "National Resource for Network Biology (NRNB)", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/national-resource-for-network-biology-nrnb.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "neovim", + "name": "Neovim", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/neovim.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "neuroinformatics-unit", + "name": "Neuroinformatics Unit", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/neuroinformatics-unit.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "neutralinojs", + "name": "Neutralinojs", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/neutralinojs.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "nixos-foundation", + "name": "NixOS Foundation", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/nixos-foundation.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "numfocus", + "name": "NumFOCUS", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/numfocus.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "omegaup", + "name": "omegaUp", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/omegaup.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "open-food-facts", + "name": "Open Food Facts", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-food-facts.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "open-genome-informatics", + "name": "Open Genome Informatics", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-genome-informatics.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "open-healthcare-network", + "name": "Open HealthCare Network", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-healthcare-network.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "open-robotics", + "name": "Open Robotics", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-robotics.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "open-science-initiative-for-perfusion-imaging", + "name": "Open Science Initiative for Perfusion Imaging", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-science-initiative-for-perfusion-imaging.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "open-science-labs", + "name": "Open Science Labs", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-science-labs.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "open-technologies-alliance-gfoss", + "name": "Open Technologies Alliance - GFOSS", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-technologies-alliance-gfoss.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "open-transit-software-foundation", + "name": "Open Transit Software Foundation", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/open-transit-software-foundation.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "openafs", + "name": "OpenAFS", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/openafs.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "openastronomy", + "name": "OpenAstronomy", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/openastronomy.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "openelis-global", + "name": "OpenELIS Global", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/openelis-global.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "openmrs", + "name": "OpenMRS", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/openmrs.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "openms", + "name": "OpenMS", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/openms.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "openstreetmap", + "name": "OpenStreetMap", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/openstreetmap.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "opensuse-project", + "name": "openSUSE Project", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/opensuse-project.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "openvino-toolkit", + "name": "OpenVINO Toolkit", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/openvino-toolkit.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "openwisp", + "name": "OpenWISP", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/openwisp.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "oppia-foundation", + "name": "Oppia Foundation", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/oppia-foundation.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "osgeo-open-source-geospatial-foundation", + "name": "OSGeo (Open Source Geospatial Foundation)", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/osgeo-open-source-geospatial-foundation.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "owasp-foundation", + "name": "OWASP Foundation", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/owasp-foundation.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "pecan-project", + "name": "PEcAn Project", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/pecan-project.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "pharo-consortium", + "name": "Pharo Consortium", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/pharo-consortium.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "postgresql", + "name": "PostgreSQL", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/postgresql.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "precice", + "name": "preCICE", + "logo_url": "https://summerofcode.withgoogle.com/media/org/precice/19ymcw80uxn8g9ia-360.png", + "project_count": 0, + "is_first_time": true + }, + { + "slug": "processing-foundation", + "name": "Processing Foundation", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/processing-foundation.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "project-mesa", + "name": "Project Mesa", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/project-mesa.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "python-software-foundation", + "name": "Python Software Foundation", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/python-software-foundation.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "qc-devs", + "name": "QC-Devs", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/qc-devs.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "qemu", + "name": "QEMU", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/qemu.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "qubes-os", + "name": "Qubes OS", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/qubes-os.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "r-project-for-statistical-computing", + "name": "R project for statistical computing", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/r-project-for-statistical-computing.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "rizin", + "name": "Rizin", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/rizin.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "rocketchat", + "name": "rocket.chat", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/rocketchat.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "rtems-project", + "name": "RTEMS Project", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/rtems-project.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "ruby", + "name": "Ruby", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/ruby.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "sagemath", + "name": "SageMath", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/sagemath.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "scummvm", + "name": "ScummVM", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/scummvm.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "st-jude-childrens-research-hospital", + "name": "St. Jude Children's Research Hospital", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/st-jude-childrens-research-hospital.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "stdlib", + "name": "stdlib", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/stdlib.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "stear-group", + "name": "Ste||ar group", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/stear-group.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "stichting-su2", + "name": "Stichting SU2", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/stichting-su2.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "submitty", + "name": "Submitty", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/submitty.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "sugar-labs", + "name": "Sugar Labs", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/sugar-labs.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "sw360", + "name": "SW360", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/sw360.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "swift", + "name": "Swift", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/swift.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "sympy", + "name": "SymPy", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/sympy.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "synfig", + "name": "Synfig", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/synfig.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "tardis-rt-collaboration", + "name": "TARDIS RT Collaboration", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/tardis-rt-collaboration.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "the-freebsd-project", + "name": "The FreeBSD Project", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-freebsd-project.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "the-honeynet-project", + "name": "The Honeynet Project", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-honeynet-project.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "the-jpf-team", + "name": "The JPF team", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-jpf-team.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "the-julia-language", + "name": "The Julia Language", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-julia-language.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "the-libreswan-project", + "name": "The Libreswan Project", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-libreswan-project.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "the-linux-foundation", + "name": "The Linux Foundation", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-linux-foundation.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "the-mifos-initiative", + "name": "The Mifos Initiative", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-mifos-initiative.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "the-netbsd-foundation", + "name": "The NetBSD Foundation", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-netbsd-foundation.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "the-ns-3-network-simulator-project", + "name": "The ns-3 Network Simulator Project", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-ns-3-network-simulator-project.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "the-openroad-initiative", + "name": "The OpenROAD Initiative", + "logo_url": "https://summerofcode.withgoogle.com/media/org/the-openroad-initiative/wsxrroe08v4rdaga-360.png", + "project_count": 0, + "is_first_time": true + }, + { + "slug": "the-p4-language-consortium", + "name": "The P4 Language Consortium", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-p4-language-consortium.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "the-rust-foundation", + "name": "The Rust Foundation", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/the-rust-foundation.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "tiled", + "name": "Tiled", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/tiled.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "typelevel", + "name": "Typelevel", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/typelevel.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "uc-ospo", + "name": "UC OSPO", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/uc-ospo.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "unikraft", + "name": "Unikraft", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/unikraft.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "united-nations-office-of-information-communication-technology", + "name": "United Nations Office of Information Communication Technology", + "logo_url": "https://summerofcode.withgoogle.com/media/org/united-nations-office-of-information-communication-technology/bl0zv6y6mjmzuybz-360.png", + "project_count": 0, + "is_first_time": true + }, + { + "slug": "uramaki-lab", + "name": "Uramaki LAB", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/uramaki-lab.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "videolan", + "name": "VideoLAN", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/videolan.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "wagtail", + "name": "Wagtail", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/wagtail.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "webpack", + "name": "webpack", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/webpack.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "wikimedia-foundation", + "name": "Wikimedia Foundation", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/wikimedia-foundation.webp", + "project_count": 0, + "is_first_time": false + }, + { + "slug": "zulip", + "name": "Zulip", + "logo_url": "https://pub-268c3a1efc8b4f8a99115507a760ca14.r2.dev/zulip.webp", + "project_count": 0, + "is_first_time": false + } + ], + "projects": [], + "tech_stack": [ + { + "slug": "python", + "name": "Python", + "project_count": 123, + "org_count": 123 + }, + { + "slug": "javascript", + "name": "Javascript", + "project_count": 84, + "org_count": 84 + }, + { + "slug": "c++", + "name": "C++", + "project_count": 76, + "org_count": 76 + }, + { + "slug": "c", + "name": "C", + "project_count": 73, + "org_count": 73 + }, + { + "slug": "java", + "name": "Java", + "project_count": 40, + "org_count": 40 + }, + { + "slug": "android", + "name": "Android", + "project_count": 26, + "org_count": 26 + }, + { + "slug": "rust", + "name": "Rust", + "project_count": 23, + "org_count": 23 + }, + { + "slug": "html", + "name": "Html", + "project_count": 20, + "org_count": 20 + }, + { + "slug": "typescript", + "name": "Typescript", + "project_count": 20, + "org_count": 20 + }, + { + "slug": "php", + "name": "Php", + "project_count": 18, + "org_count": 18 + }, + { + "slug": "node.js", + "name": "Node.js", + "project_count": 17, + "org_count": 17 + }, + { + "slug": "css", + "name": "Css", + "project_count": 16, + "org_count": 16 + }, + { + "slug": "react", + "name": "React", + "project_count": 15, + "org_count": 15 + }, + { + "slug": "docker", + "name": "Docker", + "project_count": 15, + "org_count": 15 + }, + { + "slug": "mysql", + "name": "Mysql", + "project_count": 14, + "org_count": 14 + }, + { + "slug": "linux", + "name": "Linux", + "project_count": 14, + "org_count": 14 + }, + { + "slug": "django", + "name": "Django", + "project_count": 13, + "org_count": 13 + }, + { + "slug": "machine learning", + "name": "Machine learning", + "project_count": 13, + "org_count": 13 + }, + { + "slug": "qt", + "name": "Qt", + "project_count": 13, + "org_count": 13 + }, + { + "slug": "go", + "name": "Go", + "project_count": 13, + "org_count": 13 + } + ], + "participants": { + "total": 0, + "by_country": {} + }, + "mentors": { + "total": 0 + }, + "first_time_orgs": [ + { + "slug": "apache-software-foundation", + "name": "Apache Software Foundation", + "logo_url": "https://summerofcode.withgoogle.com/media/org/apache-software-foundation/hq22fwtmvdfjnsh9-360.png" + }, + { + "slug": "boa", + "name": "Boa", + "logo_url": "https://summerofcode.withgoogle.com/media/org/boa/vhimc4zkw6j9t8wm-360.png" + }, + { + "slug": "erofs-filesystem", + "name": "EROFS filesystem", + "logo_url": "https://summerofcode.withgoogle.com/media/org/erofs-filesystem/qrkpvwkzjqmwoyau-360.png" + }, + { + "slug": "gambit-the-package-for-computation-in-game-theory", + "name": "Gambit: The package for computation in game theory", + "logo_url": "https://summerofcode.withgoogle.com/media/org/gambit-the-package-for-computation-in-game-theory/09u5sma4pizmwbqt-360.png" + }, + { + "slug": "gemini-cli", + "name": "Gemini CLI", + "logo_url": "https://summerofcode.withgoogle.com/media/org/gemini-cli/mhi8cx7tyjt91i6n-360.png" + }, + { + "slug": "german-center-for-open-source-ai", + "name": "German Center for Open Source AI", + "logo_url": "https://summerofcode.withgoogle.com/media/org/german-center-for-open-source-ai/mir4i7v7wopcc7wn-360.png" + }, + { + "slug": "gnu-mailman", + "name": "GNU Mailman", + "logo_url": "https://summerofcode.withgoogle.com/media/org/gnu-mailman/cg5sxkouo8rjtjw2-360.png" + }, + { + "slug": "konflux", + "name": "Konflux", + "logo_url": "https://summerofcode.withgoogle.com/media/org/konflux/7znpk8j83biro6rn.png" + }, + { + "slug": "learning-unlimited", + "name": "Learning Unlimited", + "logo_url": "https://summerofcode.withgoogle.com/media/org/learning-unlimited/prqi7cnmji8guahm-360.png" + }, + { + "slug": "malariagen", + "name": "MalariaGEN", + "logo_url": "https://summerofcode.withgoogle.com/media/org/malariagen/8dgzolp37fdiwm5h-360.png" + }, + { + "slug": "measurement-lab", + "name": "Measurement Lab", + "logo_url": "https://summerofcode.withgoogle.com/media/org/measurement-lab/0sttrnvo03uejp1z.png" + }, + { + "slug": "metaflow", + "name": "Metaflow", + "logo_url": "https://summerofcode.withgoogle.com/media/org/metaflow/lxpx64opqtnss7yx-360.png" + }, + { + "slug": "mllam", + "name": "MLLAM", + "logo_url": "https://summerofcode.withgoogle.com/media/org/mllam/ltm3mtlosvdcrw0c.png" + }, + { + "slug": "mofa-org", + "name": "MoFA Org", + "logo_url": "https://summerofcode.withgoogle.com/media/org/mofa-org/fa7e34trht3ou7yo-360.png" + }, + { + "slug": "moganlab", + "name": "MoganLab", + "logo_url": "https://summerofcode.withgoogle.com/media/org/moganlab/tuz5k2kmoivlkods-360.png" + }, + { + "slug": "precice", + "name": "preCICE", + "logo_url": "https://summerofcode.withgoogle.com/media/org/precice/19ymcw80uxn8g9ia-360.png" + }, + { + "slug": "the-openroad-initiative", + "name": "The OpenROAD Initiative", + "logo_url": "https://summerofcode.withgoogle.com/media/org/the-openroad-initiative/wsxrroe08v4rdaga-360.png" + }, + { + "slug": "united-nations-office-of-information-communication-technology", + "name": "United Nations Office of Information Communication Technology", + "logo_url": "https://summerofcode.withgoogle.com/media/org/united-nations-office-of-information-communication-technology/bl0zv6y6mjmzuybz-360.png" + } + ], + "charts": { + "top_languages": [ + { + "label": "Python", + "slug": "python", + "value": 123, + "org_count": 123 + }, + { + "label": "Javascript", + "slug": "javascript", + "value": 84, + "org_count": 84 + }, + { + "label": "C++", + "slug": "c++", + "value": 76, + "org_count": 76 + }, + { + "label": "C", + "slug": "c", + "value": 73, + "org_count": 73 + }, + { + "label": "Java", + "slug": "java", + "value": 40, + "org_count": 40 + }, + { + "label": "Android", + "slug": "android", + "value": 26, + "org_count": 26 + }, + { + "label": "Rust", + "slug": "rust", + "value": 23, + "org_count": 23 + }, + { + "label": "Html", + "slug": "html", + "value": 20, + "org_count": 20 + }, + { + "label": "Typescript", + "slug": "typescript", + "value": 20, + "org_count": 20 + }, + { + "label": "Php", + "slug": "php", + "value": 18, + "org_count": 18 + }, + { + "label": "Node.js", + "slug": "node.js", + "value": 17, + "org_count": 17 + }, + { + "label": "Css", + "slug": "css", + "value": 16, + "org_count": 16 + }, + { + "label": "React", + "slug": "react", + "value": 15, + "org_count": 15 + }, + { + "label": "Docker", + "slug": "docker", + "value": 15, + "org_count": 15 + }, + { + "label": "Mysql", + "slug": "mysql", + "value": 14, + "org_count": 14 + }, + { + "label": "Linux", + "slug": "linux", + "value": 14, + "org_count": 14 + }, + { + "label": "Django", + "slug": "django", + "value": 13, + "org_count": 13 + }, + { + "label": "Machine learning", + "slug": "machine learning", + "value": 13, + "org_count": 13 + }, + { + "label": "Qt", + "slug": "qt", + "value": 13, + "org_count": 13 + }, + { + "label": "Go", + "slug": "go", + "value": 13, + "org_count": 13 + } + ], + "most_student_slots": [ + { + "label": "52°North Spatial Information Research GmbH", + "slug": "52north-spatial-information-research-gmbh", + "value": 0 + }, + { + "label": "AboutCode", + "slug": "aboutcode", + "value": 0 + }, + { + "label": "Accord Project", + "slug": "accord-project", + "value": 0 + }, + { + "label": "AFLplusplus", + "slug": "aflplusplus", + "value": 0 + }, + { + "label": "Alaska", + "slug": "alaska", + "value": 0 + }, + { + "label": "AnkiDroid", + "slug": "ankidroid", + "value": 0 + }, + { + "label": "AOSSIE", + "slug": "aossie", + "value": 0 + }, + { + "label": "Apache Software Foundation", + "slug": "apache-software-foundation", + "value": 0 + }, + { + "label": "API Dash", + "slug": "api-dash", + "value": 0 + }, + { + "label": "ArduPilot", + "slug": "ardupilot", + "value": 0 + }, + { + "label": "Blender Foundation", + "slug": "blender-foundation", + "value": 0 + }, + { + "label": "Boa", + "slug": "boa", + "value": 0 + }, + { + "label": "BRL-CAD", + "slug": "brl-cad", + "value": 0 + }, + { + "label": "C2SI", + "slug": "c2si", + "value": 0 + }, + { + "label": "cBioPortal for Cancer Genomics", + "slug": "cbioportal-for-cancer-genomics", + "value": 0 + }, + { + "label": "CCExtractor Development", + "slug": "ccextractor-development", + "value": 0 + }, + { + "label": "Ceph Foundation", + "slug": "ceph-foundation", + "value": 0 + }, + { + "label": "CERN-HSF", + "slug": "cern-hsf", + "value": 0 + }, + { + "label": "CGAL Project", + "slug": "cgal-project", + "value": 0 + }, + { + "label": "checkstyle", + "slug": "checkstyle", + "value": 0 + } + ], + "project_difficulty_distribution": { + "total": 0, + "data": [ + { + "label": "Beginner", + "value": 0 + }, + { + "label": "Intermediate", + "value": 0 + }, + { + "label": "Advanced", + "value": 0 + } + ] + }, + "orgs_with_most_projects": [ + { + "label": "52°North Spatial Information Research GmbH", + "slug": "52north-spatial-information-research-gmbh", + "value": 0 + }, + { + "label": "AboutCode", + "slug": "aboutcode", + "value": 0 + }, + { + "label": "Accord Project", + "slug": "accord-project", + "value": 0 + }, + { + "label": "AFLplusplus", + "slug": "aflplusplus", + "value": 0 + }, + { + "label": "Alaska", + "slug": "alaska", + "value": 0 + }, + { + "label": "AnkiDroid", + "slug": "ankidroid", + "value": 0 + }, + { + "label": "AOSSIE", + "slug": "aossie", + "value": 0 + }, + { + "label": "Apache Software Foundation", + "slug": "apache-software-foundation", + "value": 0 + }, + { + "label": "API Dash", + "slug": "api-dash", + "value": 0 + }, + { + "label": "ArduPilot", + "slug": "ardupilot", + "value": 0 + }, + { + "label": "Blender Foundation", + "slug": "blender-foundation", + "value": 0 + }, + { + "label": "Boa", + "slug": "boa", + "value": 0 + }, + { + "label": "BRL-CAD", + "slug": "brl-cad", + "value": 0 + }, + { + "label": "C2SI", + "slug": "c2si", + "value": 0 + }, + { + "label": "cBioPortal for Cancer Genomics", + "slug": "cbioportal-for-cancer-genomics", + "value": 0 + }, + { + "label": "CCExtractor Development", + "slug": "ccextractor-development", + "value": 0 + }, + { + "label": "Ceph Foundation", + "slug": "ceph-foundation", + "value": 0 + }, + { + "label": "CERN-HSF", + "slug": "cern-hsf", + "value": 0 + }, + { + "label": "CGAL Project", + "slug": "cgal-project", + "value": 0 + }, + { + "label": "checkstyle", + "slug": "checkstyle", + "value": 0 + } + ], + "highest_selections": { + "by_tech_stack": [ + { + "label": "Python", + "slug": "python", + "value": 123 + }, + { + "label": "Javascript", + "slug": "javascript", + "value": 84 + }, + { + "label": "C++", + "slug": "c++", + "value": 76 + }, + { + "label": "C", + "slug": "c", + "value": 73 + }, + { + "label": "Java", + "slug": "java", + "value": 40 + }, + { + "label": "Android", + "slug": "android", + "value": 26 + }, + { + "label": "Rust", + "slug": "rust", + "value": 23 + }, + { + "label": "Html", + "slug": "html", + "value": 20 + }, + { + "label": "Typescript", + "slug": "typescript", + "value": 20 + }, + { + "label": "Php", + "slug": "php", + "value": 18 + } + ], + "by_organization": [ + { + "label": "52°North Spatial Information Research GmbH", + "slug": "52north-spatial-information-research-gmbh", + "value": 0 + }, + { + "label": "AboutCode", + "slug": "aboutcode", + "value": 0 + }, + { + "label": "Accord Project", + "slug": "accord-project", + "value": 0 + }, + { + "label": "AFLplusplus", + "slug": "aflplusplus", + "value": 0 + }, + { + "label": "Alaska", + "slug": "alaska", + "value": 0 + }, + { + "label": "AnkiDroid", + "slug": "ankidroid", + "value": 0 + }, + { + "label": "AOSSIE", + "slug": "aossie", + "value": 0 + }, + { + "label": "Apache Software Foundation", + "slug": "apache-software-foundation", + "value": 0 + }, + { + "label": "API Dash", + "slug": "api-dash", + "value": 0 + }, + { + "label": "ArduPilot", + "slug": "ardupilot", + "value": 0 + } + ] + } + }, + "meta": { + "version": 1, + "generated_at": "2026-02-19T13:35:54.193Z", + "data_source": "json", + "notes": "Generated from org JSON files. Projects not yet available for 2026." + } +} \ No newline at end of file diff --git a/package.json b/package.json index 16db3ba9..38cba7fc 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,12 @@ "prepare": "husky", "generate:organizations": "node scripts/generate-organizations-data.js", "generate:tech-stack": "node scripts/generate-tech-stack-data.js", - "generate:topics": "node scripts/generate-topics-data.js" + "generate:topics": "node scripts/generate-topics-data.js", + "gsoc:fetch": "npx tsx scripts/fetch-year-data.ts", + "gsoc:transform": "npx tsx scripts/transform-year-organizations.ts", + "gsoc:yearly": "npx tsx scripts/generate-yearly-page-from-json.ts", + "gsoc:regen": "npx tsx scripts/regenerate-tech-topics-from-json.ts", + "gsoc:sync": "npx tsx scripts/fetch-year-data.ts && npx tsx scripts/transform-year-organizations.ts && npx tsx scripts/generate-yearly-page-from-json.ts && npx tsx scripts/regenerate-tech-topics-from-json.ts" }, "dependencies": { "@prisma/client": "5.22.0", diff --git a/scripts/fetch-2026-data.ts b/scripts/fetch-2026-data.ts new file mode 100644 index 00000000..28801830 --- /dev/null +++ b/scripts/fetch-2026-data.ts @@ -0,0 +1,46 @@ +import fs from "fs"; +import path from "path"; + +const fetch2026Data = async () => { + const url = + "https://summerofcode.withgoogle.com/api/program/2026/organizations/"; + + const response = await fetch(url); + + if (!response.ok) { + throw new Error( + `Failed to fetch GSoC 2026 organizations: ${response.status} ${response.statusText}` + ); + } + + const data = await response.json(); + + const outputDir = path.join( + process.cwd(), + "new-api-details", + "yearly" + ); + + // create folder if it does not exist + if (!fs.existsSync(outputDir)) { + fs.mkdirSync(outputDir, { recursive: true }); + } + + const outputFile = path.join( + outputDir, + "google-summer-of-code-2026-organizations-raw.json" + ); + + fs.writeFileSync(outputFile, JSON.stringify(data, null, 2)); + + console.log( + "✅ Saved GSoC 2026 organizations data to:", + outputFile + ); +}; + +fetch2026Data().catch((err) => { + console.error("❌ Error fetching GSoC 2026 data"); + console.error(err); + process.exit(1); +}); diff --git a/scripts/fetch-year-data.ts b/scripts/fetch-year-data.ts new file mode 100644 index 00000000..d85a4c8c --- /dev/null +++ b/scripts/fetch-year-data.ts @@ -0,0 +1,61 @@ +/** + * Fetch raw GSoC organization data from Google's API for any year. + * + * Writes: + * new-api-details/yearly/google-summer-of-code-{year}-organizations-raw.json + * + * Usage: + * npx tsx scripts/fetch-year-data.ts --year 2026 + * npx tsx scripts/fetch-year-data.ts --year 2027 + * npx tsx scripts/fetch-year-data.ts (defaults to current year) + */ + +import fs from "fs"; +import path from "path"; + +const args = process.argv.slice(2); +const yearFlagIdx = args.indexOf("--year"); +const YEAR = + yearFlagIdx !== -1 && args[yearFlagIdx + 1] + ? parseInt(args[yearFlagIdx + 1], 10) + : new Date().getFullYear(); + +if (isNaN(YEAR) || YEAR < 2016 || YEAR > 2100) { + console.error("Invalid year. Usage: npx tsx scripts/fetch-year-data.ts --year 2026"); + process.exit(1); +} + +const fetchYearData = async () => { + const url = `https://summerofcode.withgoogle.com/api/program/${YEAR}/organizations/`; + console.log(`[FETCH] GSoC ${YEAR} organizations from ${url}`); + + const response = await fetch(url); + + if (!response.ok) { + throw new Error( + `Failed to fetch GSoC ${YEAR} organizations: ${response.status} ${response.statusText}`, + ); + } + + const data = await response.json(); + + const outputDir = path.join(process.cwd(), "new-api-details", "yearly"); + if (!fs.existsSync(outputDir)) { + fs.mkdirSync(outputDir, { recursive: true }); + } + + const outputFile = path.join( + outputDir, + `google-summer-of-code-${YEAR}-organizations-raw.json`, + ); + fs.writeFileSync(outputFile, JSON.stringify(data, null, 2)); + + const orgCount = Array.isArray(data) ? data.length : "unknown"; + console.log(`[DONE] Saved ${orgCount} organizations to ${outputFile}`); +}; + +fetchYearData().catch((err) => { + console.error(`[ERROR] Failed to fetch GSoC ${YEAR} data`); + console.error(err); + process.exit(1); +}); diff --git a/scripts/generate-yearly-page-from-json.ts b/scripts/generate-yearly-page-from-json.ts new file mode 100644 index 00000000..10f3c28e --- /dev/null +++ b/scripts/generate-yearly-page-from-json.ts @@ -0,0 +1,268 @@ +/** + * Generate yearly page JSON from org JSON files (no DB required). + * + * Reads: + * new-api-details/organizations/{slug}.json + * new-api-details/organizations/index.json + * + * Writes: + * new-api-details/yearly/google-summer-of-code-{year}.json + * + * Usage: + * npx tsx scripts/generate-yearly-page-from-json.ts --year 2026 + * npx tsx scripts/generate-yearly-page-from-json.ts (defaults to 2026) + */ + +import fs from "fs"; +import path from "path"; + +// --------------------------------------------------------------------------- +// CLI args +// --------------------------------------------------------------------------- +const args = process.argv.slice(2); +const yearFlagIdx = args.indexOf("--year"); +const YEAR = + yearFlagIdx !== -1 && args[yearFlagIdx + 1] + ? parseInt(args[yearFlagIdx + 1], 10) + : 2026; + +if (isNaN(YEAR) || YEAR < 2016 || YEAR > 2100) { + console.error("Invalid year. Usage: npx tsx scripts/generate-yearly-page-from-json.ts --year 2026"); + process.exit(1); +} + +// --------------------------------------------------------------------------- +// Paths +// --------------------------------------------------------------------------- +const ROOT = process.cwd(); +const ORGS_DIR = path.join(ROOT, "new-api-details", "organizations"); +const INDEX_FILE = path.join(ORGS_DIR, "index.json"); +const OUTPUT_FILE = path.join( + ROOT, + "new-api-details", + "yearly", + `google-summer-of-code-${YEAR}.json`, +); + +// --------------------------------------------------------------------------- +// Main +// --------------------------------------------------------------------------- +async function main() { + console.log(`\n[YEARLY] Generating yearly page JSON for GSoC ${YEAR}\n`); + + // 1. Load the org index + if (!fs.existsSync(INDEX_FILE)) { + console.error("Organizations index.json not found. Run transform-year-organizations.ts first."); + process.exit(1); + } + const index = JSON.parse(fs.readFileSync(INDEX_FILE, "utf-8")); + + // 2. Filter orgs active in this year + const yearOrgs = index.organizations.filter( + (o: { active_years: number[] }) => o.active_years?.includes(YEAR), + ); + console.log(`[FILTER] ${yearOrgs.length} organizations active in ${YEAR}`); + + // 3. Load full org data for each to get richer info + interface FullOrg { + slug: string; + name: string; + image_url: string; + img_r2_url: string; + logo_r2_url: string | null; + first_year: number; + technologies: string[]; + total_projects: number; + stats: { + projects_by_year?: Record; + }; + years: Record; + } + + const fullOrgs: FullOrg[] = yearOrgs.map((o: { slug: string }) => { + const orgFile = path.join(ORGS_DIR, `${o.slug}.json`); + if (fs.existsSync(orgFile)) { + return JSON.parse(fs.readFileSync(orgFile, "utf-8")); + } + return o; + }); + + // 4. Build organizations snapshot (sorted by project count desc) + const yearKey = `year_${YEAR}`; + const processedOrgs = fullOrgs + .map((org) => { + let projectCount = 0; + // Try to get year-specific project count + if (org.years?.[yearKey] && typeof org.years[yearKey] === "object") { + projectCount = (org.years[yearKey] as { num_projects?: number })?.num_projects || 0; + } else if (org.stats?.projects_by_year?.[yearKey]) { + projectCount = org.stats.projects_by_year[yearKey] as number; + } + + return { + slug: org.slug, + name: org.name, + logo_url: org.logo_r2_url || org.img_r2_url || org.image_url, + project_count: projectCount, + is_first_time: org.first_year === YEAR, + }; + }) + .sort((a, b) => b.project_count - a.project_count); + + // 5. Compute tech stack aggregation + const techMap = new Map }>(); + fullOrgs.forEach((org) => { + (org.technologies || []).forEach((rawTech: string) => { + const tech = rawTech.toLowerCase().trim(); + if (!tech) return; + if (!techMap.has(tech)) { + techMap.set(tech, { orgs: new Set() }); + } + techMap.get(tech)!.orgs.add(org.slug); + }); + }); + + const topLanguages = Array.from(techMap.entries()) + .map(([slug, data]) => ({ + label: slug.charAt(0).toUpperCase() + slug.slice(1), + slug, + value: data.orgs.size, + org_count: data.orgs.size, + })) + .sort((a, b) => b.value - a.value) + .slice(0, 20); + + const techStackList = topLanguages.map((t) => ({ + slug: t.slug, + name: t.label, + project_count: t.value, + org_count: t.org_count, + })); + + // 6. Compute metrics + const totalOrgs = yearOrgs.length; + const totalProjects = processedOrgs.reduce((sum, o) => sum + o.project_count, 0); + const firstTimeOrgsCount = processedOrgs.filter((o) => o.is_first_time).length; + const returningOrgsCount = totalOrgs - firstTimeOrgsCount; + const avgProjects = totalOrgs > 0 ? Number((totalProjects / totalOrgs).toFixed(1)) : 0; + + // 7. Build charts + const mostStudentSlots = processedOrgs.slice(0, 20).map((o) => ({ + label: o.name, + slug: o.slug, + value: o.project_count, + })); + + const orgsWithMostProjects = [...mostStudentSlots]; + + const highestSelectionsByTech = topLanguages.slice(0, 10).map((t) => ({ + label: t.label, + slug: t.slug, + value: t.value, + })); + + const highestSelectionsByOrg = processedOrgs.slice(0, 10).map((o) => ({ + label: o.name, + slug: o.slug, + value: o.project_count, + })); + + // 8. First-time orgs list + const firstTimeOrgsList = processedOrgs + .filter((o) => o.is_first_time) + .map((o) => ({ + slug: o.slug, + name: o.name, + logo_url: o.logo_url, + })); + + // 9. Build final JSON (matches YearlyPageData type exactly) + const now = new Date().toISOString(); + const finalJson = { + year: YEAR, + slug: `google-summer-of-code-${YEAR}`, + title: `Google Summer of Code ${YEAR}`, + subtitle: "Organizations, projects, technologies, and participation insights", + description: `A complete overview of Google Summer of Code ${YEAR} including participating organizations, projects, technology trends, and key statistics.`, + published_at: now, + finalized: false, + + metrics: { + total_organizations: totalOrgs, + total_projects: totalProjects, + total_participants: totalProjects, + total_mentors: 0, + first_time_organizations: firstTimeOrgsCount, + returning_organizations: returningOrgsCount, + countries_participated: null, + avg_projects_per_org: avgProjects, + avg_mentors_per_org: 0, + avg_participants_per_org: avgProjects, + }, + + organizations: processedOrgs, + + projects: [] as Array<{ + id: string; + title: string; + org_slug: string; + tech_stack: string[]; + }>, + + tech_stack: techStackList, + + participants: { + total: totalProjects, + by_country: {}, + }, + + mentors: { + total: 0, + }, + + first_time_orgs: firstTimeOrgsList, + + charts: { + top_languages: topLanguages, + most_student_slots: mostStudentSlots, + project_difficulty_distribution: { + total: totalProjects, + data: [ + { label: "Beginner", value: 0 }, + { label: "Intermediate", value: totalProjects }, + { label: "Advanced", value: 0 }, + ], + }, + orgs_with_most_projects: orgsWithMostProjects, + highest_selections: { + by_tech_stack: highestSelectionsByTech, + by_organization: highestSelectionsByOrg, + }, + }, + + meta: { + version: 1, + generated_at: now, + data_source: "json", + notes: `Generated from org JSON files. Projects not yet available for ${YEAR}.`, + }, + }; + + // 10. Write + fs.writeFileSync(OUTPUT_FILE, JSON.stringify(finalJson, null, 2)); + + console.log(`[WRITE] ${OUTPUT_FILE}`); + console.log("\n[SUMMARY]"); + console.log(` Organizations: ${totalOrgs}`); + console.log(` First-time: ${firstTimeOrgsCount}`); + console.log(` Returning: ${returningOrgsCount}`); + console.log(` Projects: ${totalProjects} (will populate later)`); + console.log(` Top language: ${topLanguages[0]?.label || "N/A"} (${topLanguages[0]?.value || 0} orgs)`); + console.log(` finalized: false (set to true after projects are added)`); + console.log("\n[DONE]"); +} + +main().catch((err) => { + console.error("[FATAL]", err); + process.exit(1); +}); diff --git a/scripts/regenerate-tech-topics-from-json.ts b/scripts/regenerate-tech-topics-from-json.ts new file mode 100644 index 00000000..f9885b7f --- /dev/null +++ b/scripts/regenerate-tech-topics-from-json.ts @@ -0,0 +1,460 @@ +/** + * Regenerate tech-stack, topics, and homepage JSON from org JSON files. + * Pure JSON-to-JSON — no DB required. + * + * Reads: + * new-api-details/organizations/*.json + * + * Writes: + * new-api-details/tech-stack/index.json + per-tech files + * new-api-details/topics/index.json + per-topic files + * new-api-details/homepage.json + * + * Usage: + * npx tsx scripts/regenerate-tech-topics-from-json.ts + */ + +import fs from "fs"; +import path from "path"; + +// --------------------------------------------------------------------------- +// Paths +// --------------------------------------------------------------------------- +const ROOT = process.cwd(); +const ORGS_DIR = path.join(ROOT, "new-api-details", "organizations"); +const TECH_DIR = path.join(ROOT, "new-api-details", "tech-stack"); +const TOPICS_DIR = path.join(ROOT, "new-api-details", "topics"); +const HOMEPAGE_FILE = path.join(ROOT, "new-api-details", "homepage.json"); + +// Derive YEARS dynamically from the org data instead of hardcoding +function deriveYears(orgs: OrgData[]): number[] { + const yearSet = new Set(); + orgs.forEach((o) => (o.active_years || []).forEach((y) => yearSet.add(y))); + return Array.from(yearSet).sort((a, b) => a - b); +} + +// --------------------------------------------------------------------------- +// Types +// --------------------------------------------------------------------------- +interface OrgData { + slug: string; + name: string; + image_url: string; + img_r2_url: string; + logo_r2_url: string | null; + category: string; + technologies: string[]; + topics: string[]; + active_years: number[]; + total_projects: number; + is_currently_active: boolean; + years: Record; +} + +// --------------------------------------------------------------------------- +// Tech name normalization (mirrors generate-tech-stack-data.js) +// --------------------------------------------------------------------------- +const TECH_NORMALIZATIONS: Record = { + "c++": "cpp", + "c/c++": "cpp", + "c #": "csharp", + "c#": "csharp", + ".net": "dotnet", + "node.js": "nodejs", + node: "nodejs", + "react.js": "react", + reactjs: "react", + "vue.js": "vue", + vuejs: "vue", + "angular.js": "angular", + angularjs: "angular", +}; + +function normalizeSlug(techName: string): string { + const lower = techName.toLowerCase().trim(); + if (TECH_NORMALIZATIONS[lower]) return TECH_NORMALIZATIONS[lower]; + return lower.replace(/[^a-z0-9]+/g, "-").replace(/^-+|-+$/g, ""); +} + +function topicSlug(topicName: string): string { + return topicName + .toLowerCase() + .trim() + .replace(/[^a-z0-9]+/g, "-") + .replace(/^-+|-+$/g, ""); +} + +// --------------------------------------------------------------------------- +// Load all org JSON files +// --------------------------------------------------------------------------- +function loadAllOrgs(): OrgData[] { + const files = fs + .readdirSync(ORGS_DIR) + .filter((f) => f.endsWith(".json") && f !== "index.json" && f !== "metadata.json"); + + return files.map((f) => JSON.parse(fs.readFileSync(path.join(ORGS_DIR, f), "utf-8"))); +} + +// --------------------------------------------------------------------------- +// TECH STACK generation +// --------------------------------------------------------------------------- +function generateTechStack(orgs: OrgData[], YEARS: number[]) { + console.log("\n[TECH] Generating tech-stack data..."); + + if (!fs.existsSync(TECH_DIR)) fs.mkdirSync(TECH_DIR, { recursive: true }); + + const techMap = new Map< + string, + { + name: string; + slug: string; + orgs: Map; + byYear: Record; + } + >(); + + orgs.forEach((org) => { + (org.technologies || []).forEach((tech) => { + const slug = normalizeSlug(tech); + const name = tech.trim(); + if (!slug) return; + + if (!techMap.has(slug)) { + techMap.set(slug, { name, slug, orgs: new Map(), byYear: {} }); + } + const td = techMap.get(slug)!; + + if (!td.orgs.has(org.slug)) { + td.orgs.set(org.slug, { + slug: org.slug, + name: org.name, + logo_url: org.logo_r2_url || org.img_r2_url || org.image_url, + category: org.category || "Other", + total_projects: org.total_projects || 0, + is_currently_active: org.is_currently_active || false, + active_years: org.active_years || [], + }); + } + + YEARS.forEach((year) => { + if (org.active_years?.includes(year)) { + if (!td.byYear[year]) td.byYear[year] = { orgCount: 0, projectCount: 0 }; + td.byYear[year].orgCount++; + const yd = org.years?.[`year_${year}`]; + if (yd && typeof yd === "object" && "num_projects" in yd) { + td.byYear[year].projectCount += (yd as { num_projects: number }).num_projects || 0; + } + } + }); + }); + }); + + console.log(`[TECH] Found ${techMap.size} unique technologies`); + + // Per-tech files + build allTechs summary + const allTechs: Array<{ name: string; slug: string; org_count: number; project_count: number }> = []; + let fileCount = 0; + + for (const [slug, td] of techMap.entries()) { + const orgsArr = Array.from(td.orgs.values()); + const totalProjects = orgsArr.reduce((s, o) => s + (o.total_projects || 0), 0); + const activeYears = Object.keys(td.byYear).map(Number).filter((y) => td.byYear[y].orgCount > 0); + const firstYear = activeYears.length > 0 ? Math.min(...activeYears) : YEARS[0]; + const latestYear = activeYears.length > 0 ? Math.max(...activeYears) : YEARS[YEARS.length - 1]; + + const techPage = { + slug, + name: td.name, + published_at: new Date().toISOString(), + metrics: { + org_count: orgsArr.length, + project_count: totalProjects, + avg_projects_per_org: orgsArr.length > 0 ? Math.round((totalProjects / orgsArr.length) * 10) / 10 : 0, + first_year_used: firstYear, + latest_year_used: latestYear, + }, + organizations: orgsArr.sort((a, b) => b.total_projects - a.total_projects), + charts: { + popularity_by_year: YEARS.map((year) => ({ + year, + org_count: td.byYear[year]?.orgCount || 0, + project_count: td.byYear[year]?.projectCount || 0, + })), + }, + meta: { version: 1, generated_at: new Date().toISOString() }, + }; + + fs.writeFileSync(path.join(TECH_DIR, `${slug}.json`), JSON.stringify(techPage, null, 2)); + fileCount++; + + allTechs.push({ name: td.name, slug, org_count: orgsArr.length, project_count: totalProjects }); + } + + // Index file + const sortedByOrgs = [...allTechs].sort((a, b) => b.org_count - a.org_count); + const sortedByProjects = [...allTechs].sort((a, b) => b.project_count - a.project_count); + + const lastYear = YEARS[YEARS.length - 1]; + const compareYear = YEARS.length >= 6 ? YEARS[YEARS.length - 6] : YEARS[0]; + + const popularityByYear: Record> = {}; + sortedByOrgs.slice(0, 20).forEach((t) => { + const td = techMap.get(t.slug)!; + popularityByYear[t.slug] = YEARS.map((year) => ({ + year, + count: td.byYear[year]?.orgCount || 0, + })); + }); + + const fastestGrowing = allTechs + .map((t) => { + const td = techMap.get(t.slug)!; + const countOld = td.byYear[compareYear]?.orgCount || 0; + const countNew = td.byYear[lastYear]?.orgCount || 0; + const growth = countOld > 0 ? ((countNew - countOld) / countOld) * 100 : countNew > 5 ? 500 : 0; + return { + slug: t.slug, + name: t.name, + growth_pct: Math.round(growth), + first_year_count: countOld, + last_year_count: countNew, + }; + }) + .filter((t) => t.last_year_count >= 3) + .sort((a, b) => b.growth_pct - a.growth_pct) + .slice(0, 10); + + const recentYears = YEARS.slice(-6).reverse(); + + const mostSelections = sortedByOrgs.slice(0, 10).map((t) => { + const td = techMap.get(t.slug)!; + return { + name: t.name, + slug: t.slug, + total: t.org_count, + byYear: recentYears.map((year) => ({ year, count: td.byYear[year]?.orgCount || 0 })), + }; + }); + + const mostProjects = sortedByProjects.slice(0, 10).map((t) => { + const td = techMap.get(t.slug)!; + return { + name: t.name, + slug: t.slug, + total: t.project_count, + byYear: recentYears.map((year) => ({ year, count: td.byYear[year]?.projectCount || 0 })), + }; + }); + + const indexData = { + slug: "tech-stack-index", + published_at: new Date().toISOString(), + metrics: { total_technologies: allTechs.length, total_organizations: orgs.length }, + all_techs: sortedByOrgs, + charts: { + top_tech_by_orgs: sortedByOrgs.slice(0, 15).map((t) => ({ label: t.name, slug: t.slug, value: t.org_count })), + top_tech_by_projects: sortedByProjects.slice(0, 15).map((t) => ({ label: t.name, slug: t.slug, value: t.project_count })), + popularity_by_year: popularityByYear, + fastest_growing: fastestGrowing, + most_selections: mostSelections, + most_projects: mostProjects, + }, + meta: { version: 1, generated_at: new Date().toISOString() }, + }; + + fs.writeFileSync(path.join(TECH_DIR, "index.json"), JSON.stringify(indexData, null, 2)); + console.log(`[TECH] Written ${fileCount} tech files + index.json`); +} + +// --------------------------------------------------------------------------- +// TOPICS generation +// --------------------------------------------------------------------------- +function generateTopics(orgs: OrgData[], YEARS: number[]) { + console.log("\n[TOPICS] Generating topics data..."); + + if (!fs.existsSync(TOPICS_DIR)) fs.mkdirSync(TOPICS_DIR, { recursive: true }); + + const topicMap = new Map< + string, + { + name: string; + slug: string; + orgs: Map; + byYear: Record; + } + >(); + + orgs.forEach((org) => { + (org.topics || []).forEach((topic) => { + const slug = topicSlug(topic); + if (!slug) return; + + if (!topicMap.has(slug)) { + topicMap.set(slug, { name: topic.trim(), slug, orgs: new Map(), byYear: {} }); + } + const td = topicMap.get(slug)!; + + if (!td.orgs.has(org.slug)) { + const firstYear = org.active_years?.length ? Math.min(...org.active_years) : YEARS[0]; + const lastYear = org.active_years?.length ? Math.max(...org.active_years) : YEARS[YEARS.length - 1]; + td.orgs.set(org.slug, { + slug: org.slug, + name: org.name, + first_year: firstYear, + last_year: lastYear, + total_projects: org.total_projects || 0, + is_currently_active: org.is_currently_active || false, + active_years: org.active_years || [], + }); + } + + YEARS.forEach((year) => { + if (org.active_years?.includes(year)) { + if (!td.byYear[year]) td.byYear[year] = { organizationCount: 0, projectCount: 0 }; + td.byYear[year].organizationCount++; + const yd = org.years?.[`year_${year}`]; + if (yd && typeof yd === "object" && "num_projects" in yd) { + td.byYear[year].projectCount += (yd as { num_projects: number }).num_projects || 0; + } + } + }); + }); + }); + + console.log(`[TOPICS] Found ${topicMap.size} unique topics`); + + let fileCount = 0; + const allTopics: Array<{ + slug: string; + name: string; + organizationCount: number; + projectCount: number; + years: number[]; + }> = []; + + for (const [slug, td] of topicMap.entries()) { + const orgsArr = Array.from(td.orgs.values()); + const totalProjects = orgsArr.reduce((s, o) => s + (o.total_projects || 0), 0); + const activeYears = Object.keys(td.byYear) + .map(Number) + .filter((y) => td.byYear[y].organizationCount > 0) + .sort((a, b) => b - a); + + const yearlyStats: Record = {}; + YEARS.forEach((year) => { + if (td.byYear[year]) { + yearlyStats[String(year)] = td.byYear[year]; + } + }); + + const topicPage = { + slug, + name: td.name, + published_at: new Date().toISOString(), + organizationCount: orgsArr.length, + projectCount: totalProjects, + years: activeYears, + organizations: orgsArr.sort((a, b) => b.total_projects - a.total_projects), + yearlyStats, + meta: { version: 1, generated_at: new Date().toISOString() }, + }; + + fs.writeFileSync(path.join(TOPICS_DIR, `${slug}.json`), JSON.stringify(topicPage, null, 2)); + fileCount++; + + allTopics.push({ + slug, + name: td.name, + organizationCount: orgsArr.length, + projectCount: totalProjects, + years: activeYears, + }); + } + + // Index + const indexData = { + slug: "topics-index", + published_at: new Date().toISOString(), + total: allTopics.length, + topics: allTopics.sort((a, b) => b.organizationCount - a.organizationCount), + meta: { version: 1, generated_at: new Date().toISOString() }, + }; + + fs.writeFileSync(path.join(TOPICS_DIR, "index.json"), JSON.stringify(indexData, null, 2)); + console.log(`[TOPICS] Written ${fileCount} topic files + index.json`); +} + +// --------------------------------------------------------------------------- +// HOMEPAGE generation +// --------------------------------------------------------------------------- +function generateHomepage(orgs: OrgData[]) { + console.log("\n[HOMEPAGE] Generating homepage snapshot..."); + + const activeOrgs = orgs.filter((o) => o.is_currently_active); + const featuredOrgs = activeOrgs + .sort((a, b) => (b.total_projects || 0) - (a.total_projects || 0)) + .slice(0, 25) + .map((org) => ({ + id: (org as unknown as { id: string }).id || org.slug, + name: org.name, + slug: org.slug, + img_r2_url: org.logo_r2_url || org.img_r2_url || org.image_url, + })); + + const totalProjects = orgs.reduce((s, o) => s + (o.total_projects || 0), 0); + + const homepage = { + slug: "homepage", + published_at: new Date().toISOString(), + featured_organizations: featuredOrgs, + metrics: { + total_organizations: orgs.length, + active_organizations: activeOrgs.length, + total_projects: totalProjects, + }, + meta: { version: 1, generated_at: new Date().toISOString() }, + }; + + fs.writeFileSync(HOMEPAGE_FILE, JSON.stringify(homepage, null, 2)); + console.log(`[HOMEPAGE] Featured: ${featuredOrgs.length}, Total: ${orgs.length}, Active: ${activeOrgs.length}, Projects: ${totalProjects}`); +} + +// --------------------------------------------------------------------------- +// Main +// --------------------------------------------------------------------------- +async function main() { + console.log("[START] Regenerating tech-stack, topics, and homepage from org JSON files\n"); + + const orgs = loadAllOrgs(); + console.log(`[LOAD] ${orgs.length} organizations loaded`); + + const YEARS = deriveYears(orgs); + console.log(`[YEARS] ${YEARS.join(", ")}`); + + generateTechStack(orgs, YEARS); + generateTopics(orgs, YEARS); + generateHomepage(orgs); + + console.log("\n[DONE] All regeneration complete!"); +} + +main().catch((err) => { + console.error("[FATAL]", err); + process.exit(1); +}); diff --git a/scripts/transform-year-organizations.ts b/scripts/transform-year-organizations.ts new file mode 100644 index 00000000..e357a660 --- /dev/null +++ b/scripts/transform-year-organizations.ts @@ -0,0 +1,491 @@ +/** + * Transform raw Google GSoC API data into UI-ready JSON files. + * + * Reads: + * new-api-details/yearly/google-summer-of-code-{year}-organizations-raw.json + * new-api-details/organizations/index.json (existing org index) + * new-api-details/organizations/{slug}.json (existing per-org files) + * + * Writes: + * new-api-details/organizations/{slug}.json (updated / new per-org files) + * new-api-details/organizations/index.json (regenerated) + * new-api-details/organizations/metadata.json (regenerated) + * + * Usage: + * npx tsx scripts/transform-year-organizations.ts --year 2026 + * npx tsx scripts/transform-year-organizations.ts (defaults to 2026) + */ + +import fs from "fs"; +import path from "path"; + +// --------------------------------------------------------------------------- +// CLI args +// --------------------------------------------------------------------------- +const args = process.argv.slice(2); +const yearFlagIdx = args.indexOf("--year"); +const YEAR = + yearFlagIdx !== -1 && args[yearFlagIdx + 1] + ? parseInt(args[yearFlagIdx + 1], 10) + : new Date().getFullYear(); + +if (isNaN(YEAR) || YEAR < 2016 || YEAR > 2100) { + console.error("Invalid year. Usage: npx tsx scripts/transform-year-organizations.ts --year 2026"); + process.exit(1); +} + +// --------------------------------------------------------------------------- +// Paths +// --------------------------------------------------------------------------- +const ROOT = process.cwd(); +const ORGS_DIR = path.join(ROOT, "new-api-details", "organizations"); +const YEARLY_DIR = path.join(ROOT, "new-api-details", "yearly"); +const RAW_FILE = path.join(YEARLY_DIR, `google-summer-of-code-${YEAR}-organizations-raw.json`); +const INDEX_FILE = path.join(ORGS_DIR, "index.json"); +const METADATA_FILE = path.join(ORGS_DIR, "metadata.json"); + +// --------------------------------------------------------------------------- +// Types for raw Google API data +// --------------------------------------------------------------------------- +interface RawOrg { + name: string; + slug: string; + logo_url: string; + website_url: string; + tagline: string; + license: string; + categories: string[]; + contributor_guidance_url: string; + description: string; + tech_tags: string[]; + topic_tags: string[]; + contact_links: Array<{ name: string; value: string }>; + source_code: string; + ideas_link: string; + direct_comm_methods: Array<{ name: string; value: string }>; + social_comm_methods: Array<{ name: string; value: string }>; +} + +// --------------------------------------------------------------------------- +// Helpers +// --------------------------------------------------------------------------- +function findContactField( + links: Array<{ name: string; value: string }>, + fieldName: string, +): string | null { + const entry = links.find((l) => l.name.toLowerCase() === fieldName.toLowerCase()); + return entry?.value || null; +} + +function findSocialField( + socials: Array<{ name: string; value: string }>, + fieldName: string, +): string | null { + const entry = socials.find((l) => l.name.toLowerCase() === fieldName.toLowerCase()); + return entry?.value || null; +} + +function buildContact(raw: RawOrg) { + const all = [...(raw.contact_links || []), ...(raw.direct_comm_methods || [])]; + return { + email: findContactField(all, "email"), + guide_url: raw.contributor_guidance_url || null, + ideas_url: raw.ideas_link || null, + irc_channel: findContactField(all, "irc") || findContactField(all, "chat"), + mailing_list: findContactField(all, "mailingList") || findContactField(all, "mailinglist"), + }; +} + +function buildSocial(raw: RawOrg) { + const all = [...(raw.social_comm_methods || []), ...(raw.contact_links || [])]; + return { + blog: findSocialField(all, "blog"), + discord: findSocialField(all, "discord"), + facebook: null, + github: raw.source_code?.includes("github") ? raw.source_code : findSocialField(all, "github"), + gitlab: raw.source_code?.includes("gitlab") ? raw.source_code : findSocialField(all, "gitlab"), + instagram: null, + linkedin: findSocialField(all, "linkedin"), + mastodon: null, + medium: null, + reddit: null, + slack: findSocialField(all, "slack"), + stackoverflow: null, + twitch: null, + twitter: findSocialField(all, "twitter"), + youtube: null, + }; +} + +function buildEmptyStatsByYear() { + const obj: Record = {}; + for (let y = 2016; y <= YEAR; y++) { + obj[`year_${y}`] = null; + } + return obj; +} + +function buildEmptyYearsDetail() { + const obj: Record = {}; + for (let y = 2016; y <= YEAR; y++) { + obj[`year_${y}`] = null; + } + return obj; +} + +// --------------------------------------------------------------------------- +// Main +// --------------------------------------------------------------------------- +async function main() { + console.log(`\n[TRANSFORM] GSoC ${YEAR} organizations\n`); + + // 1. Read raw API data + if (!fs.existsSync(RAW_FILE)) { + console.error(`Raw file not found: ${RAW_FILE}`); + console.error(`Run fetch-year-data.ts first to download the raw data.`); + process.exit(1); + } + const rawOrgs: RawOrg[] = JSON.parse(fs.readFileSync(RAW_FILE, "utf-8")); + console.log(`[READ] ${rawOrgs.length} organizations from raw API data`); + + // 2. Read existing index & build name→slug map for fuzzy matching + let existingIndex: { + organizations: Array<{ slug: string; name: string; [key: string]: unknown }>; + } = { organizations: [] }; + if (fs.existsSync(INDEX_FILE)) { + existingIndex = JSON.parse(fs.readFileSync(INDEX_FILE, "utf-8")); + } + const existingSlugs = new Set(existingIndex.organizations.map((o) => o.slug)); + + // Build name→slug lookup for matching orgs with changed API slugs + const nameToSlug = new Map(); + for (const org of existingIndex.organizations) { + nameToSlug.set(org.name.toLowerCase().trim(), org.slug); + } + + // Manual alias map for known rebrands / renamed orgs. + // Maps 2026-API-slug → existing slug in our dataset. + const SLUG_ALIASES: Record = { + "ceph": "ceph-foundation", + "openms-inc": "openms", + }; + + // Guard: detect duplicate names in existing index (would cause ambiguous matches) + const nameOccurrences = new Map(); + for (const org of existingIndex.organizations) { + const key = org.name.toLowerCase().trim(); + const list = nameOccurrences.get(key) || []; + list.push(org.slug); + nameOccurrences.set(key, list); + } + const duplicateNames = Array.from(nameOccurrences.entries()).filter(([, slugs]) => slugs.length > 1); + if (duplicateNames.length > 0) { + console.warn(`[WARN] ${duplicateNames.length} duplicate org names detected — name matching skipped for these:`); + for (const [name, slugs] of duplicateNames) { + console.warn(` "${name}" → [${slugs.join(", ")}]`); + } + } + const ambiguousNames = new Set(duplicateNames.map(([name]) => name)); + + // Resolve each raw org's slug to an existing FILE (alias → exact slug → name match). + // Only returns a slug if its JSON file actually exists on disk. + // Logs every non-trivial match for debuggability. + function resolveExistingSlug(raw: RawOrg, log = false): string | null { + // 1. Check manual alias first (known rebrands) + const alias = SLUG_ALIASES[raw.slug]; + if (alias) { + const f = path.join(ORGS_DIR, `${alias}.json`); + if (fs.existsSync(f)) { + if (log) console.log(` [ALIAS] "${raw.slug}" → "${alias}" (manual alias)`); + return alias; + } + } + // 2. Exact slug match + if (existingSlugs.has(raw.slug)) { + const f = path.join(ORGS_DIR, `${raw.slug}.json`); + if (fs.existsSync(f)) return raw.slug; + } + // 3. Name-based match (skip if name is ambiguous) + const normalizedName = raw.name.toLowerCase().trim(); + if (ambiguousNames.has(normalizedName)) { + if (log) console.warn(` [SKIP] "${raw.slug}" name "${raw.name}" matches multiple existing orgs — add to SLUG_ALIASES`); + return null; + } + const byName = nameToSlug.get(normalizedName); + if (byName) { + const f = path.join(ORGS_DIR, `${byName}.json`); + if (fs.existsSync(f)) { + if (log) console.log(` [NAME] "${raw.slug}" → "${byName}" (matched by name "${raw.name}")`); + return byName; + } + } + return null; + } + + const rawSlugs = new Set(rawOrgs.map((o) => o.slug)); + // Also track resolved slugs so we don't deactivate name-matched orgs + const resolvedSlugs = new Set(); + + const returningCount = rawOrgs.filter((o) => resolveExistingSlug(o) !== null).length; + const newCount = rawOrgs.filter((o) => resolveExistingSlug(o) === null).length; + console.log(`[ANALYSIS] ${returningCount} returning orgs, ${newCount} first-time orgs`); + + // Log all non-trivial matches (alias + name) + console.log("[MATCHING] Non-trivial slug resolutions:"); + let matchLogCount = 0; + for (const raw of rawOrgs) { + const before = raw.slug; + const resolved = resolveExistingSlug(raw, true); + if (resolved && resolved !== before) matchLogCount++; + } + if (matchLogCount === 0) console.log(" (none — all matched by exact slug)"); + + // 3. Process each raw org + const now = new Date().toISOString(); + let updatedCount = 0; + let createdCount = 0; + + for (const raw of rawOrgs) { + const matchedSlug = resolveExistingSlug(raw); + const orgFile = matchedSlug + ? path.join(ORGS_DIR, `${matchedSlug}.json`) + : path.join(ORGS_DIR, `${raw.slug}.json`); + const isReturning = matchedSlug !== null && fs.existsSync(orgFile); + if (matchedSlug) resolvedSlugs.add(matchedSlug); + + if (isReturning) { + // --- UPDATE existing org --- + const existing = JSON.parse(fs.readFileSync(orgFile, "utf-8")); + + // Add YEAR to active_years if not already present + if (!existing.active_years.includes(YEAR)) { + existing.active_years.push(YEAR); + existing.active_years.sort((a: number, b: number) => a - b); + } + + existing.last_year = Math.max(existing.last_year || 0, YEAR); + existing.is_currently_active = true; + + // Refresh description if the new one is more substantial + if (raw.description && raw.description.length > (existing.description?.length || 0)) { + existing.description = raw.description; + } + + // Merge technologies (union, preserving existing) + const techSet = new Set([...(existing.technologies || [])]); + (raw.tech_tags || []).forEach((t: string) => techSet.add(t)); + existing.technologies = Array.from(techSet); + + // Merge topics (union, preserving existing) + const topicSet = new Set([...(existing.topics || [])]); + (raw.topic_tags || []).forEach((t: string) => topicSet.add(t)); + existing.topics = Array.from(topicSet); + + // Update contact with any new info (don't overwrite non-null with null) + const newContact = buildContact(raw); + if (!existing.contact) existing.contact = {}; + for (const [k, v] of Object.entries(newContact)) { + if (v !== null) { + (existing.contact as Record)[k] = v; + } + } + + // Update social with any new info + const newSocial = buildSocial(raw); + if (!existing.social) existing.social = {}; + for (const [k, v] of Object.entries(newSocial)) { + if (v !== null) { + (existing.social as Record)[k] = v; + } + } + + // Ensure stats has entry for new year + if (existing.stats?.projects_by_year && !(`year_${YEAR}` in existing.stats.projects_by_year)) { + existing.stats.projects_by_year[`year_${YEAR}`] = null; + } + if (existing.stats?.students_by_year && !(`year_${YEAR}` in existing.stats.students_by_year)) { + existing.stats.students_by_year[`year_${YEAR}`] = null; + } + + // Ensure years detail has entry for new year + if (existing.years && !(`year_${YEAR}` in existing.years)) { + existing.years[`year_${YEAR}`] = null; + } + + // Update logo if we have a fresh one from Google + if (raw.logo_url) { + existing.image_url = raw.logo_url; + } + + // Update website URL + if (raw.website_url) { + existing.url = raw.website_url; + } + + // Update category (use first category from API) + if (raw.categories?.length > 0) { + existing.category = raw.categories[0]; + } + + existing.meta = { version: 1, generated_at: now }; + + fs.writeFileSync(orgFile, JSON.stringify(existing, null, 2)); + updatedCount++; + } else { + // --- CREATE new org --- + const newOrg = { + id: `new_${YEAR}_${raw.slug}`, + slug: raw.slug, + name: raw.name, + category: raw.categories?.[0] || "Other", + description: raw.description || raw.tagline || "", + image_url: raw.logo_url || "", + img_r2_url: raw.logo_url || "", + logo_r2_url: null, + url: raw.website_url || "", + active_years: [YEAR], + first_year: YEAR, + last_year: YEAR, + is_currently_active: true, + technologies: raw.tech_tags || [], + topics: raw.topic_tags || [], + total_projects: 0, + stats: { + avg_projects_per_appeared_year: 0, + projects_by_year: buildEmptyStatsByYear(), + students_by_year: buildEmptyStatsByYear(), + total_students: 0, + }, + years: buildEmptyYearsDetail(), + contact: buildContact(raw), + social: buildSocial(raw), + meta: { version: 1, generated_at: now }, + }; + + fs.writeFileSync(orgFile, JSON.stringify(newOrg, null, 2)); + createdCount++; + } + } + + // 4. Mark orgs NOT in this year's list as inactive (only if they were active) + let deactivatedCount = 0; + for (const existingOrg of existingIndex.organizations) { + if (!rawSlugs.has(existingOrg.slug) && !resolvedSlugs.has(existingOrg.slug)) { + const orgFile = path.join(ORGS_DIR, `${existingOrg.slug}.json`); + if (fs.existsSync(orgFile)) { + const org = JSON.parse(fs.readFileSync(orgFile, "utf-8")); + if (org.is_currently_active === true) { + org.is_currently_active = false; + org.meta = { version: 1, generated_at: now }; + fs.writeFileSync(orgFile, JSON.stringify(org, null, 2)); + deactivatedCount++; + } + } + } + } + + console.log(`[WRITE] ${updatedCount} orgs updated, ${createdCount} orgs created, ${deactivatedCount} orgs marked inactive`); + + // 5. Regenerate index.json + console.log("[INDEX] Regenerating organizations index..."); + const allOrgFiles = fs.readdirSync(ORGS_DIR).filter( + (f) => f.endsWith(".json") && f !== "index.json" && f !== "metadata.json", + ); + + const allOrgs = allOrgFiles + .map((f) => { + const data = JSON.parse(fs.readFileSync(path.join(ORGS_DIR, f), "utf-8")); + return { + id: data.id, + slug: data.slug, + name: data.name, + category: data.category, + description: data.description, + image_url: data.image_url, + img_r2_url: data.img_r2_url, + logo_r2_url: data.logo_r2_url, + url: data.url, + active_years: data.active_years, + first_year: data.first_year, + last_year: data.last_year, + is_currently_active: data.is_currently_active, + technologies: data.technologies, + topics: data.topics, + total_projects: data.total_projects, + first_time: data.first_year === YEAR, + }; + }) + .sort((a, b) => a.name.localeCompare(b.name)); + + const indexData = { + slug: "organizations-index", + published_at: now, + total: allOrgs.length, + organizations: allOrgs, + meta: { version: 1, generated_at: now }, + }; + fs.writeFileSync(INDEX_FILE, JSON.stringify(indexData, null, 2)); + console.log(`[INDEX] Written with ${allOrgs.length} organizations`); + + // 6. Regenerate metadata.json + console.log("[METADATA] Regenerating filter metadata..."); + const techCounts = new Map(); + const topicCounts = new Map(); + const categoryCounts = new Map(); + const yearCounts = new Map(); + + allOrgs.forEach((org) => { + (org.technologies || []).forEach((t: string) => { + techCounts.set(t, (techCounts.get(t) || 0) + 1); + }); + (org.topics || []).forEach((t: string) => { + topicCounts.set(t, (topicCounts.get(t) || 0) + 1); + }); + if (org.category) { + categoryCounts.set(org.category, (categoryCounts.get(org.category) || 0) + 1); + } + (org.active_years || []).forEach((y: number) => { + yearCounts.set(y, (yearCounts.get(y) || 0) + 1); + }); + }); + + const metadata = { + slug: "organizations-metadata", + published_at: now, + technologies: Array.from(techCounts.entries()) + .sort(([a], [b]) => a.localeCompare(b)) + .map(([name, count]) => ({ name, count })), + topics: Array.from(topicCounts.entries()) + .sort(([a], [b]) => a.localeCompare(b)) + .map(([name, count]) => ({ name, count })), + categories: Array.from(categoryCounts.entries()) + .sort(([a], [b]) => a.localeCompare(b)) + .map(([name, count]) => ({ name, count })), + years: Array.from(yearCounts.entries()) + .sort(([a], [b]) => b - a) + .map(([year, count]) => ({ year, count })), + totals: { + organizations: allOrgs.length, + technologies: techCounts.size, + topics: topicCounts.size, + categories: categoryCounts.size, + years: yearCounts.size, + }, + meta: { version: 1, generated_at: now }, + }; + fs.writeFileSync(METADATA_FILE, JSON.stringify(metadata, null, 2)); + console.log(`[METADATA] ${metadata.totals.technologies} techs, ${metadata.totals.topics} topics, ${metadata.totals.categories} categories, ${metadata.totals.years} years`); + + // 7. Summary + console.log("\n[DONE] Transform complete!"); + console.log(` Total orgs in index: ${allOrgs.length}`); + console.log(` Returning orgs updated: ${updatedCount}`); + console.log(` New orgs created: ${createdCount}`); + console.log(` Orgs deactivated: ${deactivatedCount}`); + console.log(` First-time orgs for ${YEAR}: ${newCount}`); +} + +main().catch((err) => { + console.error("[FATAL]", err); + process.exit(1); +});
This is the place to be if you love computer graphics. We do 2D/3D modeling, 3D printing, solid geometry, design, and more. Depending on the project, you have the opportunity to work with C/C++, Python, OpenGL, OpenCL, Qt, Javascript, and more... Help us develop open source computer-aided technologies (CAx)!
We operates as an umbrella organization with several CAx communities including:
We want to select at least one student for each, so feel free to ask us where to start.