NavigaraNavigara
OrganizationsDistributionCompareResearch
NavigaraNavigara
OrganizationsDistributionCompareResearch
All developers

Carlos Zamora

Developer

Carlos Zamora

carlos.zamora@microsoft.com

71 commits~7 files/commit

Performance

YoY:+575%
2026Previous year

Insights

Key patterns and highlights from this developer's activity.

Peak MonthFeb'26450 performance
Growth Trend↓30%vs prior period
Avg Files/Commit7files per commit
Active Days56of 455 days
Top Repoterminal69 commits

Effort Over Time

Breakdown of growth, maintenance, and fixes effort over time.

Bug Behavior

Beta

Bugs introduced vs. fixed over time.

Investment Quality

Beta

Reclassifies engineering effort based on bug attribution. Commits that introduced bugs are retrospectively counted as poor investments.

71%Productive TimeGrowth 53% + Fixes 47%
11%Maintenance Time
18%Wasted Time
How it works

Methodology

Investment Quality reclassifies engineering effort based on bug attribution data. Commits identified as buggy origins (those that introduced bugs later fixed by someone) have their grow and maintenance time moved into the Wasted Time category. Their waste (fix commits) remains counted as productive. All other commits retain their standard classification: grow is productive, maintenance is maintenance, and waste (fixes) is productive.

Relationship to Growth / Maintenance / Fixes

The standard model classifies commits as Growth, Maintenance, or Fixes. Investment Quality adds a quality lens: a commit that introduced a bug is retrospectively counted as a poor investment — the engineering time spent on it was wasted because it ultimately required additional fix work. Fix commits (Fixes in the standard model) are reframed as productive, because fixing bugs is valuable work.

Proposed API Endpoint

Currently computed client-side from commit and bug attribution data. Ideal server-side endpoint:

POST /v1/organizations/{orgId}/investment-quality
Content-Type: application/json

Request:
{
  "startTime": "2025-01-01T00:00:00Z",
  "endTime": "2025-12-31T23:59:59Z",
  "bucketSize": "BUCKET_SIZE_MONTH",
  "groupBy": ["repository_id" | "deliverer_email"]
}

Response:
{
  "productivePct": 74,
  "maintenancePct": 18,
  "wastedPct": 8,
  "buckets": [
    {
      "bucketStart": "2025-01-01T00:00:00Z",
      "productive": 4.2,
      "maintenance": 1.8,
      "wasted": 0.6
    }
  ]
}

Recent Activity

Latest analyzed commits from this developer.

