NavigaraNavigara
OrganizationsDistributionCompareResearch
NavigaraNavigara
OrganizationsDistributionCompareResearch
All developers

Heiko

Developer

Heiko

61519853+htcfreek@users.noreply.github.com

21 commits~9 files/commit

Performance

YoY:+522%
2026Previous year

Insights

Key patterns and highlights from this developer's activity.

Peak MonthJun'25297 performance
Growth Trend↑48%vs prior period
Avg Files/Commit9files per commit
Active Days17of 455 days
Top RepoPowerToys20 commits

Effort Over Time

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

Bug Behavior

Beta

Bugs introduced vs. fixed over time.

No bugs introduced or fixed in this period.

Investment Quality

Beta

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

86%Productive TimeGrowth 94% + Fixes 6%
14%Maintenance Time
0%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
e935fafThis commit performs a **UI refinement** within the **Settings UI** for **PowerToys**, specifically on the **Advanced Paste page**. It **relocates the Group Policy Object (GPO) information bar** related to **Clipboard History** within `src/settings-ui/Settings.UI/SettingsXAML/Views/AdvancedPastePage.xaml`. This **layout adjustment** ensures the GPO info bar is positioned directly after its corresponding setting, improving the logical flow and user experience for administrators managing Clipboard History via GPO. The change enhances the clarity and consistency of the settings interface.Feb 111maint
eb5f4c6This commit implements a **bug fix** for the **Settings UI**, specifically addressing an issue on the **General settings page** where the **Bug Report button** was erroneously disabled if Telemetry Group Policy Objects (GPO) were active. The change **replaces the GPO control** that previously governed the button's state with an **informative `InfoBar`** displayed between the diagnostics settings and the report button. This ensures the bug report functionality is always accessible to users, while still providing clear communication regarding GPO management, thereby improving the overall **user experience** and **accessibility** of reporting tools.Feb 111waste
5ecb97bThis commit introduces a **new Group Policy definition** for the **CursorWrap** utility, enabling centralized management of its settings within enterprise environments. It **adds the missing policy configuration** to `PowerToys.admx` and provides corresponding localized strings in `PowerToys.adml` for the `en-US` locale. This enhancement allows administrators to control CursorWrap behavior through **Group Policy Objects (GPO)**, ensuring consistent deployment and configuration across an organization. The change primarily affects the **Group Policy integration** of PowerToys, providing a new capability for enterprise users.Jan 272grow
65b752bThis commit **enhances the user experience** for **CmdPal** extensions by implementing specific "empty content" and "no results" messages. It **improves** the behavior of **WindowWalker**, **Windows Settings**, and **Windows Search (Indexer)** when the search query is empty or yields no matches, providing clearer feedback to the user. For **WindowWalker**, it now displays "No open windows found" and for **Windows Search (Indexer)**, it shows "No items found" with a tip. Additionally, the **Windows Settings** extension sees a **refactoring** of its internal prioritization logic, changing `ShowAsFirstResult` to `AppHomepageScore` for better control over default suggestions when the query is empty. This **feature enhancement** ensures a more intuitive interaction with CmdPal's search functionalities across these modules.Aug 1812grow
b2d7182This commit delivers substantial **improvements and bug fixes** to the **RegistryPreview** module's file saving and state management capabilities. It introduces an **unsaved file indicator** in the title bar, intelligently makes the `Save` button function as `Save As` for new files, and prompts users for a save path when closing unsaved, newly created files. The changes also **resolve several crashes** and incorrect UI states related to file operations, such as double-clicking the close button or handling failed save actions, and add a **reload dialog** for unsaved changes, significantly enhancing the application's robustness and user experience for file handling.Jun 173grow
82e9d42This commit implements a **bug fix** for the **CmdPal Time & Date extension**, specifically addressing an issue where **fallback items** were missing their associated command. It **restores the functionality** by ensuring the `Command` property is correctly assigned to `FallbackTimeDateItem` instances within `src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.TimeDate/FallbackTimeDateItem.cs`. This change allows users to properly utilize the "copy command" for Time & Date fallback results, enhancing the completeness and usability of the Command Palette's Time & Date plugin.Jun 161waste
2255106This commit delivers a **bug fix** for the **CmdPal Time & Date extension**, resolving an issue where search results were being cached, leading to outdated information. The change specifically removes the `initialized` flag and related caching logic within `TimeDateExtensionPage.cs`, impacting methods like `GetItems`, `UpdateSearchText`, and `SetResults`. This ensures that the **CmdPal Time & Date extension** will now consistently provide **real-time and accurate time and date information**, significantly improving the reliability and user experience of this utility.Jun 161waste
abc5c3eThis commit introduces an **extended data preview capability** within the **Registry Preview** module, allowing users to inspect complex registry values in a dedicated window. It adds a new button to the data grid and a context menu option to trigger this preview for various data types like `REG_SZ`, `REG_MULTI_SZ`, `REG_BINARY`, and numeric values. A new `HexBox` control was integrated to facilitate detailed hexadecimal and binary data visualization, along with supporting utilities for endianness and data formatting. This **feature addition** significantly enhances the user experience by providing clearer and more comprehensive insights into registry entry contents, making the **Registry Preview** tool more powerful for inspecting complex data.Jun 1334grow
d314fa0This commit introduces a **new feature** to the **Registry Preview** module, allowing users to create new registry files directly within the application. It adds a "New" `AppBarButton` to the UI, which, when clicked, triggers the `NewButton_Click` event handler to **reset the editor** and initialize a blank registry file with a default header. The `ResetEditorAndFile` utility method handles the editor state, including prompting the user to save any unsaved changes before creating the new file. This enhancement significantly improves the tool's utility by allowing users to easily start new `.reg` files from scratch.Apr 215grow
311ab88This commit delivers significant **feature enhancements** to the **Command Palette's Time and Date extension**, primarily by introducing support for **custom date/time formats** and expanding its parsing capabilities. Users can now define and manage their own formats, and the extension can interpret Unix timestamps, Windows file times, OLE Automation dates, and Excel dates, alongside new predefined calculations like 'Days in Month' and 'Leap Year'. Additionally, this update includes **bug fixes** and improvements to error handling, providing more detailed error messages for invalid input within the `TimeDateCalculator` and `ResultHelper`. These changes make the `Microsoft.CmdPal.Ext.TimeDate` module more powerful and user-friendly, offering a richer and more informative date and time manipulation experience.Apr 2110grow
68d9e0dThis commit **introduces a new Group Policy definition** for the **Windows Terminal** application, allowing administrators to centrally configure the "Default Terminal app" setting. It **adds the necessary ADMX and ADML template files** (`policies/WindowsTerminal.admx`, `policies/en-US/WindowsTerminal.adml`) to provide this new administrative capability, including localized strings. This **feature enhancement** specifically targets user-level policy management (HKCU) and is implemented as a preference, meaning the configured default terminal will persist even if the policy is later unconfigured. The change solely focuses on **policy definition templates** and does not alter any application code for Windows, Console Host, or Windows Terminal itself.Apr 182grow
cb27874This commit **enhances error reporting** within **PowerToys Run** by embedding crucial version information directly into plugin failure messages. It introduces a new `ExecuteFileVersion` property and `SetExecutableVersion` method to the `Wox.Plugin/PluginMetadata` class, allowing the **plugin infrastructure** to store the executable version of each plugin. Consequently, the `PowerLauncher` module's error messages, specifically for plugin initialization and loading failures, are updated to display both the problematic plugin's executable version and the PowerToys Run application version. This **feature addition** significantly improves **diagnosability** for users and developers by providing more comprehensive context when plugins fail to operate correctly.Apr 168grow
ce620e4This commit significantly **enhances the PowerToys Run Time and Date plugin** by introducing support for **user-defined custom date and time formats**, allowing users to specify how date and time queries are displayed. It also adds new predefined queries such as "days in month" and "leap year", alongside improved date parsing capabilities for OLE Automation and Excel date formats. A new `CustomFormats` setting has been added for user configuration, and the **developer documentation for the plugin has been updated** to detail these new features. This **feature enhancement** provides users with much greater flexibility and power when interacting with date and time queries within PowerToys Run, improving overall usability and functionality.Apr 114grow
33cc612This commit delivers a series of **bug fixes and usability improvements** for the **Command Palette (CmdPal) extensions**, specifically targeting **All Apps**, **Time and Date**, and **System Commands**. It **fixes missing commands** to access settings pages for All Apps and System Commands, and resolves issues with the Time and Date extension's settings visibility and page title. Additionally, the **System Commands extension** sees corrections to network detail displays (IPv6, MAC address), layout enhancements, and a **refactoring** of the `Hide Empty Recycle Bin command` setting, including a default value change for hiding disconnected networks. These updates collectively enhance the accuracy, discoverability, and user experience of these core CmdPal functionalities.Mar 2412maint
394583fThis commit **updates** the project's **legal documentation** by modifying `NOTICE.md`. It **reorders and re-adds** the section detailing the **Command Palette** utility. This **documentation fix** ensures the correct and complete inclusion of the associated `wyhash` license information, maintaining accurate attribution and compliance within the project's notices.Mar 191maint
7bdd6c6This commit **disables spell checking** for multiple `TextBox` elements within the **PowerToys Run plugin settings** user interface. Specifically, it modifies the `PowerLauncherPage.xaml` in the `Settings.UI` module to prevent unwanted spell check suggestions. This is a **usability improvement** that enhances the user experience by removing irrelevant spell check indicators from configuration input fields. Users will no longer encounter red underlines or automatic corrections when entering plugin-specific settings or technical values in these text boxes.Mar 161grow
403060eThis commit significantly **enhances Group Policy Object (GPO) integration and user experience** across numerous **PowerToys modules** within the **Settings UI**. It primarily involves **adding GPO icons to InfoBars** on nearly every settings page, including **Awake, FancyZones, Power Launcher, and Mouse Utilities**, to clearly indicate when a setting is managed by GPO. Additionally, the commit **refactors GPO state handling** in modules like **Awake and Command Not Found**, introduces a **new InfoBar for Advanced Paste AI model configuration**, and updates string resources for improved messaging. These **UI enhancements and refactorings** provide clearer feedback to users about policy-controlled settings, improving transparency and manageability for enterprise environments.Jan 1933maint
44f170dThis commit significantly enhances the **RegistryPreview** module by introducing **new capabilities** for user interaction and improving data presentation. It adds **context menus** to registry key and value display elements, allowing users to easily copy key names, paths, and various value details to the clipboard, facilitated by a new `ClipboardHelper` class. Additionally, it includes a crucial **bug fix** for the parsing of `REG_MULTI_SZ` values, ensuring correct line break formatting and better presentation of multi-line data. This work improves the overall usability and accuracy of the `RegistryPreview` tool, making it more efficient for users to extract and view registry information.Jan 177grow
a29ff07This commit **introduces a new feature** to the **PowerToys Run (PTRun) settings UI**, enabling users to view detailed information for each plugin. It **adds the capability to display plugin version numbers and clickable website links** directly on the `PowerLauncherPage.xaml`. This involves **updating the plugin data model** in `PowerLauncherPluginSettings.cs`, **implementing logic to extract version information** from plugin executables within `SettingsReader.cs`, and **enhancing the ViewModel** (`PowerLauncherPluginViewModel.cs`) to support these new properties. Additionally, several `plugin.json` files receive **maintenance updates** to standardize their `Website` URLs, and developer documentation is improved to reflect these changes, providing better transparency and access to plugin details.Jan 825grow
308c4b8This commit **fixes a bug** affecting the **PowerToys Run Calculator plugin's unit tests** on non-English systems. Previously, these tests would fail due to incorrect handling of decimal separators in different locales. A **workaround has been added** within the `QueryTests.cs` file to correctly parse decimal values, ensuring the tests now pass reliably regardless of the system's language settings. This improves the **stability and internationalization compatibility** of the test suite for the Calculator plugin.Jan 81maint
e935fafFeb 11

