lookaway.info Membership


Luminaries of the Information Age.


Lookaway Collective Membership

f209483cf38623e808ff43da77b4e4b7-thumbnail

LOOKAWAY!

We are a collective organization of creative citizens of the Internet. You will find among our ranks, artists, musicians, writers, technologists and more. We seek not profit or power. We simply exist to express our souls to the world in an attempt to resonate with others like us around the globe. Membership is open to anyone. As a member you will be able vote on content using Marshmallows and publish posts.

Marshmallow Ranking System

Marshmallow Button

The original marshmallow button
Lookaway Information

All Lookaway Members influence the prevalence of content on Lookaway by distributing Marshmallows to the work that they would like to see more of. They have equal voting power regardless of how often they vote.

A couple of simple rules:

There is a 30 day waiting period after joining before Lookaway Members can vote.

The maximum voting frequency is every 5 minutes.

Once a Lookaway Member is eligible for voting, they will see the Marshmallow button in the bottom right corner of content detail pages.

The Marshmallow ranking system is named after the Stanford Marshmallow Experiment and is based on the biological phenomenon known as a "negative feedback loop". It sounds like voting based on dislikes but that is not what is meant by "negative feedback loop". Instead, negative feedback loops in nature and biology refer to environments where biomass is distributed in a stable manner such as the relationship between lion and zebra on the Savannah. This is the opposite of a "positive feedback loop" where factors in an environment inhibit drastic growth or die-off such as invasive species, or pathogenic epidemics.

Avoiding the "viral" effect of simply showing popular content before other content, the Marshmallow system seeks to use a more holistic approach to feedback based ranking. A Lookaway Member's Marshmallows become lighter and lighter the more often the they vote.

members/models.py
...    
    def get_adjusted_weight(self, n=30, m=5, *args, **kwargs):
        # get n days ago
        t = timezone.now() - datetime.timedelta(days=n)
        ## number marshmallows allocated by the user in the last n days
        if 'model' in kwargs:
            q = kwargs['model'].objects.filter(
                marshmallows__member=self,
                marshmallows__date__gte=t,
            ).count()
        else:
            q = Marshmallow.objects.filter(member=self, date__gte=t).count()
        if q == 0:
            q += 1
        print('number of marshmalows allocated in last {0} days by {1}: {2}'.format(n, q, self))
        # weight allocation period
        p = n / q
        # apply the multiplier
        return p * m
...

Source: kbruder Tech

🌐 The Marshmallow Experiment and the Power of Delayed Gratification
40 Years of Stanford Research Found That People With This One Quality Are More Likely to Succeed

Donate

bitcoin:3MnhNRKgrpTFQWstYicjF6GebY7u7dap4u
Bitcoin Accepted Here

3MnhNRKgrpTFQWstYicjF6GebY7u7dap4u

Please donate some Bitcoin to our site. We can use it to keep improving the site and open up to more members. Any amount will help. Thank you.


litecoin:MT61gm6pdp9rJoLyMWW5A1hnUpxAERnxqg
Litecoin Accepted Here

MT61gm6pdp9rJoLyMWW5A1hnUpxAERnxqg

Please donate some Lite to our site. We can use it to keep improving the site and open it up to more members. Any amount will help. Thank you.


New Contributors