Like Twitter, but with Freedom Inside

Post Syndicated from Bradley M. Kuhn original http://ebb.org/bkuhn/blog/2008/07/03/microblog-freedom-inside.html

A company called Control
Yourself
, led
by Evan
Prodromou
(who serves with me and many others on
the FSF-endorsed
Freedom for Network Services Committee
) yesterday launched a site
called
identi.ca. It’s a microblogging
service similar to Twitter, but it is designed to respect the rights
and freedoms of its users.

I’m personally excited because the software for the system, Laconica, is under the license that I
originally drafted back in 2002, the Affero GPL (which was updated
as part of the GPLv3 process
, and is now available as AGPLv3).
This marks the first time I’ve seen a company release its product under
a network service freedom-defending license from the start.

His launch comes at an interesting time. Twitter has had no
Jabber-based updates for more than a month, and Identica allows updates
via Jabber. Thus, in a way, it’s more fully featured than Twitter is
right now!

Like Twitter, but with Freedom Inside

Post Syndicated from Bradley M. Kuhn original http://ebb.org/bkuhn/blog/2008/07/03/microblog-freedom-inside.html

A company called Control
Yourself
, led
by Evan
Prodromou
(who serves with me and many others on
the FSF-endorsed
Freedom for Network Services Committee
) yesterday launched a site
called
identi.ca. It’s a microblogging
service similar to Twitter, but it is designed to respect the rights
and freedoms of its users.

I’m personally excited because the software for the system, Laconica, is under the license that I
originally drafted back in 2002, the Affero GPL (which was updated
as part of the GPLv3 process
, and is now available as AGPLv3).
This marks the first time I’ve seen a company release its product under
a network service freedom-defending license from the start.

His launch comes at an interesting time. Twitter has had no
Jabber-based updates for more than a month, and Identica allows updates
via Jabber. Thus, in a way, it’s more fully featured than Twitter is
right now!

Like Twitter, but with Freedom Inside

Post Syndicated from Bradley M. Kuhn original http://ebb.org/bkuhn/blog/2008/07/03/microblog-freedom-inside.html

A company called Control
Yourself
, led
by Evan
Prodromou
(who serves with me and many others on
the FSF-endorsed
Freedom for Network Services Committee
) yesterday launched a site
called
identi.ca. It’s a microblogging
service similar to Twitter, but it is designed to respect the rights
and freedoms of its users.

I’m personally excited because the software for the system, Laconica, is under the license that I
originally drafted back in 2002, the Affero GPL (which was updated
as part of the GPLv3 process
, and is now available as AGPLv3).
This marks the first time I’ve seen a company release its product under
a network service freedom-defending license from the start.

His launch comes at an interesting time. Twitter has had no
Jabber-based updates for more than a month, and Identica allows updates
via Jabber. Thus, in a way, it’s more fully featured than Twitter is
right now!

Like Twitter, but with Freedom Inside

Post Syndicated from Bradley M. Kuhn original http://ebb.org/bkuhn/blog/2008/07/03/microblog-freedom-inside.html

A company called Control
Yourself
, led
by Evan
Prodromou
(who serves with me and many others on
the FSF-endorsed
Freedom for Network Services Committee
) yesterday launched a site
called
identi.ca. It’s a microblogging
service similar to Twitter, but it is designed to respect the rights
and freedoms of its users.

I’m personally excited because the software for the system, Laconica, is under the license that I
originally drafted back in 2002, the Affero GPL (which was updated
as part of the GPLv3 process
, and is now available as AGPLv3).
This marks the first time I’ve seen a company release its product under
a network service freedom-defending license from the start.

His launch comes at an interesting time. Twitter has had no
Jabber-based updates for more than a month, and Identica allows updates
via Jabber. Thus, in a way, it’s more fully featured than Twitter is
right now!

Being Smart

Post Syndicated from Lennart Poettering original https://0pointer.net/blog/projects/being-smart.html

Last weekend I set myself the task to write an ATA S.M.A.R.T. (i.e. hard
disk health monitoring) reader and parser. After spending some time reading
all kinds of T13 and T10 docs and a bit of hacking I now present
you the following new software:

  • libatasmart: a lean, small and clean implementation of an ATA S.M.A.R.T.
    reading and parsing library. It’s fairly comprehensive, however I only support
    a subset of the full S.M.A.R.T. set of functions: those parts which made sense to
    me, not the esoteric stuff. Here’s the API and here’s the README.
  • skdump: a little tool that produces a similar output to smartctl
    -a
    , but uses libatasmart.
  • sktest: a little tool for starting/aborting S.M.A.R.T. self-tests, based on libatasmart
  • gnome-disk-health-service: a little wrapper around
    libatasmart that exports its entire functionality via D-Bus, so that
    unpriviliged processes can introspect a drive’s health records, including
    temperature, number of bad sectors and suchlike. This is written in Vala, which
    BTW is awesome for doing D-Bus services. Actually after having done this once now I
    really hope I will never have to write a D-Bus server without Vala again. I
    also wrote a Vala .vapi file for libatasmart which is shipped in
    its tarball.
  • gnome-disk-health: a little tool that reads the S.M.A.R.T.
    data from g-d-h-s and presents it in a pretty dialog. Includes support for
    viewing attributes and starting self-tests and stuff. Also written with
    Vala.

Why? You might ask what the point of all this stuff is where
smartmontools already
exists. What I’d like to see on future GNOME desktops is that as soon as a
disk starts to fail a notification bubble pops up warning the user about this
fact, and suggesting that he makes backups and replaces the disk. For a tight
integration into the desktop, a S.M.A.R.T. implementation that is small, and not
C++, and a library (i.e. embeddable into other software with a sane interface)
is highly preferable. Also, stuff like distribution installers should link
against libatasmart to warn the user about old, and defective disks
before he even starts the installation on them. (Hey, anaconda developers! That means you! It’s a tiny library, and all you need to do is a single call: int sk_disk_smart_status(SkDisk *d, SkBool *good);)

Please note that I certainly don’t plan to replace smartmontools.
libatasmart will always implement only a subset of S.M.A.R.T. If you want
the full set of functionality then please refer to smartmontools.

Where’s this going? I plan to fully maintain libatasmart
(including skdump and sktest) for the future. However
g-d-h and g-d-h-s will probably just bitrot in my repository
— unless someone else wants to pick this up and maintain it. The reason my
further interest in those tools is rather limited is that for the long run we
will hopefully will see davidz’s DeviceKit-disks (screenhot)
changed to use this library for health monitoring. Then DK-d will export the
S.M.A.R.T. info on the bus, and a separate daemon would not be necessary anymore.
DK-d provides a single interface for all kinds of health parameters for
storage, including RAID health and suchlike. I thus think this is the way
forward and not g-d-h-s. (That should, of course, not hinder anyone to step up
and take up maintainership of g-d-h/g-d-h-s if he wants to. There might be good
reasons for doing so. Maybe because you need something to do, or because you
want a S.M.A.R.T. solution for the desktop now, and not wait until DeviceKit gets
pushed into all the distros).

So, here’s where you can get this stuff:

git://git.0pointer.de/libatasmart.git

git://git.0pointer.de/gnome-disk-health.git

Browse the GIT repos.

I will roll a 0.1 tarball of libatasmart soon. I’d be thankful if people could run
skdump on their disks and check if its output is basically the same as
smartctl -a‘s. Especially people with BE machines.

Of course the most important part of a software announcement is always the screenshot:

Smart-Ass!

return -ETOOMANYDOTS;

Does This Mean We’ve “Made It” as a Social Cause?

Post Syndicated from Bradley M. Kuhn original http://ebb.org/bkuhn/blog/2008/06/28/social-responsible-investing.html

I got a phone call yesterday from someone involved with one of the many
socially
responsible investment
houses. It appears that in some (thus far,
small) corners of the socially responsible investment community, they’ve
begun the nascent stages of adding “willingness to contribute to
FLOSS” to the consideration map of social responsibility. This is
an issue that has plagued me personally for many years, and I was
excited to receive the call.

When I graduated high school and read my first book on personal
financial management, I learned how to invest for retirement in mutual
funds. The book mentioned the (then) somewhat new practice of
“socially responsible investing”, which immediately intrigued
me. The author argued, however, that it was silly to make investment
decisions based on personal beliefs. I immediately disagreed with that,
but I discovered that his secondary point was actually accurate: beyond
the Big Issues (weapons manufacturing, tobacco, etc.), it was tough to
find a fund that actually shared your personal beliefs.

Once I did some research, I discovered that it wasn’t actually as bad
as that, because there actually is a pretty good consensus on
what is and is not socially responsible (or, at least, the general
consensus in this regard seems to match my personal beliefs, anyway).
However, I did discover a gaping hole in the social responsible
investment agenda. The biggest social issue in my personal life —
the issue of software freedom — was never on others’ radar screens
as a “socially responsible issue”.

For example, in 1996, when I had my first opportunity to roll a 401(k)
into an investment of my own choosing, I discovered a troubling fact.
Every single socially responsible fund, when I looked at their stocks
held (sorted by percentage), Microsoft was always in the top ten, and
Oracle in the top twenty. Indeed, on most socially responsible axes,
Microsoft and Oracle look good: they treat their employees reasonably
well, they don’t generally build products that actively kill people
(although many of us die inside a little bit every time we use
proprietary software), and, heck, if they use more DRM, they can ship
their software and documentation via the network and won’t even ship as
many CDs to fill up landfills. This kind of thinking about
“socially responsible” ignores how the proprietariness of
the company’s technology negatively impacts people outside of the
company. Nevertheless, for years, I’ve held my nose and put my
retirement money in these funds, content on the compromised idea that at
least I don’t have my retirement savings in oil companies.

