Skip to content

Instantly share code, notes, and snippets.

View karappo-kun's full-sized avatar

karappo-kun

View GitHub Profile
@karappo-kun
karappo-kun / bypass-antiadblock.js
Created October 22, 2018 07:23
ABP Detector bypass script
// Paste on the console on page load
let content = '';
const timer = setInterval(() => {
const body = document.querySelector('body');
if (body.hasAttribute('style')) {
body.innerHTML = content;
clearInterval(timer);
return;
}
@karappo-kun
karappo-kun / batoto_export.md
Last active December 9, 2025 04:23
Export follows list from Batoto quickly

Export follows list from Batoto quickly

  1. Go to https://bato.to/myfollows
  2. Open the JavaScript developer console by pressing F12.
  3. Copy the following code below and paste it in the console.
clear();
var $ = jQuery;
var follows = '';
$('div[style="display:inline-block; padding: 3px 20px 3px 6px; line-height: 20px;"] > a').each(function(){
@karappo-kun
karappo-kun / qBittorrent Sample RSS Config.txt
Last active November 24, 2017 14:34
qBittorrent Sample RSS Config
# Open RSS tab
# Click "New Subscription"
# Paste RSS link
# Use Regular Expressions: checked
# Must Contain:
^\[HorribleSubs\] ((Konohana Kitan)|(Kino no Tabi)|(Net-juu no Susume)|(Blend S)|(Kekkai Sensen & Beyond)|(Himouto! Umaru-chan R)|(Shoujo Shuumatsu Ryokou)).*(\.mkv)$
# Must Not Contain:
@karappo-kun
karappo-kun / npmcrashcourse.txt
Created September 23, 2017 01:16 — forked from bradtraversy/npmcrashcourse.txt
NPM Crash Course Commands
# GET VERSION
npm -v (or --version)
# GET HELP
npm help
npm
# CREATE PACKAGE.JSON
npm init
npm init -y (or --yes)