I hereby claim:
- I am NickJosevski on github.
- I am nickjosevski (https://keybase.io/nickjosevski) on keybase.
- I have a public key whose fingerprint is 10C1 1301 4FA9 EAD5 7752 A6A2 E52B 0ADD 1554 99B8
To claim this, I am signing this object:
@echo off | |
setlocal EnableDelayedExpansion | |
set U2DCheckVerbosity=1 | |
set BatchFile=%0 | |
if not exist "%VS150COMNTOOLS%" ( | |
echo This script needs to be run from an elevated Visual Studio 2017 developer command prompt. | |
exit /b 1 | |
) |
using System.Net; | |
public class Input | |
{ | |
public string Guid {get;set;} | |
public string UsedBy { get;set;} | |
} | |
public static async Task<HttpResponseMessage> | |
Run(HttpRequestMessage req, TraceWriter log) |
public class FSharpOptionConverter : JsonConverter | |
{ | |
private static MethodInfo _getInnerValue = typeof (FSharpOptionConverter).GetMethod("GetInnerValue", | |
BindingFlags.Instance | | |
BindingFlags.NonPublic); | |
public override void WriteJson(JsonWriter writer, object value, JsonSerializer serializer) | |
{ | |
if (value != null) | |
{ | |
var optionValueType = value.GetType().GetGenericArguments().Single(); |
I hereby claim:
To claim this, I am signing this object:
public class FSharpOptionObjectMapper : IObjectMapper | |
{ | |
public object Map(ResolutionContext context, IMappingEngineRunner mapper) | |
{ | |
var sourceValue = ((dynamic) context.SourceValue); | |
return (sourceValue == null || OptionModule.IsNone(sourceValue)) ? null : sourceValue.Value; | |
} | |
public bool IsMatch(ResolutionContext context) |
SET @rows = 5 --default | |
IF @purgeDate is NULL SET @purgeDate=getdate() | |
-- Only execute if there is work to do and continue | |
-- until all records with a PurgeDate <= now are deleted | |
WHILE EXISTS(SELECT * FROM WorkItemStatus WHERE PurgeDate <= @purgeDate) | |
BEGIN |
# <reference path="jquery-1.8.0.min.js" /> | |
# from: https:#gist.github.com/1039247 | |
### | |
* jQuery.ajaxQueue - A queue for ajax requests | |
* | |
* (c) 2011 Corey Frang | |
* Dual licensed under the MIT and GPL licenses. | |
* | |
* Requires jQuery 1.5+ |
Ever wondered if that that GUID you're about to use has already been consumed?
No.
Well you should. Check the twitter feed - twitter.com/UsedGuid, and start reporting your usage of GUIDs. It's the right thing to do.
Throw away those old paper based systems.
protected bool Equals(MyClass other) | |
{ | |
return Equals(Id, other.Id) && Equals(Name, other.Name) && Equals(Desc, other.Desc); | |
} | |
public override bool Equals(object obj) | |
{ | |
if (ReferenceEquals(null, obj)) | |
{ | |
return false; |