Skip to content

Instantly share code, notes, and snippets.

View darscan's full-sized avatar

Shaun Smith darscan

  • United Kingdom
View GitHub Profile

Snyk SBT Plugin tool contributor agreement

This Snyk SBT Plugin tool Agreement (this "Agreement") applies to any Contribution you make to any Work.

This is a binding legal agreement on you and any organization you represent. If you are signing this Agreement on behalf of your employer or other organization, you represent and warrant that you have the authority to agree to this Agreement on behalf of the organization.

1. Definitions

"Contribution" means any original work, including any modification of or addition to an existing work, that you submit to Snyk SBT Plugin tool repo in any manner for inclusion in any Work.

@darscan
darscan / bmi.js
Created June 12, 2013 20:04 — forked from mjtko/bmi.js
var bmi_htmlEdit = 0;
var bmi_ie;
var bmi_ns;
var bmi_safari;
var bmi_imageObjSelected;
var bmi_ffx_op_toolTip = "Shift+R improves the quality of this image. Shift+A improves the quality of all images on this page.";
var bmi_toolTip = "Shift+R improves the quality of this image. CTRL+F5 reloads the whole page.";
var bmi_ns_tooltip = "Shift+Reload reloads the whole page.";
var bmi_toolTipSeperator = " ... ";
var bmi_concatStr = "bmi_orig_img";
@darscan
darscan / vagrant.org
Created May 5, 2012 23:56
CentOS Box for Vagrant
@darscan
darscan / AOPTest.as
Created December 30, 2011 17:27 — forked from nodename/AOPTest.as
Interesting use of 'finally' to slip some code in before a function returns
// originally from Andy Shang http://bbs.9ria.com/viewthread.php?tid=47399
package
{
import flash.display.Sprite;
public class AOPTest extends Sprite
{
public function AOPTest()
{
protected var _foo:String;
[Bindable( "fooChanged" )]
public function get foo():String
{
return _foo;
}
public function setFoo( foo:String ):void
{
// IMediaRenderer.as
package example
{
public interface IMediaRenderer extends IDataRenderer, IUsesResources, IUsesPermissions
{
}
}
// MediaRenderer.as
package example
@darscan
darscan / ClassWithPrivateInjection.as
Created September 23, 2010 15:26 — forked from troygilbert/ClassWithPrivateInjection.as
private injection from troy
package
{
import private_injection;
class ClassWithPrivateInjection
{
include "inject.include.as";
private var mySecretWord:String;
package com.visfleet.robotlegs {
import flash.display.DisplayObject;
import flash.display.DisplayObjectContainer;
import org.robotlegs.base.ContextEvent;
import org.robotlegs.core.IMediatorMap;
import org.robotlegs.mvcs.Actor;
public class Presenter extends Actor {
package org.puremvc.as3.multicore.utilities.lazy.interfaces
{
import flash.events.IEventDispatcher;
public interface IFacadeAdapter
{
function getFQCN(clazz:Class):QName;
function startup(eventBus:IEventDispatcher, startupCommandClass:Class = null, autoMediateCommandClass:Class = null):void;
}
}