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
CREATE DATABASE VirtualClass | |
go | |
USE VirtualClass | |
GO | |
CREATE SCHEMA academic | |
GO | |
CREATE SCHEMA content | |
GO | |
CREATE SCHEMA management | |
Go |
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
CREATE DATABASE VirtualClass | |
go | |
USE VirtualClass | |
GO | |
CREATE SCHEMA academic | |
GO | |
CREATE SCHEMA content | |
GO | |
CREATE SCHEMA management | |
Go |
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
CREATE DATABASE NewsPortal | |
go | |
use NewsPortal | |
go | |
CREATE SCHEMA content | |
go | |
CREATE SCHEMA members | |
go | |
CREATE SCHEMA management | |
go |
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
CREATE DATABASE NewsPortal | |
go | |
use NewsPortal | |
go | |
CREATE SCHEMA content | |
go | |
CREATE SCHEMA members | |
go | |
CREATE SCHEMA management | |
go |
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
CREATE DATABASE NewsPortal | |
go | |
use NewsPortal | |
go | |
CREATE SCHEMA content | |
go | |
CREATE SCHEMA members | |
go | |
CREATE SCHEMA management | |
go |
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
CREATE DATABASE NewsPortal | |
go | |
use NewsPortal | |
go | |
CREATE SCHEMA content | |
go | |
CREATE SCHEMA members | |
go | |
CREATE SCHEMA management | |
go |
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
CREATE DATABASE NewsPortal | |
go | |
USE [master] | |
GO | |
CREATE LOGIN [Admin] WITH PASSWORD='1234', DEFAULT_DATABASE=[VirtualClass], DEFAULT_LANGUAGE=[us_english], CHECK_EXPIRATION=OFF, CHECK_POLICY=OFF | |
GO | |
ALTER LOGIN [Admin] DISABLE | |
GO |
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
CREATE DATABASE VirtualClass | |
go | |
GO | |
USE [master] | |
GO | |
CREATE LOGIN [Admin] WITH PASSWORD='1234', DEFAULT_DATABASE=[VirtualClass], DEFAULT_LANGUAGE=[us_english], CHECK_EXPIRATION=OFF, CHECK_POLICY=OFF | |
GO |
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
var Drone = require('./Drone'); | |
var Player = require('./Broadway/Player/Player'); | |
var stream = Drone.getVideoStream(); | |
var player = new Player({ | |
useWorker: true, | |
workerFile: './lib/Broadway/Player/Decoder.js' | |
}); | |
document.body.appendChild(player.canvas); |
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
#include <iostream> | |
template <class Type> | |
struct node | |
{ | |
Type info; | |
int indexX; | |
int indexY; | |
node<Type> *link; | |
}; |
OlderNewer