I tell this backstory to communicate how glad I was to get the call
from an employee of a socially responsible investment house. This
fellow was actually investigating the FLOSS credentials of various
companies and trying to bring it forward as a criterion when considering
how socially responsible their practices are. He seemed genuinely
interested in bringing this forward as part of a social agenda for his
company. I told him: every great idea starts as a conversation
between two people
, and enthusiastically answered his queries.

It was clear FLOSS considerations are new and not widely adopted as a
factor in the socially responsible investing world, but I am glad that
at least someone in that world is thinking about these questions. Of
course, I agree that in grand scheme, FLOSS issues should not be ranked
too highly — certainly issues of environmental
sustainability and human rights have a higher and more immediate social
impact0. However, given that
Microsoft so often ends up in the top ten of “good socially
responsible investments”, FLOSS issues are clearly ranked far too
low in the calculation.

Hopefully, this phone call I took yesterday shows we’re entering an era
where FLOSS issues are on the socially responsible criteria list for
investors. I further hope this blog entry doesn’t stop socially
responsible investors and fund managers from contacting me in the future
to get advice on how socially responsible various companies are. I
debated whether to write about this call publicly, but ultimately went
for it, since it’s an issue I think deserves some net.attention. So
many of us, FLOSS fans included, must now must manage our own retirement
accounts, since pension funds have generally given way to self-directed
retirement savings options. If you have a fund with a socially
responsible investment company, take this opportunity to give them a
call or send them a letter to tell them you’d like to see FLOSS issues
on the criteria list. If you don’t yet invest in with a socially
responsible company, consider switching to one, as they clearly will be
the first to add FLOSS-related criteria to their investing agenda.


0I have never believed
myself that FLOSS is the most important social justice issue in the grand
scheme. I struggled for years with the question of whether to devote my
career to a social cause that wasn’t top priority; things like human
rights and environmental sustainability certainly deserve more immediate
attention. However, it turned out that my skills, knowledge, background
and talent are clearly uniquely tuned to Computer Science in general and
FLOSS in particular, and therefore I can have the greatest positive impact
focusing on this rather than would-be higher priority causes. If only we
could get people in these other movements to at least see that they are
better off not using Microsoft for their own operations (in my experience,
NGOs and NPOs are more likely to stick with proprietary software than
for-profit companies), but that’s an agenda for another blog entry.

Does This Mean We’ve “Made It” as a Social Cause?

Post Syndicated from Bradley M. Kuhn original http://ebb.org/bkuhn/blog/2008/06/28/social-responsible-investing.html

I got a phone call yesterday from someone involved with one of the many
socially
responsible investment
houses. It appears that in some (thus far,
small) corners of the socially responsible investment community, they’ve
begun the nascent stages of adding “willingness to contribute to
FLOSS” to the consideration map of social responsibility. This is
an issue that has plagued me personally for many years, and I was
excited to receive the call.

When I graduated high school and read my first book on personal
financial management, I learned how to invest for retirement in mutual
funds. The book mentioned the (then) somewhat new practice of
“socially responsible investing”, which immediately intrigued
me. The author argued, however, that it was silly to make investment
decisions based on personal beliefs. I immediately disagreed with that,
but I discovered that his secondary point was actually accurate: beyond
the Big Issues (weapons manufacturing, tobacco, etc.), it was tough to
find a fund that actually shared your personal beliefs.

Once I did some research, I discovered that it wasn’t actually as bad
as that, because there actually is a pretty good consensus on
what is and is not socially responsible (or, at least, the general
consensus in this regard seems to match my personal beliefs, anyway).
However, I did discover a gaping hole in the social responsible
investment agenda. The biggest social issue in my personal life —
the issue of software freedom — was never on others’ radar screens
as a “socially responsible issue”.

For example, in 1996, when I had my first opportunity to roll a 401(k)
into an investment of my own choosing, I discovered a troubling fact.
Every single socially responsible fund, when I looked at their stocks
held (sorted by percentage), Microsoft was always in the top ten, and
Oracle in the top twenty. Indeed, on most socially responsible axes,
Microsoft and Oracle look good: they treat their employees reasonably
well, they don’t generally build products that actively kill people
(although many of us die inside a little bit every time we use
proprietary software), and, heck, if they use more DRM, they can ship
their software and documentation via the network and won’t even ship as
many CDs to fill up landfills. This kind of thinking about
“socially responsible” ignores how the proprietariness of
the company’s technology negatively impacts people outside of the
company. Nevertheless, for years, I’ve held my nose and put my
retirement money in these funds, content on the compromised idea that at
least I don’t have my retirement savings in oil companies.

I tell this backstory to communicate how glad I was to get the call
from an employee of a socially responsible investment house. This
fellow was actually investigating the FLOSS credentials of various
companies and trying to bring it forward as a criterion when considering
how socially responsible their practices are. He seemed genuinely
interested in bringing this forward as part of a social agenda for his
company. I told him: every great idea starts as a conversation
between two people
, and enthusiastically answered his queries.

It was clear FLOSS considerations are new and not widely adopted as a
factor in the socially responsible investing world, but I am glad that
at least someone in that world is thinking about these questions. Of
course, I agree that in grand scheme, FLOSS issues should not be ranked
too highly — certainly issues of environmental
sustainability and human rights have a higher and more immediate social
impact0. However, given that
Microsoft so often ends up in the top ten of “good socially
responsible investments”, FLOSS issues are clearly ranked far too
low in the calculation.

Hopefully, this phone call I took yesterday shows we’re entering an era
where FLOSS issues are on the socially responsible criteria list for
investors. I further hope this blog entry doesn’t stop socially
responsible investors and fund managers from contacting me in the future
to get advice on how socially responsible various companies are. I
debated whether to write about this call publicly, but ultimately went
for it, since it’s an issue I think deserves some net.attention. So
many of us, FLOSS fans included, must now must manage our own retirement
accounts, since pension funds have generally given way to self-directed
retirement savings options. If you have a fund with a socially
responsible investment company, take this opportunity to give them a
call or send them a letter to tell them you’d like to see FLOSS issues
on the criteria list. If you don’t yet invest in with a socially
responsible company, consider switching to one, as they clearly will be
the first to add FLOSS-related criteria to their investing agenda.


0I have never believed
myself that FLOSS is the most important social justice issue in the grand
scheme. I struggled for years with the question of whether to devote my
career to a social cause that wasn’t top priority; things like human
rights and environmental sustainability certainly deserve more immediate
attention. However, it turned out that my skills, knowledge, background
and talent are clearly uniquely tuned to Computer Science in general and
FLOSS in particular, and therefore I can have the greatest positive impact
focusing on this rather than would-be higher priority causes. If only we
could get people in these other movements to at least see that they are
better off not using Microsoft for their own operations (in my experience,
NGOs and NPOs are more likely to stick with proprietary software than
for-profit companies), but that’s an agenda for another blog entry.

Does This Mean We’ve “Made It” as a Social Cause?

Post Syndicated from Bradley M. Kuhn original http://ebb.org/bkuhn/blog/2008/06/28/social-responsible-investing.html

I got a phone call yesterday from someone involved with one of the many
socially
responsible investment
houses. It appears that in some (thus far,
small) corners of the socially responsible investment community, they’ve
begun the nascent stages of adding “willingness to contribute to
FLOSS” to the consideration map of social responsibility. This is
an issue that has plagued me personally for many years, and I was
excited to receive the call.

When I graduated high school and read my first book on personal
financial management, I learned how to invest for retirement in mutual
funds. The book mentioned the (then) somewhat new practice of
“socially responsible investing”, which immediately intrigued
me. The author argued, however, that it was silly to make investment
decisions based on personal beliefs. I immediately disagreed with that,
but I discovered that his secondary point was actually accurate: beyond
the Big Issues (weapons manufacturing, tobacco, etc.), it was tough to
find a fund that actually shared your personal beliefs.

Once I did some research, I discovered that it wasn’t actually as bad
as that, because there actually is a pretty good consensus on
what is and is not socially responsible (or, at least, the general
consensus in this regard seems to match my personal beliefs, anyway).
However, I did discover a gaping hole in the social responsible
investment agenda. The biggest social issue in my personal life —
the issue of software freedom — was never on others’ radar screens
as a “socially responsible issue”.

For example, in 1996, when I had my first opportunity to roll a 401(k)
into an investment of my own choosing, I discovered a troubling fact.
Every single socially responsible fund, when I looked at their stocks
held (sorted by percentage), Microsoft was always in the top ten, and
Oracle in the top twenty. Indeed, on most socially responsible axes,
Microsoft and Oracle look good: they treat their employees reasonably
well, they don’t generally build products that actively kill people
(although many of us die inside a little bit every time we use
proprietary software), and, heck, if they use more DRM, they can ship
their software and documentation via the network and won’t even ship as
many CDs to fill up landfills. This kind of thinking about
“socially responsible” ignores how the proprietariness of
the company’s technology negatively impacts people outside of the
company. Nevertheless, for years, I’ve held my nose and put my
retirement money in these funds, content on the compromised idea that at
least I don’t have my retirement savings in oil companies.

