Skip to content

Instantly share code, notes, and snippets.

@VerifiedJoseph
VerifiedJoseph / BandcampDailyBridge.php
Created April 5, 2020 12:17
BandcampDailyBridge with moved Franchises array
<?php
class BandcampDailyBridge extends BridgeAbstract {
const NAME = 'Bandcamp Daily Bridge';
const URI = 'https://daily.bandcamp.com';
const DESCRIPTION = 'Returns newest articles';
const MAINTAINER = 'VerifiedJoseph';
const PARAMETERS = array(
'Latest articles' => array(),
'Best of' => array(
'content' => array(
@VerifiedJoseph
VerifiedJoseph / get-playstv-video-list.php
Last active August 27, 2020 11:49
PHP script for extracting video details from an archived Plays.tv profile and checking their archive status.
<?php
/*
PHP script for extracting video details from an archived Plays.tv profile and checking their archive status.
*/
/* Dependencies
PHP Simple HTML DOM Parser https://simplehtmldom.sourceforge.io/
php-curl-class (via Composer) https://github.com/php-curl-class/php-curl-class
*/
require __DIR__ . '/simple_html_dom.php';
require __DIR__ . '/vendor/autoload.php';
@VerifiedJoseph
VerifiedJoseph / link-gopher-extract.php
Last active December 3, 2020 15:12
PHP script for extracting google poly user and item links from a Link Gopher output file
@VerifiedJoseph
VerifiedJoseph / rss-bridge-uri-tester.php
Created June 2, 2021 16:03
Simple script for testing rss-bridge website URIs
<?php
// uses https://github.com/php-curl-class/php-curl-class
// Install: composer require php-curl-class/php-curl-class
// Composer Auto loader
require __DIR__ . '/vendor/autoload.php';
$folder = ''; // rss-bridge path
require_once $folder . 'lib/BridgeInterface.php';
@VerifiedJoseph
VerifiedJoseph / rss-bridge-issues-and-prs.md
Last active June 3, 2021 17:38
RSS Bridge Issues and PRs