Your markdown heading here
This file contains 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
(([!#-'*+/-9=?A-Z^-~-]+(\.[!#-'*+/-9=?A-Z^-~-]+)*)@([!#-'*+/-9=?A-Z^-~-]+(\.[!#-'*+/-9=?A-Z^-~-]+)*|\[[\t -Z^-~]*])) |
This file contains 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 SCHEMA_NAME(A.schema_id) + '.' + A.Name, AVG(B.rows) AS 'RowCount' | |
FROM sys.objects A | |
INNER JOIN sys.partitions B ON A.object_id = B.object_id | |
WHERE A.type = 'U' | |
GROUP BY A.schema_id, A.Name | |
--ORDER BY AVG(B.rows) DESC |
This file contains 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 System.Runtime.CompilerServices; | |
[assembly: InternalsVisibleTo("UnitTests")] |
This file contains 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 System; | |
using System.Collections.Generic; | |
public class Program | |
{ | |
public static void Main() | |
{ | |
Console.WriteLine("Hello World"); | |
var mixed = new List<bool> {true, false, true, false}; |
This file contains 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
C:\Windows\System32\runas.exe /user:DOMAIN\First.Last /savecred "cmd /c \"start foobar.exe\"" | |
C:\Windows\System32\runas.exe /user:DOMAIN\First.Last /savecred "C:\Program Files (x86)\foobar.exe" | |
C:\Windows\System32\runas.exe /user:DOMAIN\First.Last /savecred "C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\Common7\IDE\devenv.exe" |
This file contains 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
//Debug code (pause for 3 secs) | |
await new Promise(resolve => setTimeout(resolve, 3000)); |
2018-06-12
To see all commits for this version, click here.
This file contains 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
//GET: | |
var client = new RestClient("192.168.0.1"); | |
var request = new RestRequest("api/item/", Method.GET); | |
var queryResult = client.Execute<List<Items>>(request).Data; | |
//POST: | |
var client = new RestClient("http://192.168.0.1"); | |
var request = new RestRequest("api/item/", Method.POST); | |
request.RequestFormat = DataFormat.Json; | |
request.AddBody(new Item |
NewerOlder