| Indexer | Membership Status | API URL | Software | API Hits/Day | NZB Grabs/Day | Retention | Account Duration | Counter Reset | Counter Reset |
|---|---|---|---|---|---|---|---|---|---|
| NZB.cat | Free | https://nzb.cat | nZEDb | 500 | 50 | 60 Days | |||
| NZB.cat | VIP | https://nzb.cat | nZEDb | 5,000 | 1,000 | Lifetime | |||
| Oznzb.com | Freeloader | https://api.oznzb.com | Newsnab+ | 5 | 5 | Rolling Counter | Rolling Co |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo apt-get update | |
| sudo apt-get install build-essential chrpath libssl-dev libxft-dev -y | |
| sudo apt-get install libfreetype6 libfreetype6-dev -y | |
| sudo apt-get install libfontconfig1 libfontconfig1-dev -y | |
| cd ~ | |
| export PHANTOM_JS="phantomjs-2.1.1-linux-x86_64" | |
| wget https://github.com/Medium/phantomjs/releases/download/v2.1.1/$PHANTOM_JS.tar.bz2 | |
| sudo tar xvjf $PHANTOM_JS.tar.bz2 | |
| sudo mv $PHANTOM_JS /usr/local/share | |
| sudo ln -sf /usr/local/share/$PHANTOM_JS/bin/phantomjs /usr/local/bin |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $Source = @" | |
| using System; | |
| using System.Net; | |
| using System.Reflection; | |
| namespace LoadAssembly { | |
| public static class LoadAssembly { | |
| public static void load() { | |
| WebClient webclient = new WebClient(); | |
| IWebProxy defaultProxy = WebRequest.DefaultWebProxy; | |
| if (defaultProxy != null) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -o pipefail | |
| set -s | |
| ##### | |
| # This script will take a fresh KDE Neon install and make it suitable for getting stuff done. | |
| # It may not work against another Ubuntu Installation type. | |
| # Run it with: bash <(wget -qO- https://git.io/vSe77) | |
| ##### |
Get the following:
- a Crunchyroll account (though they let you watch/download some videos without an account, at 480p),
- the latest youtube-dl (
brew upgrade youtube-dl), - your browser’s user agent,
- your Crunchyroll cookies (cookie.txt export for Chrome is handy) into a
cookies.txtfile.
Then,
The Google Cloud Shell gives you a handy and quick Shell access to your Cloud instance. One thing you may not know is that you can use the Cloud Shell to clone and edit a Github project. Let's see how.
The trick here is to just call the following URL: https://console.cloud.google.com/cloudshell/open with the following parameters:
git_repo: this is the URL to your github repositoryopen_in_editor: this would be the file you want to open in the editorpage=editor: this tells the cloud shell to open the code editor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "fmt" | |
| "github.com/hairyhenderson/gomplate/data" | |
| ) | |
| func main() { | |
| d, err := data.NewData([]string{"ip=https://ipinfo.io"}, nil) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| ####################################### | |
| ### NZBGET POST-PROCESSING SCRIPT ### | |
| # Moves downloads to a configured location using rclone and load balances over | |
| # multiple remotes | |
| # | |
| # | |
| # NOTE: Requires sh, coreutils or busybox, screen and rclone. Remotes must be setup in rclone.conf. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python3.8 | |
| ############################################################################## | |
| ### NZBGET SCAN SCRIPT ### | |
| # | |
| # Scans filename of incoming NZBs for embedded passwords. | |
| # | |
| ############################################################################## | |
| ### OPTIONS ### | |
| # The RegEx to match the password in the filename. | |
| #regex=(.*)\{\{(.*)\}\}.nzb |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
| <title>Myfile Tester/Viewer/Thing</title> | |
| <script src="https://code.jquery.com/jquery-3.4.1.min.js"></script> | |
| <script src="https://cdn.jsdelivr.net/gh/abodelot/jquery.json-viewer@master/json-viewer/jquery.json-viewer.js"></script> | |
| <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/abodelot/jquery.json-viewer@master/json-viewer/jquery.json-viewer.css"> |