User:Void Singer: Difference between revisions
Jump to navigation
Jump to search
Void Singer (talk | contribs) m added new program link, minor details |
Void Singer (talk | contribs) m minor updates |
||
| (One intermediate revision by the same user not shown) | |||
| Line 30: | Line 30: | ||
{{void-box | {{void-box | ||
|title= | |title=Free Code | ||
|content= | |content= | ||
[[User:Void_Singer/Programs#v7-D_Enh._Color_Picker|v7-D Enhanced Color Picker]] - Dialog driven, multi-prim color picker. | === Full Programs === | ||
[[User:Void_Singer/Programs#v7-D_Enh._Landmark-2-Map|v7-D Enhanced Landmark-2-Map]] - Teleport selector for Landmarks within object. | * [[User:Void_Singer/Programs#v7-D_Enh._Color_Picker|v7-D Enhanced Color Picker]] - Dialog driven, multi-prim color picker. | ||
* [[User:Void_Singer/Programs#v7-D_Enh._Landmark-2-Map|v7-D Enhanced Landmark-2-Map]] - Teleport selector for Landmarks within object. | |||
* [[User:Void_Singer/Programs#v7-D_Advanced_Visitor_Greeter|v7-D_Advanced Visitor Greeter]] - Low Spam, Highly Configuarable, Vistor Greeter. | |||
=== Reusable Functions === | |||
* [[User:Void_Singer/Functions#String:_Get_Reverse_Order|String: Get Reverse Order]] - "string" to "gnirts". | |||
* [[User:Void_Singer/Functions#String:_Find_Last_Index|String: Find Last Index]] - [[llSubStringIndex]]'s backwards cousin. | |||
* [[User:Void_Singer/Functions#List:_Get_Reverse_Order|List:_Get_Reverse_Order]] - ["L", "I", "S", "T"] to ["T", "S", "I", "L"]. | |||
* [[User:Void_Singer/Functions#List:_Find_Last_Index|List: Find Last Index]] - [[llListFindList]]'s backwards cousin. | |||
* [[User:Void_Singer/Functions#List:_Multi-Find_Index_.28First_or_Last.29|List: Multi-Find Index (First or Last)]] - [[llListFindList]]'s multi-tasking cousin. | |||
}} | }} | ||
| Line 43: | Line 51: | ||
** [https://jira.secondlife.com/browse/SVC-34 SVC-34 (DEV-10502)] - Right-clicking another Resident's moving object freezes it | ** [https://jira.secondlife.com/browse/SVC-34 SVC-34 (DEV-10502)] - Right-clicking another Resident's moving object freezes it | ||
** [https://jira.secondlife.com/browse/SVC-93 SVC-93 (DEV-1178)] - llSetPrimitiveParams PRIM_ROTATION and llSetRot incorrectly implemented for child prims | ** [https://jira.secondlife.com/browse/SVC-93 SVC-93 (DEV-1178)] - llSetPrimitiveParams PRIM_ROTATION and llSetRot incorrectly implemented for child prims | ||
** [https://jira.secondlife.com/browse/WEB-917 WEB-917 (DEV-25552)] - Http 403 FORBIDDEN response when posting to forums. | |||
** [https://jira.secondlife.com/browse/SVC-998 SVC-998 (DEV-19637)] - Object Local Rotation Incorretly Aligned to Child Prim | ** [https://jira.secondlife.com/browse/SVC-998 SVC-998 (DEV-19637)] - Object Local Rotation Incorretly Aligned to Child Prim | ||
** [https://jira.secondlife.com/browse/VWR-2060 | ** [https://jira.secondlife.com/browse/VWR-2060 VWR-2060 (DEV-30253)] - llMapDestination (and possibly SLURLs) sometimes fail to use the target vector data | ||
** [https://jira.secondlife.com/browse/SVC-3760 SVC-3760 (DEV-27956)] - Unicode behaviour of llToUpper() and llToLower() is inconsistent LSO and Mono | ** [https://jira.secondlife.com/browse/SVC-3760 SVC-3760 (DEV-27956)] - Unicode behaviour of llToUpper() and llToLower() is inconsistent LSO and Mono | ||
** [https://jira.secondlife.com/browse/SVC-4291 SVC-4291] - MONO llGetFreeMemory Misbehavior | ** [https://jira.secondlife.com/browse/SVC-4291 SVC-4291] - MONO llGetFreeMemory Misbehavior | ||
** [https://jira.secondlife.com/browse/SVC-4518 SVC-4518] - Hollow Shape Setting Reverts To Default on Hollow Percentage 0.0 | |||
** [https://jira.secondlife.com/browse/VWR-14555 VWR-14555] - taking an object to inventory (inconsistently) replaces a null description "" with "(No Description)" | |||
* [[Image:Status-Resolved.gif]] Resolved: | * [[Image:Status-Resolved.gif]] Resolved: | ||
** [https://jira.secondlife.com/browse/SVC-1210 SVC-1210 (DEV-9153 )] - state_exit: LSL compiler should disallow state transition calls. '''(Won't Finish)''' | ** [https://jira.secondlife.com/browse/SVC-1210 SVC-1210 (DEV-9153 )] - state_exit: LSL compiler should disallow state transition calls. '''(Won't Finish)''' | ||
Revision as of 01:49, 16 July 2009
About:
- Born: 1975
- Name: Void is fine, "Your Majesty" or "Emperess" works too ;)
- Location: Utah, for the moment
- History: Started off making webpages, then scripting for webpages (jscript), went to college for a few years, studied programming and networking. I do a little of everything, from digital art, to running my own web & streaming media servers, to anything you can think of in SL.
Coding Practices
- Formating - How and Why I write code the way I do.
- Optimizations - Some useful optimizations I've tested.
Helpful Bits
Projects
Functional Challenge - Forum Competitive Scripting Challenge
Free Code
Full Programs
- v7-D Enhanced Color Picker - Dialog driven, multi-prim color picker.
- v7-D Enhanced Landmark-2-Map - Teleport selector for Landmarks within object.
- v7-D_Advanced Visitor Greeter - Low Spam, Highly Configuarable, Vistor Greeter.
Reusable Functions
- String: Get Reverse Order - "string" to "gnirts".
- String: Find Last Index - llSubStringIndex's backwards cousin.
- List:_Get_Reverse_Order - ["L", "I", "S", "T"] to ["T", "S", "I", "L"].
- List: Find Last Index - llListFindList's backwards cousin.
- List: Multi-Find Index (First or Last) - llListFindList's multi-tasking cousin.
Tracked Jira Articles
Open:
- SVC-34 (DEV-10502) - Right-clicking another Resident's moving object freezes it
- SVC-93 (DEV-1178) - llSetPrimitiveParams PRIM_ROTATION and llSetRot incorrectly implemented for child prims
- WEB-917 (DEV-25552) - Http 403 FORBIDDEN response when posting to forums.
- SVC-998 (DEV-19637) - Object Local Rotation Incorretly Aligned to Child Prim
- VWR-2060 (DEV-30253) - llMapDestination (and possibly SLURLs) sometimes fail to use the target vector data
- SVC-3760 (DEV-27956) - Unicode behaviour of llToUpper() and llToLower() is inconsistent LSO and Mono
- SVC-4291 - MONO llGetFreeMemory Misbehavior
- SVC-4518 - Hollow Shape Setting Reverts To Default on Hollow Percentage 0.0
- VWR-14555 - taking an object to inventory (inconsistently) replaces a null description "" with "(No Description)"
Resolved:
- SVC-1210 (DEV-9153 ) - state_exit: LSL compiler should disallow state transition calls. (Won't Finish)
Other Resources Links
- lslwiki.net - Alternate lsl wiki.
- rpgstats.com - Alternate lsl wiki.
Questions or Comments?
Feel free to leave me a note on my User Talk page.