Skip to content

Instantly share code, notes, and snippets.

View geoffreymcgill's full-sized avatar

Geoffrey McGill geoffreymcgill

View GitHub Profile
links:
- text: Blog
link: /blog
@geoffreymcgill
geoffreymcgill / Object-CLA
Created January 11, 2017 08:10
Object.NET Contributor License Agreement
#Contributor License Agreement
The following terms are used throughout this agreement:
- **You** - the person or legal entity including its affiliates asked to accept this agreement. An affiliate is any entity that controls or is controlled by the legal entity, or is under common control with it.
- **Project** - is an umbrella term that refers to any and all Object.NET, Inc. open source projects.
- **Contribution** - any type of work that is submitted to a Project, including any modifications or additions to existing work.
- **Submitted** - conveyed to a Project via a pull request, commit, issue, or any form of electronic, written, or verbal communication with Object.NET, Inc., contributors or maintainers.
##1. Grant of Copyright License.
@geoffreymcgill
geoffreymcgill / index.html
Created January 19, 2015 06:19
Prism with Copy to Clipboard
<!doctype html>
<html>
<head>
<title>Prism Copy to Clipboard sample</title>
<link rel="stylesheet" href="prism.css" type="text/css" media="screen" />
<link rel="stylesheet" href="toolbar.css" type="text/css" media="screen" />
<script type="text/javascript" src="prism.js"></script>
<!-- Adapted from http://dev.misterphilip.com/prism/plugins/toolbar/ -->
@geoffreymcgill
geoffreymcgill / deploy.bat
Created August 8, 2015 17:54
Sample deploy.bat file to use with Bridge.NET afterBuild config
SET _=%~dp0
SET dest="%_%..\..\..\MyWebApplication\resources\js"
IF EXIST %dest% xcopy "%_%..\output" %dest% /Y
:: See afterBuild setting at http://bridge.net/kb/global-configuration/
@geoffreymcgill
geoffreymcgill / 1. HelloWorld.cs
Last active January 31, 2020 17:29
Deck Samples
public class Program
{
public static void Main()
{
var msg = "Hello, World!";
Console.WriteLine(msg);
// Try other C# samples from the
// "Samples" button in the top right
@geoffreymcgill
geoffreymcgill / .gitignore
Created January 16, 2019 19:29
Visual Studio .gitignore
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
##
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
# User-specific files
*.suo
*.user
*.userosscache
*.sln.docstates
@geoffreymcgill
geoffreymcgill / 1. HelloWorld.cs
Last active May 25, 2018 04:11
Bridge.NET Live Compiler Samples
public class Program
{
public static void Main()
{
var msg = "hello, world";
Console.WriteLine(msg);
// Try other C# Samples from
// the Button in the top right.
@geoffreymcgill
geoffreymcgill / BRIDGE-SLA
Created December 20, 2017 06:01
BRIDGE.NET SOFTWARE LICENSE AGREEMENT
THIS DOCUMENT IS A LEGAL AGREEMENT (the "License Agreement") BETWEEN OBJECT.NET, INC. ("We," "Us") AND
YOU OR THE ORGANIZATION ON WHOSE BEHALF YOU ARE UNDERTAKING THE LICENSE DESCRIBED BELOW ("You",
"Your") IN RELATION TO THE BRIDGE.NET SOFTWARE LIBRARY(IES) (THE "Software"), IN BOTH SOURCE AND
OBJECT CODE FORM, AND/OR ALL RELATED MATERIALS.
BY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING THE SOFTWARE, YOU ACCEPT THE FOLLOWING TERMS
AND CONDITIONS. IF YOU DO NOT AGREE WITH ANY OF THE TERMS OR CONDITIONS OF THIS LICENSE AGREEMENT,
DO NOT PROCEED WITH THE DOWNLOADING, COPYING, INSTALLATION OR ANY OTHER USE OF THE SOFTWARE OR ANY
PORTION THEREOF AS YOU HAVE NO RIGHTS TO DO SO. THE SOFTWARE IS PROTECTED BY UNITED STATES
COPYRIGHT LAWS AND INTERNATIONAL COPYRIGHT LAWS, AS WELL AS OTHER INTELLECTUAL PROPERTY LAWS AND
using static Retyped.dom;
public class Program
{
public static void Main()
{
alert("Hello, World!");
}
}