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
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
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
| /* | |
| Script for copying data between databases | |
| Howto: | |
| * Duplicate your database schema, but with all the FK constraints and identity specs removed (see below). | |
| * Update the config at the top of this file. | |
| * Connect to the target database. | |
| * Run this script. |
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
| SELECT | |
| SERVERPROPERTY('ProductLevel') AS ProductLevel, | |
| SERVERPROPERTY('ProductUpdateLevel') AS ProductUpdateLevel, | |
| SERVERPROPERTY('ProductBuildType') AS ProductBuildType, | |
| SERVERPROPERTY('ProductUpdateReference') AS ProductUpdateReference, | |
| SERVERPROPERTY('ProductVersion') AS ProductVersion, | |
| SERVERPROPERTY('ProductMajorVersion') AS ProductMajorVersion, | |
| SERVERPROPERTY('ProductMinorVersion') AS ProductMinorVersion, | |
| SERVERPROPERTY('ProductBuild') AS ProductBuild | |
| 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
| <?xml version="1.0" encoding="utf-8"?> | |
| <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
| <Target Name="WhereAmI"> | |
| <Message Text=" Here I Am " /> | |
| <Exec Command="dir ." /> | |
| <Message Text=" " /> | |
| </Target> | |