HashMessageDateFilesEffort
3104c8fThis commit provides a **bug fix** for the **TerminalControl** module, addressing an issue where **selection markers** would erroneously appear when scrolling during **mouse selection**. The `TermControl.cpp` file's scroll handler is updated to check the current **selection mode** before rendering these markers. This ensures that selection markers are only displayed for **keyboard-based selections**, preventing visual artifacts and improving the user experience by correctly hiding markers during mouse-driven scrolling.Mar 311waste
ec939aaThis commit **fixes a bug** where restarting a terminal connection would not properly reset the internal **VT state**, leading to lingering escape sequences like mouse mode. It introduces an `erase` parameter to `ITermDispatch::HardReset()` and exposes a new `HardResetWithoutErase()` method through the `Terminal`, `ControlCore`, and `TermControl` layers. The **terminal connection restart mechanism** in `TerminalPage::_restartPaneConnection()` now utilizes this new method to reset the VT state machine without clearing the buffer. This **refactoring** and **bug fix** significantly improves the **user experience** by ensuring a clean terminal state upon reconnection while preserving the session history.Mar 3015waste
eea035cThis commit implements a **new capability** to correctly set the AppUserModelID (AUMID) for **unpackaged Windows Terminal** instances. The `WindowEmperor.cpp` module now generates a unique AUMID, incorporating the application's branding, a hash of the full process image name, and the user's SID hash. This **feature implementation** ensures proper shell integration, such as taskbar pinning and jump lists, for users running the unpackaged version of the terminal. Specifically, the logic within `HandleCommandlineArgs` is enhanced to manage this identification.Mar 271grow
c562dadThis commit **fixes a theming bug** in the **TerminalSettingsEditor** where the search dropdown did not correctly inherit the terminal's theme. Previously, popups, being in a separate UI tree, would not apply the theme, leading to visual inconsistencies. A new helper function, `_setThemeOnPopups`, was added to `src/cascadia/TerminalSettingsEditor/MainPage.cpp` to recursively apply the theme to these popups. This function is now called during `OnNavigatedTo` and `_ApplyTheme` to ensure the **search dropdown's theme correctly matches the terminal's theme**, improving visual consistency for users.Mar 231waste
2e33056This commit **significantly improves the user experience for selection within VT mouse mode** by addressing several inconsistencies. It **fixes bugs** related to selection accuracy, such as preventing coordinate rounding and correcting drag-left behavior to include the starting cell. Crucially, **Shift+Click now clears any existing selection** to initiate a new one, making the interaction more intuitive. These enhancements primarily affect the **TerminalControl** module's `ControlCore.cpp` and `ControlInteractivity.cpp` components, ensuring a more precise and consistent selection process.Mar 172waste
14ee19fThis commit **fixes a bug** within the **`TerminalControl`** module where selection markers would incorrectly disappear after being scrolled out of view and then back. The change in `src/cascadia/TerminalControl/TermControl.cpp` modifies the condition for updating these markers, now checking for the existence of a selection rather than their visibility. This ensures that selection markers persist reliably across scrolling actions, significantly improving the user experience for text selection.Mar 161waste
040c730This commit **refactors** the **TextBuffer**'s word expansion logic, simplifying multiple `GetWordStart`/`GetWordEnd` variants into unified APIs. It removes several specialized functions like `GetWordStart2()` and `_GetWordEndForSelection()`, standardizing word boundary calculations across the system. This change impacts **TerminalSelection** and **UiaTextRangeBase**, ensuring consistent word movement and selection behavior for accessibility tools and mouse interactions. Unit tests were updated to reflect new exclusive end positions and improved wrap-crossing behavior, preventing regressions and enhancing overall code maintainability.Mar 135maint
e2110e7This commit **fixes several memory leaks** within the **UI Automation (UIA) subsystem** of the Terminal Control. Previously, `ITextRangeProvider` objects, such as `UiaTextRange`s, were not being properly destroyed after use by screen readers, leading to persistent memory consumption. The **bug fix** involves correctly managing parent providers in `InteractivityAutomationPeer`, clearing circular references in `TermControlAutomationPeer`, and adjusting ownership transfers in `ScreenInfoUiaProviderBase` and `SafeArrayToOwningVector`. This ensures that **UIA objects are promptly deallocated**, significantly improving the stability and resource efficiency of the terminal, particularly for users relying on accessibility features.Mar 117waste
3918332This commit **fixes a bug** in **hyperlink detection** where partially visible URLs were not recognized, and **refactors** the underlying coordinate system. It expands the search area for patterns and transitions the `_patternIntervalTree` to operate in **absolute-buffer space** instead of viewport-relative coordinates, ensuring URLs cropped off-screen are correctly identified. This change also resolves issues with **mark mode hyperlink navigation** by consistently using buffer-absolute coordinates, improving the reliability of selecting and interacting with hyperlinks across the `TerminalCore` module. New tests validate the improved detection for various visibility scenarios, enhancing the overall user experience.Feb 276waste
e05a5fbThis commit **resolves a spellcheck warning** within the `tools/GenerateSettingsIndex.ps1` script by introducing commas into existing comments. Specifically, it addresses a "to for" pattern that was flagged as grammatically incorrect, thereby improving the **readability and adherence to style guidelines** of the script's internal documentation. This is a **maintenance change** focused on code quality, ensuring the script's comments are grammatically sound. The modification has no functional impact on the execution or behavior of the `GenerateSettingsIndex.ps1` script.Feb 271maint
fbd48e7This commit **refactors** the settings search index generation process, primarily by overhauling the `tools/GenerateSettingsIndex.ps1` script and updating related C++ components in the `TerminalSettingsEditor`. The PowerShell script now leverages **XML parsing for XAML files** and a class map to more accurately generate search index entries, addressing previous feedback. Corresponding C++ files like `SearchIndex.cpp` and `SearchIndex.h` are updated to align with these changes, refining the handling of **resource names and navigation arguments** for search entries. This work **polishes** the index generation, ensuring the settings UI search functions correctly and robustly.Feb 265maint
b4259e6This commit **refactors** the **Settings UI navigation** logic within `MainPage.cpp` and `MainPage.h` to improve maintainability and reduce complexity. It consolidates multiple `_Navigate()` functions into a single, unified method, streamlining how the **Terminal Settings Editor** handles navigation to various pages like profiles, color schemes, and actions. This **refactoring** effort also deduplicates `SettingsNav().SelectedItem()` calls and removes unnecessary element staging behavior for subpages. The change simplifies the underlying navigation mechanism, making the settings UI more robust and easier to extend in the future.Feb 256maint
f20c549This commit introduces a **new search functionality** to the **Terminal Settings UI**, enabling users to quickly find and navigate to specific settings. It involves a new `GenerateSettingsIndex.ps1` script to build a search index from XAML files, a sophisticated weighted search algorithm in `SearchIndex.cpp` utilizing `fzf` for fuzzy matching, and UI integration via an `AutoSuggestBox` in `MainPage.xaml`. This **feature enhancement** significantly **improves the discoverability and usability** of settings by allowing direct navigation and focus on the desired configuration option. Additionally, it includes refactoring the `fzf` dependency and adding `x:Name` attributes to numerous `SettingContainer` elements across various settings pages to facilitate programmatic navigation.Feb 2062grow
b6375ccThis commit introduces a **bug fix** within the **TerminalApp** to resolve inconsistent behavior when using the **broadcast input feature**. It **refactors the paste logic** in `src/cascadia/TerminalApp/TerminalPage.cpp` to ensure that text pasted via the **mouse** is now correctly **broadcast to all active panes**. Previously, only keyboard-initiated pastes were broadcast, leading to a functional discrepancy. This change significantly improves the reliability and consistency of the **broadcast input feature** for users, making mouse paste behave as expected.Feb 191waste
21754faThis commit **refactors** the **Terminal Settings Editor (SUI)** by **standardizing the navigation argument types** used throughout its various pages. It replaces disparate `NavigateToXArgs` structures with a unified `NavigateToPageArgs` across numerous `OnNavigatedTo` methods and internal navigation calls. This change affects almost all sub-pages and view models within the settings UI, including `Actions`, `AddProfile`, `ColorSchemes`, `GlobalAppearance`, `Launch`, and various `Profiles` sections. The primary goal is to improve code consistency and maintainability, simplifying the internal navigation logic and reducing complexity for future development in the settings interface.Feb 1023maint
27aae1fThis commit implements a **bug fix** to resolve a **memory leak** within the **TerminalSettingsEditor** by addressing circular references involving `IHostedInWindow` and `WindowRoot`. It primarily involves **refactoring** various components, including `MainPage`, `NewTabMenu`, `IconPicker`, and several `Profile` view models, to replace strong references to these window-hosting interfaces with weak references. Additionally, null checks are introduced for `WindowRoot` access points to enhance safety. This change ensures that UI elements and their associated view models are properly deallocated when the settings UI is closed, preventing memory accumulation and improving the overall resource efficiency and stability of the application.Feb 317waste
a449899This commit introduces a **new `IconPicker` control** by extracting and generalizing the icon selection logic previously embedded in the **Profile settings** UI. This **refactoring** simplifies icon management across the application and enables a **new capability** for users to assign custom icons to folders within the **New Tab Menu**. The `IconPicker` supports various icon types (none, built-in, emoji, file) and includes performance improvements like lazy loading. Additionally, navigation to the `NewTabMenu` is standardized via a new `NavigateToPageArgs` structure. This change significantly enhances the customization options for the **New Tab Menu** and improves code reusability for icon selection throughout the **Terminal Settings Editor**.Feb 224grow
b668fd5This commit significantly **improves accessibility** for the **terminal search box** by enhancing screen reader announcements. It addresses inconsistencies where search results were not always read aloud and refines the spoken status messages to be more descriptive and accurate for visually impaired users. Specifically, the `_FormatStatus` method in `SearchBoxControl.cpp` now includes an `isAccessible` parameter to generate clearer messages, replacing ambiguous symbols like `?` and `+` with full words and rephrasing fractions (e.g., "4/5" becomes "4 of 5"). This ensures a more reliable and understandable user experience when navigating search results with a screen reader.Jan 144grow
3c1bfcbThis commit **adds tooltips** to various UI elements within the **Terminal Settings Editor** to prevent text truncation. Specifically, it introduces tooltips for both static and dynamically generated **navigation view items** in the settings UI, and for **color scheme names** displayed in the profile appearance settings combo box. This **new feature** significantly enhances usability by ensuring all text is accessible to users, addressing potential information loss. A minor **refactoring** in `src/cascadia/TerminalSettingsEditor/MainPage.xaml` was performed to add `x:Name` attributes, enabling programmatic access for setting these tooltips via `MainPage.cpp`.Jan 73grow
baab0eaThis commit **improves accessibility** for the **font features and axes controls** within the Terminal's settings editor. It explicitly adds the `AutomationProperties.Name` property to UI elements such as list view items, number boxes, and delete buttons, allowing screen readers to correctly identify and announce them. This **accessibility enhancement** is implemented by introducing an `AutomationName` method to the `FontKeyValuePair` class and updating the `Appearances.xaml` and resource files. The change provides a more inclusive user experience for individuals interacting with the **font customization settings**.Jan 75grow
3104c8fMar 31

