Difference between revisions of "User:Aelynn Akina"

From Second Life Wiki
Jump to navigation Jump to search
 
(8 intermediate revisions by the same user not shown)
Line 1: Line 1:
Hello, this is my page on the Second Life wiki. Updates to come. :)
Fourscore and a few minutes ago, when native Avatars still roamed free on the metaverse unoppressed, beauty and reason composed the sole rubric by which any Avatar was judged. The metaflora and metafauna flourished and prospered, and everyone and everything lived in peace and harmony. One fated night, one Linden, fraught with creative madness, set a plan in motion to take over and subjugate the peaceful masses of the metaverse. From this toil, a new era dawned upon all those who had once cherished freedom and unoppression. Second Life was born.  


==Profile==
The new era, however, was not welcomed with open arms by all inhabitants of the metaverse. There were an isolated few who had cherished freedom so much that they simply could not adjust to impositions of tyranny and fear. Out of this union of ideals was wrought a new resistance moment. Aelynn Akina, in her nascent Second Life days, saw meaning in the plight of such vigilantes, and took it upon herself to covertly help the resistance movement in any way she could.  
On Second Life, my profile reads:
:"Hey I'm Aelynn. I'm the weaker version of Lolliipop she can push me off tables and chairs) except I'm taller and I'm not a furry or a dragon and not as crazy. I also am not from England I suppose.  As in I don't live there. Nor was I ever from there. Also I don't have "loads" of English friends or anything. I wish I did sometimes.


:I love my friends on SL. All of them. I think.... wait.. I'm not so sure.
==Affiliations==
Aelynn is in no way affiliated with STA Travel. Nevertheless, here's some shameless advertising:


:I am now a spy for hire. Message for details :)"
[[Image:Sta travel hd 007.jpg|STA Travel Orientation Island|700px]]


==Scripts==
This above is the STA Travel Orientation Island. It is a rather adequate locale for recreation and such.
Herein I will describe some scripts that I wrote while bored.
 
<pre>
list qsort(list ls) {
    //Make partition
    list LESS;
    list PIVOT;
    list GREATER;
   
    //Check if listlen is 1 or none
    if ( llGetListLength(ls) <= 1)
        return ls;
 
    // Get random pivot value
    integer random_index = (integer) llFrand(llGetListLength(ls) - 1);
   
    // Get the value at the random pivot value
    integer pivot_val = (integer) llList2Integer(ls, random_index);
 
    // Declare iterator and partition
    integer i;
    for ( i = 0; i < llGetListLength(ls); i++) {
        integer to_be_sorted = (integer)llList2Integer(ls, i);
        if ( to_be_sorted < pivot_val) {
            LESS += [to_be_sorted];
        } else if ( to_be_sorted == pivot_val) {
            PIVOT += [to_be_sorted];
        } else {
            GREATER += [to_be_sorted];
        }
    }
    // Do recursion and return
    return (  qsort(LESS) + PIVOT + qsort(GREATER) );
}
</pre>

Latest revision as of 14:21, 23 January 2008

Fourscore and a few minutes ago, when native Avatars still roamed free on the metaverse unoppressed, beauty and reason composed the sole rubric by which any Avatar was judged. The metaflora and metafauna flourished and prospered, and everyone and everything lived in peace and harmony. One fated night, one Linden, fraught with creative madness, set a plan in motion to take over and subjugate the peaceful masses of the metaverse. From this toil, a new era dawned upon all those who had once cherished freedom and unoppression. Second Life was born.

The new era, however, was not welcomed with open arms by all inhabitants of the metaverse. There were an isolated few who had cherished freedom so much that they simply could not adjust to impositions of tyranny and fear. Out of this union of ideals was wrought a new resistance moment. Aelynn Akina, in her nascent Second Life days, saw meaning in the plight of such vigilantes, and took it upon herself to covertly help the resistance movement in any way she could.

Affiliations

Aelynn is in no way affiliated with STA Travel. Nevertheless, here's some shameless advertising:

STA Travel Orientation Island

This above is the STA Travel Orientation Island. It is a rather adequate locale for recreation and such.