- Download latest 6.x RavenDB Server: https://ravendb.net/download
- Install as Windows service
- Open RavenDB Studio http://localhost:8080/studio/index.html
- Add the
RavenLicense.json
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" encoding="utf-8" ?> | |
<!-- | |
ServiceControl audit trace logging but excluding very chatty loggers which should use Trace/Verbose log level but | |
that log level is not available in NServiceBus.Logging.... | |
Also uses UTC as time reference | |
See https://docs.particular.net/servicecontrol/logging#customize-logging | |
--> | |
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
Drive | Storage type | Size (GiB) | Max IOPS | Max throughput (MBps) | Encryption | Host caching |
---|---|---|---|---|---|---|
C: | Premium SSD LRS | 127 | 500 | 100 | SSE with PMK | Read/Write |
E: | Premium SSD LRS | 2048 | 7500 | 250 | SSE with PMK | Read-only |
F: | Premium SSD v2 LRS | 2048 | 3000 | 125 | SSE with PMK | None |
G: | Ultra disk LRS | 2048 | 7500 | 240 | SSE with PMK | None |
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
namespace NServiceBus.Logging; | |
using System; | |
public static class LogExtensions | |
{ | |
public static void ErrorFormat(this ILog log, Exception exception, string format, params object[] args) | |
{ | |
if (log.IsErrorEnabled) | |
{ |
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 MessagePack; | |
using MQTTnet; | |
using MQTTnet.Client; | |
public static class MqttExtensions | |
{ | |
static readonly HashSet<ushort> topicAliases = new(); | |
/// <summary> | |
/// Publish a message pack serialized message with optional topic alias. |
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
static void DumpHex(byte[] data, int bytesPerLine = 16) | |
{ | |
if (data == null) throw new ArgumentNullException(nameof(data)); | |
var sb = new StringBuilder(); | |
for (int offset = 0; offset < data.Length; offset += bytesPerLine) | |
{ | |
sb.Clear(); | |
sb.AppendFormat("{0:X8} ", offset); |
Install .NET via the following script:
I advise to first do a dry run and to enable verbose mode to review if envvar DOTNET_INSTALL_DIR
is set correctly:
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
#!/bin/bash | |
# store the current dir | |
CUR_DIR=$(pwd) | |
# Let the person running the script know what's going on. | |
printf "\n\033[1mPulling in latest changes for all repositories...\033[0m\n" | |
# Find all git repositories and update it to the master latest revision | |
for i in $(find . -name ".git" | cut -c 3-); do |
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
// FLEX|2024-09-05 15:22:37|1600/2/K/A|05.105|002029569 000123126 000126999|ALN|A2 11126 Rit 126665 VWS Wormerveer Industrieweg Wormerveer | |
const int framesPerHour = 15 * 128; | |
const int millisecondsInFrame = 3600_000 / framesPerHour; | |
var segments = l.Split('|'); | |
var values = segments[3].Split("."); | |
var cycle = int.Parse(values[0]); | |
var frame = int.Parse(values[1]); | |
var frames = cycle * 128 + frame; |
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
// DateTimeOffset first converts internally to DateTime, if you only want to get Unix Time you would need to do: | |
// DateTimeOffset.UtcNow.ToUnixTimeMilliseconds() which allocated more memory and is significantly slower due to | |
// embedding offset data based on the active timezone. | |
public static class DateTimeUnixTimeExtensions | |
{ | |
static readonly long UnixEpochTicks = DateTime.UnixEpoch.Ticks; | |
static readonly long UnixEpochMilliseconds = UnixEpochTicks / TimeSpan.TicksPerMillisecond; // 62,135,596,800,000 | |
public static long ToUnixTimeMilliseconds(this DateTime instance) | |
{ |
NewerOlder