Skip to content

Instantly share code, notes, and snippets.

View yyolk's full-sized avatar
🍯
𝙧𝙚𝙘𝙪𝙧𝙨𝙞𝙫𝙚 𝙩𝙖𝙪𝙩𝙤𝙡𝙤𝙜𝙮

Joseph Chiocchi yyolk

🍯
𝙧𝙚𝙘𝙪𝙧𝙨𝙞𝙫𝙚 𝙩𝙖𝙪𝙩𝙤𝙡𝙤𝙜𝙮
View GitHub Profile
@yyolk
yyolk / urlsafari.scpt
Last active March 8, 2024 22:12 — forked from kshiteesh/urlsafari
This AppleScript saves all the tabs open in all Safari windows to a Markdown file.
(*
Export All Safari Tabs in All Open Windows to a Markdown File
March 8th, 2024
// SCRIPT PAGE
https://gist.github.com/yyolk/5ee36b12271d89371fe859630aee80a4
// ORIGINAL SCRIPT ON WHICH THIS SCRIPT WAS ORIGINALLY BUILT
http://veritrope.com/code/export-all-safari-tabs-to-a-text-file
@yyolk
yyolk / ansi.py
Created January 31, 2024 00:29
basic python ansi colors to vendor into your project without needing to pip install
class AnsiColors:
fg_black = "\u001b[30m"
fg_red = "\u001b[31m"
fg_green = "\u001b[32m"
fg_yellow = "\u001b[33m"
fg_blue = "\u001b[34m"
fg_magenta = "\u001b[35m"
fg_cyan = "\u001b[36m"
fg_white = "\u001b[37m"
bg_black = "\u001b[40m"
@yyolk
yyolk / httpie-transfer.sh
Last active January 28, 2024 22:37
upload to transfer.sh with httpie
# curl is usually outdated and missing --upload-file option
# pipx install httpie
# pip install httpie
# apt install httpie
# transfer.sh follows HTTP semantics, where PUT is the appropriate file upload method
http PUT https://transfer.sh/destination.zip @source.zip
# or with redirection
http PUT https://transfer.sh/destination.zip < source.zip
@yyolk
yyolk / README.md
Last active January 28, 2024 22:25
rust armv6 cross tools for ARMv6Z-based BCM2835

Run install_rust_armv6_target.sh

Rust is automatically installed with https://rustup.rs

sh ./install_rust_armv6_target.sh

Compile target from project directory

@yyolk
yyolk / chia-blockchain.patch
Created August 10, 2023 00:27
FreeBSD patches for running Chia-Network/chia-blockchain@2.0.0-rc4
diff --git a/setup.py b/setup.py
index fc27c7d1e..9e86d7469 100644
--- a/setup.py
+++ b/setup.py
@@ -12,7 +12,7 @@ dependencies = [
"boto3==1.26.161", # AWS S3 for DL s3 plugin
"chiavdf==1.0.10", # timelord and vdf verification
"chiabip158==1.2", # bip158-style wallet filters
- "chiapos==2.0.0", # proof of space
+ "chiapos", # proof of space
@yyolk
yyolk / GH-CF-strict-SSL-w-CDN.md
Created August 27, 2021 19:48 — forked from zbeekman/GH-CF-strict-SSL-w-CDN.md
Setting up GH-pages with custom domain, strict (end-to-end) SSL with CloudFlare DNS & CDN

Custom domains, GH-pages, Cloudflare and strict SSL end-to-end encryption

Why I wrote this

Before Github supported SSL encryption for github pages sites, many people were using CloudFlare (CF) as their DNS provider and CDN proxy. CF allowed users to enable SSL encryption from the CDN end points/proxies to the end user. This was great and it allowed visitors to your website to connect with a secure connection between their browser and the cloudflare CDN box that was serving your content. However, with this setup one (significant) link in the chain remained unencrypted and

@yyolk
yyolk / simple_xrp_price_agg.py
Created August 3, 2021 18:38
simple price aggregate with ccxt
import ccxt
def get_price(exchange_client, pair) -> float:
return exchange_client.fetch_ticker(pair).get("last")
if __name__ == "__main__":
binance = (ccxt.binance(), "XRP/USDT")
bitfinex = (ccxt.bitfinex(), "XRP/USD")
@yyolk
yyolk / websocat_subscribe_jq_process.sh
Last active July 7, 2021 19:29
watch subscribed events to your xrpl node from the command line
#!/bin/bash
# install websocat
# cargo install --features=ssl websocat
# --features=ssl needs to be included to connect to wss://
# we use `<<<` to send a string into the command:
# echo '{"command"...}' | websocatt ...
# is equivalent
@yyolk
yyolk / 01__websockets__xrpl_stat_table.py
Last active July 9, 2021 03:56
using python3, websockets and asyncio connect to rippled, subscribe and work on received messages
#!/usr/bin/env python3
"""
Prints out the Ledger No. and the total txns, along with a visual indication.
Illustrates a raw web socket connection and consuming the messages with asyncio
Setup:
If you're running an XRPL node, run this script on the node with the admin
@yyolk
yyolk / irssi twitch.txt
Last active January 26, 2023 04:57 — forked from lambdan/irssi twitch.txt
Twitch chat with irssi - June 2021
Tested working 20 Jun 2021, irssi version 1.2.3
This is a TLDR version of https://blog.crunchprank.net/connecting-to-twitch-chat-via-irssi/
Get your OAuth token (password) here: https://twitchapps.com/tmi/
# Network setup:
/network add -nick YOUR_TWITCH_USERNAME twitch
/server add -auto -ssl -network Twitch irc.chat.twitch.tv 6697 YOUR_OAUTH_TOKEN