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
| @echo off installing the sweet goodness : Chocolatey | |
| @powershell -NoProfile -ExecutionPolicy unrestricted -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%systemdrive%\chocolatey\bin | |
| '------------------------ usual user programs ---------------------- | |
| @echo installing usual user stuff | |
| @echo VLC player : something to watch movies with | |
| cinst vlc |
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
| [AttributeUsage(AttributeTargets.Property, AllowMultiple = false, Inherited = true)] | |
| public class ParseObjectMemberAttribute : Attribute | |
| { | |
| public string Key { get; private set; } | |
| public ParseObjectMemberAttribute() : this(null) | |
| { | |
| } | |
| public ParseObjectMemberAttribute(string key = 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
| BEGIN | |
| CREATE TABLE #TempTable(ID INT null); | |
| INSERT INTO #TempTable exec sp_executesql N'SELECT 1' | |
| SELECT * FROM #TempTable | |