Think this is Cubbon rd.
Business depends on the profit motive. And in my view, the profit motive is good – both in the sense that it’s moral and that it’s efficient. It has created enormous wealth and raised the living standards of millions of people. But more and more, we are learning that the profit motive, potent though it is, can be an insufficient impetus for both individuals and organisations. An equally powerful source of energy, one that we’ve often neglected or dismissed as unrealistic, is what we might call the purpose motive. What motivates Wikipedians, as well as high-performing organisations of all kinds, is a sense of purpose. Businesses with a transcendent purpose – whether it’s Google’s aim to organise the world’s information and make it accessible or Apple’s desire to ‘put a dent in the universe’ – will, over the long haul, outperform those driven only by profit.
Indeed, when the profit motive comes unmoored from the purpose motive, good can turn to bad. And by bad, I mean not only unethical, but bad in the sense of mediocre. Raising quarterly earnings by two pennies a share is not the sort of clarion call that will get people leaping out of bed in the morning and racing to work to do amazing things.
This is one of the many aspects of our nature that separate us from donkeys. Yes, we do respond well to carrots and sticks in many circumstances. Yes, those second drive motivators are effective for certain tasks. But in the end, human beings are not simply smaller, slower, better-smelling donkeys. We have a third drive – the need to direct our own lives, to learn and create new things, and to do better by ourselves and our world. That’s what makes us human. And increasingly, it is our humanity that makes us effective.
Dan Pink on how employment can be at loggerheads with the human desire to seek purpose
The Hackers: Digital Revolutionaries, the Early Years: 1: Lee Felsenstein, creator of the Osborne 1 computer; 2, 6: Richard Greenblatt, pioneering member of MIT's coder elite; 3: Richard Stallman, leader of the GNU Project and founder of the Free Software Foundation; 4: Tim O'Reilly, computer book publisher; 5, 9: Andy Hertzfeld, designer of the first Macintosh OS; 8: Steve Wozniak, developer of the Apple II computer; 10: Mark Zuckerberg, founder and CEO of Facebook.
Geek Power: Steven Levy Revisits Tech Titans, Hackers, Idealists
The Energy and Resources Institute, an NGO fighting for a 'sustainable future' doesn't have its office in a jungle but next to a sewer! Maybe they believe in living with a sense of reality *chuckle*
The sewer stinks by the way!
But technology is also turning us into a global water-cooler culture, with millions of people sending each other (via e-mail, text messages, tweets, YouTube links) gossip, rumors and the sort of amusing-entertaining-weird anecdotes and photographs they might once have shared with pals over a coffee break. And in an effort to collect valuable eyeballs and clicks, media outlets are increasingly pandering to that impulse — often at the expense of hard news. “I have the theory that news is now driven not by editors who know anything,” the comedian and commentator Bill Maher recently observed. “I think it’s driven by people who are” slacking off at work and “surfing the Internet.” He added, “It’s like a country run by ‘America’s Funniest Home Videos.’ ”
[...]
AT THE SAME time the Internet’s nurturing of niche cultures is contributing to what Cass Sunstein calls “cyberbalkanization.” Individuals can design feeds and alerts from their favorite Web sites so that they get only the news they want, and with more and more opinion sites and specialized sites, it becomes easier and easier, as Mr. Sunstein observes in his 2009 book “Going to Extremes,” for people “to avoid general-interest newspapers and magazines and to make choices that reflect their own predispositions.
I'm thinking whether I'm guilty of this kind of behavior...
I wrote this bookmarklet to generate a QR code for any selected text in the web browser
javascript: function getQR() {
var txt = '';
if (window.getSelection) {
txt = window.getSelection();
}
else if (document.getSelection) {
txt = document.getSelection();
}
else if (document.selection) {
txt = document.selection.createRange().text;
}
else return;
if (txt == '') {
alert('Select some text ');
return;
}
void(window.open('http://chart.apis.google.com/chart?cht=qr&chs=300x300&chl=' + encodeURIComponent(txt), 'Qr%20code', 'top=100,left=200,width=350,height=350,status=yes'));
}
void getQR();
Aim is to save a lot of typing on cramped mobile keyboards.
Inspiration for this.NB: I have tested this on Firefox & it works nicely for moderate amounts of text. But since I am not a javascript programmer, pliss escuse any bugs.