Skip to content

Instantly share code, notes, and snippets.

View jaidetree's full-sized avatar

jaide (formerly eccentric-j) jaidetree

View GitHub Profile
@jaidetree
jaidetree / effective_questions.md
Last active February 26, 2021 00:07 — forked from mjlbach/effective_questions.md
Asking effective questions

Foreword

The open source community depends on the efforts of a small group of volunteers relative to the number of users. In order to make the most of contributors' time, here is some advice for asking “good questions”. This is largely paraphrased from this article by Eric Steven Raymond and Rick Moen, with edits for brevity and tone. If you have the time (and tolerance), I strongly recommend reading that article over this one. Let's start with the procedure.

The procedure

  1. Try to find an answer by searching the archives of the issue-tracker, IRC, matrix-room, discord, forum or mailing list you plan to post to.
  2. Try to find an answer by searching the Web.
  3. Try to find an answer by reading the manual.
  4. Try to find an answer by reading a FAQ.
  5. Try to find an answer by inspection or experimentation.
//////////////////////////////////////////////////////////////////////////
/// ///
/// SCRIPT: kdAutoRigV0.1.mel - MEL Script ///
/// ///
/// AUTHOR: Kory Dondzila - kory@korydondzila.com ///
/// www.korydondzila.com ///
/// ///
/// DESCRIPTION: This is a prototype script. It allows the ///
/// user to rig the spine and neck of a character. ///
/// The script generates the locators for the user ///
<!DOCTYPE html>
<!--[if IE 6]>
<html id="ie6" dir="ltr" lang="en-EN">
<![endif]-->
<!--[if IE 7]>
<html id="ie7" dir="ltr" lang="en-EN">
<![endif]-->
<!--[if IE 8]>
<html id="ie8" dir="ltr" lang="en-EN">
<![endif]-->
@jaidetree
jaidetree / gist:5670793
Last active December 17, 2015 20:49 — forked from anonymous/gist:5670763
var clickTagURL:String = "";
if (root.loaderInfo.parameters.hasOwnProperty("clickTAG")) {
clickTagURL = root.loaderInfo.parameters['clickTAG'];
}
if ((/^http\:\/\/.*/).test(clickTagURL)) {
setClickTagHandlers();
}
@jaidetree
jaidetree / gist:5670693
Last active December 17, 2015 20:49 — forked from anonymous/gist:5670671
if (root.loaderInfo.parameters.clickTAG.substr(0,5) == "http:") {
// Add more button instances here
ClickHotspot.addEventListener( MouseEvent.CLICK, clickTagHandler);
// If within a movie clip
// movieClipInstanceName.buttonInstanceName.addEventListener(MouseEvent.CLICK, clickTagHandler);
}
function clickTagHandler(e:MouseEvent):void {
navigateToURL(new URLRequest(root.loaderInfo.parameters.clickTAG), "_blank");
@jaidetree
jaidetree / kdBarycentricsV0.1.mel
Created May 31, 2012 01:15 — forked from korydondzila/gist:2839802
Kory Dondzila's Scripts
//////////////////////////////////////////////////////////////////////////
/// ///
/// SCRIPT: kdAutoRigV0.1.mel - MEL Script ///
/// ///
/// AUTHOR: Kory Dondzila - kory@korydondzila.com ///
/// www.korydondzila.com ///
/// ///
/// DESCRIPTION: This is a prototype script. It allows the ///
/// user to rig the spine and neck of a character. ///
/// The script generates the locators for the user ///