I tell this backstory to communicate how glad I was to get the call
from an employee of a socially responsible investment house. This
fellow was actually investigating the FLOSS credentials of various
companies and trying to bring it forward as a criterion when considering
how socially responsible their practices are. He seemed genuinely
interested in bringing this forward as part of a social agenda for his
company. I told him: every great idea starts as a conversation
between two people
, and enthusiastically answered his queries.

It was clear FLOSS considerations are new and not widely adopted as a
factor in the socially responsible investing world, but I am glad that
at least someone in that world is thinking about these questions. Of
course, I agree that in grand scheme, FLOSS issues should not be ranked
too highly — certainly issues of environmental
sustainability and human rights have a higher and more immediate social
impact0. However, given that
Microsoft so often ends up in the top ten of “good socially
responsible investments”, FLOSS issues are clearly ranked far too
low in the calculation.

Hopefully, this phone call I took yesterday shows we’re entering an era
where FLOSS issues are on the socially responsible criteria list for
investors. I further hope this blog entry doesn’t stop socially
responsible investors and fund managers from contacting me in the future
to get advice on how socially responsible various companies are. I
debated whether to write about this call publicly, but ultimately went
for it, since it’s an issue I think deserves some net.attention. So
many of us, FLOSS fans included, must now must manage our own retirement
accounts, since pension funds have generally given way to self-directed
retirement savings options. If you have a fund with a socially
responsible investment company, take this opportunity to give them a
call or send them a letter to tell them you’d like to see FLOSS issues
on the criteria list. If you don’t yet invest in with a socially
responsible company, consider switching to one, as they clearly will be
the first to add FLOSS-related criteria to their investing agenda.


0I have never believed
myself that FLOSS is the most important social justice issue in the grand
scheme. I struggled for years with the question of whether to devote my
career to a social cause that wasn’t top priority; things like human
rights and environmental sustainability certainly deserve more immediate
attention. However, it turned out that my skills, knowledge, background
and talent are clearly uniquely tuned to Computer Science in general and
FLOSS in particular, and therefore I can have the greatest positive impact
focusing on this rather than would-be higher priority causes. If only we
could get people in these other movements to at least see that they are
better off not using Microsoft for their own operations (in my experience,
NGOs and NPOs are more likely to stick with proprietary software than
for-profit companies), but that’s an agenda for another blog entry.

Does This Mean We’ve “Made It” as a Social Cause?

Post Syndicated from Bradley M. Kuhn original http://ebb.org/bkuhn/blog/2008/06/28/social-responsible-investing.html

I got a phone call yesterday from someone involved with one of the many
socially
responsible investment
houses. It appears that in some (thus far,
small) corners of the socially responsible investment community, they’ve
begun the nascent stages of adding “willingness to contribute to
FLOSS” to the consideration map of social responsibility. This is
an issue that has plagued me personally for many years, and I was
excited to receive the call.

When I graduated high school and read my first book on personal
financial management, I learned how to invest for retirement in mutual
funds. The book mentioned the (then) somewhat new practice of
“socially responsible investing”, which immediately intrigued
me. The author argued, however, that it was silly to make investment
decisions based on personal beliefs. I immediately disagreed with that,
but I discovered that his secondary point was actually accurate: beyond
the Big Issues (weapons manufacturing, tobacco, etc.), it was tough to
find a fund that actually shared your personal beliefs.

Once I did some research, I discovered that it wasn’t actually as bad
as that, because there actually is a pretty good consensus on
what is and is not socially responsible (or, at least, the general
consensus in this regard seems to match my personal beliefs, anyway).
However, I did discover a gaping hole in the social responsible
investment agenda. The biggest social issue in my personal life —
the issue of software freedom — was never on others’ radar screens
as a “socially responsible issue”.

For example, in 1996, when I had my first opportunity to roll a 401(k)
into an investment of my own choosing, I discovered a troubling fact.
Every single socially responsible fund, when I looked at their stocks
held (sorted by percentage), Microsoft was always in the top ten, and
Oracle in the top twenty. Indeed, on most socially responsible axes,
Microsoft and Oracle look good: they treat their employees reasonably
well, they don’t generally build products that actively kill people
(although many of us die inside a little bit every time we use
proprietary software), and, heck, if they use more DRM, they can ship
their software and documentation via the network and won’t even ship as
many CDs to fill up landfills. This kind of thinking about
“socially responsible” ignores how the proprietariness of
the company’s technology negatively impacts people outside of the
company. Nevertheless, for years, I’ve held my nose and put my
retirement money in these funds, content on the compromised idea that at
least I don’t have my retirement savings in oil companies.

I tell this backstory to communicate how glad I was to get the call
from an employee of a socially responsible investment house. This
fellow was actually investigating the FLOSS credentials of various
companies and trying to bring it forward as a criterion when considering
how socially responsible their practices are. He seemed genuinely
interested in bringing this forward as part of a social agenda for his
company. I told him: every great idea starts as a conversation
between two people
, and enthusiastically answered his queries.

It was clear FLOSS considerations are new and not widely adopted as a
factor in the socially responsible investing world, but I am glad that
at least someone in that world is thinking about these questions. Of
course, I agree that in grand scheme, FLOSS issues should not be ranked
too highly — certainly issues of environmental
sustainability and human rights have a higher and more immediate social
impact0. However, given that
Microsoft so often ends up in the top ten of “good socially
responsible investments”, FLOSS issues are clearly ranked far too
low in the calculation.

Hopefully, this phone call I took yesterday shows we’re entering an era
where FLOSS issues are on the socially responsible criteria list for
investors. I further hope this blog entry doesn’t stop socially
responsible investors and fund managers from contacting me in the future
to get advice on how socially responsible various companies are. I
debated whether to write about this call publicly, but ultimately went
for it, since it’s an issue I think deserves some net.attention. So
many of us, FLOSS fans included, must now must manage our own retirement
accounts, since pension funds have generally given way to self-directed
retirement savings options. If you have a fund with a socially
responsible investment company, take this opportunity to give them a
call or send them a letter to tell them you’d like to see FLOSS issues
on the criteria list. If you don’t yet invest in with a socially
responsible company, consider switching to one, as they clearly will be
the first to add FLOSS-related criteria to their investing agenda.


0I have never believed
myself that FLOSS is the most important social justice issue in the grand
scheme. I struggled for years with the question of whether to devote my
career to a social cause that wasn’t top priority; things like human
rights and environmental sustainability certainly deserve more immediate
attention. However, it turned out that my skills, knowledge, background
and talent are clearly uniquely tuned to Computer Science in general and
FLOSS in particular, and therefore I can have the greatest positive impact
focusing on this rather than would-be higher priority causes. If only we
could get people in these other movements to at least see that they are
better off not using Microsoft for their own operations (in my experience,
NGOs and NPOs are more likely to stick with proprietary software than
for-profit companies), but that’s an agenda for another blog entry.

Does This Mean We’ve “Made It” as a Social Cause?

Post Syndicated from Bradley M. Kuhn original http://ebb.org/bkuhn/blog/2008/06/28/social-responsible-investing.html

I got a phone call yesterday from someone involved with one of the many
socially
responsible investment
houses. It appears that in some (thus far,
small) corners of the socially responsible investment community, they’ve
begun the nascent stages of adding “willingness to contribute to
FLOSS” to the consideration map of social responsibility. This is
an issue that has plagued me personally for many years, and I was
excited to receive the call.

When I graduated high school and read my first book on personal
financial management, I learned how to invest for retirement in mutual
funds. The book mentioned the (then) somewhat new practice of
“socially responsible investing”, which immediately intrigued
me. The author argued, however, that it was silly to make investment
decisions based on personal beliefs. I immediately disagreed with that,
but I discovered that his secondary point was actually accurate: beyond
the Big Issues (weapons manufacturing, tobacco, etc.), it was tough to
find a fund that actually shared your personal beliefs.

Once I did some research, I discovered that it wasn’t actually as bad
as that, because there actually is a pretty good consensus on
what is and is not socially responsible (or, at least, the general
consensus in this regard seems to match my personal beliefs, anyway).
However, I did discover a gaping hole in the social responsible
investment agenda. The biggest social issue in my personal life —
the issue of software freedom — was never on others’ radar screens
as a “socially responsible issue”.

For example, in 1996, when I had my first opportunity to roll a 401(k)
into an investment of my own choosing, I discovered a troubling fact.
Every single socially responsible fund, when I looked at their stocks
held (sorted by percentage), Microsoft was always in the top ten, and
Oracle in the top twenty. Indeed, on most socially responsible axes,
Microsoft and Oracle look good: they treat their employees reasonably
well, they don’t generally build products that actively kill people
(although many of us die inside a little bit every time we use
proprietary software), and, heck, if they use more DRM, they can ship
their software and documentation via the network and won’t even ship as
many CDs to fill up landfills. This kind of thinking about
“socially responsible” ignores how the proprietariness of
the company’s technology negatively impacts people outside of the
company. Nevertheless, for years, I’ve held my nose and put my
retirement money in these funds, content on the compromised idea that at
least I don’t have my retirement savings in oil companies.

I tell this backstory to communicate how glad I was to get the call
from an employee of a socially responsible investment house. This
fellow was actually investigating the FLOSS credentials of various
companies and trying to bring it forward as a criterion when considering
how socially responsible their practices are. He seemed genuinely
interested in bringing this forward as part of a social agenda for his
company. I told him: every great idea starts as a conversation
between two people
, and enthusiastically answered his queries.

