Skip to content

Instantly share code, notes, and snippets.

View GolyBidoof's full-sized avatar
💽
and in your reality, if i don't know how to love you, i'll leave you be.

Amelia Szymańska GolyBidoof

💽
and in your reality, if i don't know how to love you, i'll leave you be.
View GitHub Profile
@GolyBidoof
GolyBidoof / bookwalkerScraper.js
Last active October 4, 2025 17:59
Bookwalker Scraper
// Bookwalker Scraper - to be ran on the viewer pages, like:
// https://viewer.bookwalker.jp/03/28/viewer.html?cid=[SOMETHING]
// Open the first page of the manga
// Open up the console using CMD + Option + C
// Paste all of the code into the console
// Edit TARGET_WIDTH and TARGET_HEIGHT to your desired size
// Target size can be found in the network console by looking
// for a request coming from something similar to:
// OEBPS/text/book_034.xhtml.region
@GolyBidoof
GolyBidoof / scriptToScrape.js
Last active October 5, 2025 07:10
Ichijin Plus scraper
/**
* Ichikomi Brand Scraper
* A tool to archive entire manga series from Ichikomi pages - everything that's either free
* or already bought. This tool doesn't circumvent any paywalls.
*
* HOW TO USE:
* 1. Navigate to an Ichikomi brand page (e.g., https://ichicomi.com/series/yurihime).
* 2. Open your browser's developer console (F12 or Ctrl+Shift+I).
* 3. Paste this entire script into the console and press Enter.
* 4. Execute the function by typing `ichikomiScraper.run();` and pressing Enter.
@GolyBidoof
GolyBidoof / furiouslyCurling.py
Last active June 30, 2021 22:12
Nine Eyes TV | Spike Chunsoft - a script to get the password out of the website xd
import requests
url = 'https://www.spike-chunsoft.co.jp/nine-eyes-tv/en/check/'
headers = {
'authority': 'www.spike-chunsoft.co.jp',
'sec-ch-ua': '"Microsoft Edge";v="93", " Not;A Brand";v="99", "Chromium";v="93"',
'accept': 'application/json, text/javascript, */*; q=0.01',
'x-requested-with': 'XMLHttpRequest',
'sec-ch-ua-mobile': '?0',
'user-agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4537.0 Safari/537.36 Edg/93.0.926.0',
'content-type': 'application/x-www-form-urlencoded; charset=UTF-8',