Skip to content

Instantly share code, notes, and snippets.

View Cryptizism's full-sized avatar
:shipit:

Cryptizism

:shipit:
  • Scotland
  • 05:26 (UTC +01:00)
View GitHub Profile
@Cryptizism
Cryptizism / merge.py
Created June 14, 2024 21:23
Obsidian to HTML
import os
def merge_all_markdown_files(folder_path):
merged_content = ""
for root, _, files in os.walk(folder_path):
for file_name in files:
if file_name.endswith(".md"):
file_path = os.path.join(root, file_name)
with open(file_path, 'r', encoding='utf-8') as topic_file:
@Cryptizism
Cryptizism / match.js
Last active January 4, 2023 02:05
Quizlet Cheat
const data = Quizlet?.matchModeData?.terms
const answers = getAnswers();
const termsAndCards = storeCards();
match();
function getAnswers(){
const answers = [];
@Cryptizism
Cryptizism / emote-extension-endpoints.MD
Last active November 1, 2023 22:21
Twitch 3rd party extension endpoints

3rd Party Emote Extension Endpoints (AFAIK)

Codenames

  • User ID = Twitch User ID (you can get it here)
  • Username = Twitch User's name
  • Emote ID = ID assigned to an emote (Found in the URL)
  • Global = Can be used in any chat
  • Channel Emote = Emotes that are assigned to a certain chat
  • Emote Size = This will vary from platform to platfrom, the smaller the number the smaller the image.