It was clear FLOSS considerations are new and not widely adopted as a
factor in the socially responsible investing world, but I am glad that
at least someone in that world is thinking about these questions. Of
course, I agree that in grand scheme, FLOSS issues should not be ranked
too highly — certainly issues of environmental
sustainability and human rights have a higher and more immediate social
impact0. However, given that
Microsoft so often ends up in the top ten of “good socially
responsible investments”, FLOSS issues are clearly ranked far too
low in the calculation.

Hopefully, this phone call I took yesterday shows we’re entering an era
where FLOSS issues are on the socially responsible criteria list for
investors. I further hope this blog entry doesn’t stop socially
responsible investors and fund managers from contacting me in the future
to get advice on how socially responsible various companies are. I
debated whether to write about this call publicly, but ultimately went
for it, since it’s an issue I think deserves some net.attention. So
many of us, FLOSS fans included, must now must manage our own retirement
accounts, since pension funds have generally given way to self-directed
retirement savings options. If you have a fund with a socially
responsible investment company, take this opportunity to give them a
call or send them a letter to tell them you’d like to see FLOSS issues
on the criteria list. If you don’t yet invest in with a socially
responsible company, consider switching to one, as they clearly will be
the first to add FLOSS-related criteria to their investing agenda.


0I have never believed
myself that FLOSS is the most important social justice issue in the grand
scheme. I struggled for years with the question of whether to devote my
career to a social cause that wasn’t top priority; things like human
rights and environmental sustainability certainly deserve more immediate
attention. However, it turned out that my skills, knowledge, background
and talent are clearly uniquely tuned to Computer Science in general and
FLOSS in particular, and therefore I can have the greatest positive impact
focusing on this rather than would-be higher priority causes. If only we
could get people in these other movements to at least see that they are
better off not using Microsoft for their own operations (in my experience,
NGOs and NPOs are more likely to stick with proprietary software than
for-profit companies), but that’s an agenda for another blog entry.

Does This Mean We’ve “Made It” as a Social Cause?

Post Syndicated from Bradley M. Kuhn original http://ebb.org/bkuhn/blog/2008/06/28/social-responsible-investing.html

I got a phone call yesterday from someone involved with one of the many
socially
responsible investment
houses. It appears that in some (thus far,
small) corners of the socially responsible investment community, they’ve
begun the nascent stages of adding “willingness to contribute to
FLOSS” to the consideration map of social responsibility. This is
an issue that has plagued me personally for many years, and I was
excited to receive the call.

When I graduated high school and read my first book on personal
financial management, I learned how to invest for retirement in mutual
funds. The book mentioned the (then) somewhat new practice of
“socially responsible investing”, which immediately intrigued
me. The author argued, however, that it was silly to make investment
decisions based on personal beliefs. I immediately disagreed with that,
but I discovered that his secondary point was actually accurate: beyond
the Big Issues (weapons manufacturing, tobacco, etc.), it was tough to
find a fund that actually shared your personal beliefs.

Once I did some research, I discovered that it wasn’t actually as bad
as that, because there actually is a pretty good consensus on
what is and is not socially responsible (or, at least, the general
consensus in this regard seems to match my personal beliefs, anyway).
However, I did discover a gaping hole in the social responsible
investment agenda. The biggest social issue in my personal life —
the issue of software freedom — was never on others’ radar screens
as a “socially responsible issue”.

For example, in 1996, when I had my first opportunity to roll a 401(k)
into an investment of my own choosing, I discovered a troubling fact.
Every single socially responsible fund, when I looked at their stocks
held (sorted by percentage), Microsoft was always in the top ten, and
Oracle in the top twenty. Indeed, on most socially responsible axes,
Microsoft and Oracle look good: they treat their employees reasonably
well, they don’t generally build products that actively kill people
(although many of us die inside a little bit every time we use
proprietary software), and, heck, if they use more DRM, they can ship
their software and documentation via the network and won’t even ship as
many CDs to fill up landfills. This kind of thinking about
“socially responsible” ignores how the proprietariness of
the company’s technology negatively impacts people outside of the
company. Nevertheless, for years, I’ve held my nose and put my
retirement money in these funds, content on the compromised idea that at
least I don’t have my retirement savings in oil companies.

I tell this backstory to communicate how glad I was to get the call
from an employee of a socially responsible investment house. This
fellow was actually investigating the FLOSS credentials of various
companies and trying to bring it forward as a criterion when considering
how socially responsible their practices are. He seemed genuinely
interested in bringing this forward as part of a social agenda for his
company. I told him: every great idea starts as a conversation
between two people
, and enthusiastically answered his queries.

It was clear FLOSS considerations are new and not widely adopted as a
factor in the socially responsible investing world, but I am glad that
at least someone in that world is thinking about these questions. Of
course, I agree that in grand scheme, FLOSS issues should not be ranked
too highly — certainly issues of environmental
sustainability and human rights have a higher and more immediate social
impact0. However, given that
Microsoft so often ends up in the top ten of “good socially
responsible investments”, FLOSS issues are clearly ranked far too
low in the calculation.

Hopefully, this phone call I took yesterday shows we’re entering an era
where FLOSS issues are on the socially responsible criteria list for
investors. I further hope this blog entry doesn’t stop socially
responsible investors and fund managers from contacting me in the future
to get advice on how socially responsible various companies are. I
debated whether to write about this call publicly, but ultimately went
for it, since it’s an issue I think deserves some net.attention. So
many of us, FLOSS fans included, must now must manage our own retirement
accounts, since pension funds have generally given way to self-directed
retirement savings options. If you have a fund with a socially
responsible investment company, take this opportunity to give them a
call or send them a letter to tell them you’d like to see FLOSS issues
on the criteria list. If you don’t yet invest in with a socially
responsible company, consider switching to one, as they clearly will be
the first to add FLOSS-related criteria to their investing agenda.


0I have never believed
myself that FLOSS is the most important social justice issue in the grand
scheme. I struggled for years with the question of whether to devote my
career to a social cause that wasn’t top priority; things like human
rights and environmental sustainability certainly deserve more immediate
attention. However, it turned out that my skills, knowledge, background
and talent are clearly uniquely tuned to Computer Science in general and
FLOSS in particular, and therefore I can have the greatest positive impact
focusing on this rather than would-be higher priority causes. If only we
could get people in these other movements to at least see that they are
better off not using Microsoft for their own operations (in my experience,
NGOs and NPOs are more likely to stick with proprietary software than
for-profit companies), but that’s an agenda for another blog entry.

Does This Mean We’ve “Made It” as a Social Cause?

Post Syndicated from Bradley M. Kuhn original http://ebb.org/bkuhn/blog/2008/06/28/social-responsible-investing.html

I got a phone call yesterday from someone involved with one of the many
socially
responsible investment
houses. It appears that in some (thus far,
small) corners of the socially responsible investment community, they’ve
begun the nascent stages of adding “willingness to contribute to
FLOSS” to the consideration map of social responsibility. This is
an issue that has plagued me personally for many years, and I was
excited to receive the call.

When I graduated high school and read my first book on personal
financial management, I learned how to invest for retirement in mutual
funds. The book mentioned the (then) somewhat new practice of
“socially responsible investing”, which immediately intrigued
me. The author argued, however, that it was silly to make investment
decisions based on personal beliefs. I immediately disagreed with that,
but I discovered that his secondary point was actually accurate: beyond
the Big Issues (weapons manufacturing, tobacco, etc.), it was tough to
find a fund that actually shared your personal beliefs.

Once I did some research, I discovered that it wasn’t actually as bad
as that, because there actually is a pretty good consensus on
what is and is not socially responsible (or, at least, the general
consensus in this regard seems to match my personal beliefs, anyway).
However, I did discover a gaping hole in the social responsible
investment agenda. The biggest social issue in my personal life —
the issue of software freedom — was never on others’ radar screens
as a “socially responsible issue”.

For example, in 1996, when I had my first opportunity to roll a 401(k)
into an investment of my own choosing, I discovered a troubling fact.
Every single socially responsible fund, when I looked at their stocks
held (sorted by percentage), Microsoft was always in the top ten, and
Oracle in the top twenty. Indeed, on most socially responsible axes,
Microsoft and Oracle look good: they treat their employees reasonably
well, they don’t generally build products that actively kill people
(although many of us die inside a little bit every time we use
proprietary software), and, heck, if they use more DRM, they can ship
their software and documentation via the network and won’t even ship as
many CDs to fill up landfills. This kind of thinking about
“socially responsible” ignores how the proprietariness of
the company’s technology negatively impacts people outside of the
company. Nevertheless, for years, I’ve held my nose and put my
retirement money in these funds, content on the compromised idea that at
least I don’t have my retirement savings in oil companies.

I tell this backstory to communicate how glad I was to get the call
from an employee of a socially responsible investment house. This
fellow was actually investigating the FLOSS credentials of various
companies and trying to bring it forward as a criterion when considering
how socially responsible their practices are. He seemed genuinely
interested in bringing this forward as part of a social agenda for his
company. I told him: every great idea starts as a conversation
between two people
, and enthusiastically answered his queries.

It was clear FLOSS considerations are new and not widely adopted as a
factor in the socially responsible investing world, but I am glad that
at least someone in that world is thinking about these questions. Of
course, I agree that in grand scheme, FLOSS issues should not be ranked
too highly — certainly issues of environmental
sustainability and human rights have a higher and more immediate social
impact0. However, given that
Microsoft so often ends up in the top ten of “good socially
responsible investments”, FLOSS issues are clearly ranked far too
low in the calculation.

