-
-
Notifications
You must be signed in to change notification settings - Fork 224
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open Collectiveの経費精算のルールを決める #1736
Comments
計算方法はこんな感じでどうだろう? タスクに対するPoint作業量に対する基準としてフィボナッチ数列のPointsを設定する
Issueが適切に分割されていれば、5や8はほとんど出てこないはず。 📝 元ネタはLinearのEstimates – Linear Docs Pointsの例Pointはやや主観的になってしまうが、基準となるような例を元に判断する。
金額の計算方法jsprimerの年間更新コストは、だいたい30日分の作業量になるように設定。 Pointに直すと、年間の作業量のPointは60 Points程度になる。 年間の予算はOpen Collectiveの推定年間予算を参照する Note 2024-08-25だと 1 Pointあたりの金額は以下のように計算する。 const yearlyEstimatedBudget = 2_367; // Open Collectiveの推定年間予算($ドル)
const yearlyWorkloadPoints = 60; // 1年間のPoints
const onePointCost = yearlyEstimatedBudget / yearlyWorkloadPoints;
console.log({onePointCost}); // => $39.45
const costOfPoint = 2; /// 2 Points
const cost = onePointCost * costOfPoint;
console.log({cost}); // => $78.9 金額を申請するタイミング作業が終わったタイミングで計算して、そのコストを申請する。 |
JavaScript Primer - Open Collectiveの予算はおそらくありそう。
実際にContributorが経費精算(お金を受け取る)時のルールを決める必要がある。
目的
決めること
できるだけシンプルでわかりやすいルールにしないと管理が難しそう。
他のオープンソースなどがどうやっているのかを調べる必要がある。
cc @lacolaco
The text was updated successfully, but these errors were encountered: