I hereby claim:
- I am janv8000 on github.
- I am janv8000 (https://keybase.io/janv8000) on keybase.
- I have a public key whose fingerprint is D148 7CE2 876B 2BDF 47BA 4E7A F2EA B361 5DC1 4D8C
To claim this, I am signing this object:
using System; | |
using System.Linq; | |
using Xunit; | |
namespace Raven.Tests.Bugs | |
{ | |
public class QueryNullableHasValue : RavenTest | |
{ | |
[Fact] | |
public void CanQueryWithNullComparison() |
<ExtraDataItem name="VBoxInternal/CPUM/CMPXCHG16B" value="1"/> |
// First add the option in the Rules menu: | |
// Add these lines after the other options (m_Japanese ...) | |
// Enables hiding of VS2013 BrowserLink feature requests | |
public static RulesOption("Hide SignalR/BrowserLink") | |
var m_SignalRBrowserLink: boolean = false; | |
// Add the following at the end of OnBeforeRequest | |
if (m_SignalRBrowserLink && (oSession.uriContains("SignalR") || oSession.uriContains("__BrowserLink") || oSession.oRequest.headers.RequestPath.EndsWith("/browserLink"))){ | |
oSession["ui-hide"] = "SignalR"; | |
} |
<TestFixture()> | |
Public Class StackOverflowQuestion6556077Test | |
Private _originalList As Record() | |
Private Class Record | |
Public Country As String | |
Public CountryID As Integer | |
End Class | |
<SetUp> |
I hereby claim:
To claim this, I am signing this object:
/// <remarks>Part of Microsoft.AspNet.Web.Optimization.1.1.3, forked to ignore data-uri</remarks> | |
public class CssRewriteUrlTransformIgnoringDataUri : IItemTransform | |
{ | |
internal static string RebaseUrlToAbsolute(string baseUrl, string url) | |
{ | |
if (string.IsNullOrWhiteSpace(url) || string.IsNullOrWhiteSpace(baseUrl) || url.StartsWith("/", StringComparison.OrdinalIgnoreCase)) | |
return url; | |
if (!baseUrl.EndsWith("/", StringComparison.OrdinalIgnoreCase)) | |
baseUrl = baseUrl + "/"; | |
return VirtualPathUtility.ToAbsolute(baseUrl + url); |
public interface IAsyncRunner | |
{ | |
void Run<T>(Action<T> action); | |
} | |
public class AsyncRunner : IAsyncRunner | |
{ | |
public ILifetimeScope LifetimeScope { get; set; } | |
public AsyncRunner(ILifetimeScope lifetimeScope) |
git config --global core.editor notepad.exe | |
git config -–global -e | |
en dan ergens | |
[core] | |
editor = 'C:/Program Files (x86)/Notepad++/notepad++.exe' -multiInst -notabbar -nosession –noPlugin |
<# | |
.Synopsis | |
Returns the install .NET Framework versions. | |
.Description | |
The script looks through the registry using the notes from the below | |
MSDN links to determine which versions of .NET are installed. |
public class DatabaseDeleter | |
{ | |
private readonly ISessionFactory _configuration; | |
private static readonly string[] _ignoredTables = new[] { "sysdiagrams", "usd_AppliedDatabaseScript" }; | |
private static string[] _tablesToDelete; | |
private static string _deleteSql; | |
private static object _lockObj = new object(); | |
private static bool _initialized; | |
public DatabaseDeleter(ISessionFactory sessionSource) |