Skip to content

Instantly share code, notes, and snippets.

View coderpatros's full-sized avatar
🌀

Patrick Dwyer coderpatros

🌀
View GitHub Profile
@mcandre
mcandre / public-trackers.md
Last active July 22, 2025 06:02
List of public BitTorrent tracker announce URLs
public static async Task ResendDeadLetters(string servicebusConnectionString, string queueName)
{
var messageFactory = MessagingFactory.CreateFromConnectionString(servicebusConnectionString);
var deadletterReceiver = await messageFactory.CreateMessageReceiverAsync(QueueClient.FormatDeadLetterPath(queueName),
ReceiveMode.PeekLock);
var sender = await messageFactory.CreateMessageSenderAsync(queueName);
const int max = 100;
var current = 0;
//Run until the Dead Letter Queue is empty or take the max number of messages
@xahare
xahare / Docker-on-qubes.md
Last active October 16, 2024 15:30
How to run docker on Qubes-OS
@stevespringett
stevespringett / package.json
Last active July 28, 2020 10:45
A ridiculously bloated non-functional project designed to produce a large number of dependencies from which an SBOM can be generated for testing purposes. Execute `npm install` then `npm run bom`
{
"name": "bloated",
"version": "1.0.0",
"private": true,
"description": "A ridiculously bloated non-functional project designed to produce a large number of dependencies from which an SBOM can be generated for testing purposes",
"main": "index.js",
"scripts": {
"bom": "cyclonedx-bom -o bom.xml"
},
"license": "MIT",