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
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 |
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
#!/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 |
OlderNewer