View gist:fb5dd88838b57ca27107
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
public class HashedUrl | |
{ | |
private readonly string _secretKey; | |
private readonly string _urlToHash; | |
private readonly DateTime _startDate; | |
private readonly DateTime _endDate; | |
/// <summary> | |
/// Hash a url | |
/// </summary> |
View MouseEnterIntent.cs
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
public class MouseEnterIntent | |
{ | |
public static readonly DependencyProperty CommandProperty = | |
DependencyProperty.RegisterAttached("Command", typeof(ICommand), typeof(MouseEnterIntent), new PropertyMetadata(OnSetCommandCallback)); | |
public static readonly DependencyProperty CommandParameterProperty = | |
DependencyProperty.RegisterAttached("CommandParameter", typeof(object), typeof(MouseEnterIntent), new PropertyMetadata(OnSetCommandParameterCallback)); | |
public static readonly DependencyProperty MouseEnterIntentCommandBehaviorProperty = | |
DependencyProperty.RegisterAttached("HoverIntentCommandBehavior", typeof(MouseEnterIntentCommandBehavior), typeof(MouseEnterIntent), null); |
View CommandHandlerFactory.cs
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
[Export(typeof(ICommandHandlerFactory))] | |
public class CommandHandlerFactory : ICommandHandlerFactory | |
{ | |
private readonly IEnumerable<ICommandHandler> _commandHandlers; | |
[ImportingConstructor] | |
public CommandHandlerFactory([ImportMany]IEnumerable<ICommandHandler> commandHandlers) | |
{ | |
_commandHandlers = commandHandlers; | |
} |
View DragOverControlToCommandBehavior.cs
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
public class DragOverControlToCommandBehavior : CommandBehaviorBase<Control> | |
{ | |
public DragOverControlToCommandBehavior(Control element) | |
: base(element) | |
{ | |
element.AllowDrop = true; | |
element.DragOver += ElementDragOver; | |
} | |
private void ElementDragOver(object sender, DragEventArgs e) |
View LogInterceptor.cs
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
public class LogInterceptor : IInterceptor | |
{ | |
public void Intercept(IInvocation invocation) | |
{ | |
if(invocation.TargetType.GetCustomAttributes(typeof(LogMethodCallsAttribute), true).Length > 0) | |
{ | |
var loggerFacade = MefInstanceProvider.Container.GetExportedValue<ILoggerFacade>(); | |
loggerFacade.Log(FormatMethodCall(invocation, ApplicationStates.Started), Category.Info, Priority.Low); | |
invocation.Proceed(); |
View Literal.cs
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
public static class Literal | |
{ | |
private static string GetMemberName(Expression expression) | |
{ | |
switch (expression.NodeType) | |
{ | |
case ExpressionType.MemberAccess: | |
var memberExpression = (MemberExpression)expression; | |
var supername = GetMemberName(memberExpression.Expression); |
View UnitOfWorkBehaviorAttribute.cs
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
public class UnitOfWorkBehaviorAttribute : Attribute, IContractBehavior, IContractBehaviorAttribute | |
{ | |
public void Validate(ContractDescription contractDescription, ServiceEndpoint endpoint) | |
{ } | |
public void ApplyDispatchBehavior(ContractDescription contractDescription, ServiceEndpoint endpoint, DispatchRuntime dispatchRuntime) | |
{ | |
foreach(var operation in dispatchRuntime.EndpointDispatcher.DispatchRuntime.Operations) | |
{ | |
operation.CallContextInitializers.Add(new PCMUnitOfWorkCallContextInitializer()); |
View gist:3917111
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
namespace MSTestContrib.Specifications | |
{ | |
public static class BDDExtensions | |
{ | |
public static ThenGrammar Then(this WhenGrammar whenGrammar, string description, Action<SpecificationContext> implementation) | |
{ | |
Func<SpecificationContext, bool> implementationWithReturnTrue = (x) => | |
{ | |
implementation(x); | |
return true; |
View offset_from_timecode.rb
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
def offset_from_timecode (nokogiri_doc, start_pos_utc, in_point_utc) | |
video_el = nokogiri_doc.search('video').first | |
c_els = video_el.css('c') | |
final_c_els = [] | |
total_seconds = 0 | |
start_pos_time = Time.parse(start_pos_utc.to_s) | |
c_els.each do |c_el| | |
end_of_c_utc = DateTime.parse(c_el['end']) | |
final_c_els << c_el if end_of_c_utc > in_point_utc |
View OffsetFromTimecode.cs
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
public double GetOffsetFromTimecode(Guid eventId, DateTime startPos, DateTime inPoint) | |
{ | |
startPos = startPos.ToUniversalTime(); | |
inPoint = inPoint.ToUniversalTime(); | |
var ismUrl = _configuration.GenerateIsmStreamUrl(eventId); | |
var streamUrl = ismUrl + "/archive"; | |
var doc = XDocument.Load(streamUrl); | |
var videoEl = doc.Descendants().First(x => x.Name.LocalName == "video"); |
OlderNewer