This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Dicom; | |
using Dicom.Imaging; | |
using Dicom.Imaging.Codec; | |
using Dicom.IO.Buffer; | |
using Ghostscript.NET; | |
using Ghostscript.NET.Rasterizer; | |
using System; | |
using System.Collections.Generic; | |
using System.Drawing; | |
using System.Drawing.Imaging; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Found and influenced by the internets | |
console.log('Loading a web page'); | |
var page = new WebPage(); | |
//This was tricky, this is the way to open LOCAL files | |
//var url = "file://localhost/Users/danmerino/test/teamcity_reporter.html"; | |
//var url = "file://localhost/Ember.MIS/Ember.WebRole/Scripts/app/test/SpecRunner.RequireJS.html"; | |
console.log("Phantom Argument: " + phantom.args[0]); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/****** Object: Table [dbo].[working_server] Script Date: 09/28/2013 17:34:01 ******/ | |
SET ANSI_NULLS ON | |
GO | |
SET QUOTED_IDENTIFIER ON | |
GO | |
SET ANSI_PADDING ON | |
GO | |
CREATE TABLE [dbo].[working_server]( | |
[starting_code] [bigint] NOT NULL, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
IF EXISTS(SELECT 1 FROM sys.Tables WHERE object_id = OBJECT_ID(N'dbo.working_server')) | |
AND NOT EXISTS (SELECT * FROM sys.columns WHERE object_id = OBJECT_ID(N'dbo.working_server') AND name = N'pkid') | |
BEGIN | |
ALTER TABLE working_server ADD pkid [bigint] IDENTITY(1,1) NOT NULL; | |
ALTER TABLE working_server ADD CONSTRAINT working_server_pk PRIMARY KEY CLUSTERED (pkid ASC) | |
END | |
GO |