This commit provides a **bug fix** for the **TerminalControl** module, addressing an issue where **selection markers** would erroneously appear when scrolling during **mouse selection**. The `TermControl.cpp` file's scroll handler is updated to check the current **selection mode** before rendering these markers. This ensures that selection markers are only displayed for **keyboard-based selections**, preventing visual artifacts and improving the user experience by correctly hiding markers during mouse-driven scrolling.

1 fileswaste
ec939aaMar 30

This commit **fixes a bug** where restarting a terminal connection would not properly reset the internal **VT state**, leading to lingering escape sequences like mouse mode. It introduces an `erase` parameter to `ITermDispatch::HardReset()` and exposes a new `HardResetWithoutErase()` method through the `Terminal`, `ControlCore`, and `TermControl` layers. The **terminal connection restart mechanism** in `TerminalPage::_restartPaneConnection()` now utilizes this new method to reset the VT state machine without clearing the buffer. This **refactoring** and **bug fix** significantly improves the **user experience** by ensuring a clean terminal state upon reconnection while preserving the session history.

15 fileswaste
eea035cMar 27

This commit implements a **new capability** to correctly set the AppUserModelID (AUMID) for **unpackaged Windows Terminal** instances. The `WindowEmperor.cpp` module now generates a unique AUMID, incorporating the application's branding, a hash of the full process image name, and the user's SID hash. This **feature implementation** ensures proper shell integration, such as taskbar pinning and jump lists, for users running the unpackaged version of the terminal. Specifically, the logic within `HandleCommandlineArgs` is enhanced to manage this identification.