This commit performs a **UI refinement** within the **Settings UI** for **PowerToys**, specifically on the **Advanced Paste page**. It **relocates the Group Policy Object (GPO) information bar** related to **Clipboard History** within `src/settings-ui/Settings.UI/SettingsXAML/Views/AdvancedPastePage.xaml`. This **layout adjustment** ensures the GPO info bar is positioned directly after its corresponding setting, improving the logical flow and user experience for administrators managing Clipboard History via GPO. The change enhances the clarity and consistency of the settings interface.

1 filesmaint
eb5f4c6Feb 11

This commit implements a **bug fix** for the **Settings UI**, specifically addressing an issue on the **General settings page** where the **Bug Report button** was erroneously disabled if Telemetry Group Policy Objects (GPO) were active. The change **replaces the GPO control** that previously governed the button's state with an **informative `InfoBar`** displayed between the diagnostics settings and the report button. This ensures the bug report functionality is always accessible to users, while still providing clear communication regarding GPO management, thereby improving the overall **user experience** and **accessibility** of reporting tools.

1 fileswaste
5ecb97bJan 27

This commit introduces a **new Group Policy definition** for the **CursorWrap** utility, enabling centralized management of its settings within enterprise environments. It **adds the missing policy configuration** to `PowerToys.admx` and provides corresponding localized strings in `PowerToys.adml` for the `en-US` locale. This enhancement allows administrators to control CursorWrap behavior through **Group Policy Objects (GPO)**, ensuring consistent deployment and configuration across an organization. The change primarily affects the **Group Policy integration** of PowerToys, providing a new capability for enterprise users.

