Skip to content

Instantly share code, notes, and snippets.

View janv8000's full-sized avatar
🦔

Jan Verhaeghe janv8000

🦔
View GitHub Profile

Keybase proof

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:

<TestFixture()>
Public Class StackOverflowQuestion6556077Test
Private _originalList As Record()
Private Class Record
Public Country As String
Public CountryID As Integer
End Class
<SetUp>
@janv8000
janv8000 / CustomRules.js
Created February 13, 2014 10:00
Hide BrowserLink requests in Fiddler
// 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";
}
@janv8000
janv8000 / gist:5909585
Created July 2, 2013 14:05
Run Windows 8.1 preview in VirtualBox
<ExtraDataItem name="VBoxInternal/CPUM/CMPXCHG16B" value="1"/>
@janv8000
janv8000 / gist:5003189
Created February 21, 2013 08:28
QueryNullableHasValue test for RavenDB
using System;
using System.Linq;
using Xunit;
namespace Raven.Tests.Bugs
{
public class QueryNullableHasValue : RavenTest
{
[Fact]
public void CanQueryWithNullComparison()