<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.secondlife.com/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Sindy+Tsure</id>
	<title>Second Life Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.secondlife.com/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Sindy+Tsure"/>
	<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/wiki/Special:Contributions/Sindy_Tsure"/>
	<updated>2026-05-26T03:08:14Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.42.1</generator>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=LlMoveToTarget&amp;diff=333923</id>
		<title>LlMoveToTarget</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=LlMoveToTarget&amp;diff=333923"/>
		<updated>2009-04-25T04:40:09Z</updated>

		<summary type="html">&lt;p&gt;Sindy Tsure: added note about calling llMoveToTarget _before_ setting physical&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Issues/SVC-2441}}{{LSL Function/physical|avatar=*}}{{LSL Function/damping|tau}}{{LSL_Function&lt;br /&gt;
|func_id=70|func_sleep=0.0|func_energy=10.0&lt;br /&gt;
|func=llMoveToTarget&lt;br /&gt;
|p1_type=vector|p1_name=target|p1_desc=[[Viewer coordinate frames#Region|region]] position&lt;br /&gt;
|p2_type=float|p2_name=tau&lt;br /&gt;
|func_footnote=To stop the object from maintaining the &#039;&#039;&#039;target&#039;&#039;&#039; positions use [[llStopMoveToTarget]]&amp;lt;br/&amp;gt;&lt;br /&gt;
To change the rotation in the same manner use [[llLookAt]] or [[llRotLookAt]].&lt;br /&gt;
|func_desc=Critically damp to &#039;&#039;&#039;target&#039;&#039;&#039; in &#039;&#039;&#039;tau&#039;&#039;&#039; seconds (if the script is physical)&lt;br /&gt;
|return_text&lt;br /&gt;
|spec&lt;br /&gt;
|caveats&lt;br /&gt;
|constants&lt;br /&gt;
|examples=Drop this script in a prim to have it follow the prim owner.&lt;br /&gt;
&amp;lt;lsl&amp;gt;&lt;br /&gt;
default&lt;br /&gt;
{&lt;br /&gt;
    state_entry()&lt;br /&gt;
    {&lt;br /&gt;
        vector pos = llGetPos();&lt;br /&gt;
        llSetStatus(STATUS_PHYSICS, TRUE);&lt;br /&gt;
        // Little pause to allow server to make potentially large linked object physical.&lt;br /&gt;
        llSleep(0.1);&lt;br /&gt;
        llMoveToTarget(pos,0.4);&lt;br /&gt;
        // Look for owner within 20 meters in 360 degree arc every 1 seconds.&lt;br /&gt;
        llSensorRepeat(&amp;quot;&amp;quot;, llGetOwner(), AGENT, 20.0, PI,1.0);&lt;br /&gt;
    }&lt;br /&gt;
    sensor(integer total_number)&lt;br /&gt;
    {&lt;br /&gt;
        // Get position of detected owner&lt;br /&gt;
        vector pos = llDetectedPos(0);&lt;br /&gt;
        // Offset back one metre in X and up one metre in Z based on world coordinates.&lt;br /&gt;
        // Offset relative to owner is possible but beyond the scope of this example.&lt;br /&gt;
        vector offset =&amp;lt;-1,0,1&amp;gt;;&lt;br /&gt;
        pos+=offset;&lt;br /&gt;
        llMoveToTarget(pos,0.4);     &lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/lsl&amp;gt;&lt;br /&gt;
|helpers&lt;br /&gt;
|also_functions={{LSL DefineRow||[[llStopMoveToTarget]]}}&lt;br /&gt;
{{LSL DefineRow||[[llLookAt]]}}&lt;br /&gt;
{{LSL DefineRow||[[llRotLookAt]]}}&lt;br /&gt;
{{LSL DefineRow||[[llTarget]]}}&lt;br /&gt;
|also_tests&lt;br /&gt;
|also_events&lt;br /&gt;
|also_articles&lt;br /&gt;
|notes=* When slowly moving to a lower Z value, beware of {{jira|SVC-2441}} - the sim will incorrectly move the object down faster than it should. That is, if you try moving to llGetPos() + &amp;lt;10, 10, -10&amp;gt;, you can end up at .z-10 several meters before getting to .x-10 and .y-10. There is a demo object in the JIRA which shows this effect.&lt;br /&gt;
* A llMoveToTarget call seems to persist even if physics is turned off. This is a useful trick on sluggish sims where the object can drop a bit between the call to enable physics and the call to llMoveToTarget - just do the llMoveToTarget before setting the object to physical.&lt;br /&gt;
|cat1&lt;br /&gt;
|cat2=Physics&lt;br /&gt;
|cat3=Movement&lt;br /&gt;
|cat4=Target&lt;br /&gt;
|cat5&lt;br /&gt;
|cat6&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Sindy Tsure</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=LlMoveToTarget&amp;diff=332092</id>
		<title>LlMoveToTarget</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=LlMoveToTarget&amp;diff=332092"/>
		<updated>2009-04-24T02:59:20Z</updated>

		<summary type="html">&lt;p&gt;Sindy Tsure: added SVC-2441 note&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{LSL Function/physical|avatar=*}}{{LSL Function/damping|tau}}{{LSL_Function&lt;br /&gt;
|func_id=70|func_sleep=0.0|func_energy=10.0&lt;br /&gt;
|func=llMoveToTarget&lt;br /&gt;
|p1_type=vector|p1_name=target|p1_desc=[[Viewer coordinate frames#Region|region]] position&lt;br /&gt;
|p2_type=float|p2_name=tau&lt;br /&gt;
|func_footnote=To stop the object from maintaining the &#039;&#039;&#039;target&#039;&#039;&#039; positions use [[llStopMoveToTarget]]&amp;lt;br/&amp;gt;&lt;br /&gt;
To change the rotation in the same manner use [[llLookAt]] or [[llRotLookAt]].&lt;br /&gt;
|func_desc=Critically damp to &#039;&#039;&#039;target&#039;&#039;&#039; in &#039;&#039;&#039;tau&#039;&#039;&#039; seconds (if the script is physical)&lt;br /&gt;
|return_text&lt;br /&gt;
|spec&lt;br /&gt;
|caveats&lt;br /&gt;
|constants&lt;br /&gt;
|examples=Drop this script in a prim to have it follow the prim owner.&lt;br /&gt;
&amp;lt;lsl&amp;gt;&lt;br /&gt;
default&lt;br /&gt;
{&lt;br /&gt;
    state_entry()&lt;br /&gt;
    {&lt;br /&gt;
        vector pos = llGetPos();&lt;br /&gt;
        llSetStatus(STATUS_PHYSICS, TRUE);&lt;br /&gt;
        // Little pause to allow server to make potentially large linked object physical.&lt;br /&gt;
        llSleep(0.1);&lt;br /&gt;
        llMoveToTarget(pos,0.4);&lt;br /&gt;
        // Look for owner within 20 meters in 360 degree arc every 1 seconds.&lt;br /&gt;
        llSensorRepeat(&amp;quot;&amp;quot;, llGetOwner(), AGENT, 20.0, PI,1.0);&lt;br /&gt;
    }&lt;br /&gt;
    sensor(integer total_number)&lt;br /&gt;
    {&lt;br /&gt;
        // Get position of detected owner&lt;br /&gt;
        vector pos = llDetectedPos(0);&lt;br /&gt;
        // Offset back one metre in X and up one metre in Z based on world coordinates.&lt;br /&gt;
        // Offset relative to owner is possible but beyond the scope of this example.&lt;br /&gt;
        vector offset =&amp;lt;-1,0,1&amp;gt;;&lt;br /&gt;
        pos+=offset;&lt;br /&gt;
        llMoveToTarget(pos,0.4);     &lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/lsl&amp;gt;&lt;br /&gt;
|helpers&lt;br /&gt;
|also_functions={{LSL DefineRow||[[llStopMoveToTarget]]}}&lt;br /&gt;
{{LSL DefineRow||[[llLookAt]]}}&lt;br /&gt;
{{LSL DefineRow||[[llRotLookAt]]}}&lt;br /&gt;
{{LSL DefineRow||[[llTarget]]}}&lt;br /&gt;
|also_tests&lt;br /&gt;
|also_events&lt;br /&gt;
|also_articles&lt;br /&gt;
|notes=When slowly moving to a lower Z value, beware of [http://jira.secondlife.com/browse/SVC-2441 SVC-2441] - the sim will incorrectly move the object down faster than it should. That is, if you try moving to llGetPos() + &amp;lt;10, 10, -10&amp;gt;, you can end up at .z-10 several meters before getting to .x-10 and .y-10. There is a demo object in the JIRA which shows this effect.&lt;br /&gt;
&lt;br /&gt;
|cat1&lt;br /&gt;
|cat2=Physics&lt;br /&gt;
|cat3=Movement&lt;br /&gt;
|cat4=Target&lt;br /&gt;
|cat5&lt;br /&gt;
|cat6&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Sindy Tsure</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=SL_Certification/List_of_Resident_Participants&amp;diff=18965</id>
		<title>SL Certification/List of Resident Participants</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=SL_Certification/List_of_Resident_Participants&amp;diff=18965"/>
		<updated>2007-04-28T03:49:40Z</updated>

		<summary type="html">&lt;p&gt;Sindy Tsure: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Certification]]&lt;br /&gt;
Add yourself to the &#039;&#039;&#039;bottom&#039;&#039;&#039; of this list using the following Wiki code:&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;* ~~~&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;!--No, *not* here ... at the *bottom* of the list please! --&amp;gt;&lt;br /&gt;
* [[User:Ceera Murakami|Ceera Murakami]] (Fox and Ground Construction Company) Texture Artist&lt;br /&gt;
* [[User:Elle74 Zaftig|Elle74 Zaftig]] (Bellissima!/Shoppe74) build/model/textures&lt;br /&gt;
* [[User:Keiki Lemieux|Keiki Lemieux]] (HUDDLES Games &amp;amp; Gadgets) Building, Scripting, Animations, Textures&lt;br /&gt;
* [[User:Tre Giles|Tre Giles]] (GiTech/Action Village Paintball) Building, Scripting, Animation, Photography&lt;br /&gt;
* [[User:Alexander Regent|Alexander Regent]] (MageTech LLC) Scripting, website integration, cellphone integration, in-world building&lt;br /&gt;
* [[User:Sitearm Madonna|Sitearm Madonna]] (Siterma): Sim Scale Project Planning and Management; Structural Builds and Simulator Performance Management; Social Builds and Community Growth Management; Modeling - Architecture, Terraforming, Waterscaping, Landscaping, Soundscaping&lt;br /&gt;
* [[User:Hugo Dalgleish|Hugo Dalgleish]]&lt;br /&gt;
* [[User:Kenn Nilsson|Kenn Nilsson]] (NDE)&lt;br /&gt;
* [[User:Ravanne Sullivan|Ravanne Sullivan]] (Ravanne&#039;s Dance Poles and Animations) Animations and Scripting&lt;br /&gt;
* [[User:Fox Diller|Fox Diller]] (Crystal Studio/Magrathean Technologies) Anything Second Life.&lt;br /&gt;
* [[User:MSo Lambert|MSo Lambert]] ([http://www.synthetik-on.net/ Synthetik]) Scripting, Web Integration, project management&lt;br /&gt;
* [[User:Rael Delcon|Rael Delcon]]&lt;br /&gt;
* [[User:Dytska Vieria|Dytska Vieria]] (residential design/builds)&lt;br /&gt;
* [[User:Skye McArdle|Skye McArdle]] - Modeling, Animation, Textures, AV Customization&lt;br /&gt;
* [[User:Eladon Galsworthy|Eladon Galsworthy]] (PondLife - building and scripting)&lt;br /&gt;
* [[User:Oz Spade|Oz Spade]]&lt;br /&gt;
* [[User:Max Case|Max Case]]&lt;br /&gt;
* [[User:Newfie Pendragon|Newfie Pendragon]] (Reality Check, LSL Scripting)&lt;br /&gt;
* [[User:Gigs Taggart|Gigs Taggart]]&lt;br /&gt;
* [[User:Peekay Semyorka|Peekay Semyorka]]&lt;br /&gt;
* [[User:Osgeld Barmy|Osgeld Barmy]]  (biulding textures lsl)&lt;br /&gt;
* [[User:Nargus Asturias|Nargus Asturias]] (Avatar building, animations, scripts)&lt;br /&gt;
* [[User:ForestMist Skjellerup|ForestMist Skjellerup]]&lt;br /&gt;
* [[User:Rraven Moonlight|Rraven Moonlight]] (Terraforming Raw files, Texture developer, Large Scale Architectural Builds)&lt;br /&gt;
* [[User:Xylo Quisling|Xylo Quisling]]&lt;br /&gt;
* [[User:Thunderclap Morgridge|Thunderclap Morgridge]] (Texture artist, and nascent builder)&lt;br /&gt;
* [[User:Hiro Pendragon|Hiro Pendragon]] (CTO, Infinite Vision Media) LSL scripting, modeling&lt;br /&gt;
* [[User:Ethan Therian|Ethan Therian]] (Creative Director, Infinite Vision Media) modeling, texturing&lt;br /&gt;
* [[User:Ciemaar Flintoff|Ciemaar Flintoff]] (associate, Infinite Vision Media) lsl scripting, web-to-SL-to-web scripting&lt;br /&gt;
* [[User:Nimrodina Wayne|Nimrodina Wayne]] (build, animate, machinima)&lt;br /&gt;
* [[User:Lias Leandros|Lias Leandros]] (VooDoo Corp.)Sim Scale Project Planning and Management; Social Builds and Community Growth Management&lt;br /&gt;
* [[User:Erin Talamasca|Erin Talamasca]]&lt;br /&gt;
* [[User:Till Stirling|Till Stirling]] (Scripter, Builder, Consultant)&lt;br /&gt;
* [[User:Kri Ayakashi|Kri Ayakashi]] (AyakashiTEC) - LSL Scripting, Web2.0 integration, distributed programming (C/C++/C#, Python), in-world building, consultancy&lt;br /&gt;
* [[User:Alison Wheels|Alison Wheels]] ([http://secondlife.creative.org.uk/ Creative Organisation]) Scripting, FL/SL Integration issues, construction, terraforming, design&lt;br /&gt;
* [[User:FlipperPA Peregrine|FlipperPA Peregrine]] (Peregrine Salon/ESC) - LSL Scripting, Web integration, lots of other stuff. Creator of SLBoutique.com and SLTrivia.com.&lt;br /&gt;
* [[User:Strife Onizuka|Strife Onizuka]] (Scripter, Builder, Consultant)&lt;br /&gt;
* [[User:Porky Gorky|Porky Gorky]] - Hydro Homes : Prefabricated &amp;amp; customised building &amp;amp; architectural design.&lt;br /&gt;
* [[User:Bru Yang|Bru Yang]]&lt;br /&gt;
* [[User:Dirk Talamasca|Dirk Talamasca]] (Building, Custom Textures, Land/Estate Management. Internet Abuse Remediation, Sim Scale Layout, Planning and Development)&lt;br /&gt;
* [[User:Aimee Weber|Aimee Weber]]&lt;br /&gt;
* [[User:Banana Stein|Banana Stein]] (SL Brand) Builder, Textures, Sim Scale Project&lt;br /&gt;
* [[User:Linnian Sugar|Linnian Sugar]] (*Lollipop Shop owner* Builder, Clothing and textures, scripting, animations)&lt;br /&gt;
* [[User:Siobhan Taylor|Siobhan Taylor]] Building, Scripting.&lt;br /&gt;
* [[User:Taco Rubio|Taco Rubio]] (Media Management) &lt;br /&gt;
* [[User:RobbyRacoon Olmstead|RobbyRacoon Olmstead]] (Scripting, Building, C:SI Developer)&lt;br /&gt;
* [[User:Dnali Anabuki|Dnali Anabuki]] (Structure,Process,Organizing of Cert) Satorifilmservices.com&lt;br /&gt;
* [[User:Detect Surface|Detect Surface]] - (**D&amp;amp;D Creative Lab/The Brain Game/City of Abaddon** Building, Texturing, Skins, Texture-Mapping/Zoning, AV Design, Clothing, Sim Design and Construction, Architecture, Weapons, Vehicles, Furniture, Animation, Graphic Design, Artist and Pretty Flower Arranging.)&lt;br /&gt;
* [[User:Meade Paravane|Meade Paravane]] (Script monkey, Builder)&lt;br /&gt;
* [[User:Orange Montagne|Orange Montagne]]&lt;br /&gt;
* [[User:Joshua Nightshade|Joshua Nightshade]] (Builder, avatar design - primarily smaller-than-normal avatars)&lt;br /&gt;
* [[User:Zorena Deckard|Zorena Deckard]] (builder,textures,modeling)&lt;br /&gt;
* [[User:Bartiloux Desmoulins|Bartiloux Desmoulins]] (Scripting, modeling and animations)&lt;br /&gt;
* [[User:Ravenelle Zugzwang|Ravenelle Zugzwang]]&lt;br /&gt;
* [[User:Little Penguin|Little Penguin]] Building, Scripting&lt;br /&gt;
* [[User:Pol Tabla|Pol Tabla]]&lt;br /&gt;
* [[User:Jade Opel|Jade Opel]] (Brides &amp;amp; Blooms by Jade Opel)  Building, terra-forming, textures, particles, modeling&lt;br /&gt;
* [[User:Auron Havercamp|Auron Havercamp]] ([http://www.kenthavercamp.com/ Kent-Havercamp Enterprises, Ltd.]) - Scripting, Web Interaction, Data Storage&lt;br /&gt;
* [[User:Schuyler Kent|Schuyler Kent]] ([http://www.kenthavercamp.com/ Kent-Havercamp Enterprises, Ltd.]) - Building, Scripting, Consulting&lt;br /&gt;
* [[User:Vincent Nacon|Vincent Nacon]] (all above)&lt;br /&gt;
* [[User:Aradia Aridian|Aradia Aridian]] (Modeling, Land/Estate Management, Business Management, Marketing to the Virtual Customer)&lt;br /&gt;
* [[User:Scarlet Singer|Scarlet Singer]] (Textures/Graphics) &amp;lt;3&lt;br /&gt;
* [[User:Will Webb|Will Webb]]&lt;br /&gt;
* [[Cocoanut Koala]]  (Coco&#039;s Cottages) Builder&lt;br /&gt;
* Illya Sullivan&lt;br /&gt;
*[[User:Frans Charming|Frans Charming]] ([http://www.thevesuviusgroup.com The Vesuvius Group])Project Planning and Management, 3D Modeling/Building, Scripting, Texturing, etc&lt;br /&gt;
* [[User:Nomasha Syaka|Nomasha Syaka]] build/model/textures&lt;br /&gt;
*[[User:Rhiannon Chatnoir|Rhiannon Chatnoir]] ([http://www.thevesuviusgroup.com The Vesuvius Group])Creative Director of The Vesuvius Group (Project Management, Planning, Textures, Terraforming, machinima), also SL and web dev for Global Kids, Inc. and a RL professional graphic designer.&lt;br /&gt;
* [[User:Shockwave Yareach|Shockwave Yareach]] (Textures/Scripting/Building)&lt;br /&gt;
* [[User:Rebel Television|Rebel Television]] ([http://www.slexchange.com/modules.php?name=Marketplace&amp;amp;file=item&amp;amp;ItemID=147428 Airfoil]) Scripting, Animation, Vehicles, Avatars, Building, In-world RSS Feed Displays&lt;br /&gt;
* [[User:Storm Thunders|Storm Thunders]]&lt;br /&gt;
* [[Rocky Merosi]] (Objects, Furnishings/Interior Design, Weapons and Vehicles, Asset Managment, Movement, Attachments, Setting Properties, Communications)&lt;br /&gt;
*[[User:Moriz Gupte|Moriz Gupte]] ([http://www.play2train.org Play2Train])Producer, Scripter, Builder SL educator&lt;br /&gt;
*([http://homepage.mac.com/salazarjack/ Salazar Jack]) - Kahruvel Design - Environments, Landscapes, Forest Preservation, Terraforming, Architecture, Archeological Restoration, Furnishings/Interior Design, Objects, Textures&lt;br /&gt;
*[[User:Raven Pennyfeather|Raven Pennyfeather]] Owner/operator for House of RFyre LLC,clothing and avatar development, textures building, business analyst, gragphic design.&lt;br /&gt;
*[[User:Thraxis Epsilon|Thraxis Epsilon]] (Resume in Profile)&lt;br /&gt;
*[[User:Angelica Puff|Angelica Puff]] (Communications, External &amp;lt;-&amp;gt; Inworld data, Asset Management)&lt;br /&gt;
*[[User:Jeff Kelley|Jeff Kelley]] (Communications, Networking, Display, Data storage &amp;amp; access)&lt;br /&gt;
*[[User:Ace Albion|Ace Albion]] (Ace&#039;s Spaces)  prefab builder&lt;br /&gt;
*[[User:SunShine Kukulcan|SunShine Kukulcan]] (Mercury Dev Studios - Music and Media Services, Sim planning)&lt;br /&gt;
*[[User:Klink Epsilon|Klink Epsilon]] (Mercury Dev Studios - Builder, Custom Textures, Sim Design and planning, Media Services)&lt;br /&gt;
*[[User:Parker McTeague|Parker McTeague]] (BLIP) building, textures&lt;br /&gt;
*[[Demian Caldera]] Architecture, Furnishings/Interior Design, Objects, Landscaping, Terra Forming, Event Organizing, Event Set Building.&lt;br /&gt;
*[[User:Rainbow Drake|Rainbow Drake]] Director of Education - [http://raindancer.ca/NCI New Citizens Incorporated]&lt;br /&gt;
*[[User:Kamael Xevious|Kamael Xevious]] - Radio Babylonia/Batak Island Traders - Architecture, Furnishings and Interior Design, Media, Community Development and Region Construction, Education.&lt;br /&gt;
*[[User:Pipe Hesse|Pipe Hesse]] Scripting, Building&lt;br /&gt;
* [[User:Abramelin Wolfe|Abramelin Wolfe]] (Abramelin Studios Ltd / Abranimations) script/build/texture/animation/mocap/web integration&lt;br /&gt;
* [[User:katykiwi Moonflower|katykiwi Moonflower]] interior design/furnishings/building/texturing/terraforming&lt;br /&gt;
*[[User:Jade Jensen|Jade Jensen]] (Jaded Visions) Clothing Design, Avatar Creation/Design, Texturing, Graphics Design&lt;br /&gt;
*[[Darien Caldwell]] Builder/Scripter&lt;br /&gt;
*[[User:Azrazael Dhara|Azrazael Dhara]] Building, Terraforming, Sim Design, Landscaping, Instructing, Photography&lt;br /&gt;
*[[User:Andreas Isachenko|Andreas Isachenko]] Building, Scripting, DB access&lt;br /&gt;
*[[User:Jason Keegan|Jason Keegan]] (K-tech) Scripting&lt;br /&gt;
*[[User:Gaius Goodliffe|Gaius Goodliffe]] (Second Skies) Vehicles, scripting, back-end server/website integration&lt;br /&gt;
*[[User:Pericat Aquitaine|Pericat Aquitaine]] (Elf Harbour Boatyard) Vehicles, scripting, terraforming, general building&lt;br /&gt;
*[[User:Karsten Rutledge|Karsten Rutledge]] (Play2Train/K.R. Engineering) Scripting, building.&lt;br /&gt;
*[[User:Bubba Biberman|Bubba Biberman]] Building, textures, machinima&lt;br /&gt;
*[[User:Kerian Bunin|Kerian Bunin]] (uʍop əpı̣sdn) Building, Scripting, Estate Management &lt;br /&gt;
*[[User:Tsukasa Keiko|Tsukasa Keiko]] Building, Scripting&lt;br /&gt;
*[[User:Morph Wollongong|Morph Wollongong]] Gadgets, Scripting&lt;br /&gt;
*[[User:Ordinal Malaprop|Ordinal Malaprop]] - scripting, some building&lt;br /&gt;
*[[User:Donnagh McDonnagh|Donnagh McDonnagh]] - Undergraduate education (School of Communication), machinima, scripting, general building, avatar skins/clothes, 3d textures, animation, web integration, vehicles, huds, event management, orientation, inworld collaboration&lt;br /&gt;
*[[User:Able Whitman|Able Whitman]] - scripting, some building&lt;br /&gt;
*[[User:Adri Saarinen|Adri Saarinen]] - ([http://www.metaversatility.com Metaversatility]) scripting, building, presence development&lt;br /&gt;
*[[User:Curious Rousselot|Curious Rousselot]] - Scripting, Building&lt;br /&gt;
*[[User:otakup0pe Neumann|otakup0pe Neumann]] - Pleiades Consulting &amp;amp; libsecondlife. Rich Educational Content, tech integration, libsl powered services&lt;br /&gt;
*[[User:Damek Tretiak|Damek Tretiak]] - ([http://www.tretiakmedia.com Tretiak Media])/([http://www.slquery.com SLQuery.com]) scripting, building, project management&lt;br /&gt;
* [[User:Jacques Groshomme|Jacques Groshomme]] - Building/Scripting&lt;br /&gt;
* [[User:Iris Bourdeille|Iris Bourdeille]] - Building/Scripting/Texturing/Animation&lt;br /&gt;
* [[User:Fallon Winnfield|Fallon Winnfield]] - ([http://www.centric.com Centric])/([http://www.secondtalk.com Second Talk]) - Business development, building, scripting&lt;br /&gt;
* [[User:Adam Rakosi|Adam Rakosi]] - ([http://www.centric.com Centric])/([http://www.secondtalk.com Second Talk]) - Building/Scripting&lt;br /&gt;
* [[User:Neko Longduk|Neko Longduk]] - ([http://www.centric.com Centric])/([http://www.secondtalk.com Second Talk]) - Business Development, scripting&lt;br /&gt;
* [[User:Weasel Gough|Weasel Gough]] - ([http://www.centric.com Centric])/([http://www.secondtalk.com Second Talk]) - Building/Scripting/Texturing/Animation&lt;br /&gt;
* [[User:Chime Bellman|Chime Bellman]] strategy/build/model/promote&lt;br /&gt;
*[[User:Sage Duncan|Sage Duncan]] - animation/machinima/motion/media management/live performance&lt;br /&gt;
* [[User:Economic Mip|Economic Mip]] -imagine/dream&lt;br /&gt;
* [[User:Talarus Luan|Talarus Luan]] - Archaean Designs / Council of Wyrms - Scripting, Building, Consulting&lt;br /&gt;
* [[User:Dustin Widget|Dustin Widget]] Builder/Scripter/Mentor/Lots More&lt;br /&gt;
* [[User:Tab Scott|Tab Scott]] - Terry Beaubois, Montana State University - College of Art &amp;amp; Architecture - Art, Music, Architecture, Film - Sustainable Community Design&lt;br /&gt;
* [[User:Hiro Market|Hiro Market]] - ([http://www.slicr.net Slicr]) Slicr - Scripting, Consulting&lt;br /&gt;
* [[User:Scorpio Galatea|Scorpio Galatea]] - Builder (Phoenix), Texture Creator&lt;br /&gt;
* [[User:Sylvia Trilling|Sylvia Trilling]] - Modeling, Scripting, Animating, Texturing&lt;br /&gt;
* [[User:Earnest Candour|Earnest Candour]] - ([http://www.metaverseenterprises.com Metaverse Enterprises])&lt;br /&gt;
* [[User:Carl Metropolitan|Carl Metropolitan]] - Building, Site Developement, Project Management, Marketing, Graphic Design, Event Hosting, Terraforming, Teaching&lt;br /&gt;
* [[User:Lecktor Hannibal|Lecktor Hannibal]] - (Landscaping, Estate Management, Modeling, Media Streaming, Event Management)&lt;br /&gt;
* [[User:Destiny Niles|Destiny Niles]] - Scripter/Mentor&lt;br /&gt;
*[[User:Kim Anubis|Kim Anubis]], ([http://www.themagicians.us The Magicians])&lt;br /&gt;
* [[User:Bobble Bertone|Bobble Bertone]] - ([http://www.coolbananas.com.au Cool Bananas Ventures]) - Building, Scripting, Terra forming, Project management, Networking with RL businesses.&lt;br /&gt;
* [[User:Logan Bauer|Logan Bauer]] - Building/Texturing/Scripting/Ect.&lt;br /&gt;
* [[User:In Kenzo|In Kenzo]] ([http://www.amoration.org Amoration]) Design, Building, Machinima, Events, Immersive Experiences for nonprofits and education&lt;br /&gt;
* [[User:Gearsawe Stonecutter|Gearsawe Stonecutter]] - Scripting, HUDs, Building, complex prim transformations, single script simplification&lt;br /&gt;
* [[User:Apollo Case|Apollo Case]] - (Armory Island and Armory Xtreme)- Virtual Weapons, Combat Items and Gadgets - Conceptualization, Testing, Marketing, Communication, Distribution, and Retailing - Combat Sim Owner and Developer&lt;br /&gt;
* [[User:Sindy Tsure|Sindy Tsure]] (Scripting, Buidling)&lt;br /&gt;
* Huns Valen - ([http://valenheavy.com Valen Heavy Industries]) - Aircraft physics &amp;amp; avionics. Efficient interprocess communication. Remote business logic. Heuristic algorithms. Cryptography. User interfaces.&lt;br /&gt;
* [[User:Damanios Thetan|Damanios Thetan]] - ([http://www.damanicorp.com Damani]) - Modeling, Building, Texturing, Scripting, External server comms.&lt;br /&gt;
* [[User:Mary Edison|Mary Edison]] - (Phase 5) - Modeling, Building, Texturing, Design.&lt;br /&gt;
* Catty Loon  - Building/Scripting&lt;br /&gt;
* [[User:Phelan Corrimal|Phelan Corrimal]] - ROCKCLIFFE UNIVERSITY - Please note that we are already more than 50% of the way there to having this already developed as we&#039;ve been working on this since November 2006 when Linden Labs pulled out from financially supporting education. We are most interested in providing full support behind this initiative and would welcome people to come have a look at what we have to offer currently and where we are planning to be come end of August, 2007.&lt;br /&gt;
* [[User:Restorator Ristow|Restorator Ristow]] - Promotion and Marketing, novice builder&lt;br /&gt;
* [[User:Scout Detritus|Scout Detritus]] - Scripting, Building, Sounds, Animations, Clothing/Textures, Marketing, Sim Design.&lt;br /&gt;
* [[User:Nylon Pinkney|Nylon Pinkney]] - Texturing&lt;br /&gt;
* [[User:Alessio0108 Beck|Alessio0108 Beck]] - Nogravity - Full service italian agency - scripting - building - SltoRl web applications - design - sl real estate&lt;br /&gt;
* [[User:Osprey Therian|Osprey Therian]] - building, texturing, machinima&lt;br /&gt;
* [[User:Max Pitre|Max Pitre]] - building, texturing, scripting&lt;br /&gt;
* [[User:Gus Poutine|Gus Poutine]] - Instructional Designer A.S.K. Learning&lt;br /&gt;
* [[User:Lucian Overlord|Lucian Overlord]] - building, texturing,modeling, animations,sim design&lt;br /&gt;
* [[User:Lordfly Digeridoo|Lordfly Digeridoo]] - Digeridoodesigns.com -- building, architecture, sim planning&lt;br /&gt;
* [[User:Jauani Wu|Jauani Wu]] - second life is just like real life ... if you replace &amp;quot;second&amp;quot; with &amp;quot;no&amp;quot;&lt;br /&gt;
* [[User:MadamG Zagato|MadamG Zagato]] - ([http://www.never30.com Never 30 &amp;amp; N30 Studios]) Residential and commercial building, Web &amp;lt;---&amp;gt; LSL Communications, SL to RL Fashion, Furniture and Interior Design [UMPIRE], Photography [N30].&lt;br /&gt;
* [[User:Aradia Dielli|Aradia Dielli]] - Building, Modeling, Interior design, Photography.&lt;br /&gt;
* [[User:PajVar Kerensky|PajVar Kerensky]] - DESHADOW CUSTOMS - Custom Building, Scripting, Sim Development, Business Consultation, Community Development, WWW Portals, WWW Sites, In-World Community tools.&lt;br /&gt;
* [[User:Bobby Berwick|Bobby Berwick]] (QHB - Quality Home Builders) Scripting, Building&lt;br /&gt;
* [[User:SignpostMarv Martin|SignpostMarv Martin]]  - geek. Does all kinds of things.&lt;br /&gt;
* [[User:Dnel DaSilva|D&#039;Nel DaSilva]] (Xessories by D&#039;Nel DaSilva) Builder, specializing in jewelry and other avatar accessories including the scripts used in them.&lt;br /&gt;
* [[User:Joshua Perenti|Joshua Perenti]] - Live Helper, Sim Designer, Landscaper &amp;amp; Builder&lt;br /&gt;
* [[User:Lucius Nesterov|Lucius Nesterov]] - ([http://lucius-games.blogspot.com/ Development Blog]) In-world game development&lt;br /&gt;
* [[User:Lewis Nerd|Lewis Nerd]] - ([http://www.lewisnerd.com website]) - Construction, development, landscaping and consultation&lt;br /&gt;
* [[User:Zal Chevalier|Zal Chevalier]] - Architect&lt;br /&gt;
* [[User:Casu Capra|Casu Capra]]&lt;br /&gt;
* [[User:Dalian Hansen|Dalian Hansen]] - Creative Director  ([http://tretiakmedia.com/ Tretiak Media]) full service sim design and construction, SL &amp;gt; RL integration (advertising, marketing, internet/web design) ([http://www.cafepress.com/hantranslation/ Han Translation])  - Photography, Design/Translation in Japanese/Mandarin&lt;br /&gt;
* [[User:Kami Harbinger|Kami Harbinger]] - Developer of many scripted devices and the Pellucidar adventure game.&lt;br /&gt;
* [[User:Top Tank|Top Tank]] - Scripting, product design&lt;br /&gt;
* [[User:Whispering Hush|Whispering Hush]] Custom scripting boats, cars, push and non push weapons, prim torture, and general building.&lt;br /&gt;
* [[User:Nex Brannan|Nex Brannan]] Brutal Gear [http://gearshop.blogspot.com.com/ GearShop]) Clothing, Hair, Accesories, Building.&lt;br /&gt;
* [[User:HatHead Rickenbacker|HatHead Rickenbacker]] [http://hatheadinc.com/ HatHead Incubators] Modeling, Scripting.&lt;br /&gt;
* [[User:Desideria Stockton|Desideria Stockton]] (Literature Alive!) College Educator, Web 2.0, 3.0&lt;br /&gt;
* [[User:Isandra Willunga|Isandra_Willunga]] - IDS - scripting, texturing, lowprim building, general guidance.&lt;br /&gt;
* [[User:Derin Swenson|Derin Swenson]] ([http://www.olemissbusiness.com/ University of Mississippi, School of Business]) Building, Scripting, RL -&amp;gt; SL integration&lt;br /&gt;
* [[User:Escort DeFarge|Escort DeFarge]] (Together Systems) All aspects of scripting&lt;br /&gt;
* [[User:Davidorban Agnon|Davidorban Agnon]] ([http://www.questar.eu/secondlife Questar] and [http://vulca.no Vulcano])&lt;br /&gt;
* [[User:Mevo Syaka|Mevo Syaka]] - LSL Scripting, Modelling, Texturing, Custom Work&lt;br /&gt;
* [[User:Uccello Poultry|Uccello Poultry]] - Building, Texturing (including sign graphics), Clothing, Landscaping, Contract/On-Demand Work&lt;br /&gt;
* [[User:Itazura Radio|Itazura Radio]] - Modeling Architecture and Furnishings/Interior Design as well as Avatars, Terraforming, and Land/Estate Management. Photoshop and custom graphics skills.&lt;br /&gt;
* [[User:Phish Frye|Phish Frye]] - LSL scripter and expert programmer, specializing in connecting in-world objects to real world servers [http://www.purplestripe.com/ Purple Stripe]&lt;br /&gt;
* [[User:Haterot Okina|Haterot Okina]] - LSL scripter and builder extraordinaire. [http://www.purplestripe.com/ Purple Stripe]&lt;br /&gt;
* Noramyr Gullwing - ExtroVirtual (Flights of Fantasy) Builder, texturer, designer, graphic arts and development&lt;br /&gt;
* [[User:Gregory McLeod|Gregory McLeod]] Scripter of Games.&lt;br /&gt;
* [[User:Timeless Prototype|Timeless Prototype]] - Creator of the Multi Gadget&lt;br /&gt;
* [[User:Zayn Till|Zayn Till]] ([http://www.metaverseunlimited.com/ Metaverse Unlimited]) Building, Texturing, Content &amp;amp; Concept Creation, Sim design &amp;amp; Management, Real life business solutions&lt;br /&gt;
* [[User:Actionworx Pro|Actionworx Pro]] - MySQL, PHP, HTTP, LSL, XML.&lt;br /&gt;
* [[User:Ipenda Keynes|Ipenda Keynes]] ([http://paws-above.com/ Paws Above University]) Founder of PAU, creator of widely accepted &amp;quot;content standards&amp;quot;. Certified, K-12 Educator with skills in LSL, and general SL knowledge.&lt;br /&gt;
* [[User:Yumi Murakami|Yumi Murakami]] - Scripting, Newbie helper volunteer, NCI contributor, RL education experience.&lt;br /&gt;
* [[User:Arthur Fermi|Arthur Fermi]] - Scripting, Building, Fermi Sandbox, Landscaping [http://fermidesigns.com/ Fermi Designs]&lt;br /&gt;
* [[User:Gatz Morang|Gatz Morang]] - Texture artist, builder&lt;br /&gt;
* [[Jessica Ornitz]] - Architecture, Sim Planning, Texturing, Landscaping and Interior design&lt;br /&gt;
* [[User:Fleep Tuque|Fleep Tuque]] - Faculty Educator, Concierge Member, Chilbo Community Building Project&lt;br /&gt;
* [[User:Pumpkin Tripsa|Pumpkin Tripsa]] - (UV Taxidermy/ The Steamed Palette)- Custom Av Texturing and Shaping; Building, Scripting, Texturing&lt;br /&gt;
* [[User:Ro Gastel|Ro Gastel]] - Liquid Prims, Scipting, Builder&lt;br /&gt;
* [[User:AHG Hallard|AHG Hallard]] - Scripting, Design, Content and Concept creation, Building, Real Life educational, training and business solutions&lt;br /&gt;
* [[User:SL Mathilde|SL Mathilde]] - Scripting, Building, Real Life educational, training and business solutions&lt;br /&gt;
* [[Roderick Runo]] Builder/Scripter&lt;br /&gt;
* [[User:Equitus Bosch|Equitus Bosch]] Architect and Planner, Mojo Business Ventures&lt;br /&gt;
* [[Threshin Barnett]] - Terraforming, Building, Decorating, Landscaping, Animations, Design, Texturing, Land/Estate managment&lt;br /&gt;
* [[Laylah Mistral]] ([http://www.get-inkd.com/ Get InkD!]) Tattoos, photography, graphic design/textures, and marketing for SL and RL ([http://www.slmarketing.us/ SL Marketing]).&lt;br /&gt;
* [[Torment Thorn]]  - Wicked, Inc. since 2004, Wicked stuff for Wicked folks.  Childrens to Goreans we have something for everyone.  Avatars, clothing, houses, furniture and more.&lt;br /&gt;
* [[User:Charlene Trudeau|Charlene Trudeau]] - Building/Architecture.&lt;br /&gt;
* [[User:Matthew Dowd|Matthew Dowd]] - Scripting, some building&lt;br /&gt;
* [[User:Fumon Kubo|Fumon Kubo]] Frelance contract and while-you-wait scripter (MySQL, LSL, PHP, HTML, Java, C++), SL educator (RL/SL math + programming), Technical Advisor and Jack of all other trades.&lt;br /&gt;
* [[User:Joker Opus|Joker Opus]] LSL,PHP,vB,BAISIC,Javascript,Perl, CSS scripter. Live Helper, Mentor, Instructor. Linden Test Dummy =P (Kick at will sire ;))&lt;br /&gt;
* [[User:Lothaniel Yellowknife|Lothaniel Yellowknife]] LSL, Design/Texturing. Mentor, Live Helper, Instructor, Estate manager. Freelance Journalist and Photographer.&lt;br /&gt;
* [[User:Grady Echegaray|Grady Echegaray]] - Building/Architecture/Exhibitions and Curatorial&lt;br /&gt;
* [[User:Ceeq Laborde|Ceeq Laborde]] - Developer&lt;br /&gt;
* [[User:Stephanie Misfit|Stephanie Misfit]]&lt;br /&gt;
* [[User:Little Gray|Little Gray]] ([http://slurl.com/secondlife/Jinn/243/110/231/ Little Shop of Scripts &#039;n Things)] - Scripts, Builds, Contractor, &amp;amp; Legal Srvcs.&lt;br /&gt;
* [[User:Dnate Mars|Dnate Mars]] - nobody&lt;br /&gt;
* [[User:Wolf Yohei|Wolf Yohei]] - Builder, scripter, designer, MIB&lt;br /&gt;
* [[User:Geuis Dassin|Geuis Dassin]] (Mannea, Filming Path Studios) Scripter, Machinimatographer, Builder&lt;br /&gt;
* [[User:Rob Arten|Rob Arten]] - Project Management, Architecture.&lt;br /&gt;
* [[User:Cory Edo|Cory Edo]] - building, texture creation, project management&lt;br /&gt;
* [[User:Komuso Tokugawa|Komuso Tokugawa]]&lt;br /&gt;
* [[User:Anna Gulaev|Anna Gulaev]] - builder, scripter, designer, programmer - Vengeance Studio&lt;br /&gt;
* [[User:David Cartier|David Cartier]] - Period Architecture and Interior Design, Landscaping, Texture Designs. Member of the Artist Friends Collaborative.&lt;br /&gt;
* [[User:Upshaw Underhill|Upshaw Underhill]] - Builder and Scripter. Member of the Artist Friends Collaborative.&lt;br /&gt;
* [[User:Roseann Flora|Roseann Flora]] - Buildings, Clothing, Textures and Objects. Member of the Artist Friends Collaborative.&lt;br /&gt;
* [[User:Traven Sachs|Traven Sachs]] ([http://www.wolfhavenproductions.com/ Wolfhaven Productions - Shubelik (128,95,232)]) Scripting, Building, Texturing, Content &amp;amp; Concept Creation, Sim design &amp;amp; Management/Terraforming, Business &amp;amp; Point of Sales Solutions.&lt;br /&gt;
* [[User:Suzanne Zeluco|Suzanne Zeluco]] (SZ Designs) Building, Textures, Scripting, Animations&lt;br /&gt;
* [[User:Tobia Forcella|Tobia Forcella]] (http://www.sltranslator.com - professional translation tool for second life) scripting interests: Communications - Interacting with external data stores &amp;amp; web content - Media Management&lt;br /&gt;
* [[User:Lyr Lobo|Lyr Lobo]] - Colorado Technical University - Professor of Computer Science - Ephemeral Spaces - project and performance management, build, texture, script and game design&lt;br /&gt;
* [[User:Simil Miles|Simil Miles]] - [http://unconwtech.free.fr/ UnConWTech] - Scripting : PSYS, Attachments, Setting Properties, Communications, External data.&lt;br /&gt;
* [[User:Ushuaia Tokugawa|Ushuaia Tokugawa]] - Electric Sheep Company - Scripting&lt;br /&gt;
* [[User:Vitis Obviate|Vitis Obviate]] - [http://www.slicr.net/ Slicr] - Scripting, Fully acronymn compliant system integration&lt;br /&gt;
* [[User:Kriz Dix|Kriz Dix]] ([http://www.plusx.de/ PLUSX.de]) German Marketing Company, Design, Script, Marketing, Consulting&lt;br /&gt;
* [[User:Ronin DeVinna|Ronin DeVinna]] - [http://www.slportugal.com] - Scripting, Building&lt;br /&gt;
* [[User:Andy Rozier|Andy Rozier]]&lt;br /&gt;
* [[User:Samm Submariner|Samm Submariner]]&lt;br /&gt;
* [[User:Jason Hashimoto|Jason Hashimoto]] - ([http://www.hashimotoenterprises.com Hashimoto Enterprises]) - Scripting, Building&lt;br /&gt;
* [[User:Jim Perhaps|Jim Perhaps]] (J&amp;amp;S Aviation) Building&lt;br /&gt;
* [[User: Storm Babeli|Storm Babeli]]- Purple Rose Jewelry - Building and Design&lt;br /&gt;
* [[User:Elzbiet Meili|Elzbiet Meili]] - Graphics, Useability, Building and Landscape Design&lt;/div&gt;</summary>
		<author><name>Sindy Tsure</name></author>
	</entry>
	<entry>
		<id>https://wiki.secondlife.com/w/index.php?title=SL_Certification&amp;diff=18224</id>
		<title>SL Certification</title>
		<link rel="alternate" type="text/html" href="https://wiki.secondlife.com/w/index.php?title=SL_Certification&amp;diff=18224"/>
		<updated>2007-04-25T02:10:23Z</updated>

		<summary type="html">&lt;p&gt;Sindy Tsure: /* Resident Participants */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Overarching Goal==&lt;br /&gt;
* Create Second Life Certification as an in-world resource for Residents&lt;br /&gt;
==Immediate Goal==&lt;br /&gt;
* Develop certification criteria for modeling and scripting&lt;br /&gt;
** We are looking for members of the Developer, Instructor, and Volunteer communities to work with Lindens in creating the skills list and certification tasks for those skills in Modeling and in Scripting. &lt;br /&gt;
==Description==&lt;br /&gt;
Linden Lab is developing certification for the use of key Second Life tools. We’ll begin with in-world building tools and LSL. We believe this will benefit Residents, Developers, and anyone who wishes to use Second Life by clearly identifying both key skills and the holders of those skills. This will also enable the creation of training to build the skills required for certification.&lt;br /&gt;
It is Linden Lab&#039;s intent to work with an external certification provider to offer certification testing and maintain a list of those Residents who have been certified.&lt;br /&gt;
==Linden Participants==&lt;br /&gt;
* [[User:Glenn Linden|Glenn Linden]]&lt;br /&gt;
* [[User:Eric Linden|Eric Linden]]&lt;br /&gt;
* [[User:Blue Linden|Blue Linden]]&lt;br /&gt;
* [[User:Heretic Linden|Heretic Linden]]&lt;br /&gt;
&lt;br /&gt;
==Resident Participants==&lt;br /&gt;
If you are interested in participating, please add your name to the end of this list.&lt;br /&gt;
* [[User:Ceera Murakami|Ceera Murakami]] (Fox and Ground Construction Company) Texture Artist&lt;br /&gt;
* [[User:Elle74 Zaftig|Elle74 Zaftig]] (Bellissima!/Shoppe74) build/model/textures&lt;br /&gt;
* [[User:Keiki Lemieux|Keiki Lemieux]] (HUDDLES Games &amp;amp; Gadgets) Building, Scripting, Animations, Textures&lt;br /&gt;
* [[User:Tre Giles|Tre Giles]] (GiTech/Action Village Paintball) Building, Scripting, Animation, Photography&lt;br /&gt;
* [[User:Alexander Regent|Alexander Regent]] (MageTech LLC) Scripting, website integration, cellphone integration, in-world building&lt;br /&gt;
* [[User:Sitearm Madonna|Sitearm Madonna]] (Siterma): Sim Scale Project Planning and Management; Structural Builds and Simulator Performance Management; Social Builds and Community Growth Management; Modeling - Architecture, Terraforming, Waterscaping, Landscaping, Soundscaping&lt;br /&gt;
* [[User:Hugo Dalgleish|Hugo Dalgleish]]&lt;br /&gt;
* [[User:Kenn Nilsson|Kenn Nilsson]] (NDE)&lt;br /&gt;
* [[User:Ravanne Sullivan|Ravanne Sullivan]] (Ravanne&#039;s Dance Poles and Animations) Animations and Scripting&lt;br /&gt;
* [[User:Fox Diller|Fox Diller]] (Crystal Studio/Magrathean Technologies) Anything Second Life.&lt;br /&gt;
* [[User:MSo Lambert|MSo Lambert]]&lt;br /&gt;
* [[User:Rael Delcon|Rael Delcon]]&lt;br /&gt;
* [[User:Dytska Vieria|Dytska Vieria]] (residential design/builds)&lt;br /&gt;
* [[User:Skye McArdle|Skye McArdle]] - Modeling, Animation, Textures, AV Customization&lt;br /&gt;
* [[User:Eladon Galsworthy|Eladon Galsworthy]] (PondLife - building and scripting)&lt;br /&gt;
* [[User:Oz Spade|Oz Spade]]&lt;br /&gt;
* [[User:Max Case|Max Case]]&lt;br /&gt;
* [[User:Newfie Pendragon|Newfie Pendragon]] (Reality Check, LSL Scripting)&lt;br /&gt;
* [[User:Gigs Taggart|Gigs Taggart]]&lt;br /&gt;
* [[User:Peekay Semyorka|Peekay Semyorka]]&lt;br /&gt;
* [[User:Osgeld Barmy|Osgeld Barmy]]  (biulding textures lsl)&lt;br /&gt;
* [[User:Nargus Asturias|Nargus Asturias]] (Avatar building, animations, scripts)&lt;br /&gt;
* [[User:ForestMist Skjellerup|ForestMist Skjellerup]]&lt;br /&gt;
* [[User:Rraven Moonlight|Rraven Moonlight]] (Terraforming Raw files, Texture developer, Large Scale Architectural Builds)&lt;br /&gt;
* [[User:Xylo Quisling|Xylo Quisling]]&lt;br /&gt;
* [[User:Thunderclap Morgridge|Thunderclap Morgridge]] (Texture artist, and nascent builder)&lt;br /&gt;
* [[User:Hiro Pendragon|Hiro Pendragon]] (CTO, Infinite Vision Media) LSL scripting, modeling&lt;br /&gt;
* [[User:Ethan Therian|Ethan Therian]] (Creative Director, Infinite Vision Media) modeling, texturing&lt;br /&gt;
* [[User:Ciemaar Flintoff|Ciemaar Flintoff]] (associate, Infinite Vision Media) lsl scripting, web-to-SL-to-web scripting&lt;br /&gt;
* [[User:Nimrodina Wayne|Nimrodina Wayne]] (build, animate, machinima)&lt;br /&gt;
* [[User:Lias Leandros|Lias Leandros]] (VooDoo Corp.)Sim Scale Project Planning and Management; Social Builds and Community Growth Management&lt;br /&gt;
* [[User:Erin Talamasca|Erin Talamasca]]&lt;br /&gt;
* [[User:Till Stirling|Till Stirling]] (Scripter, Builder, Consultant)&lt;br /&gt;
* [[User:Kri Ayakashi|Kri Ayakashi]] (AyakashiTEC) - LSL Scripting, Web2.0 integration, distributed programming (C/C++/C#, Python), in-world building, consultancy&lt;br /&gt;
* [[User:Alison Wheels|Alison Wheels]] ([http://secondlife.creative.org.uk/ Creative Organisation]) Scripting, FL/SL Integration issues, construction, terraforming, design&lt;br /&gt;
* [[User:FlipperPA Peregrine|FlipperPA Peregrine]] (Peregrine Salon/ESC) - LSL Scripting, Web integration, lots of other stuff. Creator of SLBoutique.com and SLTrivia.com.&lt;br /&gt;
* [[User:Strife Onizuka|Strife Onizuka]] (Scripter, Builder, Consultant)&lt;br /&gt;
* [[User:Porky Gorky|Porky Gorky]] - Hydro Homes : Prefabricated &amp;amp; customised building &amp;amp; architectural design.&lt;br /&gt;
* [[User:Bru Yang|Bru Yang]]&lt;br /&gt;
* [[User:Dirk Talamasca|Dirk Talamasca]] (Building, Custom Textures, Land/Estate Management. Internet Abuse Remediation, Sim Scale Layout, Planning and Development)&lt;br /&gt;
* [[User:Aimee Weber|Aimee Weber]]&lt;br /&gt;
* [[User:Banana Stein|Banana Stein]] (SL Brand) Builder, Textures, Sim Scale Project&lt;br /&gt;
* [[User:Linnian Sugar|Linnian Sugar]] (*Lollipop Shop owner* Builder, Clothing and textures, scripting, animations)&lt;br /&gt;
* [[User:Siobhan Taylor|Siobhan Taylor]] Building, Scripting.&lt;br /&gt;
* [[User:Taco Rubio|Taco Rubio]] (Media Management) &lt;br /&gt;
* [[User:RobbyRacoon Olmstead|RobbyRacoon Olmstead]] (Scripting, Building, C:SI Developer)&lt;br /&gt;
* [[User:Dnali Anabuki|Dnali Anabuki]] (Structure,Process,Organizing of Cert) Satorifilmservices.com&lt;br /&gt;
* [[User:Detect Surface|Detect Surface]] - (**D&amp;amp;D Creative Lab/The Brain Game/City of Abaddon** Building, Texturing, Skins, Texture-Mapping/Zoning, AV Design, Clothing, Sim Design and Construction, Architecture, Weapons, Vehicles, Furniture, Animation, Graphic Design, Artist and Pretty Flower Arranging.)&lt;br /&gt;
* [[User:Meade Paravane|Meade Paravane]] (Script monkey, Builder)&lt;br /&gt;
* [[User:Richie Waves|Richie Waves]] (Builder, Textures)&lt;br /&gt;
* [[User:Orange Montagne|Orange Montagne]]&lt;br /&gt;
* [[User:Joshua Nightshade|Joshua Nightshade]] (Builder, avatar design - primarily smaller-than-normal avatars)&lt;br /&gt;
* [[User:Zorena Deckard|Zorena Deckard]] (builder,textures,modeling)&lt;br /&gt;
* [[User:Bartiloux Desmoulins|Bartiloux Desmoulins]] (Scripting, modeling and animations)&lt;br /&gt;
* [[User:Ravenelle Zugzwang|Ravenelle Zugzwang]]&lt;br /&gt;
* [[User:Little Penguin|Little Penguin]] Building, Scripting&lt;br /&gt;
* [[User:Pol Tabla|Pol Tabla]]&lt;br /&gt;
* [[User:Jade Opel|Jade Opel]] (Brides &amp;amp; Blooms by Jade Opel)  Building, terra-forming, textures, particles, modeling&lt;br /&gt;
* [[User:Auron Havercamp|Auron Havercamp]] ([http://www.kenthavercamp.com/ Kent-Havercamp Enterprises, Ltd.]) - Scripting, Web Interaction, Data Storage&lt;br /&gt;
* [[User:Schuyler Kent|Schuyler Kent]] ([http://www.kenthavercamp.com/ Kent-Havercamp Enterprises, Ltd.]) - Building, Scripting, Consulting&lt;br /&gt;
* [[User:Vincent Nacon|Vincent Nacon]] (all above)&lt;br /&gt;
* [[User:Aradia Aridian|Aradia Aridian]] (Modeling, Land/Estate Management, Business Management, Marketing to the Virtual Customer)&lt;br /&gt;
* [[User:Scarlet Singer|Scarlet Singer]] (Textures/Graphics) &amp;lt;3&lt;br /&gt;
* [[User:Will Webb|Will Webb]]&lt;br /&gt;
* [[Cocoanut Koala]]  (Coco&#039;s Cottages) Builder&lt;br /&gt;
* Illya Sullivan&lt;br /&gt;
*[[User:Frans Charming|Frans Charming]] ([http://www.thevesuviusgroup.com The Vesuvius Group])Project Planning and Management, 3D Modeling/Building, Scripting, Texturing, etc&lt;br /&gt;
* [[User:Nomasha Syaka|Nomasha Syaka]] build/model/textures&lt;br /&gt;
*[[User:Rhiannon Chatnoir|Rhiannon Chatnoir]] ([http://www.thevesuviusgroup.com The Vesuvius Group])Creative Director of The Vesuvius Group (Project Management, Planning, Textures, Terraforming, machinima), also SL and web dev for Global Kids, Inc. and a RL professional graphic designer.&lt;br /&gt;
* [[User:Shockwave Yareach|Shockwave Yareach]] (Textures/Scripting/Building)&lt;br /&gt;
* [[User:Rebel Television|Rebel Television]] ([http://www.slexchange.com/modules.php?name=Marketplace&amp;amp;file=item&amp;amp;ItemID=147428 Airfoil]) Scripting, Animation, Vehicles, Avatars, Building, In-world RSS Feed Displays&lt;br /&gt;
* [[User:Storm Thunders|Storm Thunders]]&lt;br /&gt;
* [[Rocky Merosi]] (Objects, Furnishings/Interior Design, Weapons and Vehicles, Asset Managment, Movement, Attachments, Setting Properties, Communications)&lt;br /&gt;
*[[User:Moriz Gupte|Moriz Gupte]] ([http://www.play2train.org Play2Train])Producer, Scripter, Builder SL educator&lt;br /&gt;
*([http://homepage.mac.com/salazarjack/ Salazar Jack]) - Kahruvel Design - Environments, Landscapes, Forest Preservation, Terraforming, Architecture, Archeological Restoration, Furnishings/Interior Design, Objects, Textures&lt;br /&gt;
*[[User:Raven Pennyfeather|Raven Pennyfeather]] Owner/operator for House of RFyre LLC,clothing and avatar development, textures building, business analyst, gragphic design.&lt;br /&gt;
*[[User:Thraxis Epsilon|Thraxis Epsilon]] (Resume in Profile)&lt;br /&gt;
*[[User:Angelica Puff|Angelica Puff]] (Communications, External &amp;lt;-&amp;gt; Inworld data, Asset Management)&lt;br /&gt;
*[[User:Jeff Kelley|Jeff Kelley]] (Communications, Networking, Display, Data storage &amp;amp; access)&lt;br /&gt;
*[[User:Ace Albion|Ace Albion]] (Ace&#039;s Spaces)  prefab builder&lt;br /&gt;
*[[User:SunShine Kukulcan|SunShine Kukulcan]] (Mercury Dev Studios - Music and Media Services, Sim planning)&lt;br /&gt;
*[[User:Klink Epsilon|Klink Epsilon]] (Mercury Dev Studios - Builder, Custom Textures, Sim Design and planning, Media Services)&lt;br /&gt;
*[[User:Parker McTeague|Parker McTeague]] (BLIP) building, textures&lt;br /&gt;
*[[Demian Caldera]] Architecture, Furnishings/Interior Design, Objects, Landscaping, Terra Forming, Event Organizing, Event Set Building.&lt;br /&gt;
*[[User:Rainbow Drake|Rainbow Drake]] Director of Education - [http://raindancer.ca/NCI New Citizens Incorporated]&lt;br /&gt;
*[[User:Kamael Xevious|Kamael Xevious]] - Radio Babylonia/Batak Island Traders - Architecture, Furnishings and Interior Design, Media, Community Development and Region Construction, Education.&lt;br /&gt;
*[[User:Pipe Hesse|Pipe Hesse]] Scripting, Building&lt;br /&gt;
* [[User:Abramelin Wolfe|Abramelin Wolfe]] (Abramelin Studios Ltd / Abranimations) script/build/texture/animation/mocap/web integration&lt;br /&gt;
* [[User:katykiwi Moonflower|katykiwi Moonflower]] interior design/furnishings/building/texturing/terraforming&lt;br /&gt;
*[[User:Jade Jensen|Jade Jensen]] (Jaded Visions) Clothing Design, Avatar Creation/Design, Texturing, Graphics Design&lt;br /&gt;
*[[Darien Caldwell]] Builder/Scripter&lt;br /&gt;
*[[User:Azrazael Dhara|Azrazael Dhara]] Building, Terraforming, Sim Design, Landscaping, Instructing, Photography&lt;br /&gt;
*[[User:Andreas Isachenko|Andreas Isachenko]] Building, Scripting, DB access&lt;br /&gt;
*[[User:Jason Keegan|Jason Keegan]] (K-tech) Scripting&lt;br /&gt;
*[[User:Gaius Goodliffe|Gaius Goodliffe]] (Second Skies) Vehicles, scripting, back-end server/website integration&lt;br /&gt;
*[[User:Pericat Aquitaine|Pericat Aquitaine]] (Elf Harbour Boatyard) Vehicles, scripting, terraforming, general building&lt;br /&gt;
*[[User:Karsten Rutledge|Karsten Rutledge]] (Play2Train/K.R. Engineering) Scripting, building.&lt;br /&gt;
*[[User:Bubba Biberman|Bubba Biberman]] Building, textures, machinima&lt;br /&gt;
*[[User:Kerian Bunin|Kerian Bunin]] Building, Scripting&lt;br /&gt;
*[[User:Tsukasa Keiko|Tsukasa Keiko]] Building, Scripting&lt;br /&gt;
*[[User:Morph Wollongong|Morph Wollongong]] Gadgets, Scripting&lt;br /&gt;
*[[User:Ordinal Malaprop|Ordinal Malaprop]] - scripting, some building&lt;br /&gt;
*[[User:Donnagh McDonnagh|Donnagh McDonnagh]] - Undergraduate education (School of Communication), machinima, scripting, general building, avatar skins/clothes, 3d textures, animation, web integration, vehicles, huds, event management, orientation, inworld collaboration&lt;br /&gt;
*[[User:Able Whitman|Able Whitman]] - scripting, some building&lt;br /&gt;
*[[User:Adri Saarinen|Adri Saarinen]] - ([http://www.metaversatility.com Metaversatility]) scripting, building, presence development&lt;br /&gt;
*[[User:Curious Rousselot|Curious Rousselot]] - Scripting, Building&lt;br /&gt;
*[[User:otakup0pe Neumann|otakup0pe Neumann]] - Pleiades Consulting &amp;amp; libsecondlife. Rich Educational Content, tech integration, libsl powered services&lt;br /&gt;
*[[User:Damek Tretiak|Damek Tretiak]] - ([http://www.tretiakmedia.com Tretiak Media])/([http://www.slquery.com SLQuery.com]) scripting, building, project management&lt;br /&gt;
* [[User:Jacques Groshomme|Jacques Groshomme]] - Building/Scripting&lt;br /&gt;
* [[User:Iris Bourdeille|Iris Bourdeille]] - Building/Scripting/Texturing/Animation&lt;br /&gt;
* [[User:Fallon Winnfield|Fallon Winnfield]] - ([http://www.centric.com Centric])/([http://www.secondtalk.com Second Talk]) - Business development, building, scripting&lt;br /&gt;
* [[User:Adam Rakosi|Adam Rakosi]] - ([http://www.centric.com Centric])/([http://www.secondtalk.com Second Talk]) - Building/Scripting&lt;br /&gt;
* [[User:Neko Longduk|Neko Longduk]] - ([http://www.centric.com Centric])/([http://www.secondtalk.com Second Talk]) - Business Development, scripting&lt;br /&gt;
* [[User:Weasel Gough|Weasel Gough]] - ([http://www.centric.com Centric])/([http://www.secondtalk.com Second Talk]) - Building/Scripting/Texturing/Animation&lt;br /&gt;
* [[User:Chime Bellman|Chime Bellman]] strategy/build/model/promote&lt;br /&gt;
*[[User:Sage Duncan|Sage Duncan]] - animation/machinima/motion/media management/live performance&lt;br /&gt;
* [[User:Economic Mip|Economic Mip]] -imagine/dream&lt;br /&gt;
* [[User:Talarus Luan|Talarus Luan]] - Archaean Designs / Council of Wyrms - Scripting, Building, Consulting&lt;br /&gt;
* [[User:Dustin Widget|Dustin Widget]] Builder/Scripter/Mentor/Lots More&lt;br /&gt;
* [[User:Tab Scott|Tab Scott]] - Terry Beaubois, Montana State University - College of Art &amp;amp; Architecture - Art, Music, Architecture, Film - Sustainable Community Design&lt;br /&gt;
* [[User:Hiro Market|Hiro Market]] - ([http://www.slicr.net Slicr]) Slicr - Scripting, Consulting&lt;br /&gt;
* [[User:Scorpio Galatea|Scorpio Galatea]] - Builder (Phoenix), Texture Creator&lt;br /&gt;
* [[User:Sylvia Trilling|Sylvia Trilling]] - Modeling, Scripting, Animating, Texturing&lt;br /&gt;
* [[User:Earnest Candour|Earnest Candour]] - ([http://www.metaverseenterprises.com Metaverse Enterprises])&lt;br /&gt;
* [[User:Carl Metropolitan|Carl Metropolitan]] - Building, Site Developement, Project Management, Marketing, Graphic Design, Event Hosting, Terraforming, Teaching&lt;br /&gt;
* [[User:Lecktor Hannibal|Lecktor Hannibal]] - (Landscaping, Estate Management, Modeling, Media Streaming, Event Management)&lt;br /&gt;
* [[User:Destiny Niles|Destiny Niles]] - Scripter/Mentor&lt;br /&gt;
*[[User:Kim Anubis|Kim Anubis]], ([http://www.themagicians.us The Magicians])&lt;br /&gt;
* [[User:Bobble Bertone|Bobble Bertone]] - ([http://www.coolbananas.com.au Cool Bananas Ventures]) - Building, Scripting, Terra forming, Project management, Networking with RL businesses.&lt;br /&gt;
* [[User:Logan Bauer|Logan Bauer]] - Building/Texturing/Scripting/Ect.&lt;br /&gt;
* [[User:In Kenzo|In Kenzo]] ([http://www.amoration.org Amoration]) Design, Building, Machinima, Events, Immersive Experiences for nonprofits and education&lt;br /&gt;
* [[User:Gearsawe Stonecutter|Gearsawe Stonecutter]] - Scripting, HUDs, Building, complex prim transformations, single script simplification&lt;br /&gt;
* [[User:Apollo Case|Apollo Case]] - (Armory Island and Armory Xtreme)- Virtual Weapons, Combat Items and Gadgets - Conceptualization, Testing, Marketing, Communication, Distribution, and Retailing - Combat Sim Owner and Developer&lt;br /&gt;
* Sindy Tsure (Scripting, Buidling)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- add yourself above this line, starting the line with an &amp;quot;*&amp;quot;. DO NOT DELETE THIS LINE!&lt;br /&gt;
 --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Target Date==	 &lt;br /&gt;
Ready to launch by fall, 2007&lt;br /&gt;
&lt;br /&gt;
==Certification Categories==&lt;br /&gt;
Initially, we plan to develop certification for Modeling and Scripting.  If these two categories are successful, we will develop, in accordance with your feedback, future areas including but not limited to: Avatar Customization, Terrain/Land Editing, and Land/Estate Management. &lt;br /&gt;
&lt;br /&gt;
===[[Modeling Certification|Modeling]]===&lt;br /&gt;
&lt;br /&gt;
* Architecture&lt;br /&gt;
* Furnishings/Interior Design&lt;br /&gt;
* Objects&lt;br /&gt;
* Weapons and Vehicles&lt;br /&gt;
Note: Includes using scripts to animate objects and textures but no writing of scripts&lt;br /&gt;
&lt;br /&gt;
===[[Scripting Certification|Scripting]]===&lt;br /&gt;
&lt;br /&gt;
* Animation&lt;br /&gt;
** Note: Animation includes object animation, texture animation and particle systems&lt;br /&gt;
* Attachments &lt;br /&gt;
* Movement &lt;br /&gt;
* Physics &amp;amp; Collisions &lt;br /&gt;
* Detection &amp;amp; Sensing &lt;br /&gt;
* Asset Management &lt;br /&gt;
* Setting Properties &lt;br /&gt;
* Communications&lt;br /&gt;
* Interacting with external data stores &amp;amp; web content &lt;br /&gt;
* Media Management&lt;br /&gt;
&lt;br /&gt;
==Frequently Asked Questions==&lt;br /&gt;
* What is the value of Certification?&lt;br /&gt;
&lt;br /&gt;
The primary value of certification is to those hiring people to create content for them in SL. Certification is one indication that someone has at least a minimum set of skills. Certification is only one of many ways of demonstrating competency. Certification also clarifies skills and helps instructors develop instruction. &lt;br /&gt;
&lt;br /&gt;
Certification also provides a set of skills against which anyone in Second Life, whether they build for fun or for hire, can measure their accomplishments.&lt;br /&gt;
&lt;br /&gt;
By more clearly defining skills related to Second Life tools, certification may improve the quality of construction in Second Life, and may encourage a broader range of instruction about the Second Life tools.&lt;br /&gt;
&lt;br /&gt;
* Portfolios already show if someone is competent; why do we need certification?&lt;br /&gt;
&lt;br /&gt;
Portfolios have a valuable role in demonstrating accomplishment, both in RL and SL. In Second Life, many projects are done collaboratively.  Builds can incorporate content that is bought and created, and many people can be involved. It can be hard to look at a project and understand what a particular person has contributed. Certification provides one method of demonstrating your own skill set. It should be only one of many potential ways to evaluate a candidate.&lt;br /&gt;
&lt;br /&gt;
* Is Linden Lab mandating certification?&lt;br /&gt;
&lt;br /&gt;
You can chose to be certified if you want, or not. Linden Lab has no intent to monitor or mandate that Second Life content be created only by Residents with certification, or to mandate certification in any way. Nor will Certification (or non-certification) be tied by Linden Lab in any way to land ownership, group membership, membership level, or any other attribute of a Second Life account. While Linden Lab may provide a way for those listed in the Developer Directory to identify certification, it will not require it for the Developer Directory, Classifieds, Events, or any other Linden Lab-operated listing service.  &lt;br /&gt;
&lt;br /&gt;
* Is Linden Lab mandating content of certification?&lt;br /&gt;
&lt;br /&gt;
Linden Lab has engaged the Residents in defining the skills involved in competency, and in developing the appropriate demonstration of those skills. Linden Lab is not defining the skills nor the demonstration of them, it is simply supporting the process. &lt;br /&gt;
&lt;br /&gt;
* Will it cost money?  Does Linden Lab intend to profit by Certification?&lt;br /&gt;
&lt;br /&gt;
Linden Lab was looking to have a third party organization manage certification; we don&#039;t want the administrative hassle of doing it, nor the potential for anyone to claim that we would have influence on who gets certified. We intend making certification as widely available as possible. We will work with Residents, Instructors and Developers to find the best way to enable certification.&lt;br /&gt;
&lt;br /&gt;
* Who will be providing the Certification service?&lt;br /&gt;
&lt;br /&gt;
At this time, the only answer we can give is &amp;quot;Not Linden Lab.&amp;quot; We will work with the Residents who participate in developing certification to find the best provider - whether a Resident, an external third party, or some other provider. Ironically, our original reason for only considering an external provider was to prevent any concern that one group of Residents might use Certification against other Residents. Linden Lab has no intent of operating the Certification service - we don&#039;t have the expertise or resources, nor do we want the inevitable accusations of bias.&lt;br /&gt;
&lt;br /&gt;
* Certification will make it harder to become competent in using Second Life tools?&lt;br /&gt;
&lt;br /&gt;
Certification is a way to more clearly communicate skills. Without certification, everyone has their own idea of what competency is.  Some classes will teach one set of skills, others another, and outcomes aren&#039;t comparable. That&#039;s why we&#039;re involving SL instructors in this project.&lt;br /&gt;
&lt;br /&gt;
==Usage and Notes==&lt;br /&gt;
[[Category:Certification]]&lt;/div&gt;</summary>
		<author><name>Sindy Tsure</name></author>
	</entry>
</feed>