repowiserepowise
Sign in
baneeishaque/go-homedir
OverviewDocsArchitectureKnowledge GraphFilesCode HealthRefactoring

People & History

CommitsContributorsDecisions
ChatPro
Stats
repowiserepowise
ExplorePricingDocs
Sign inIndex repoIndex your repo free
repowisebaneeishaque/go-homedir

Commits

Every commit scored for change-risk against this repo's own history, so 'elevated' means elevated here rather than on some global curve.

Needs review

6of 18 scored

6 commits sit in this repo's top risk tercile, which is 33% of the 18scored. The cut is drawn against this codebase's own history rather than a global curve, so a quiet repo still fills its top band, and here it starts at 5.7 out of 10. What pushes a commit up is size and spread together: a large change confined to one area scores below a smaller one scattered across a dozen files.

Fix commits422%Commits whose subject reads as a bug fix rather than new work.Change diffusion0.37bitsShannon entropy of a commit's churn across its files. Zero is a single file, and every extra bit is a doubling of how widely the change spread.Review threshold5.7out of 10Score a commit has to clear to land in this repo's top tercile.

How the work changed shape

Commit categories over time, read off the subject line. Fixes carry the accent because that is the series this chart exists to show.

Began other-led, now leaning fix.

Fix22%
Refactor6%
Docs11%
Other61%

Review-priority queue

Ranked by change-risk, highest first. Priority is a tercile of this repo's own distribution, so a quiet repo still fills its top band.

