Skip to content

Instantly share code, notes, and snippets.

View m-radzikowski's full-sized avatar

Maciej Radzikowski m-radzikowski

View GitHub Profile
@m-radzikowski
m-radzikowski / migrate-comments-to-giscus.py
Last active April 7, 2024 20:35
Migrate comments from WordPress wpDiscuz (https://wpdiscuz.com/) to Giscus (https://giscus.app/) powered by GitHub Discussions
import hashlib
import re
from time import sleep
from urllib.parse import urlparse
import requests
from bs4 import BeautifulSoup
from gql import gql, Client
from gql.transport.aiohttp import AIOHTTPTransport
from markdownify import markdownify as md
@m-radzikowski
m-radzikowski / stomp.js
Created February 13, 2025 11:44
Simple STOMP client for sending and receiving messages.
#!/usr/bin/env node
/*
* Simple STOMP client for sending and receiving messages.
*
* Pre-requisites: install stompit package (`npm install stompit`).
*
* Usage:
* - Send messages: node stomp.js -h <host> -u <username> -p <password> -q <queue> -s
* - Receive messages: node stomp.js -h <host> -u <username> -p <password> -q <queue> -l