2 filesgrow
65b752bAug 18

This commit **enhances the user experience** for **CmdPal** extensions by implementing specific "empty content" and "no results" messages. It **improves** the behavior of **WindowWalker**, **Windows Settings**, and **Windows Search (Indexer)** when the search query is empty or yields no matches, providing clearer feedback to the user. For **WindowWalker**, it now displays "No open windows found" and for **Windows Search (Indexer)**, it shows "No items found" with a tip. Additionally, the **Windows Settings** extension sees a **refactoring** of its internal prioritization logic, changing `ShowAsFirstResult` to `AppHomepageScore` for better control over default suggestions when the query is empty. This **feature enhancement** ensures a more intuitive interaction with CmdPal's search functionalities across these modules.

12 filesgrow
b2d7182Jun 17

This commit delivers substantial **improvements and bug fixes** to the **RegistryPreview** module's file saving and state management capabilities. It introduces an **unsaved file indicator** in the title bar, intelligently makes the `Save` button function as `Save As` for new files, and prompts users for a save path when closing unsaved, newly created files. The changes also **resolve several crashes** and incorrect UI states related to file operations, such as double-clicking the close button or handling failed save actions, and add a **reload dialog** for unsaved changes, significantly enhancing the application's robustness and user experience for file handling.

3 filesgrow
82e9d42Jun 16