Hopefully, this phone call I took yesterday shows we’re entering an era
where FLOSS issues are on the socially responsible criteria list for
investors. I further hope this blog entry doesn’t stop socially
responsible investors and fund managers from contacting me in the future
to get advice on how socially responsible various companies are. I
debated whether to write about this call publicly, but ultimately went
for it, since it’s an issue I think deserves some net.attention. So
many of us, FLOSS fans included, must now must manage our own retirement
accounts, since pension funds have generally given way to self-directed
retirement savings options. If you have a fund with a socially
responsible investment company, take this opportunity to give them a
call or send them a letter to tell them you’d like to see FLOSS issues
on the criteria list. If you don’t yet invest in with a socially
responsible company, consider switching to one, as they clearly will be
the first to add FLOSS-related criteria to their investing agenda.


0I have never believed
myself that FLOSS is the most important social justice issue in the grand
scheme. I struggled for years with the question of whether to devote my
career to a social cause that wasn’t top priority; things like human
rights and environmental sustainability certainly deserve more immediate
attention. However, it turned out that my skills, knowledge, background
and talent are clearly uniquely tuned to Computer Science in general and
FLOSS in particular, and therefore I can have the greatest positive impact
focusing on this rather than would-be higher priority causes. If only we
could get people in these other movements to at least see that they are
better off not using Microsoft for their own operations (in my experience,
NGOs and NPOs are more likely to stick with proprietary software than
for-profit companies), but that’s an agenda for another blog entry.

Does This Mean We’ve “Made It” as a Social Cause?

Post Syndicated from Bradley M. Kuhn original http://ebb.org/bkuhn/blog/2008/06/28/social-responsible-investing.html

I got a phone call yesterday from someone involved with one of the many
socially
responsible investment
houses. It appears that in some (thus far,
small) corners of the socially responsible investment community, they’ve
begun the nascent stages of adding “willingness to contribute to
FLOSS” to the consideration map of social responsibility. This is
an issue that has plagued me personally for many years, and I was
excited to receive the call.

When I graduated high school and read my first book on personal
financial management, I learned how to invest for retirement in mutual
funds. The book mentioned the (then) somewhat new practice of
“socially responsible investing”, which immediately intrigued
me. The author argued, however, that it was silly to make investment
decisions based on personal beliefs. I immediately disagreed with that,
but I discovered that his secondary point was actually accurate: beyond
the Big Issues (weapons manufacturing, tobacco, etc.), it was tough to
find a fund that actually shared your personal beliefs.

Once I did some research, I discovered that it wasn’t actually as bad
as that, because there actually is a pretty good consensus on
what is and is not socially responsible (or, at least, the general
consensus in this regard seems to match my personal beliefs, anyway).
However, I did discover a gaping hole in the social responsible
investment agenda. The biggest social issue in my personal life —
the issue of software freedom — was never on others’ radar screens
as a “socially responsible issue”.

For example, in 1996, when I had my first opportunity to roll a 401(k)
into an investment of my own choosing, I discovered a troubling fact.
Every single socially responsible fund, when I looked at their stocks
held (sorted by percentage), Microsoft was always in the top ten, and
Oracle in the top twenty. Indeed, on most socially responsible axes,
Microsoft and Oracle look good: they treat their employees reasonably
well, they don’t generally build products that actively kill people
(although many of us die inside a little bit every time we use
proprietary software), and, heck, if they use more DRM, they can ship
their software and documentation via the network and won’t even ship as
many CDs to fill up landfills. This kind of thinking about
“socially responsible” ignores how the proprietariness of
the company’s technology negatively impacts people outside of the
company. Nevertheless, for years, I’ve held my nose and put my
retirement money in these funds, content on the compromised idea that at
least I don’t have my retirement savings in oil companies.

I tell this backstory to communicate how glad I was to get the call
from an employee of a socially responsible investment house. This
fellow was actually investigating the FLOSS credentials of various
companies and trying to bring it forward as a criterion when considering
how socially responsible their practices are. He seemed genuinely
interested in bringing this forward as part of a social agenda for his
company. I told him: every great idea starts as a conversation
between two people
, and enthusiastically answered his queries.

It was clear FLOSS considerations are new and not widely adopted as a
factor in the socially responsible investing world, but I am glad that
at least someone in that world is thinking about these questions. Of
course, I agree that in grand scheme, FLOSS issues should not be ranked
too highly — certainly issues of environmental
sustainability and human rights have a higher and more immediate social
impact0. However, given that
Microsoft so often ends up in the top ten of “good socially
responsible investments”, FLOSS issues are clearly ranked far too
low in the calculation.

Hopefully, this phone call I took yesterday shows we’re entering an era
where FLOSS issues are on the socially responsible criteria list for
investors. I further hope this blog entry doesn’t stop socially
responsible investors and fund managers from contacting me in the future
to get advice on how socially responsible various companies are. I
debated whether to write about this call publicly, but ultimately went
for it, since it’s an issue I think deserves some net.attention. So
many of us, FLOSS fans included, must now must manage our own retirement
accounts, since pension funds have generally given way to self-directed
retirement savings options. If you have a fund with a socially
responsible investment company, take this opportunity to give them a
call or send them a letter to tell them you’d like to see FLOSS issues
on the criteria list. If you don’t yet invest in with a socially
responsible company, consider switching to one, as they clearly will be
the first to add FLOSS-related criteria to their investing agenda.


0I have never believed
myself that FLOSS is the most important social justice issue in the grand
scheme. I struggled for years with the question of whether to devote my
career to a social cause that wasn’t top priority; things like human
rights and environmental sustainability certainly deserve more immediate
attention. However, it turned out that my skills, knowledge, background
and talent are clearly uniquely tuned to Computer Science in general and
FLOSS in particular, and therefore I can have the greatest positive impact
focusing on this rather than would-be higher priority causes. If only we
could get people in these other movements to at least see that they are
better off not using Microsoft for their own operations (in my experience,
NGOs and NPOs are more likely to stick with proprietary software than
for-profit companies), but that’s an agenda for another blog entry.

Does This Mean We’ve “Made It” as a Social Cause?

Post Syndicated from Bradley M. Kuhn original http://ebb.org/bkuhn/blog/2008/06/28/social-responsible-investing.html

I got a phone call yesterday from someone involved with one of the many
socially
responsible investment
houses. It appears that in some (thus far,
small) corners of the socially responsible investment community, they’ve
begun the nascent stages of adding “willingness to contribute to
FLOSS” to the consideration map of social responsibility. This is
an issue that has plagued me personally for many years, and I was
excited to receive the call.

When I graduated high school and read my first book on personal
financial management, I learned how to invest for retirement in mutual
funds. The book mentioned the (then) somewhat new practice of
“socially responsible investing”, which immediately intrigued
me. The author argued, however, that it was silly to make investment
decisions based on personal beliefs. I immediately disagreed with that,
but I discovered that his secondary point was actually accurate: beyond
the Big Issues (weapons manufacturing, tobacco, etc.), it was tough to
find a fund that actually shared your personal beliefs.

Once I did some research, I discovered that it wasn’t actually as bad
as that, because there actually is a pretty good consensus on
what is and is not socially responsible (or, at least, the general
consensus in this regard seems to match my personal beliefs, anyway).
However, I did discover a gaping hole in the social responsible
investment agenda. The biggest social issue in my personal life —
the issue of software freedom — was never on others’ radar screens
as a “socially responsible issue”.

For example, in 1996, when I had my first opportunity to roll a 401(k)
into an investment of my own choosing, I discovered a troubling fact.
Every single socially responsible fund, when I looked at their stocks
held (sorted by percentage), Microsoft was always in the top ten, and
Oracle in the top twenty. Indeed, on most socially responsible axes,
Microsoft and Oracle look good: they treat their employees reasonably
well, they don’t generally build products that actively kill people
(although many of us die inside a little bit every time we use
proprietary software), and, heck, if they use more DRM, they can ship
their software and documentation via the network and won’t even ship as
many CDs to fill up landfills. This kind of thinking about
“socially responsible” ignores how the proprietariness of
the company’s technology negatively impacts people outside of the
company. Nevertheless, for years, I’ve held my nose and put my
retirement money in these funds, content on the compromised idea that at
least I don’t have my retirement savings in oil companies.

I tell this backstory to communicate how glad I was to get the call
from an employee of a socially responsible investment house. This
fellow was actually investigating the FLOSS credentials of various
companies and trying to bring it forward as a criterion when considering
how socially responsible their practices are. He seemed genuinely
interested in bringing this forward as part of a social agenda for his
company. I told him: every great idea starts as a conversation
between two people
, and enthusiastically answered his queries.

It was clear FLOSS considerations are new and not widely adopted as a
factor in the socially responsible investing world, but I am glad that
at least someone in that world is thinking about these questions. Of
course, I agree that in grand scheme, FLOSS issues should not be ranked
too highly — certainly issues of environmental
sustainability and human rights have a higher and more immediate social
impact0. However, given that
Microsoft so often ends up in the top ten of “good socially
responsible investments”, FLOSS issues are clearly ranked far too
low in the calculation.

