Alexander Vassbotn Røyne-Helgesen PRO
Lover of life, technologist at heart
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.
By Alexander Vassbotn Røyne-Helgesen
Open Source projects are more and more often victims of their own success. Those responsible for the packages end up spending thousands of hours a year maintaining and supporting packages that have somehow gotten into the global infrastructure we use to build our products and services. Absolutely free, and usually only with outrage as the open source world's salary. It is not sustainable. Not in the long run. This is a massive challenge, across both companies and national borders. We as developers are definitely in a position where we can contribute, but what is really the right way to do it? How can we ensure the Open Source culture with contributions? How can we make it sustainable? These are questions I will try to answer!