Skip to content

Instantly share code, notes, and snippets.

View ramonsmits's full-sized avatar

Ramon Smits ramonsmits

View GitHub Profile
@ramonsmits
ramonsmits / nlog.config
Created February 21, 2025 21:18
ServiceControl audit trace logging but excluding very chatty loggers
<?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">
@ramonsmits
ramonsmits / .md
Last active February 21, 2025 08:51
ServiceControl external RavenDB setup
@ramonsmits
ramonsmits / .md
Last active February 20, 2025 08:19
Azure disk benchmarks
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
@ramonsmits
ramonsmits / LogExtensions.cs
Created February 19, 2025 12:21
NServiceBus logger extension method with excension support for format methods
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)
{
@ramonsmits
ramonsmits / PublishMsgPack.cs
Created February 9, 2025 21:21
MQTTnet MessagePack helper that supports mqtt 5 topic alias
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.
@ramonsmits
ramonsmits / hexdump.cs
Created January 8, 2025 20:14
c# hex dump that formats bytes like many common hex viewers
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);
@ramonsmits
ramonsmits / howto.md
Created December 11, 2024 16:17
Install .NET 9 on Raspberry pi
@ramonsmits
ramonsmits / update_git_repos.sh
Last active November 8, 2024 10:26 — forked from douglas/update_git_repos.sh
Update all git repositories under a base directory
#!/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
@ramonsmits
ramonsmits / flex-cycle-calculate.cs
Created September 11, 2024 09:14
Motorola FLEX pager protocol calculate hourly offset based on cycles/frames
// 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;
@ramonsmits
ramonsmits / DateTimeUnixTimeExtensions.cs
Last active September 7, 2024 08:32
Port DateTimeOffset.ToUnixTimeMilliseconds to DateTime for much faster and efficent handling of Unix Time
// 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)
{