This commit implements a **bug fix** for the **CmdPal Time & Date extension**, specifically addressing an issue where **fallback items** were missing their associated command. It **restores the functionality** by ensuring the `Command` property is correctly assigned to `FallbackTimeDateItem` instances within `src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.TimeDate/FallbackTimeDateItem.cs`. This change allows users to properly utilize the "copy command" for Time & Date fallback results, enhancing the completeness and usability of the Command Palette's Time & Date plugin.

1 fileswaste
2255106Jun 16

This commit delivers a **bug fix** for the **CmdPal Time & Date extension**, resolving an issue where search results were being cached, leading to outdated information. The change specifically removes the `initialized` flag and related caching logic within `TimeDateExtensionPage.cs`, impacting methods like `GetItems`, `UpdateSearchText`, and `SetResults`. This ensures that the **CmdPal Time & Date extension** will now consistently provide **real-time and accurate time and date information**, significantly improving the reliability and user experience of this utility.

1 fileswaste
abc5c3eJun 13

This commit introduces an **extended data preview capability** within the **Registry Preview** module, allowing users to inspect complex registry values in a dedicated window. It adds a new button to the data grid and a context menu option to trigger this preview for various data types like `REG_SZ`, `REG_MULTI_SZ`, `REG_BINARY`, and numeric values. A new `HexBox` control was integrated to facilitate detailed hexadecimal and binary data visualization, along with supporting utilities for endianness and data formatting. This **feature addition** significantly enhances the user experience by providing clearer and more comprehensive insights into registry entry contents, making the **Registry Preview** tool more powerful for inspecting complex data.