Hopefully, this phone call I took yesterday shows we’re entering an era
where FLOSS issues are on the socially responsible criteria list for
investors. I further hope this blog entry doesn’t stop socially
responsible investors and fund managers from contacting me in the future
to get advice on how socially responsible various companies are. I
debated whether to write about this call publicly, but ultimately went
for it, since it’s an issue I think deserves some net.attention. So
many of us, FLOSS fans included, must now must manage our own retirement
accounts, since pension funds have generally given way to self-directed
retirement savings options. If you have a fund with a socially
responsible investment company, take this opportunity to give them a
call or send them a letter to tell them you’d like to see FLOSS issues
on the criteria list. If you don’t yet invest in with a socially
responsible company, consider switching to one, as they clearly will be
the first to add FLOSS-related criteria to their investing agenda.


0I have never believed
myself that FLOSS is the most important social justice issue in the grand
scheme. I struggled for years with the question of whether to devote my
career to a social cause that wasn’t top priority; things like human
rights and environmental sustainability certainly deserve more immediate
attention. However, it turned out that my skills, knowledge, background
and talent are clearly uniquely tuned to Computer Science in general and
FLOSS in particular, and therefore I can have the greatest positive impact
focusing on this rather than would-be higher priority causes. If only we
could get people in these other movements to at least see that they are
better off not using Microsoft for their own operations (in my experience,
NGOs and NPOs are more likely to stick with proprietary software than
for-profit companies), but that’s an agenda for another blog entry.

Does This Mean We’ve “Made It” as a Social Cause?

Post Syndicated from Bradley M. Kuhn original http://ebb.org/bkuhn/blog/2008/06/28/social-responsible-investing.html

I got a phone call yesterday from someone involved with one of the many
socially
responsible investment
houses. It appears that in some (thus far,
small) corners of the socially responsible investment community, they’ve
begun the nascent stages of adding “willingness to contribute to
FLOSS” to the consideration map of social responsibility. This is
an issue that has plagued me personally for many years, and I was
excited to receive the call.

When I graduated high school and read my first book on personal
financial management, I learned how to invest for retirement in mutual
funds. The book mentioned the (then) somewhat new practice of
“socially responsible investing”, which immediately intrigued
me. The author argued, however, that it was silly to make investment
decisions based on personal beliefs. I immediately disagreed with that,
but I discovered that his secondary point was actually accurate: beyond
the Big Issues (weapons manufacturing, tobacco, etc.), it was tough to
find a fund that actually shared your personal beliefs.

Once I did some research, I discovered that it wasn’t actually as bad
as that, because there actually is a pretty good consensus on
what is and is not socially responsible (or, at least, the general
consensus in this regard seems to match my personal beliefs, anyway).
However, I did discover a gaping hole in the social responsible
investment agenda. The biggest social issue in my personal life —
the issue of software freedom — was never on others’ radar screens
as a “socially responsible issue”.

For example, in 1996, when I had my first opportunity to roll a 401(k)
into an investment of my own choosing, I discovered a troubling fact.
Every single socially responsible fund, when I looked at their stocks
held (sorted by percentage), Microsoft was always in the top ten, and
Oracle in the top twenty. Indeed, on most socially responsible axes,
Microsoft and Oracle look good: they treat their employees reasonably
well, they don’t generally build products that actively kill people
(although many of us die inside a little bit every time we use
proprietary software), and, heck, if they use more DRM, they can ship
their software and documentation via the network and won’t even ship as
many CDs to fill up landfills. This kind of thinking about
“socially responsible” ignores how the proprietariness of
the company’s technology negatively impacts people outside of the
company. Nevertheless, for years, I’ve held my nose and put my
retirement money in these funds, content on the compromised idea that at
least I don’t have my retirement savings in oil companies.

I tell this backstory to communicate how glad I was to get the call
from an employee of a socially responsible investment house. This
fellow was actually investigating the FLOSS credentials of various
companies and trying to bring it forward as a criterion when considering
how socially responsible their practices are. He seemed genuinely
interested in bringing this forward as part of a social agenda for his
company. I told him: every great idea starts as a conversation
between two people
, and enthusiastically answered his queries.

It was clear FLOSS considerations are new and not widely adopted as a
factor in the socially responsible investing world, but I am glad that
at least someone in that world is thinking about these questions. Of
course, I agree that in grand scheme, FLOSS issues should not be ranked
too highly — certainly issues of environmental
sustainability and human rights have a higher and more immediate social
impact0. However, given that
Microsoft so often ends up in the top ten of “good socially
responsible investments”, FLOSS issues are clearly ranked far too
low in the calculation.

Hopefully, this phone call I took yesterday shows we’re entering an era
where FLOSS issues are on the socially responsible criteria list for
investors. I further hope this blog entry doesn’t stop socially
responsible investors and fund managers from contacting me in the future
to get advice on how socially responsible various companies are. I
debated whether to write about this call publicly, but ultimately went
for it, since it’s an issue I think deserves some net.attention. So
many of us, FLOSS fans included, must now must manage our own retirement
accounts, since pension funds have generally given way to self-directed
retirement savings options. If you have a fund with a socially
responsible investment company, take this opportunity to give them a
call or send them a letter to tell them you’d like to see FLOSS issues
on the criteria list. If you don’t yet invest in with a socially
responsible company, consider switching to one, as they clearly will be
the first to add FLOSS-related criteria to their investing agenda.


0I have never believed
myself that FLOSS is the most important social justice issue in the grand
scheme. I struggled for years with the question of whether to devote my
career to a social cause that wasn’t top priority; things like human
rights and environmental sustainability certainly deserve more immediate
attention. However, it turned out that my skills, knowledge, background
and talent are clearly uniquely tuned to Computer Science in general and
FLOSS in particular, and therefore I can have the greatest positive impact
focusing on this rather than would-be higher priority causes. If only we
could get people in these other movements to at least see that they are
better off not using Microsoft for their own operations (in my experience,
NGOs and NPOs are more likely to stick with proprietary software than
for-profit companies), but that’s an agenda for another blog entry.

Does This Mean We’ve “Made It” as a Social Cause?

Post Syndicated from Bradley M. Kuhn original http://ebb.org/bkuhn/blog/2008/06/28/social-responsible-investing.html

I got a phone call yesterday from someone involved with one of the many
socially
responsible investment
houses. It appears that in some (thus far,
small) corners of the socially responsible investment community, they’ve
begun the nascent stages of adding “willingness to contribute to
FLOSS” to the consideration map of social responsibility. This is
an issue that has plagued me personally for many years, and I was
excited to receive the call.

When I graduated high school and read my first book on personal
financial management, I learned how to invest for retirement in mutual
funds. The book mentioned the (then) somewhat new practice of
“socially responsible investing”, which immediately intrigued
me. The author argued, however, that it was silly to make investment
decisions based on personal beliefs. I immediately disagreed with that,
but I discovered that his secondary point was actually accurate: beyond
the Big Issues (weapons manufacturing, tobacco, etc.), it was tough to
find a fund that actually shared your personal beliefs.

Once I did some research, I discovered that it wasn’t actually as bad
as that, because there actually is a pretty good consensus on
what is and is not socially responsible (or, at least, the general
consensus in this regard seems to match my personal beliefs, anyway).
However, I did discover a gaping hole in the social responsible
investment agenda. The biggest social issue in my personal life —
the issue of software freedom — was never on others’ radar screens
as a “socially responsible issue”.

For example, in 1996, when I had my first opportunity to roll a 401(k)
into an investment of my own choosing, I discovered a troubling fact.
Every single socially responsible fund, when I looked at their stocks
held (sorted by percentage), Microsoft was always in the top ten, and
Oracle in the top twenty. Indeed, on most socially responsible axes,
Microsoft and Oracle look good: they treat their employees reasonably
well, they don’t generally build products that actively kill people
(although many of us die inside a little bit every time we use
proprietary software), and, heck, if they use more DRM, they can ship
their software and documentation via the network and won’t even ship as
many CDs to fill up landfills. This kind of thinking about
“socially responsible” ignores how the proprietariness of
the company’s technology negatively impacts people outside of the
company. Nevertheless, for years, I’ve held my nose and put my
retirement money in these funds, content on the compromised idea that at
least I don’t have my retirement savings in oil companies.

I tell this backstory to communicate how glad I was to get the call
from an employee of a socially responsible investment house. This
fellow was actually investigating the FLOSS credentials of various
companies and trying to bring it forward as a criterion when considering
how socially responsible their practices are. He seemed genuinely
interested in bringing this forward as part of a social agenda for his
company. I told him: every great idea starts as a conversation
between two people
, and enthusiastically answered his queries.

It was clear FLOSS considerations are new and not widely adopted as a
factor in the socially responsible investing world, but I am glad that
at least someone in that world is thinking about these questions. Of
course, I agree that in grand scheme, FLOSS issues should not be ranked
too highly — certainly issues of environmental
sustainability and human rights have a higher and more immediate social
impact0. However, given that
Microsoft so often ends up in the top ten of “good socially
responsible investments”, FLOSS issues are clearly ranked far too
low in the calculation.

Hopefully, this phone call I took yesterday shows we’re entering an era
where FLOSS issues are on the socially responsible criteria list for
investors. I further hope this blog entry doesn’t stop socially
responsible investors and fund managers from contacting me in the future
to get advice on how socially responsible various companies are. I
debated whether to write about this call publicly, but ultimately went
for it, since it’s an issue I think deserves some net.attention. So
many of us, FLOSS fans included, must now must manage our own retirement
accounts, since pension funds have generally given way to self-directed
retirement savings options. If you have a fund with a socially
responsible investment company, take this opportunity to give them a
call or send them a letter to tell them you’d like to see FLOSS issues
on the criteria list. If you don’t yet invest in with a socially
responsible company, consider switching to one, as they clearly will be
the first to add FLOSS-related criteria to their investing agenda.


