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
$header = "date", "time", "method", "uri", "uriQuery", "username", "userAgent", "referer", "status", "substatus", "timeTaken" | |
Get-ChildItem | Get-Content | ConvertFrom-Csv -Delimiter " " -Header $header |
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
* DI --> ActionSelector | |
* FormatFilter |
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
http://rusanu.com/2014/02/24/how-to-analyse-sql-server-performance/ | |
White Papers: | |
Waits and Queues White-Paper (2005) http://technet.microsoft.com/en-us/library/cc966413.aspx | |
Waits and Queues after 2005 - http://msdn.microsoft.com/en-us/library/ms179984.aspx | |
sys.dm_exec_requests What is executing right now | |
sys.dm_os_waiting_tasks Currently waiting tasks | |
sys.dm_os_wait_stats Aggregated statistics about all wait types | |
sys.dm_exec_query_stats runtime execution statistics for most queries |
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
using FluentKinect; | |
using Kinect.Reactive; | |
using Microsoft.Kinect; | |
using Microsoft.Kinect.Toolkit.Interaction; | |
using System; | |
using System.ComponentModel; | |
using System.Linq; | |
using System.Reactive.Linq; | |
using System.Threading.Tasks; | |
using System.Windows; |
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
// this code can be called after initialization of the MainWindow | |
// Get a kinect instance with started SkeletonStream and DepthStream | |
var kinect = await KinectConnector.GetKinect(); | |
kinect.KickStart(); | |
// instantiate an object that implements IInteractionClient | |
var interactionClient = new InteractionClient(); | |
// method is available through Kinect.Reactive |