34 filesgrow
d314fa0Apr 21

This commit introduces a **new feature** to the **Registry Preview** module, allowing users to create new registry files directly within the application. It adds a "New" `AppBarButton` to the UI, which, when clicked, triggers the `NewButton_Click` event handler to **reset the editor** and initialize a blank registry file with a default header. The `ResetEditorAndFile` utility method handles the editor state, including prompting the user to save any unsaved changes before creating the new file. This enhancement significantly improves the tool's utility by allowing users to easily start new `.reg` files from scratch.

5 filesgrow
311ab88Apr 21

This commit delivers significant **feature enhancements** to the **Command Palette's Time and Date extension**, primarily by introducing support for **custom date/time formats** and expanding its parsing capabilities. Users can now define and manage their own formats, and the extension can interpret Unix timestamps, Windows file times, OLE Automation dates, and Excel dates, alongside new predefined calculations like 'Days in Month' and 'Leap Year'. Additionally, this update includes **bug fixes** and improvements to error handling, providing more detailed error messages for invalid input within the `TimeDateCalculator` and `ResultHelper`. These changes make the `Microsoft.CmdPal.Ext.TimeDate` module more powerful and user-friendly, offering a richer and more informative date and time manipulation experience.

10 filesgrow
68d9e0dApr 18

This commit **introduces a new Group Policy definition** for the **Windows Terminal** application, allowing administrators to centrally configure the "Default Terminal app" setting. It **adds the necessary ADMX and ADML template files** (`policies/WindowsTerminal.admx`, `policies/en-US/WindowsTerminal.adml`) to provide this new administrative capability, including localized strings. This **feature enhancement** specifically targets user-level policy management (HKCU) and is implemented as a preference, meaning the configured default terminal will persist even if the policy is later unconfigured. The change solely focuses on **policy definition templates** and does not alter any application code for Windows, Console Host, or Windows Terminal itself.

2 filesgrow
cb27874Apr 16

This commit **enhances error reporting** within **PowerToys Run** by embedding crucial version information directly into plugin failure messages. It introduces a new `ExecuteFileVersion` property and `SetExecutableVersion` method to the `Wox.Plugin/PluginMetadata` class, allowing the **plugin infrastructure** to store the executable version of each plugin. Consequently, the `PowerLauncher` module's error messages, specifically for plugin initialization and loading failures, are updated to display both the problematic plugin's executable version and the PowerToys Run application version. This **feature addition** significantly improves **diagnosability** for users and developers by providing more comprehensive context when plugins fail to operate correctly.

8 filesgrow
ce620e4Apr 1

This commit significantly **enhances the PowerToys Run Time and Date plugin** by introducing support for **user-defined custom date and time formats**, allowing users to specify how date and time queries are displayed. It also adds new predefined queries such as "days in month" and "leap year", alongside improved date parsing capabilities for OLE Automation and Excel date formats. A new `CustomFormats` setting has been added for user configuration, and the **developer documentation for the plugin has been updated** to detail these new features. This **feature enhancement** provides users with much greater flexibility and power when interacting with date and time queries within PowerToys Run, improving overall usability and functionality.

