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 timecode_from_offset (nokogiri_doc, pos_in_secs, in_point_utc) | |
utc_result = in_point_utc | |
video_el = nokogiri_doc.search('video').first | |
c_els = video_el.css('c') | |
final_c_els = [] | |
total_seconds = pos_in_secs | |
c_els.each do |c_el| | |
end_of_c_utc = DateTime.parse(c_el['end']) | |
if end_of_c_utc > in_point_utc |
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"); |
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 |
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
/* Scroll to the bottom of https://twitter.com/following | |
Open the Console and run the following | |
*/ | |
$('.ProfileCard-content').each(function(){var status = $(this).find('.FollowStatus').text();var unfollowButton = $(this).find('.user-actions-follow-button');if(status != 'follows you'){unfollowButton.click();}}); |
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> |
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 IISExpress | |
{ | |
private static readonly List<string> sites = new List<string>(); | |
private static readonly List<string> paths = new List<string>(); | |
public static void StartIISExpress(string site, int port = 7329) | |
{ | |
if(!sites.Contains(site.ToLower())) | |
sites.Add(site.ToLower()); | |
else return; |
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
<#@ template language="C#" debug="true" hostSpecific="true" #> | |
<#@ output extension=".cs" #> | |
<#@ Assembly Name="System.Core.dll" #> | |
<#@ assembly name="EnvDTE" #> | |
<#@ Assembly Name="System.Windows.Forms.dll" #> | |
<#@ Assembly name="System.Configuration"#> | |
<#@ import namespace="System" #> | |
<#@ import namespace="System.IO" #> | |
<#@ import namespace="System.Diagnostics" #> | |
<#@ import namespace="System.Linq" #> |
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 virtual ActionResult PdfDownloadTravel() | |
{ | |
var reader = new PdfReader(Server.MapPath("~/pdf/travel_insurance_card.pdf")); | |
var outputPdfStream = new MemoryStream(); | |
var stamper = new PdfStamper(reader, outputPdfStream) { FormFlattening = true, FreeTextFlattening=true }; | |
var form = stamper.AcroFields; | |
form.SetField("Name", ""); | |
form.SetField("number", "500-0000324"); |
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; |
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()); |
NewerOlder