0I have never believed
myself that FLOSS is the most important social justice issue in the grand
scheme. I struggled for years with the question of whether to devote my
career to a social cause that wasn’t top priority; things like human
rights and environmental sustainability certainly deserve more immediate
attention. However, it turned out that my skills, knowledge, background
and talent are clearly uniquely tuned to Computer Science in general and
FLOSS in particular, and therefore I can have the greatest positive impact
focusing on this rather than would-be higher priority causes. If only we
could get people in these other movements to at least see that they are
better off not using Microsoft for their own operations (in my experience,
NGOs and NPOs are more likely to stick with proprietary software than
for-profit companies), but that’s an agenda for another blog entry.

Does This Mean We’ve “Made It” as a Social Cause?

Post Syndicated from Bradley M. Kuhn original http://ebb.org/bkuhn/blog/2008/06/28/social-responsible-investing.html

I got a phone call yesterday from someone involved with one of the many
socially
responsible investment
houses. It appears that in some (thus far,
small) corners of the socially responsible investment community, they’ve
begun the nascent stages of adding “willingness to contribute to
FLOSS” to the consideration map of social responsibility. This is
an issue that has plagued me personally for many years, and I was
excited to receive the call.

When I graduated high school and read my first book on personal
financial management, I learned how to invest for retirement in mutual
funds. The book mentioned the (then) somewhat new practice of
“socially responsible investing”, which immediately intrigued
me. The author argued, however, that it was silly to make investment
decisions based on personal beliefs. I immediately disagreed with that,
but I discovered that his secondary point was actually accurate: beyond
the Big Issues (weapons manufacturing, tobacco, etc.), it was tough to
find a fund that actually shared your personal beliefs.

Once I did some research, I discovered that it wasn’t actually as bad
as that, because there actually is a pretty good consensus on
what is and is not socially responsible (or, at least, the general
consensus in this regard seems to match my personal beliefs, anyway).
However, I did discover a gaping hole in the social responsible
investment agenda. The biggest social issue in my personal life —
the issue of software freedom — was never on others’ radar screens
as a “socially responsible issue”.

For example, in 1996, when I had my first opportunity to roll a 401(k)
into an investment of my own choosing, I discovered a troubling fact.
Every single socially responsible fund, when I looked at their stocks
held (sorted by percentage), Microsoft was always in the top ten, and
Oracle in the top twenty. Indeed, on most socially responsible axes,
Microsoft and Oracle look good: they treat their employees reasonably
well, they don’t generally build products that actively kill people
(although many of us die inside a little bit every time we use
proprietary software), and, heck, if they use more DRM, they can ship
their software and documentation via the network and won’t even ship as
many CDs to fill up landfills. This kind of thinking about
“socially responsible” ignores how the proprietariness of
the company’s technology negatively impacts people outside of the
company. Nevertheless, for years, I’ve held my nose and put my
retirement money in these funds, content on the compromised idea that at
least I don’t have my retirement savings in oil companies.

I tell this backstory to communicate how glad I was to get the call
from an employee of a socially responsible investment house. This
fellow was actually investigating the FLOSS credentials of various
companies and trying to bring it forward as a criterion when considering
how socially responsible their practices are. He seemed genuinely
interested in bringing this forward as part of a social agenda for his
company. I told him: every great idea starts as a conversation
between two people
, and enthusiastically answered his queries.

It was clear FLOSS considerations are new and not widely adopted as a
factor in the socially responsible investing world, but I am glad that
at least someone in that world is thinking about these questions. Of
course, I agree that in grand scheme, FLOSS issues should not be ranked
too highly — certainly issues of environmental
sustainability and human rights have a higher and more immediate social
impact0. However, given that
Microsoft so often ends up in the top ten of “good socially
responsible investments”, FLOSS issues are clearly ranked far too
low in the calculation.

Hopefully, this phone call I took yesterday shows we’re entering an era
where FLOSS issues are on the socially responsible criteria list for
investors. I further hope this blog entry doesn’t stop socially
responsible investors and fund managers from contacting me in the future
to get advice on how socially responsible various companies are. I
debated whether to write about this call publicly, but ultimately went
for it, since it’s an issue I think deserves some net.attention. So
many of us, FLOSS fans included, must now must manage our own retirement
accounts, since pension funds have generally given way to self-directed
retirement savings options. If you have a fund with a socially
responsible investment company, take this opportunity to give them a
call or send them a letter to tell them you’d like to see FLOSS issues
on the criteria list. If you don’t yet invest in with a socially
responsible company, consider switching to one, as they clearly will be
the first to add FLOSS-related criteria to their investing agenda.


0I have never believed
myself that FLOSS is the most important social justice issue in the grand
scheme. I struggled for years with the question of whether to devote my
career to a social cause that wasn’t top priority; things like human
rights and environmental sustainability certainly deserve more immediate
attention. However, it turned out that my skills, knowledge, background
and talent are clearly uniquely tuned to Computer Science in general and
FLOSS in particular, and therefore I can have the greatest positive impact
focusing on this rather than would-be higher priority causes. If only we
could get people in these other movements to at least see that they are
better off not using Microsoft for their own operations (in my experience,
NGOs and NPOs are more likely to stick with proprietary software than
for-profit companies), but that’s an agenda for another blog entry.

Does This Mean We’ve “Made It” as a Social Cause?

Post Syndicated from Bradley M. Kuhn original http://ebb.org/bkuhn/blog/2008/06/28/social-responsible-investing.html

I got a phone call yesterday from someone involved with one of the many
socially
responsible investment
houses. It appears that in some (thus far,
small) corners of the socially responsible investment community, they’ve
begun the nascent stages of adding “willingness to contribute to
FLOSS” to the consideration map of social responsibility. This is
an issue that has plagued me personally for many years, and I was
excited to receive the call.

When I graduated high school and read my first book on personal
financial management, I learned how to invest for retirement in mutual
funds. The book mentioned the (then) somewhat new practice of
“socially responsible investing”, which immediately intrigued
me. The author argued, however, that it was silly to make investment
decisions based on personal beliefs. I immediately disagreed with that,
but I discovered that his secondary point was actually accurate: beyond
the Big Issues (weapons manufacturing, tobacco, etc.), it was tough to
find a fund that actually shared your personal beliefs.

Once I did some research, I discovered that it wasn’t actually as bad
as that, because there actually is a pretty good consensus on
what is and is not socially responsible (or, at least, the general
consensus in this regard seems to match my personal beliefs, anyway).
However, I did discover a gaping hole in the social responsible
investment agenda. The biggest social issue in my personal life —
the issue of software freedom — was never on others’ radar screens
as a “socially responsible issue”.

For example, in 1996, when I had my first opportunity to roll a 401(k)
into an investment of my own choosing, I discovered a troubling fact.
Every single socially responsible fund, when I looked at their stocks
held (sorted by percentage), Microsoft was always in the top ten, and
Oracle in the top twenty. Indeed, on most socially responsible axes,
Microsoft and Oracle look good: they treat their employees reasonably
well, they don’t generally build products that actively kill people
(although many of us die inside a little bit every time we use
proprietary software), and, heck, if they use more DRM, they can ship
their software and documentation via the network and won’t even ship as
many CDs to fill up landfills. This kind of thinking about
“socially responsible” ignores how the proprietariness of
the company’s technology negatively impacts people outside of the
company. Nevertheless, for years, I’ve held my nose and put my
retirement money in these funds, content on the compromised idea that at
least I don’t have my retirement savings in oil companies.

I tell this backstory to communicate how glad I was to get the call
from an employee of a socially responsible investment house. This
fellow was actually investigating the FLOSS credentials of various
companies and trying to bring it forward as a criterion when considering
how socially responsible their practices are. He seemed genuinely
interested in bringing this forward as part of a social agenda for his
company. I told him: every great idea starts as a conversation
between two people
, and enthusiastically answered his queries.

It was clear FLOSS considerations are new and not widely adopted as a
factor in the socially responsible investing world, but I am glad that
at least someone in that world is thinking about these questions. Of
course, I agree that in grand scheme, FLOSS issues should not be ranked
too highly — certainly issues of environmental
sustainability and human rights have a higher and more immediate social
impact0. However, given that
Microsoft so often ends up in the top ten of “good socially
responsible investments”, FLOSS issues are clearly ranked far too
low in the calculation.

Hopefully, this phone call I took yesterday shows we’re entering an era
where FLOSS issues are on the socially responsible criteria list for
investors. I further hope this blog entry doesn’t stop socially
responsible investors and fund managers from contacting me in the future
to get advice on how socially responsible various companies are. I
debated whether to write about this call publicly, but ultimately went
for it, since it’s an issue I think deserves some net.attention. So
many of us, FLOSS fans included, must now must manage our own retirement
accounts, since pension funds have generally given way to self-directed
retirement savings options. If you have a fund with a socially
responsible investment company, take this opportunity to give them a
call or send them a letter to tell them you’d like to see FLOSS issues
on the criteria list. If you don’t yet invest in with a socially
responsible company, consider switching to one, as they clearly will be
the first to add FLOSS-related criteria to their investing agenda.


