Skip to content

Instantly share code, notes, and snippets.

View deavial's full-sized avatar
😈
Up to no good, probably.

Deavial deavial

😈
Up to no good, probably.
View GitHub Profile
@deavial
deavial / SAP_CLA
Created March 19, 2016 01:09 — forked from CLAassistant/SAP_CLA
SAP Individual Contributor License Agreement
###SAP Individual Contributor License Agreement
Thank you for your interest in contributing to open source software projects (“Projects”) made available by SAP SE or its affiliates (“SAP”). This Individual Contributor License Agreement (“Agreement”) sets out the terms governing any source code, object code, bug fixes, configuration changes, tools, specifications, documentation, data, materials, feedback, information or other works of authorship that you submit or have submitted, in any form and in any manner, to SAP in respect of any of the Projects (collectively “Contributions”). If you have any questions respecting this Agreement, please contact opensource@sap.com.
You agree that the following terms apply to all of your past, present and future Contributions. Except for the licenses granted in this Agreement, you retain all of your right, title and interest in and to your Contributions.
**Copyright License.** You hereby grant, and agree to grant, to SAP a non-exclusive, perpetual, irrevocable, worldwid
@deavial
deavial / thunderflurry-cla.md
Last active March 28, 2016 20:12
thunderflurry cla

Individual Contributor License Agreement v3.1

Thank you for Your interest in the ThunderFlurry Foundation. This document clarifies the terms under which You, the person listed below, may make Contributions — which may include without limitation, software, bug fixes, configuration changes, documentation, art work, creative design, video, or any other materials — to any of the projects owned or managed by the ThunderFlurry Foundation.

Please complete information about You and the Contributions. If You have questions about these terms, please contact us at legal@cinecove.com.

You accept and agree to the following terms and conditions for Your present and future Contributions submitted to the ThunderFlurry Foundation. Except for the license granted herein to the ThunderFlurry Foundation, You reserve all right, title, and interest in and to Your Contributions.

Licenses

@deavial
deavial / log
Created May 21, 2014 15:57 — forked from stefanoortisi/log
// usage: log('inside coolFunc', this, arguments);
// paulirish.com/2009/log-a-lightweight-wrapper-for-consolelog/
window.log = function(){
log.history = log.history || []; // store logs to an array for reference
log.history.push(arguments);
arguments.callee = arguments.callee.caller;
if(this.console) console.log( Array.prototype.slice.call(arguments) );
};
@deavial
deavial / webconfig-anti-quirks.xml
Created May 21, 2014 15:47
web.config setting to prevent IE from rendering quirks on intranet zone.
<system.webServer>
<httpProtocol>
<customHeaders>
<clear />
<add name="X-UA-Compatible" value="IE=edge,Chrome=IE9" />
</customHeaders>
</httpProtocol>
</system.webServer>