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
<system.diagnostics> | |
<sources> | |
<source propagateActivity="true" name="System.ServiceModel" switchValue="Information,ActivityTracing"> | |
<listeners> | |
<add type="System.Diagnostics.DefaultTraceListener" name="Default"> | |
<filter type="" /> | |
</add> | |
<add name="ServiceModelTraceListener"> | |
<filter type="" /> | |
</add> |
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
delete from dbo.Appraisers | |
insert into dbo.Appraisers values(N'6D5BD3DA-D32D-4177-AFF2-0C5C96D84C81', N'9e4d3c0e-a5c7-4bc9-b8ce-c4027a476129', GETDATE()) | |
insert into dbo.Appraisers values(N'6A4D5575-8F2B-4425-9342-04493FB327C8', N'f4ef15d9-337b-4ff2-9e23-4ae202059d8d', GETDATE()) | |
insert into dbo.AppraiseeAssigments values(N'6D5BD3DA-D32D-4177-AFF2-0C5C96D84C81', N'd427963d-1e02-4208-925f-590b8d030929') | |
insert into dbo.AppraiseeAssigments values(N'6D5BD3DA-D32D-4177-AFF2-0C5C96D84C81', N'35e4a2d0-e57b-4691-8bdb-25d8baadfd09') | |
insert into dbo.AppraiseeAssigments values(N'6A4D5575-8F2B-4425-9342-04493FB327C8', N'40173880-ebe3-4397-8032-085272138216') |
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
$TOOLS = "D:\Tools" | |
$WIM_FILE = "C:\ISOs\install_win2008_r2_std_core.wim" | |
$IMG_INDEX = 1 | |
$VHD_FILE = "C:\VHD - DA\win2008r2_offline.vhd" | |
$VHD_SIZE = 20480 | |
$LETTER = "Z" | |
$MOUNT = "$($LETTER):" | |
$ANSWER_FILE = "c:\ISOs\win2008_r2_offline.xml" | |
$FEATURES = "NetFx2-ServerCore", | |
"IIS-WebServerRole", |
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 * from sys.objects where object_id = OBJECT_ID(N'dbo.sp_drop') and type in (N'P')) | |
DROP PROCEDURE sp_drop; | |
GO | |
CREATE PROCEDURE sp_drop | |
@type nvarchar(2), | |
@name nvarchar(200) | |
AS | |
BEGIN | |
set nocount on; |
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
<?xml version="1.0" encoding="utf-8"?> | |
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" | |
xmlns:msxsl="urn:schemas-microsoft-com:xslt" | |
exclude-result-prefixes="msxsl" | |
xmlns="http://www.w3.org/1999/xhtml" | |
xmlns:funcs="urn:funcs" | |
> | |
<xsl:output method="html" indent="yes"/> |
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
.nolist | |
.include "m128def.inc" | |
.list | |
.listmac | |
.DSEG | |
ram_tab: .byte 60 | |
.cseg | |
.org 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
ALTER PROCEDURE [dbo].[sp_reset_e360] | |
AS | |
DELETE FROM [dbo].[Tokens]; | |
DELETE FROM [dbo].[Answers]; | |
DELETE FROM [dbo].[Responses]; | |
DELETE FROM [dbo].[Requests]; | |
DELETE FROM [dbo].[Feedbacks]; | |
DELETE FROM [dbo].[Questions] FROM [dbo].[Questions] q INNER JOIN [dbo].[Questionnaires] qr ON q.QuestionnaireId = qr.Id WHERE qr.Title NOT LIKE '%**NO_DEL**%'; | |
DELETE FROM [dbo].[Questionnaires] WHERE Title NOT LIKE '%**NO_DEL**%'; |
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
#pragma once | |
#include "GK lab2.h" | |
#include <vector> | |
typedef Gdiplus::Point Point; | |
typedef std::pair<Point, Point> Line; | |
typedef std::vector<std::pair<Point, Point>> Lines; | |
enum FlagEnum {kNon = 0, kLeft = 1, kRight = 2, kDown = 4, kUp = 8}; |
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
#pragma once | |
#include "GDI+ image.h" | |
typedef boost::gil::bgr8_pixel_t Pixel; | |
typedef boost::gil::bgr8_view_t View; | |
typedef boost::gil::bgr8c_view_t ViewReadOnly; | |
typedef boost::gil::bgr8_view_t::x_iterator Iterator_X; | |
typedef boost::gil::bgr8_view_t::y_iterator Iterator_Y; |
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 <stdio.h> | |
#include <limits.h> | |
#include "pvm3.h" | |
#define COLS 4 | |
#define ROWS 4 | |
#define MSG_INIT 100 | |
#define MSG_RESPONSE 200 | |
#define MSG_DATA 300 |
OlderNewer