This file contains hidden or 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
<?xml version="1.0" encoding="utf-8"?> | |
<!-- Last updated 15.05.2012 --> | |
<Patterns xmlns="urn:shemas-jetbrains-com:member-reordering-patterns"> | |
<!-- Do not reorder COM interfaces --> | |
<Pattern> | |
<Match> | |
<And Weight="2000"> | |
<Kind Is="interface"/> | |
<Or> |
This file contains hidden or 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 CommandHandlersModule : NinjectModule | |
{ | |
public override void Load() | |
{ | |
this.Kernel.Bind( | |
x => | |
x.FromAssembliesMatching("WordWatch.*") | |
.SelectAllClasses() | |
.InheritedFrom(typeof(ICommandHandler<>)) | |
.BindAllInterfaces()); |
This file contains hidden or 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
if(expectedVersion == ExpectedVersion.NoStream) | |
{ | |
using(var tx = _connection.BeginTransaction(IsolationLevel.Serializable)) | |
{ | |
int streamIdInternal = -1; | |
using( | |
var command = | |
new NpgsqlCommand( | |
"INSERT INTO streams(id, id_original) VALUES (:stream_id, :stream_id_original) RETURNING id_internal;") | |
) |
This file contains hidden or 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 SomeFixture : IDisposable | |
{ | |
private DockerClient client; | |
public SomeFixture() | |
{ | |
Console.WriteLine("SomeFixture ctor: This should only be run once"); | |
//Using https://github.com/ahmetalpbalkan/Docker.DotNet | |
This file contains hidden or 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
using System; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.Linq; | |
using System.Reflection; | |
using ServiceStack.Net30.Collections.Concurrent; | |
/// <summary> |
This file contains hidden or 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 Indexer | |
{ | |
private Dictionary<string, List<string>> termToIds = | |
new Dictionary<string, List<string>>(StringComparer.OrdinalIgnoreCase); | |
private Dictionary<string, List<string>> idToTerms = | |
new Dictionary<string, List<string>>(StringComparer.OrdinalIgnoreCase); | |
public void Index(string docId, string text) | |
{ |
This file contains hidden or 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 Global : System.Web.HttpApplication | |
{ | |
private readonly string connectionString = ConfigurationManager.ConnectionStrings["teamCity"].ConnectionString; | |
protected void Application_Start(object sender, EventArgs e) | |
{ | |
} | |
protected void Session_Start(object sender, EventArgs e) |
This file contains hidden or 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
/****** Object: Index [IX_Commits_Ordered] Script Date: 11/28/2014 11:59:00 ******/ | |
CREATE NONCLUSTERED INDEX [IX_Commits_Ordered] ON [dbo].[Commits] | |
( | |
[CommitSequence] ASC, | |
[StreamId] ASC, | |
[StreamRevision] ASC | |
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, IGNORE_DUP_KEY = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = OFF, ALLOW_PAGE_LOCKS = OFF) ON [PRIMARY] | |
GO |
This file contains hidden or 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 Infrastructure | |
{ | |
using System; | |
using System.Globalization; | |
using System.IO; | |
using System.Linq; | |
using Nancy; | |
using Util; |
This file contains hidden or 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 WordWatch.Server.Api | |
{ | |
using System; | |
using System.IO; | |
using System.IO.Abstractions; | |
using Nancy; | |
using Nancy.Helpers; | |
using Nancy.Responses; |