1 filesgrow
c562dadMar 23

This commit **fixes a theming bug** in the **TerminalSettingsEditor** where the search dropdown did not correctly inherit the terminal's theme. Previously, popups, being in a separate UI tree, would not apply the theme, leading to visual inconsistencies. A new helper function, `_setThemeOnPopups`, was added to `src/cascadia/TerminalSettingsEditor/MainPage.cpp` to recursively apply the theme to these popups. This function is now called during `OnNavigatedTo` and `_ApplyTheme` to ensure the **search dropdown's theme correctly matches the terminal's theme**, improving visual consistency for users.

1 fileswaste
2e33056Mar 17

This commit **significantly improves the user experience for selection within VT mouse mode** by addressing several inconsistencies. It **fixes bugs** related to selection accuracy, such as preventing coordinate rounding and correcting drag-left behavior to include the starting cell. Crucially, **Shift+Click now clears any existing selection** to initiate a new one, making the interaction more intuitive. These enhancements primarily affect the **TerminalControl** module's `ControlCore.cpp` and `ControlInteractivity.cpp` components, ensuring a more precise and consistent selection process.

2 fileswaste
14ee19fMar 16

This commit **fixes a bug** within the **`TerminalControl`** module where selection markers would incorrectly disappear after being scrolled out of view and then back. The change in `src/cascadia/TerminalControl/TermControl.cpp` modifies the condition for updating these markers, now checking for the existence of a selection rather than their visibility. This ensures that selection markers persist reliably across scrolling actions, significantly improving the user experience for text selection.

1 fileswaste
040c730Mar 13