Commit review-priority queue
#CommitAuthorWhenLinesRiskTop driver
1
21304a94simplify OS specific homedir detection and some minor cleanups
Anand Babu (AB) Periasamy
9y ago+115 -88
97%Elevated
more lines added than baseline
2
b40ba20dInitial commit
Mitchell Hashimoto
12y ago+85 -0
92%Elevated
more lines added than baseline
3
ecd09228Expand
Mitchell Hashimoto
12y ago+63 -0
86%Elevated
more lines added than baseline
4
56f508a8use sync/atomic.Value for concurrency safe caching
Mitchell Hashimoto
11y ago+30 -6
81%Elevated
more lines added than baseline
5
c6895596Update "dirUnix" to use "getent" and only fallback to shell if that fails
Tianon Gravi
11y ago+22 -2
72%Elevated
more lines added than baseline
6
b9784404LICENSE
Mitchell Hashimoto
12y ago+25 -0
72%Elevated
more lines added than baseline
7
f47e1fe9Fixed a bug which would expand string incorrectly under *NIX.
Matteo Kloiber
11y ago+24 -2
64%Typical
more lines added than baseline
8
5b776f72Cache homedir between invocations.
Ruben Vermeersch
12y ago+16 -3
58%Typical
more lines added than baseline
9
ec9ca951Fix Expand for path of len <= 1.
Ludwig Valda Vasquez
12y ago+14 -2
53%Typical
more lines added than baseline
10
92322238Switch from atomic.Value to sync.RWMutex for backward compatibility
Steven Selph
11y ago+11 -7
47%Typical
more focused than baseline
11
bd2f203fUpdate README
Mitchell Hashimoto
12y ago+6 -0
42%Typical
fewer lines added than baseline
12
f82c0a5cAcknowledge and prefer HOME environment variable on Windows
Rod Cloutier
10y ago+5 -0
36%Typical
fewer lines added than baseline
13
7d2d8c8aJust make len 0 a special case
Mitchell Hashimoto
12y ago+5 -1
31%Below typical
fewer lines added than baseline
14
9440e2c5Use path/filepath over hardcoded path separators.
Leigh McCulloch
10y ago+4 -4
25%Below typical
fewer lines added than baseline
15
c76f73d5Slight tweak to when to lock for writing.
Steven Selph
11y ago+3 -2
19%Below typical
fewer lines added than baseline
16
b8bc1bf7Fix broken logic merged from #9
Mitchell Hashimoto
9y ago+2 -2
14%Below typical
fewer lines added than baseline
17
fc14d498fixed getent missing check bug
LiangChao
10y ago+1 -1
8%Below typical
fewer lines added than baseline
18
0af16306Update README
Mitchell Hashimoto
12y ago+1 -1
3%Below typical
fewer lines added than baseline
  • 21304a94simplify OS specific homedir detection and some minor cleanups
    Author
    Anand Babu (AB) Periasamy
    When
    9y ago
    Lines
    +115 -88
    Risk
    97%Elevated
  • b40ba20dInitial commit
    Author
    Mitchell Hashimoto
    When
    12y ago
    Lines
    +85 -0
    Risk
    92%Elevated
  • ecd09228Expand
    Author
    Mitchell Hashimoto
    When
    12y ago
    Lines
    +63 -0
    Risk
    86%Elevated
  • 56f508a8use sync/atomic.Value for concurrency safe caching
    Author
    Mitchell Hashimoto
    When
    11y ago
    Lines
    +30 -6
    Risk
    81%Elevated
  • c6895596Update "dirUnix" to use "getent" and only fallback to shell if that fails
    Author
    Tianon Gravi
    When
    11y ago
    Lines
    +22 -2
    Risk
    72%Elevated
  • b9784404LICENSE
    Author
    Mitchell Hashimoto
    When
    12y ago
    Lines
    +25 -0
    Risk
    72%Elevated
  • f47e1fe9Fixed a bug which would expand string incorrectly under *NIX.
    Author
    Matteo Kloiber
    When
    11y ago
    Lines
    +24 -2
    Risk
    64%Typical
  • 5b776f72Cache homedir between invocations.
    Author
    Ruben Vermeersch
    When
    12y ago
    Lines
    +16 -3
    Risk
    58%Typical
  • ec9ca951Fix Expand for path of len <= 1.
    Author
    Ludwig Valda Vasquez
    When
    12y ago
    Lines
    +14 -2
    Risk
    53%Typical
  • 92322238Switch from atomic.Value to sync.RWMutex for backward compatibility
    Author
    Steven Selph
    When
    11y ago
    Lines
    +11 -7
    Risk
    47%Typical
  • bd2f203fUpdate README
    Author
    Mitchell Hashimoto
    When
    12y ago
    Lines
    +6 -0
    Risk
    42%Typical
  • f82c0a5cAcknowledge and prefer HOME environment variable on Windows
    Author
    Rod Cloutier
    When
    10y ago
    Lines
    +5 -0
    Risk
    36%Typical
  • 7d2d8c8aJust make len 0 a special case
    Author
    Mitchell Hashimoto
    When
    12y ago
    Lines
    +5 -1
    Risk
    31%Below typical
  • 9440e2c5Use path/filepath over hardcoded path separators.
    Author
    Leigh McCulloch
    When
    10y ago
    Lines
    +4 -4
    Risk
    25%Below typical
  • c76f73d5Slight tweak to when to lock for writing.
    Author
    Steven Selph
    When
    11y ago
    Lines
    +3 -2
    Risk
    19%Below typical
  • b8bc1bf7Fix broken logic merged from #9
    Author
    Mitchell Hashimoto
    When
    9y ago
    Lines
    +2 -2
    Risk
    14%Below typical
  • fc14d498fixed getent missing check bug
    Author
    LiangChao
    When
    10y ago
    Lines
    +1 -1
    Risk
    8%Below typical
  • 0af16306Update README
    Author
    Mitchell Hashimoto
    When
    12y ago
    Lines
    +1 -1
    Risk
    3%Below typical
Showing 18 of 18 commits

How the score behaves here

Change risk →

Two views of the same model: where the cuts fall, and what commit shape lands you above them.

Score distribution

Every scored commit, binned on the raw 0 to 10 score rather than the percentile. Percentile ranks are uniform by construction, so that axis has no shape to draw. The dashed lines are the tercile cuts behind each row's priority pill.

03typical ↑elevated ↑0.04.38.5Change-risk score →
Below typical
Typical
Elevated

Size against diffusion

The 18 most recent commits, on their own recency sample rather than the feed above: that defaults to risk-sorted, so reusing it would plot only the top tercile and call it the spread. Big and scattered is what the model penalises. Click a dot to open it.

110100Lines changed (log) →0.01.7Diffusion →
Below typical6
Typical6
Elevated6

Commit history for baneeishaque/go-homedir

baneeishaque/go-homedir has 26 commits in its history from 10 contributors, the first of them Aug 19, 2014. No file in the repository changed in the last 90 days. Every commit is scored for change risk from its size, spread and the history of the files it touches.