Alexander Vassbotn Røyne-Helgesen
Principal Engineer
ex-Vikinghorde
Hockey dad
Not a fan of Oilers
module.exports = leftpad;
function leftpad (str, len, ch) {
str = String(str);
var i = -1;
if (!ch && ch !== 0) ch = ' ';
len = len - str.length;
while (++i < len) {
str = ch + str;
}
return str;
}
Developing a model for compensating open source developers.
Securing reliable funding sources for open source projects.
Measuring the value of open source contributions.
Encouraging more people to contribute to open source projects by creating a welcoming and inclusive environment.
How can we ensure that open source projects are inclusive and accessible to all?
It's important for open source projects to have sustainable funding and support, as well as clear governance and maintenance policies, to minimize the risk of discontinuation.