Skip to content

Instantly share code, notes, and snippets.

View badjuice's full-sized avatar
😶‍🌫️
Don't judge a book by a cover you can't read

Nox Fortes badjuice

😶‍🌫️
Don't judge a book by a cover you can't read
  • Nowhere to be found
  • 07:24 (UTC -01:00)
View GitHub Profile
@badjuice
badjuice / jackett.py
Created April 25, 2024 20:02 — forked from jonaslsaa/jackett.py
jackett.py for qBittorrent (fixed)
# VERSION: 3.6
# AUTHORS: Diego de las Heras (ngosang@hotmail.es)
# CONTRIBUTORS: TheVoxcraft
# ukharley
# hannsen (github.com/hannsen)
import json
import os
import xml.etree.ElementTree
from urllib.parse import urlencode, unquote
@badjuice
badjuice / jackett.md
Created October 2, 2023 11:40 — forked from wilmardo/jackett.md
Jackett add public indexers all in one go

Source: Jackett/Jackett#1576 (comment)

From the Jackett page, click the "add indexer" button so that the pop up window with the full list of indexers appears.

You'll then need to open your browser's development toolbar (in Chrome just hit F12) and go to the JavaScript Console and enter the following:

////hack to add all free indexers in Jackett
$(document).ready(function () {
	EnableAllUnconfiguredIndexersList();
@badjuice
badjuice / markdown-details-collapsible.md
Created August 24, 2023 12:07 — forked from pierrejoubert73/markdown-details-collapsible.md
How to add a collapsible section in markdown.

How to add a collapsible section in markdown

1. Example

Click me

Heading

  1. Foo
  2. Bar
    • Baz
  • Qux
@badjuice
badjuice / gist:4367af5a81b385bff1ca3f0f20a7362d
Created April 14, 2022 19:02 — forked from paulallies/gist:0052fab554b14bbfa3ef
Remove node_modules from git repo
#add 'node_modules' to .gitignore file
git rm -r --cached node_modules
git commit -m 'Remove the now ignored directory node_modules'
git push origin <branch-name>