This commit **refactors** the **TextBuffer**'s word expansion logic, simplifying multiple `GetWordStart`/`GetWordEnd` variants into unified APIs. It removes several specialized functions like `GetWordStart2()` and `_GetWordEndForSelection()`, standardizing word boundary calculations across the system. This change impacts **TerminalSelection** and **UiaTextRangeBase**, ensuring consistent word movement and selection behavior for accessibility tools and mouse interactions. Unit tests were updated to reflect new exclusive end positions and improved wrap-crossing behavior, preventing regressions and enhancing overall code maintainability.

5 filesmaint
e2110e7Mar 11

This commit **fixes several memory leaks** within the **UI Automation (UIA) subsystem** of the Terminal Control. Previously, `ITextRangeProvider` objects, such as `UiaTextRange`s, were not being properly destroyed after use by screen readers, leading to persistent memory consumption. The **bug fix** involves correctly managing parent providers in `InteractivityAutomationPeer`, clearing circular references in `TermControlAutomationPeer`, and adjusting ownership transfers in `ScreenInfoUiaProviderBase` and `SafeArrayToOwningVector`. This ensures that **UIA objects are promptly deallocated**, significantly improving the stability and resource efficiency of the terminal, particularly for users relying on accessibility features.

7 fileswaste
3918332Feb 27

This commit **fixes a bug** in **hyperlink detection** where partially visible URLs were not recognized, and **refactors** the underlying coordinate system. It expands the search area for patterns and transitions the `_patternIntervalTree` to operate in **absolute-buffer space** instead of viewport-relative coordinates, ensuring URLs cropped off-screen are correctly identified. This change also resolves issues with **mark mode hyperlink navigation** by consistently using buffer-absolute coordinates, improving the reliability of selecting and interacting with hyperlinks across the `TerminalCore` module. New tests validate the improved detection for various visibility scenarios, enhancing the overall user experience.

6 fileswaste
e05a5fbFeb 27

This commit **resolves a spellcheck warning** within the `tools/GenerateSettingsIndex.ps1` script by introducing commas into existing comments. Specifically, it addresses a "to for" pattern that was flagged as grammatically incorrect, thereby improving the **readability and adherence to style guidelines** of the script's internal documentation. This is a **maintenance change** focused on code quality, ensuring the script's comments are grammatically sound. The modification has no functional impact on the execution or behavior of the `GenerateSettingsIndex.ps1` script.

1 filesmaint
fbd48e7Feb 26

This commit **refactors** the settings search index generation process, primarily by overhauling the `tools/GenerateSettingsIndex.ps1` script and updating related C++ components in the `TerminalSettingsEditor`. The PowerShell script now leverages **XML parsing for XAML files** and a class map to more accurately generate search index entries, addressing previous feedback. Corresponding C++ files like `SearchIndex.cpp` and `SearchIndex.h` are updated to align with these changes, refining the handling of **resource names and navigation arguments** for search entries. This work **polishes** the index generation, ensuring the settings UI search functions correctly and robustly.

5 filesmaint
b4259e6Feb 25

This commit **refactors** the **Settings UI navigation** logic within `MainPage.cpp` and `MainPage.h` to improve maintainability and reduce complexity. It consolidates multiple `_Navigate()` functions into a single, unified method, streamlining how the **Terminal Settings Editor** handles navigation to various pages like profiles, color schemes, and actions. This **refactoring** effort also deduplicates `SettingsNav().SelectedItem()` calls and removes unnecessary element staging behavior for subpages. The change simplifies the underlying navigation mechanism, making the settings UI more robust and easier to extend in the future.

6 filesmaint
f20c549Feb 20

This commit introduces a **new search functionality** to the **Terminal Settings UI**, enabling users to quickly find and navigate to specific settings. It involves a new `GenerateSettingsIndex.ps1` script to build a search index from XAML files, a sophisticated weighted search algorithm in `SearchIndex.cpp` utilizing `fzf` for fuzzy matching, and UI integration via an `AutoSuggestBox` in `MainPage.xaml`. This **feature enhancement** significantly **improves the discoverability and usability** of settings by allowing direct navigation and focus on the desired configuration option. Additionally, it includes refactoring the `fzf` dependency and adding `x:Name` attributes to numerous `SettingContainer` elements across various settings pages to facilitate programmatic navigation.

62 filesgrow
b6375ccFeb 19

