View program.cs
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
Content2 is represented as name in the Json, event if it's ToString returns null. Tried SerializeFn to. |
View NHibernateUserAuthRepository.cs
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Text.RegularExpressions; | |
using System.Globalization; | |
using ServiceStack.ServiceInterface.Auth; | |
using ServiceStack.Common; | |
using NHibernate; |
View AzureCacheClient.cs
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
using System; | |
using System.Collections.Generic; | |
using Elmah; | |
using Microsoft.ApplicationServer.Caching; | |
using ServiceStack.CacheAccess; | |
namespace BusinessLogic | |
{ | |
public class AzureCacheClient : ICacheClient | |
{ |
View BinarySerializedTests.cs
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
using System; | |
using System.Text; | |
using NUnit.Framework; | |
using ServiceStack.Plugins.ProtoBuf; | |
using ServiceStack.ServiceClient.Web; | |
using ServiceStack.Text; | |
namespace ServiceStack.WebHost.IntegrationTests.Tests | |
{ | |
[TestFixture] |
View gist:3829524
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
using System; | |
using System.Collections.Generic; | |
using System.Security.Cryptography; | |
using ServiceStack.Text; | |
namespace FragLabs.VOIP.Common.DTOs | |
{ | |
/// <summary> | |
/// Base class for DTOs that must be securely signed using the RSA algorithm. | |
/// </summary> |
View WagStackAsyncRepository.cs
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
/* WagStack | |
* | |
* TPL Async DAL using ServiceStack's Expression/SQL Building | |
* and Insight.Database's async features | |
*/ | |
public class WagStackAsyncRepository<T>:IAsyncRepository<T> | |
{ | |
static WagStackAsyncRepository() |
View gist:5664860
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
var domain = Thread.GetDomain(); // or AppDomain.Current | |
domain.SetData(".appDomain", "yep"); | |
domain.SetData(".appVPath", "/"); | |
domain.SetData(".appPath", domain.BaseDirectory); | |
if (String.IsNullOrWhiteSpace(domain.GetData(".appId") as string)) | |
{ | |
domain.SetData(".appId", "1"); | |
} | |
if (String.IsNullOrWhiteSpace(domain.GetData(".domainId") as string)) | |
{ |
View snk.ps
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
exec { & $tools_dir\ildasm.exe /NOBAR /OUT="$dist_dir\net40\AutoMapper.il" "$dist_dir\net40-un\AutoMapper.dll" } | |
exec { & $framework_dir\ilasm.exe /QUIET /KEY="$source_dir\AutoMapper.snk" /DLL="$dist_dir\net40\AutoMapper.dll" /RESOURCE="$dist_dir\net40\AutoMapper.res" "$dist_dir\net40\AutoMapper.il" } |
View gist:6136198
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
#1 JavaScript | |
#2 Ruby | |
#3 Java | |
#4 Shell | |
#5 Python | |
#6 PHP | |
#7 C | |
#8 C++ | |
#9 Perl | |
#10 CoffeeScript |
View gist:3932768
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
Redisconf Notes: | |
"We will begin this morning with a performance" | |
"Is this a key store..." Bohemian Rhapsody Key/Value Store ballad. Epic Win! | |
"Any way the data flows doesn't really matter to me... flushdb..." | |
"Lua killed a db by writing after calling a nondeterministic function..." | |
"Got to leave SQL behind and face the truth..." | |
"Redis, I don't want to join, sometimes I wish I'd never described a query..." | |
"The ZSET has some data set aside for me, for me, for MEEEEEEE" |
OlderNewer