- Dell Precision T5810
- Intel Xeon E5-1650 v3 (3.8GHz, 12 threads)
- 32GB (1x32GB) DDR4-2133 ECC RAM
- 512GB M.2 (PCI Express) SSD (Samsung SSD 950 Pro)
- 2x1TB HDD
- APC BR1500LCDI, Back-UPS RS
- nVidia Quadro K2200 (2xDisplayPort 1.2)
- nVidia Quadro K620 (1xDisplayPort 1.2)
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
#gist 0dca8b3a74958f82406a | |
var pinger = new Pinger(); | |
pinger.Ping(); | |
Console.WriteLine("done!"); |
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
C:\code\Particular\NServiceBus.RabbitMQ-Issue-102\Sample\bin\Debug [master]> .\Sample.exe | |
2015-10-05 18:17:18.520 INFO DefaultFactory Logging to 'C:\code\Particular\NServiceBus.RabbitMQ-Issue-102\Sample\bin\Debug\' with level Info | |
2015-10-05 18:17:18.565 INFO NServiceBus.Persistence.PersistenceStartup Activating persistence 'InMemoryPersistence' to provide storage for 'NServiceBus.Persistence.StorageType+Sagas' storage. | |
2015-10-05 18:17:18.587 INFO NServiceBus.Persistence.PersistenceStartup Activating persistence 'InMemoryPersistence' to provide storage for 'NServiceBus.Persistence.StorageType+Timeouts' storage. | |
2015-10-05 18:17:18.607 INFO NServiceBus.Persistence.PersistenceStartup Activating persistence 'InMemoryPersistence' to provide storage for 'NServiceBus.Persistence.StorageType+Subscriptions' storage. | |
2015-10-05 18:17:18.626 INFO NServiceBus.Persistence.PersistenceStartup Activating persistence 'InMemoryPersistence' to provide storage for 'NServiceBus.Persistence.StorageType+Outbox' storage. | |
2015 |
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
[Fact] | |
public async Task SillyTest() | |
{ | |
var foo = await Foo(); | |
var task = SomeMockMethodOrWhateverWhichReturnsATaskWhichNeverCompletes(); | |
return task; | |
} |
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
Config.WebGreeting = "Hello World from web!"; | |
Config.WebValediction = "Goodbye World from web!"; |
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
#!/usr/bin/env bash | |
# options | |
set -e | |
set -o pipefail | |
set -x | |
# determine cache dir | |
if [ -z $XDG_DATA_HOME ]; then | |
NUGET_CACHE_DIR=$HOME/.local/share |
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
Running '"./.resharper/inspectcode.exe" --profile=./src/NServiceBus.RabbitMQ.sln.DotSettings --output=./src/NServiceBus.RabbitMQ.sln.inspections.xml ./src/NServiceBus.RabbitMQ.sln'... | |
JetBrains Inspect Code 2016.2.2 | |
Running in 64-bit mode, .NET runtime 4.0.30319.42000 under Microsoft Windows NT 6.2.9200.0 | |
Custom settings layer is mounted. Used file C:\code\Particular\NServiceBus.RabbitMQ\src\NServiceBus.RabbitMQ.sln.DotSettings | |
Asking for writer lock unexpected. File changes: | |
--- EXCEPTION #1/1 [LoggerException] | |
Message = "Asking for writer lock unexpected. File changes:" | |
ExceptionPath = Root | |
ClassName = JetBrains.Util.LoggerException |
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 HashBus.DeDup | |
{ | |
using System; | |
using System.Linq; | |
using System.Threading.Tasks; | |
using HashBus.ReadModel; | |
using HashBus.ReadModel.MongoDB; | |
using MongoDB.Driver; | |
class Program |
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
<Query Kind="Statements"> | |
<NuGetReference>Xabe.FFmpeg</NuGetReference> | |
<Namespace>Xabe.FFmpeg</Namespace> | |
</Query> | |
Util.AutoScrollResults = true; | |
FFbase.FFmpegDir = @"C:\ffmpeg-3.3.3-win64-static\bin"; | |
Directory.EnumerateFiles(@"C:\vids") |
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
<Query Kind="Statements"> | |
<NuGetReference>Humanizer</NuGetReference> | |
<NuGetReference>Octokit</NuGetReference> | |
<Namespace>Humanizer</Namespace> | |
<Namespace>Octokit</Namespace> | |
<Namespace>Octokit.Internal</Namespace> | |
<Namespace>System.Threading.Tasks</Namespace> | |
</Query> | |
// I wrote this script to help me find out where my NuGet packages are being used. |