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
public class Blog | |
{ | |
public virtual int Id { get; set; } | |
public virtual bool AllowsComments { get; set; } | |
public virtual string Title { get; set; } | |
public virtual string Subtitle { get; set; } | |
public virtual DateTime CreatedAt { get; set; } | |
} |
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
public class BlogMap : ClassMap<Blog> | |
{ | |
public BlogMap() | |
{ | |
Id(x => x.Id).GeneratedBy.Identity(); | |
Map(x => x.Title); | |
Map(x => x.Subtitle); | |
Map(x => x.AllowsComments); | |
Map(x => x.CreatedAt); | |
} |
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
public class InMemoryDatabaseTest : IDisposable | |
{ | |
private static Configuration _configuration; | |
private static ISessionFactory _sessionFactory; | |
protected ISession _session; | |
public InMemoryDatabaseTest(Assembly assemblyContainingMappedType) | |
{ | |
if (_configuration == null) | |
_sessionFactory = CreateSessionFactory(assemblyContainingMappedType); |
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
[TestFixture] | |
public class BlogTests : InMemoryDatabaseTest | |
{ | |
public BlogTests() : base(typeof(Blog).Assembly) | |
{ | |
} | |
[Test] | |
public void Can_save_and_load_blog() | |
{ |
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
[Enum]::GetNames([System.ConsoleColor]) | | |
foreach { | |
$foregroundColor = $_ | |
$backgroundColor = 'Black' | |
if ($_ -eq 'Black') { | |
$backgroundColor = 'White' | |
} | |
Write-Host -foregroundcolor $foregroundColor -backgroundColor $backgroundColor $foregroundColor |
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
# NOTE: Only worked for DevLink 2013 | |
$agenda = Invoke-RestMethod http://www.devlink.net/agenda.json | |
$speakers = Invoke-RestMethod http://www.devlink.net/speakers.json | |
$location = Invoke-RestMethod http://www.devlink.net/api/info/locations.json | |
$fullAgenda = $agenda | foreach { | |
# normalize the times to be datetime types | |
$startTime = ([DateTimeOffset]::Parse($_.start_time)).DateTime | |
$endTime = ([DateTimeOffset]::Parse($_.end_time)).DateTime |
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 data = "<Conversations>" + | |
"<Conversation id=\"ConvTest1\">" + | |
"<StartingStatementId>1</StartingStatementId>" + | |
"<Description>Some description 1</Description>" + | |
"</Conversation>" + | |
"<Conversation id=\"ConvTest2\">" + | |
"<StartingStatementId>2</StartingStatementId>" + | |
"<Description>Some description 2</Description>" + | |
"</Conversation>" + | |
"</Conversations>" |
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
<?xml version="1.0"?> | |
<root> | |
<appdef> | |
<appname>PARALLELS</appname> | |
<equal>com.parallels.desktop.console</equal> | |
</appdef> | |
<devicevendordef> | |
<vendorname>MICROSOFT</vendorname> | |
<vendorid>0x045e</vendorid> |
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
// Playground - noun: a place where people can play | |
import SWXMLHash | |
import UIKit | |
let xmlWithNamespace = "<root xmlns:h=\"http://www.w3.org/TR/html4/\"" + | |
" xmlns:f=\"http://www.w3schools.com/furniture\">" + | |
" <h:table>" + | |
" <h:tr>" + | |
" <h:td>Apples</h:td>" + |
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
<# | |
.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. |
OlderNewer