Skip to content

Instantly share code, notes, and snippets.

View NakerTheFirst's full-sized avatar
🥑

Krzysztof Chołys NakerTheFirst

🥑
  • University of Lodz
  • Łódź, Poland
View GitHub Profile
@NakerTheFirst
NakerTheFirst / AnkiControllerSetup.md
Created May 8, 2025 12:04
Anki 8BitDo zero 2 controller setup on Windows 11

This fixes 8BitDo zero 2 controller showing up as Pro Controller in bluetooth issue on Windows, allowing easy use of Anki with Contanki plugin.

The device must be turned off initially.

Steps:

  1. Hold Start + X buttons for 3 seconds. The blue light should flash.
  2. Hold Select button for ~2 seconds. The blue light should flash more rapidly - this is pairing mode.
@NakerTheFirst
NakerTheFirst / QuizletFlashcardExtractor.js
Created May 7, 2025 08:54
Extract text from Quizlet flashcards and download as .csv. Extracts text from text-image flashcard type but doesn't download images. Paste into console.
// This always extracts text, but doesnt work correctly with images
// Function to better identify if content contains an image
function hasVisibleImage(element) {
// Look for any img elements
const imgTags = element.querySelectorAll('img');
return imgTags.length > 0;
}