Skip to content

Instantly share code, notes, and snippets.

View jeep87c's full-sized avatar

Jean-Philippe Poulin de Courval jeep87c

View GitHub Profile
@jeep87c
jeep87c / Readme.md
Last active March 10, 2017 17:04
MS Northwind for Oracle

MS Northwind for Oracle

Summary

This is a fixed and light version of the public gist of MS Northwind for Oracle published by segilbet at https://gist.github.com/segilbert/5095533. It includes only the tables creation and the data seed, no views, procedures or functions.

public class CalculatorService : ICalculator
{
Worker worker = new Worker();
int callId = 0;
public double Add(double n1, double n2)
{
callId++;
double result = n1 + n2;
Console.WriteLine("Call {2} : Received Add({0},{1})", n1, n2, callId);
@jeep87c
jeep87c / index.html
Created May 29, 2012 18:39
B-Spline example
<!doctype html>
<html>
<head>
</head>
<body>
<canvas id="canvas" width="800" height="600"></canvas>
<script type="text/javascript">
var ctx = document.getElementById('canvas').getContext('2d')