Difference between revisions of "User:Gordon Wendt"

From Second Life Wiki
Jump to navigation Jump to search
(adding office hours I go to)
 
(37 intermediate revisions by the same user not shown)
Line 1: Line 1:
<div id="background" style=background-color:#CCFFCC; visibility: visible">  
<div id="background" style="border:2px solid #AAAAAA; background-color:#EEEEEE;padding:10; visibility: visible">
__NOEDITSECTION__
{{/gridlist}}


{{visl
{{visl
|name=Gordon Wendt
|name=Gordon Wendt
|Mentors=*
|}}
|}}
{{skills
{{skills
Line 12: Line 9:
|}}
|}}


== JIRA ==
{{SL-hCard/2.0
|account=Resident
|name=Gordon Wendt
|image=GW.jpg
|rezday=May 10th 2006
|fields={{SL-hCard/field|Achievements/Tasks|
*Builder
*Scripter
}}
}}


=== General ===
{| class="quote" id="DIS" style="width:auto; margin: auto; border:2px solid #FFCC00; padding:5px; background-color: #FFF0D9;" cellpadding="4" cellspacing="4"
*[http://jira.secondlife.com/secure/IssueNavigator.jspa?reset=true&&created%3Aprevious=-1d&sorter/field=issuekey&sorter/order=DESC Issues created in the last 24 hours]
| <center>''"Around here, however, we don't look backwards for very long. We keep moving forward, opening up new doors and doing new things, because we're curious...and curiosity keeps leading us down new paths."''
*[http://jira.secondlife.com/secure/IssueNavigator.jspa?reset=true&&updated%3Aprevious=-1d&sorter/field=issuekey&sorter/order=DESC Issues updated in the last 24 hours]


=== Specific to me ===
<br><br>'''-Walt Disney'''</center>
{{Jira Reporter}}
|}


==People==
*[[User:Strife Onizuka|Strife Onizuka]] - Too much useful stuff to actually describe here
*[[User:Michelle2 Zenovka|Michelle2 Zenovka]] - Great cmake instructions for building the viewer
*[[User:Lex Neva|Lex Neva]] - again, too many great contributions to count and/or describe
*[[User:Harleen Gretzky|Harleen Gretzky]] - one of the great people on the JIRA


=Meetings=
{| class="quote" id="Random" style="width:auto; margin: auto; border:2px solid #CCCCCC; padding:5px; background-color: #FFFFFF;" cellpadding="4" cellspacing="4"
*[[Bug triage]] - The main page for the bug triage meetings
|[[Image:Icons_parature_warning.jpg]]
**General
|<center>'''[[Special:Random|Error 42: Universe not found,<br> please contact the mice for assistance]]'''</center>
***Mondays
|[[Image:Icons_parature_warning.jpg]]
***12pm PST
|}
***[http://slurl.com/secondlife/Hippotropolis/241/27/23/?&title=Hippotropolis+Meeting+area Hippotropolis Meeting area]
**Release Candidate
***Wednesdays
***3pm PST
***[http://slurl.com/secondlife/Levenhall/152/40/30/?img=http%3A//lindenlab.files.wordpress.com/2007/07/bridielinden_1st_officehour.jpg&title=Bridie%20Linden%27s%20house%20in%20LindenVillage Bridie Linden's house]


==People==
*{{User|Strife Onizuka}} - Too much useful stuff to actually describe here
*{{User|Zai Lynch}} - Wizard of the wiki markup
*{{User|Michelle2 Zenovka}} - Great cmake instructions for building the viewer
*{{User|Lex Neva}} - again, too many great contributions to count and/or describe
*{{User|Harleen Gretzky}} - one of the great people on the JIRA
*{{User|Jesse Barnett}} - Scripter Extraordinaire


*[[Open Source Meeting]] - The main page for the open source meetings
== Useful pages ==
***Thursdays
* [[:Category:Wizardry and Steamworks]] - only an archive now but has some useful things
***2pm PST
***[http://slurl.com/secondlife/Hippotropolis/239/28/24/?img=https%3A//wiki.secondlife.com/w/images/9/91/Opensource_meetings_at_Hippotropolis.jpg Hippotropolis]


 
*[[Special:Random]] - Directs to a random page on the wiki
*[[User Experience Interest Group]] - The main for the User Experience Interest Group Meetings
*[[Special:SpecialPages]] - A list of all the special pages for the wiki
***Thursdays
*[[Help:Editors_Toolbox]] - A list of helpful wiki templates
***3 PM PST
*[http://www.mediawiki.org/wiki/Help:Magic_words Mediawiki magic words page]
***[http://slurl.com/secondlife/Beaumont/148/155/46/?title=Linden%20Village Benjamin Linden's office]
 
== Useful pages ==
*[[Special:Random]] - Directs to a random page on the wikings
*[[Submitting_code]] - Info on how to submit code as well as the proper way to create a patch
*[[Office Hours]] - A listing of all the Lindens' Office Hours


== Miscellaneous ==
== Miscellaneous ==
Line 60: Line 54:
[[/testbed]] - For posting my experimental ideas including scripts, scraps of code, etc... --- USE AT YOUR OWN RISK
[[/testbed]] - For posting my experimental ideas including scripts, scraps of code, etc... --- USE AT YOUR OWN RISK


<div id="background" style=background-color:#FFCCFF; visibility: visible">
[[/scripts]] - Some scripts that I have written that I am freely releasing


== Free Scripts ==
[[/snippets]] - Code snippets I"m freely releasing for anyone to use
Some scripts that I have written that I am freely releasing


=== Quick and Dirty chat repeater ===
__NOINDEX__
Repeats whatever you say on a user definable channel on channel 0 (public chat), also added commented out info on how to make it shout or whisper as well as say
__NOTOC__
 
__NOEDITSECTION__
<lsl>
 
// Coded by Gordon Wendt, free to reuse, snip, recode, give away, or use in derivative works for all perpetuity, all I ask is that you leave this notice intact, add your name below mine if you add something to the code, and leave this and any other creator's notice intact
 
// -----
// GORDON WENDT
 
 
// ACTUAL CODE STARTS HERE
 
// Change the object name to whatever you want the message to be prefixed by, replace with a single space to make object name appear blank, though message will still have a semicolon (:) before it
 
integer chan = 5; // replace with whatever channel number you want the object to listen on
 
default
{
    state_entry()
    {
        llListen(chan,"","",""); // sets the listen so that object listens to says on that channel
    }
 
    listen(integer channel,string name,key id,string message)
    {
        llSay(0,message); // says whatever it heard on channel 5 in channel 0 which is the standard general chat
     
      // ALTERNATE MODES (ADVANCED)
     
      // to use these instead of llSay put two forward slashes (//) before llSay and remove the two slashes from oen of the lines below, to reverse just re-add the slashes to that line and remove the ones from the llSay line
     
      //  llShout(0,message); // if you'd prefer it to shout
      //  llWhisper(0,message); // if you'd prefer it to whisper
    }
}
 
</lsl>
 
</div>
<div id="background" style=background-color:#CCCCFF; visibility: visible">
 
== Free code snippets ==
A couple of code snippets I"m freely releasing for anyone to use
 
=== Naming Trick ===
A cheap little trick to make the object name on the way the script name then change the object name back
 
<lsl>
 
default
{
    state_entry()
      {
          a = llGetObjectName(); // grabs the current object name and stores it so it can be restored later
          llSetObjectName(llGetScriptName() ); // changes the object name to the script name ( see advanced use for more info)
          llOwnerSay("this is the test statement"); // your test statement, said with the name of the script name
          llSetObjectName(a);// changes the object name back to what it originally was
          // ADVANCED USE: change llGetScriptName() to a string of text (surrounded by quotes ("") or just change the script name
      }
}
 
</lsl>
 
</div>
</div>


[[Category:English speaking Volunteers|Gordon Wendt]]
[[Category:English speaking Volunteers|Gordon Wendt]]
[[Category:English speaking Residents|Gordon Wendt]]

Latest revision as of 22:34, 23 August 2013

Profile
GW.jpg
Born:
May 10th 2006
Account:
Resident
Achievements/Tasks:
  • Builder
  • Scripter
"Around here, however, we don't look backwards for very long. We keep moving forward, opening up new doors and doing new things, because we're curious...and curiosity keeps leading us down new paths."

-Walt Disney


Icons parature warning.jpg
Error 42: Universe not found,
please contact the mice for assistance
Icons parature warning.jpg

People

Useful pages

Miscellaneous

/sandbox - an internal sandbox I use to test various wiki specific changes.

/testbed - For posting my experimental ideas including scripts, scraps of code, etc... --- USE AT YOUR OWN RISK

/scripts - Some scripts that I have written that I am freely releasing

/snippets - Code snippets I"m freely releasing for anyone to use