- udp://tracker.openbittorrent.com:80
- udp://tracker.publicbt.com:80
- udp://tracker.istole.it:80
- udp://tracker.btzoo.eu:80/announce
- http://opensharing.org:2710/announce
- udp://open.demonii.com:1337/announce
- http://announce.torrentsmd.com:8080/announce.php
- http://announce.torrentsmd.com:6969/announce
- http://bt.careland.com.cn:6969/announce
- http://i.bandito.org/announce
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
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 |
Since this page is apparently the top result on google, Heres a link to how to do it.
https://martingladdish.co.uk/technology/setting-up-docker-under-qubesos/
That page has more detail, but here are the instructions in case its down.
- Install docker engine, following the instruction on https://www.docker.com. NOT DESKTOP as that wont work in Qubes (unless you enable nested virtualization)
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
{ | |
"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", |