0I have never believed
myself that FLOSS is the most important social justice issue in the grand
scheme. I struggled for years with the question of whether to devote my
career to a social cause that wasn’t top priority; things like human
rights and environmental sustainability certainly deserve more immediate
attention. However, it turned out that my skills, knowledge, background
and talent are clearly uniquely tuned to Computer Science in general and
FLOSS in particular, and therefore I can have the greatest positive impact
focusing on this rather than would-be higher priority causes. If only we
could get people in these other movements to at least see that they are
better off not using Microsoft for their own operations (in my experience,
NGOs and NPOs are more likely to stick with proprietary software than
for-profit companies), but that’s an agenda for another blog entry.

Does This Mean We’ve “Made It” as a Social Cause?

Post Syndicated from Bradley M. Kuhn original http://ebb.org/bkuhn/blog/2008/06/28/social-responsible-investing.html

I got a phone call yesterday from someone involved with one of the many
socially
responsible investment
houses. It appears that in some (thus far,
small) corners of the socially responsible investment community, they’ve
begun the nascent stages of adding “willingness to contribute to
FLOSS” to the consideration map of social responsibility. This is
an issue that has plagued me personally for many years, and I was
excited to receive the call.

When I graduated high school and read my first book on personal
financial management, I learned how to invest for retirement in mutual
funds. The book mentioned the (then) somewhat new practice of
“socially responsible investing”, which immediately intrigued
me. The author argued, however, that it was silly to make investment
decisions based on personal beliefs. I immediately disagreed with that,
but I discovered that his secondary point was actually accurate: beyond
the Big Issues (weapons manufacturing, tobacco, etc.), it was tough to
find a fund that actually shared your personal beliefs.

Once I did some research, I discovered that it wasn’t actually as bad
as that, because there actually is a pretty good consensus on
what is and is not socially responsible (or, at least, the general
consensus in this regard seems to match my personal beliefs, anyway).
However, I did discover a gaping hole in the social responsible
investment agenda. The biggest social issue in my personal life —
the issue of software freedom — was never on others’ radar screens
as a “socially responsible issue”.

For example, in 1996, when I had my first opportunity to roll a 401(k)
into an investment of my own choosing, I discovered a troubling fact.
Every single socially responsible fund, when I looked at their stocks
held (sorted by percentage), Microsoft was always in the top ten, and
Oracle in the top twenty. Indeed, on most socially responsible axes,
Microsoft and Oracle look good: they treat their employees reasonably
well, they don’t generally build products that actively kill people
(although many of us die inside a little bit every time we use
proprietary software), and, heck, if they use more DRM, they can ship
their software and documentation via the network and won’t even ship as
many CDs to fill up landfills. This kind of thinking about
“socially responsible” ignores how the proprietariness of
the company’s technology negatively impacts people outside of the
company. Nevertheless, for years, I’ve held my nose and put my
retirement money in these funds, content on the compromised idea that at
least I don’t have my retirement savings in oil companies.

I tell this backstory to communicate how glad I was to get the call
from an employee of a socially responsible investment house. This
fellow was actually investigating the FLOSS credentials of various
companies and trying to bring it forward as a criterion when considering
how socially responsible their practices are. He seemed genuinely
interested in bringing this forward as part of a social agenda for his
company. I told him: every great idea starts as a conversation
between two people
, and enthusiastically answered his queries.

It was clear FLOSS considerations are new and not widely adopted as a
factor in the socially responsible investing world, but I am glad that
at least someone in that world is thinking about these questions. Of
course, I agree that in grand scheme, FLOSS issues should not be ranked
too highly — certainly issues of environmental
sustainability and human rights have a higher and more immediate social
impact0. However, given that
Microsoft so often ends up in the top ten of “good socially
responsible investments”, FLOSS issues are clearly ranked far too
low in the calculation.

Hopefully, this phone call I took yesterday shows we’re entering an era
where FLOSS issues are on the socially responsible criteria list for
investors. I further hope this blog entry doesn’t stop socially
responsible investors and fund managers from contacting me in the future
to get advice on how socially responsible various companies are. I
debated whether to write about this call publicly, but ultimately went
for it, since it’s an issue I think deserves some net.attention. So
many of us, FLOSS fans included, must now must manage our own retirement
accounts, since pension funds have generally given way to self-directed
retirement savings options. If you have a fund with a socially
responsible investment company, take this opportunity to give them a
call or send them a letter to tell them you’d like to see FLOSS issues
on the criteria list. If you don’t yet invest in with a socially
responsible company, consider switching to one, as they clearly will be
the first to add FLOSS-related criteria to their investing agenda.


0I have never believed
myself that FLOSS is the most important social justice issue in the grand
scheme. I struggled for years with the question of whether to devote my
career to a social cause that wasn’t top priority; things like human
rights and environmental sustainability certainly deserve more immediate
attention. However, it turned out that my skills, knowledge, background
and talent are clearly uniquely tuned to Computer Science in general and
FLOSS in particular, and therefore I can have the greatest positive impact
focusing on this rather than would-be higher priority causes. If only we
could get people in these other movements to at least see that they are
better off not using Microsoft for their own operations (in my experience,
NGOs and NPOs are more likely to stick with proprietary software than
for-profit companies), but that’s an agenda for another blog entry.

Does This Mean We’ve “Made It” as a Social Cause?

Post Syndicated from Bradley M. Kuhn original http://ebb.org/bkuhn/blog/2008/06/28/social-responsible-investing.html

I got a phone call yesterday from someone involved with one of the many
socially
responsible investment
houses. It appears that in some (thus far,
small) corners of the socially responsible investment community, they’ve
begun the nascent stages of adding “willingness to contribute to
FLOSS” to the consideration map of social responsibility. This is
an issue that has plagued me personally for many years, and I was
excited to receive the call.

When I graduated high school and read my first book on personal
financial management, I learned how to invest for retirement in mutual
funds. The book mentioned the (then) somewhat new practice of
“socially responsible investing”, which immediately intrigued
me. The author argued, however, that it was silly to make investment
decisions based on personal beliefs. I immediately disagreed with that,
but I discovered that his secondary point was actually accurate: beyond
the Big Issues (weapons manufacturing, tobacco, etc.), it was tough to
find a fund that actually shared your personal beliefs.

Once I did some research, I discovered that it wasn’t actually as bad
as that, because there actually is a pretty good consensus on
what is and is not socially responsible (or, at least, the general
consensus in this regard seems to match my personal beliefs, anyway).
However, I did discover a gaping hole in the social responsible
investment agenda. The biggest social issue in my personal life —
the issue of software freedom — was never on others’ radar screens
as a “socially responsible issue”.

For example, in 1996, when I had my first opportunity to roll a 401(k)
into an investment of my own choosing, I discovered a troubling fact.
Every single socially responsible fund, when I looked at their stocks
held (sorted by percentage), Microsoft was always in the top ten, and
Oracle in the top twenty. Indeed, on most socially responsible axes,
Microsoft and Oracle look good: they treat their employees reasonably
well, they don’t generally build products that actively kill people
(although many of us die inside a little bit every time we use
proprietary software), and, heck, if they use more DRM, they can ship
their software and documentation via the network and won’t even ship as
many CDs to fill up landfills. This kind of thinking about
“socially responsible” ignores how the proprietariness of
the company’s technology negatively impacts people outside of the
company. Nevertheless, for years, I’ve held my nose and put my
retirement money in these funds, content on the compromised idea that at
least I don’t have my retirement savings in oil companies.

I tell this backstory to communicate how glad I was to get the call
from an employee of a socially responsible investment house. This
fellow was actually investigating the FLOSS credentials of various
companies and trying to bring it forward as a criterion when considering
how socially responsible their practices are. He seemed genuinely
interested in bringing this forward as part of a social agenda for his
company. I told him: every great idea starts as a conversation
between two people
, and enthusiastically answered his queries.

It was clear FLOSS considerations are new and not widely adopted as a
factor in the socially responsible investing world, but I am glad that
at least someone in that world is thinking about these questions. Of
course, I agree that in grand scheme, FLOSS issues should not be ranked
too highly — certainly issues of environmental
sustainability and human rights have a higher and more immediate social
impact0. However, given that
Microsoft so often ends up in the top ten of “good socially
responsible investments”, FLOSS issues are clearly ranked far too
low in the calculation.

Hopefully, this phone call I took yesterday shows we’re entering an era
where FLOSS issues are on the socially responsible criteria list for
investors. I further hope this blog entry doesn’t stop socially
responsible investors and fund managers from contacting me in the future
to get advice on how socially responsible various companies are. I
debated whether to write about this call publicly, but ultimately went
for it, since it’s an issue I think deserves some net.attention. So
many of us, FLOSS fans included, must now must manage our own retirement
accounts, since pension funds have generally given way to self-directed
retirement savings options. If you have a fund with a socially
responsible investment company, take this opportunity to give them a
call or send them a letter to tell them you’d like to see FLOSS issues
on the criteria list. If you don’t yet invest in with a socially
responsible company, consider switching to one, as they clearly will be
the first to add FLOSS-related criteria to their investing agenda.


0I have never believed
myself that FLOSS is the most important social justice issue in the grand
scheme. I struggled for years with the question of whether to devote my
career to a social cause that wasn’t top priority; things like human
rights and environmental sustainability certainly deserve more immediate
attention. However, it turned out that my skills, knowledge, background
and talent are clearly uniquely tuned to Computer Science in general and
FLOSS in particular, and therefore I can have the greatest positive impact
focusing on this rather than would-be higher priority causes. If only we
could get people in these other movements to at least see that they are
better off not using Microsoft for their own operations (in my experience,
NGOs and NPOs are more likely to stick with proprietary software than
for-profit companies), but that’s an agenda for another blog entry.

The collective thoughts of the interwebz