14 filesgrow
33cc612Mar 24

This commit delivers a series of **bug fixes and usability improvements** for the **Command Palette (CmdPal) extensions**, specifically targeting **All Apps**, **Time and Date**, and **System Commands**. It **fixes missing commands** to access settings pages for All Apps and System Commands, and resolves issues with the Time and Date extension's settings visibility and page title. Additionally, the **System Commands extension** sees corrections to network detail displays (IPv6, MAC address), layout enhancements, and a **refactoring** of the `Hide Empty Recycle Bin command` setting, including a default value change for hiding disconnected networks. These updates collectively enhance the accuracy, discoverability, and user experience of these core CmdPal functionalities.

12 filesmaint
394583fMar 19

This commit **updates** the project's **legal documentation** by modifying `NOTICE.md`. It **reorders and re-adds** the section detailing the **Command Palette** utility. This **documentation fix** ensures the correct and complete inclusion of the associated `wyhash` license information, maintaining accurate attribution and compliance within the project's notices.

1 filesmaint
7bdd6c6Mar 16

This commit **disables spell checking** for multiple `TextBox` elements within the **PowerToys Run plugin settings** user interface. Specifically, it modifies the `PowerLauncherPage.xaml` in the `Settings.UI` module to prevent unwanted spell check suggestions. This is a **usability improvement** that enhances the user experience by removing irrelevant spell check indicators from configuration input fields. Users will no longer encounter red underlines or automatic corrections when entering plugin-specific settings or technical values in these text boxes.

1 filesgrow
403060eJan 19

This commit significantly **enhances Group Policy Object (GPO) integration and user experience** across numerous **PowerToys modules** within the **Settings UI**. It primarily involves **adding GPO icons to InfoBars** on nearly every settings page, including **Awake, FancyZones, Power Launcher, and Mouse Utilities**, to clearly indicate when a setting is managed by GPO. Additionally, the commit **refactors GPO state handling** in modules like **Awake and Command Not Found**, introduces a **new InfoBar for Advanced Paste AI model configuration**, and updates string resources for improved messaging. These **UI enhancements and refactorings** provide clearer feedback to users about policy-controlled settings, improving transparency and manageability for enterprise environments.

33 filesmaint
44f170dJan 17

This commit significantly enhances the **RegistryPreview** module by introducing **new capabilities** for user interaction and improving data presentation. It adds **context menus** to registry key and value display elements, allowing users to easily copy key names, paths, and various value details to the clipboard, facilitated by a new `ClipboardHelper` class. Additionally, it includes a crucial **bug fix** for the parsing of `REG_MULTI_SZ` values, ensuring correct line break formatting and better presentation of multi-line data. This work improves the overall usability and accuracy of the `RegistryPreview` tool, making it more efficient for users to extract and view registry information.

7 filesgrow
a29ff07Jan 8

This commit **introduces a new feature** to the **PowerToys Run (PTRun) settings UI**, enabling users to view detailed information for each plugin. It **adds the capability to display plugin version numbers and clickable website links** directly on the `PowerLauncherPage.xaml`. This involves **updating the plugin data model** in `PowerLauncherPluginSettings.cs`, **implementing logic to extract version information** from plugin executables within `SettingsReader.cs`, and **enhancing the ViewModel** (`PowerLauncherPluginViewModel.cs`) to support these new properties. Additionally, several `plugin.json` files receive **maintenance updates** to standardize their `Website` URLs, and developer documentation is improved to reflect these changes, providing better transparency and access to plugin details.

25 filesgrow
308c4b8Jan 8

This commit **fixes a bug** affecting the **PowerToys Run Calculator plugin's unit tests** on non-English systems. Previously, these tests would fail due to incorrect handling of decimal separators in different locales. A **workaround has been added** within the `QueryTests.cs` file to correctly parse decimal values, ensuring the tests now pass reliably regardless of the system's language settings. This improves the **stability and internationalization compatibility** of the test suite for the Calculator plugin.

1 filesmaint

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