This commit introduces a **bug fix** within the **TerminalApp** to resolve inconsistent behavior when using the **broadcast input feature**. It **refactors the paste logic** in `src/cascadia/TerminalApp/TerminalPage.cpp` to ensure that text pasted via the **mouse** is now correctly **broadcast to all active panes**. Previously, only keyboard-initiated pastes were broadcast, leading to a functional discrepancy. This change significantly improves the reliability and consistency of the **broadcast input feature** for users, making mouse paste behave as expected.

1 fileswaste
21754faFeb 10

This commit **refactors** the **Terminal Settings Editor (SUI)** by **standardizing the navigation argument types** used throughout its various pages. It replaces disparate `NavigateToXArgs` structures with a unified `NavigateToPageArgs` across numerous `OnNavigatedTo` methods and internal navigation calls. This change affects almost all sub-pages and view models within the settings UI, including `Actions`, `AddProfile`, `ColorSchemes`, `GlobalAppearance`, `Launch`, and various `Profiles` sections. The primary goal is to improve code consistency and maintainability, simplifying the internal navigation logic and reducing complexity for future development in the settings interface.

23 filesmaint
27aae1fFeb 3

This commit implements a **bug fix** to resolve a **memory leak** within the **TerminalSettingsEditor** by addressing circular references involving `IHostedInWindow` and `WindowRoot`. It primarily involves **refactoring** various components, including `MainPage`, `NewTabMenu`, `IconPicker`, and several `Profile` view models, to replace strong references to these window-hosting interfaces with weak references. Additionally, null checks are introduced for `WindowRoot` access points to enhance safety. This change ensures that UI elements and their associated view models are properly deallocated when the settings UI is closed, preventing memory accumulation and improving the overall resource efficiency and stability of the application.

17 fileswaste
a449899Feb 2

This commit introduces a **new `IconPicker` control** by extracting and generalizing the icon selection logic previously embedded in the **Profile settings** UI. This **refactoring** simplifies icon management across the application and enables a **new capability** for users to assign custom icons to folders within the **New Tab Menu**. The `IconPicker` supports various icon types (none, built-in, emoji, file) and includes performance improvements like lazy loading. Additionally, navigation to the `NewTabMenu` is standardized via a new `NavigateToPageArgs` structure. This change significantly enhances the customization options for the **New Tab Menu** and improves code reusability for icon selection throughout the **Terminal Settings Editor**.

24 filesgrow
b668fd5Jan 14

This commit significantly **improves accessibility** for the **terminal search box** by enhancing screen reader announcements. It addresses inconsistencies where search results were not always read aloud and refines the spoken status messages to be more descriptive and accurate for visually impaired users. Specifically, the `_FormatStatus` method in `SearchBoxControl.cpp` now includes an `isAccessible` parameter to generate clearer messages, replacing ambiguous symbols like `?` and `+` with full words and rephrasing fractions (e.g., "4/5" becomes "4 of 5"). This ensures a more reliable and understandable user experience when navigating search results with a screen reader.

4 filesgrow
3c1bfcbJan 7

This commit **adds tooltips** to various UI elements within the **Terminal Settings Editor** to prevent text truncation. Specifically, it introduces tooltips for both static and dynamically generated **navigation view items** in the settings UI, and for **color scheme names** displayed in the profile appearance settings combo box. This **new feature** significantly enhances usability by ensuring all text is accessible to users, addressing potential information loss. A minor **refactoring** in `src/cascadia/TerminalSettingsEditor/MainPage.xaml` was performed to add `x:Name` attributes, enabling programmatic access for setting these tooltips via `MainPage.cpp`.

3 filesgrow
baab0eaJan 7

This commit **improves accessibility** for the **font features and axes controls** within the Terminal's settings editor. It explicitly adds the `AutomationProperties.Name` property to UI elements such as list view items, number boxes, and delete buttons, allowing screen readers to correctly identify and announce them. This **accessibility enhancement** is implemented by introducing an `AutomationName` method to the `FontKeyValuePair` class and updating the `Appearances.xaml` and resource files. The change provides a more inclusive user experience for individuals interacting with the **font customization settings**.

5 filesgrow

Work Patterns

Beta

Commit activity distribution by hour and day of week. Shows when this developer is most active.

Collaboration

Beta

Developers who frequently work on the same files and symbols. Higher score means stronger code collaboration.

NavigaraNavigara
OrganizationsDistributionCompareResearch